/*! tailwindcss v4.2.1 | MIT License | https://tailwindcss.com */
@layer properties;
@layer theme, base, components, utilities;
@layer theme {
  :root, :host {
    --font-sans: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji",
      "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
      "Courier New", monospace;
    --spacing: 0.25rem;
    --default-transition-duration: 150ms;
    --default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    --default-font-family: var(--font-sans);
    --default-mono-font-family: var(--font-mono);
  }
}
@layer base {
  *, ::after, ::before, ::backdrop, ::file-selector-button {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0 solid;
  }
  html, :host {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    tab-size: 4;
    font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
    font-feature-settings: var(--default-font-feature-settings, normal);
    font-variation-settings: var(--default-font-variation-settings, normal);
    -webkit-tap-highlight-color: transparent;
  }
  hr {
    height: 0;
    color: inherit;
    border-top-width: 1px;
  }
  abbr:where([title]) {
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
  }
  h1, h2, h3, h4, h5, h6 {
    font-size: inherit;
    font-weight: inherit;
  }
  a {
    color: inherit;
    -webkit-text-decoration: inherit;
    text-decoration: inherit;
  }
  b, strong {
    font-weight: bolder;
  }
  code, kbd, samp, pre {
    font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
    font-feature-settings: var(--default-mono-font-feature-settings, normal);
    font-variation-settings: var(--default-mono-font-variation-settings, normal);
    font-size: 1em;
  }
  small {
    font-size: 80%;
  }
  sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
  }
  sub {
    bottom: -0.25em;
  }
  sup {
    top: -0.5em;
  }
  table {
    text-indent: 0;
    border-color: inherit;
    border-collapse: collapse;
  }
  :-moz-focusring {
    outline: auto;
  }
  progress {
    vertical-align: baseline;
  }
  summary {
    display: list-item;
  }
  ol, ul, menu {
    list-style: none;
  }
  img, svg, video, canvas, audio, iframe, embed, object {
    display: block;
    vertical-align: middle;
  }
  img, video {
    max-width: 100%;
    height: auto;
  }
  button, input, select, optgroup, textarea, ::file-selector-button {
    font: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    letter-spacing: inherit;
    color: inherit;
    border-radius: 0;
    background-color: transparent;
    opacity: 1;
  }
  :where(select:is([multiple], [size])) optgroup {
    font-weight: bolder;
  }
  :where(select:is([multiple], [size])) optgroup option {
    padding-inline-start: 20px;
  }
  ::file-selector-button {
    margin-inline-end: 4px;
  }
  ::placeholder {
    opacity: 1;
  }
  @supports (not (-webkit-appearance: -apple-pay-button))  or (contain-intrinsic-size: 1px) {
    ::placeholder {
      color: currentcolor;
      @supports (color: color-mix(in lab, red, red)) {
        color: color-mix(in oklab, currentcolor 50%, transparent);
      }
    }
  }
  textarea {
    resize: vertical;
  }
  ::-webkit-search-decoration {
    -webkit-appearance: none;
  }
  ::-webkit-date-and-time-value {
    min-height: 1lh;
    text-align: inherit;
  }
  ::-webkit-datetime-edit {
    display: inline-flex;
  }
  ::-webkit-datetime-edit-fields-wrapper {
    padding: 0;
  }
  ::-webkit-datetime-edit, ::-webkit-datetime-edit-year-field, ::-webkit-datetime-edit-month-field, ::-webkit-datetime-edit-day-field, ::-webkit-datetime-edit-hour-field, ::-webkit-datetime-edit-minute-field, ::-webkit-datetime-edit-second-field, ::-webkit-datetime-edit-millisecond-field, ::-webkit-datetime-edit-meridiem-field {
    padding-block: 0;
  }
  ::-webkit-calendar-picker-indicator {
    line-height: 1;
  }
  :-moz-ui-invalid {
    box-shadow: none;
  }
  button, input:where([type="button"], [type="reset"], [type="submit"]), ::file-selector-button {
    appearance: button;
  }
  ::-webkit-inner-spin-button, ::-webkit-outer-spin-button {
    height: auto;
  }
  [hidden]:where(:not([hidden="until-found"])) {
    display: none !important;
  }
}
@layer utilities {
  .absolute {
    position: absolute;
  }
  .relative {
    position: relative;
  }
  .start {
    inset-inline-start: var(--spacing);
  }
  .end {
    inset-inline-end: var(--spacing);
  }
  .top-1\/2 {
    top: calc(1 / 2 * 100%);
  }
  .left-1\/2 {
    left: calc(1 / 2 * 100%);
  }
  .block {
    display: block;
  }
  .flex {
    display: flex;
  }
  .grid {
    display: grid;
  }
  .table {
    display: table;
  }
  .aspect-square {
    aspect-ratio: 1 / 1;
  }
  .size-2 {
    width: calc(var(--spacing) * 2);
    height: calc(var(--spacing) * 2);
  }
  .size-3\.5 {
    width: calc(var(--spacing) * 3.5);
    height: calc(var(--spacing) * 3.5);
  }
  .size-4 {
    width: calc(var(--spacing) * 4);
    height: calc(var(--spacing) * 4);
  }
  .shrink-0 {
    flex-shrink: 0;
  }
  .-translate-x-1\/2 {
    --tw-translate-x: calc(calc(1 / 2 * 100%) * -1);
    translate: var(--tw-translate-x) var(--tw-translate-y);
  }
  .-translate-y-1\/2 {
    --tw-translate-y: calc(calc(1 / 2 * 100%) * -1);
    translate: var(--tw-translate-x) var(--tw-translate-y);
  }
  .place-content-center {
    place-content: center;
  }
  .items-center {
    align-items: center;
  }
  .justify-center {
    justify-content: center;
  }
  .gap-3 {
    gap: calc(var(--spacing) * 3);
  }
  .rounded-\[4px\] {
    border-radius: 4px;
  }
  .rounded-full {
    border-radius: calc(infinity * 1px);
  }
  .border {
    border-style: var(--tw-border-style);
    border-width: 1px;
  }
  .border-input {
    border-color: var(--input);
  }
  .fill-primary {
    fill: var(--primary);
  }
  .text-current {
    color: currentcolor;
  }
  .text-primary {
    color: var(--primary);
  }
  .italic {
    font-style: italic;
  }
  .shadow-xs {
    --tw-shadow: 0 1px 2px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.05));
    box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  }
  .transition-\[color\,box-shadow\] {
    transition-property: color,box-shadow;
    transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
    transition-duration: var(--tw-duration, var(--default-transition-duration));
  }
  .transition-shadow {
    transition-property: box-shadow;
    transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
    transition-duration: var(--tw-duration, var(--default-transition-duration));
  }
  .transition-none {
    transition-property: none;
  }
  .outline-none {
    --tw-outline-style: none;
    outline-style: none;
  }
  .focus-visible\:border-ring {
    &:focus-visible {
      border-color: var(--ring);
    }
  }
  .focus-visible\:ring-\[3px\] {
    &:focus-visible {
      --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
      box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
    }
  }
  .focus-visible\:ring-ring\/50 {
    &:focus-visible {
      --tw-ring-color: var(--ring);
      @supports (color: color-mix(in lab, red, red)) {
        --tw-ring-color: color-mix(in oklab, var(--ring) 50%, transparent);
      }
    }
  }
  .disabled\:cursor-not-allowed {
    &:disabled {
      cursor: not-allowed;
    }
  }
  .disabled\:opacity-50 {
    &:disabled {
      opacity: 50%;
    }
  }
  .data-\[state\=checked\]\:border-primary {
    &[data-state="checked"] {
      border-color: var(--primary);
    }
  }
  .data-\[state\=checked\]\:bg-primary {
    &[data-state="checked"] {
      background-color: var(--primary);
    }
  }
  .data-\[state\=checked\]\:text-primary-foreground {
    &[data-state="checked"] {
      color: var(--primary-foreground);
    }
  }
  .dark\:bg-input\/30 {
    @media (prefers-color-scheme: dark) {
      background-color: var(--input);
      @supports (color: color-mix(in lab, red, red)) {
        background-color: color-mix(in oklab, var(--input) 30%, transparent);
      }
    }
  }
  .dark\:data-\[state\=checked\]\:bg-primary {
    @media (prefers-color-scheme: dark) {
      &[data-state="checked"] {
        background-color: var(--primary);
      }
    }
  }
}
@property --tw-animation-delay {
  syntax: "*";
  inherits: false;
  initial-value: 0s;
}
@property --tw-animation-direction {
  syntax: "*";
  inherits: false;
  initial-value: normal;
}
@property --tw-animation-duration {
  syntax: "*";
  inherits: false;
}
@property --tw-animation-fill-mode {
  syntax: "*";
  inherits: false;
  initial-value: none;
}
@property --tw-animation-iteration-count {
  syntax: "*";
  inherits: false;
  initial-value: 1;
}
@property --tw-enter-blur {
  syntax: "*";
  inherits: false;
  initial-value: 0;
}
@property --tw-enter-opacity {
  syntax: "*";
  inherits: false;
  initial-value: 1;
}
@property --tw-enter-rotate {
  syntax: "*";
  inherits: false;
  initial-value: 0;
}
@property --tw-enter-scale {
  syntax: "*";
  inherits: false;
  initial-value: 1;
}
@property --tw-enter-translate-x {
  syntax: "*";
  inherits: false;
  initial-value: 0;
}
@property --tw-enter-translate-y {
  syntax: "*";
  inherits: false;
  initial-value: 0;
}
@property --tw-exit-blur {
  syntax: "*";
  inherits: false;
  initial-value: 0;
}
@property --tw-exit-opacity {
  syntax: "*";
  inherits: false;
  initial-value: 1;
}
@property --tw-exit-rotate {
  syntax: "*";
  inherits: false;
  initial-value: 0;
}
@property --tw-exit-scale {
  syntax: "*";
  inherits: false;
  initial-value: 1;
}
@property --tw-exit-translate-x {
  syntax: "*";
  inherits: false;
  initial-value: 0;
}
@property --tw-exit-translate-y {
  syntax: "*";
  inherits: false;
  initial-value: 0;
}
@property --scroll-fade-t {
  syntax: "<length-percentage>";
  inherits: false;
  initial-value: 0px;
}
@property --scroll-fade-b {
  syntax: "<length-percentage>";
  inherits: false;
  initial-value: 0px;
}
@property --scroll-fade-s {
  syntax: "<length-percentage>";
  inherits: false;
  initial-value: 0px;
}
@property --scroll-fade-e {
  syntax: "<length-percentage>";
  inherits: false;
  initial-value: 0px;
}
@property --scroll-fade-mask {
  syntax: "*";
  inherits: false;
}
@property --shimmer-angle {
  syntax: "<angle>";
  inherits: true;
  initial-value: 20deg;
}
@property --shimmer-image {
  syntax: "*";
  inherits: false;
}
@property --shimmer-text-fill {
  syntax: "*";
  inherits: false;
}
@media (prefers-reduced-motion: reduce) {
  .shimmer {
    animation: none;
    background-image: none;
    -webkit-text-fill-color: currentColor;
  }
}
:root {
  --background: #fffafb;
  --foreground: #321e28;
  --card: #fff;
  --card-foreground: #321e28;
  --popover: #fff;
  --popover-foreground: #321e28;
  --primary: #a52158;
  --primary-foreground: #fff;
  --secondary: #f9e5ed;
  --secondary-foreground: #321e28;
  --muted: #f9e5ed;
  --muted-foreground: #70545f;
  --accent: #f7d4e1;
  --accent-foreground: #321e28;
  --border: #e8cbd7;
  --input: #d8b5c4;
  --ring: #a52158;
  --radius: .4rem;
  --destructive: #ad1233;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: Arial,Helvetica,sans-serif;
  font-size: 16px;
  line-height: 1.6;
}
a {
  color: inherit;
  text-decoration: none;
}
button,input {
  font: inherit;
}
button,a,input {
  -webkit-tap-highlight-color: transparent;
}
button,a {
  touch-action: manipulation;
}
button {
  cursor: pointer;
}
a:focus-visible,button:focus-visible,input:focus-visible {
  outline: 3px solid #a52158;
  outline-offset: 5px;
}
img {
  display: block;
  max-width: 100%;
}
h1,h2,h3,p {
  margin: 0;
}
em {
  font-weight: 400;
  color: var(--primary);
}
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 5%;
  background: #fffafbF2;
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid #e8cbd7;
  backdrop-filter: blur(14px);
}
.wordmark {
  font-family: Georgia,serif;
  font-style: italic;
  font-size: 26px;
  line-height: 1.1;
}
.wordmark span {
  display: block;
  font-family: Arial,sans-serif;
  font-size: 11px;
  font-style: normal;
  letter-spacing: .32em;
  margin-top: 8px;
  text-align: center;
}
.nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
}
.button {
  display: inline-flex;
  gap: 28px;
  justify-content: center;
  align-items: center;
  padding: 17px 26px;
  border: 1px solid var(--primary);
  background: var(--primary);
  color: white;
  font-size: 15px;
  border-radius: 2px;
  transition: background .2s,transform .2s;
}
.button:hover {
  background: #83123e;
  transform: translateY(-2px);
}
.button.small {
  padding: 12px 18px;
  gap: 16px;
}
.button:disabled {
  opacity: .45;
  cursor: not-allowed;
  transform: none;
}
.menu {
  display: none;
  background: none;
  border: 0;
}
.hero {
  min-height: 740px;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 45px 5% 74px;
  gap: 6%;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(110deg,#fffafb 40%,#f9e0eb);
}
.eyebrow {
  font-size: 12px;
  letter-spacing: .18em;
  font-weight: 600;
  line-height: 1.6;
}
.hero h1 {
  font-family: Georgia,serif;
  font-size: clamp(64px,6.6vw,104px);
  line-height: 1.03;
  letter-spacing: -.045em;
  font-weight: 400;
  margin: 30px 0;
}
.intro {
  font-size: 17px;
  max-width: 360px;
  color: #70545f;
  margin-bottom: 30px;
}
.location {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  font-size: 14px;
}
.hero-photo {
  height: 580px;
  position: relative;
  overflow: hidden;
  border-radius: 240px 240px 4px 4px;
  background: #eed8e0;
}
.hero-photo img {
  height: 110%;
  width: 100%;
  object-fit: cover;
  object-position: 50% 35%;
  margin-top: -5%;
}
.hero-photo:after {
  content: "";
  position: absolute;
  inset: 65% 0 0;
  background: linear-gradient(transparent,#20121b99);
  pointer-events: none;
}
.photo-label,.photo-number {
  position: absolute;
  z-index: 1;
  bottom: 24px;
  color: white;
  font-size: 11px;
  letter-spacing: .12em;
}
.photo-label {
  left: 25px;
}
.photo-number {
  right: 25px;
}
.discover {
  position: absolute;
  bottom: 26px;
  left: 5%;
  font-size: 13px;
  display: flex;
  gap: 20px;
  align-items: center;
}
.ribbon {
  padding: 22px 6%;
  background: #f3cddd;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.ribbon span:first-child,.ribbon span:last-child {
  font-family: Georgia,serif;
  font-style: italic;
  font-size: 23px;
}
.ribbon span:nth-child(2) {
  font-size: 12px;
  letter-spacing: .2em;
}
.section {
  padding: 110px 6%;
}
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 58px;
}
.section-heading>p {
  max-width: 280px;
  color: #70545f;
}
.section h2,.booking-section h2 {
  font-family: Georgia,serif;
  font-size: clamp(42px,4.8vw,70px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -.035em;
  margin-top: 19px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}
.service {
  padding: 30px;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  min-height: 315px;
  transition: background .3s;
}
.service:hover {
  background: #fceaf1;
}
.service-number {
  font-family: Georgia,serif;
  color: #a52158;
  font-style: italic;
  margin-bottom: 22px;
}
.service h3 {
  font-family: Georgia,serif;
  font-size: 27px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 15px;
}
.service p {
  font-size: 15px;
  color: #70545f;
  margin-bottom: 25px;
}
.service a {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  color: #a52158;
}
.cinema-wrap {
  padding: 0 0 20px;
}
.cinema {
  position: relative;
  height: 680px;
  overflow: hidden;
  background: #291b25;
}
.cinema img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 36%;
}
.cinema:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,#24111fcc,transparent 80%);
}
.cinema>div {
  position: absolute;
  left: 8%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  color: white;
}
.cinema-title {
  font: 400 clamp(48px,7vw,100px)/1.07 Georgia,serif;
  margin-top: 20px;
  letter-spacing: -.04em;
}
.cinema-title em {
  color: #f4c2d7;
}
.text-link {
  display: inline-flex;
  gap: 15px;
  align-items: center;
  border-bottom: 1px solid #a52158;
  padding-bottom: 5px;
  color: #a52158;
  font-size: 15px;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 26px;
  align-items: start;
}
.gallery-item {
  margin: 0;
  overflow: hidden;
}
.gallery-item img {
  width: 100%;
  height: 390px;
  object-fit: cover;
}
.gallery-item:nth-child(3n+2) {
  margin-top: 65px;
}
.gallery-item figcaption {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  letter-spacing: .14em;
  padding-top: 12px;
}
.gallery-item.item-4 {
  max-width: 300px;
}
.gallery-item.item-4 img {
  height: 300px;
  object-fit: contain;
  background: #f4e7ec;
}
.gallery-item.item-1 img {
  object-position: center;
}
.booking-section {
  padding: 100px 6%;
  background: #f9e4ed;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 8%;
  align-items: start;
}
.booking-intro {
  position: sticky;
  top: 140px;
}
.booking-intro>p:not(.eyebrow) {
  margin: 28px 0;
  max-width: 350px;
  color: #70545f;
}
.booking-note {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 35px;
}
.booking-form {
  background: #fffafb;
  padding: 38px;
  border: 1px solid #e8cbd7;
}
.booking-form h3 {
  font-family: Georgia,serif;
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 26px;
}
.booking-form fieldset {
  border: 0;
  padding: 0;
  margin: 0;
  min-width: 0;
}
.booking-form legend {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
}
.service-options {
  display: grid;
  gap: 8px;
  margin-bottom: 25px;
}
.option {
  display: flex !important;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid #e8cbd7;
  cursor: pointer;
  margin: 0 !important;
}
.option.selected {
  background: #fcebf2;
  border-color: #a52158;
}
.option strong {
  font-size: 14px;
  display: block;
}
.option small {
  font-size: 12px;
  line-height: 1.4;
  display: block;
  color: #70545f;
  margin-top: 3px;
}
.booking-form label {
  font-size: 14px;
  display: block;
  margin-bottom: 16px;
}
.booking-form input:not([type=radio]) {
  width: 100%;
  padding: 12px;
  background: white;
  border: 1px solid #d8b5c4;
  border-radius: 2px;
  display: block;
  margin-top: 6px;
  min-width: 0;
  font-size: 16px;
  color: #321e28;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.help {
  font-size: 12px;
  color: #70545f;
  margin: 10px 0 17px;
  line-height: 1.6;
}
.consent {
  display: flex !important;
  align-items: flex-start;
  gap: 12px;
  font-size: 12px !important;
  margin-top: 24px;
}
.consent button {
  flex-shrink: 0;
  margin-top: 3px;
}
.booking-form .button {
  width: 100%;
}
.success {
  color: #326044;
  display: flex;
  align-items: start;
  gap: 8px;
  font-size: 15px;
  margin-top: 16px;
}
.form-message {
  color: #a52158;
  font-size: 14px;
  margin-top: 14px;
}
footer {
  background: #341e2b;
  color: #ffeef5;
  padding: 65px 6% 22px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
}
.footer-logo {
  width: 270px;
  margin-bottom: 20px;
  border-radius: 2px;
}
.footer-top p {
  font-size: 14px;
  color: #e7c2d2;
}
.footer-top a {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  overflow-wrap: anywhere;
}
.footer-bottom {
  border-top: 1px solid #765164;
  padding-top: 23px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 12px;
  color: #e7c2d2;
}
.admin {
  max-width: 1100px;
  margin: 60px auto;
  padding: 24px;
}
.admin h1 {
  font: 44px Georgia,serif;
  margin-bottom: 20px;
}
.admin input {
  border: 1px solid #d8b5c4;
  padding: 8px;
}
.admin-card {
  border: 1px solid #d8b5c4;
  padding: 22px;
  margin: 20px 0;
  overflow-wrap: anywhere;
}
.admin-card button {
  margin: 8px;
  padding: 10px;
  border: 1px solid #a52158;
}
.admin-card p {
  margin: 8px 0;
}
@media (min-width:1500px) {
  .hero,.section,.booking-section {
    padding-left: calc((100vw - 1320px)/2);
    padding-right: calc((100vw - 1320px)/2);
  }
}
@media (max-width:900px) {
  .nav {
    gap: 16px;
  }
  .hero {
    gap: 4%;
    min-height: 650px;
  }
  .hero-photo {
    height: 500px;
  }
  .hero h1 {
    font-size: 67px;
  }
  .service-grid {
    grid-template-columns: repeat(2,1fr);
  }
  .gallery-item img {
    height: 310px;
  }
  .booking-section {
    gap: 5%;
    grid-template-columns: 1fr 1.25fr;
  }
  .booking-form {
    padding: 24px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .cinema {
    height: 550px;
  }
}
@media (max-width:650px) {
  html {
    scroll-padding-top: 90px;
  }
  .header {
    padding: 18px 6%;
  }
  .wordmark {
    font-size: 23px;
  }
  .menu {
    display: block;
  }
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 25px;
    background: #fffafb;
    border-bottom: 1px solid #e8cbd7;
  }
  .nav.open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  .hero {
    grid-template-columns: 1fr;
    padding: 40px 6% 65px;
    gap: 32px;
  }
  .hero h1 {
    font-size: 62px;
    margin: 20px 0;
  }
  .hero-copy .eyebrow {
    font-size: 10px;
  }
  .hero-photo {
    height: 480px;
    max-width: 440px;
    width: 100%;
    justify-self: center;
    border-radius: 200px 200px 2px 2px;
  }
  .hero .intro {
    font-size: 16px;
    max-width: 310px;
  }
  .discover {
    bottom: 22px;
    left: 6%;
  }
  .ribbon {
    justify-content: center;
    text-align: center;
    padding: 17px;
  }
  .ribbon span:first-child {
    font-size: 21px;
  }
  .ribbon span:nth-child(2),.ribbon span:last-child {
    display: none;
  }
  .section {
    padding: 70px 6%;
  }
  .section-heading {
    display: block;
    margin-bottom: 35px;
  }
  .section-heading>p,.section-heading>a {
    margin-top: 22px;
  }
  .section h2,.booking-section h2 {
    font-size: 45px;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .service {
    min-height: 250px;
    padding: 25px;
  }
  .service p {
    font-size: 16px;
  }
  .service a {
    font-size: 15px;
  }
  .cinema {
    height: 500px;
  }
  .cinema img {
    object-position: 57% center;
  }
  .cinema-title {
    font-size: 55px;
  }
  .cinema>div {
    left: 6%;
    top: 65%;
  }
  .gallery {
    grid-template-columns: 1fr 1fr;
    gap: 22px 14px;
  }
  .gallery-item:nth-child(3n+2) {
    margin-top: 0;
  }
  .gallery-item:nth-child(even) {
    margin-top: 35px;
  }
  .gallery-item img {
    height: 255px;
  }
  .gallery-item figcaption {
    font-size: 9px;
  }
  .gallery-item.item-4 img {
    height: 230px;
  }
  .booking-section {
    display: block;
    padding: 65px 6%;
  }
  .booking-intro {
    position: static;
    margin-bottom: 35px;
  }
  .booking-form {
    padding: 22px 18px;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .footer-bottom {
    flex-direction: column;
  }
  .footer-top a {
    font-size: 14px;
  }
  .option small,.help,.consent {
    font-size: 13px !important;
  }
}
@media (prefers-reduced-motion:reduce) {
  html {
    scroll-behavior: auto;
  }
  *,*:before,*:after {
    animation: none !important;
    transition: none !important;
  }
  .cinema {
    clip-path: none !important;
  }
}
.header {
  padding-top: 10px;
  padding-bottom: 10px;
}
.brand-logo {
  display: block;
  flex-shrink: 0;
  width: 146px;
  height: 104px;
  overflow: hidden;
  border-radius: 2px;
  background: #aaa9b1;
}
.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.42);
}
.hero-brand {
  width: min(330px,100%);
  aspect-ratio: 1.42;
  overflow: hidden;
  margin-bottom: 26px;
  border-radius: 2px;
  background: #aaa9b1;
}
.hero-brand img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.42);
}
.hero h1 {
  font-size: clamp(54px,5.7vw,86px);
  margin-top: 22px;
  margin-bottom: 22px;
}
html {
  scroll-padding-top: 140px;
}
@media (max-width:650px) {
  .brand-logo {
    width: 126px;
    height: 90px;
  }
  .hero-brand {
    width: 260px;
    max-width: 100%;
    margin-bottom: 25px;
  }
  .hero {
    padding-top: 28px;
  }
  .hero h1 {
    font-size: 54px;
  }
  .header {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  html {
    scroll-padding-top: 124px;
  }
}
@property --tw-translate-x {
  syntax: "*";
  inherits: false;
  initial-value: 0;
}
@property --tw-translate-y {
  syntax: "*";
  inherits: false;
  initial-value: 0;
}
@property --tw-translate-z {
  syntax: "*";
  inherits: false;
  initial-value: 0;
}
@property --tw-border-style {
  syntax: "*";
  inherits: false;
  initial-value: solid;
}
@property --tw-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}
@property --tw-shadow-color {
  syntax: "*";
  inherits: false;
}
@property --tw-shadow-alpha {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 100%;
}
@property --tw-inset-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}
@property --tw-inset-shadow-color {
  syntax: "*";
  inherits: false;
}
@property --tw-inset-shadow-alpha {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 100%;
}
@property --tw-ring-color {
  syntax: "*";
  inherits: false;
}
@property --tw-ring-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}
@property --tw-inset-ring-color {
  syntax: "*";
  inherits: false;
}
@property --tw-inset-ring-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}
@property --tw-ring-inset {
  syntax: "*";
  inherits: false;
}
@property --tw-ring-offset-width {
  syntax: "<length>";
  inherits: false;
  initial-value: 0px;
}
@property --tw-ring-offset-color {
  syntax: "*";
  inherits: false;
  initial-value: #fff;
}
@property --tw-ring-offset-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}
@layer properties {
  @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
    :root, :host {
      --shimmer-angle: 20deg;
    }
    *, ::before, ::after, ::backdrop {
      --tw-translate-x: 0;
      --tw-translate-y: 0;
      --tw-translate-z: 0;
      --tw-border-style: solid;
      --tw-shadow: 0 0 #0000;
      --tw-shadow-color: initial;
      --tw-shadow-alpha: 100%;
      --tw-inset-shadow: 0 0 #0000;
      --tw-inset-shadow-color: initial;
      --tw-inset-shadow-alpha: 100%;
      --tw-ring-color: initial;
      --tw-ring-shadow: 0 0 #0000;
      --tw-inset-ring-color: initial;
      --tw-inset-ring-shadow: 0 0 #0000;
      --tw-ring-inset: initial;
      --tw-ring-offset-width: 0px;
      --tw-ring-offset-color: #fff;
      --tw-ring-offset-shadow: 0 0 #0000;
      --tw-animation-delay: 0s;
      --tw-animation-direction: normal;
      --tw-animation-duration: initial;
      --tw-animation-fill-mode: none;
      --tw-animation-iteration-count: 1;
      --tw-enter-blur: 0;
      --tw-enter-opacity: 1;
      --tw-enter-rotate: 0;
      --tw-enter-scale: 1;
      --tw-enter-translate-x: 0;
      --tw-enter-translate-y: 0;
      --tw-exit-blur: 0;
      --tw-exit-opacity: 1;
      --tw-exit-rotate: 0;
      --tw-exit-scale: 1;
      --tw-exit-translate-x: 0;
      --tw-exit-translate-y: 0;
      --scroll-fade-t: 0px;
      --scroll-fade-b: 0px;
      --scroll-fade-s: 0px;
      --scroll-fade-e: 0px;
      --scroll-fade-mask: initial;
      --shimmer-image: initial;
      --shimmer-text-fill: initial;
    }
  }
}

.session-bar{display:flex;gap:20px;align-items:center;justify-content:flex-end;padding:20px}.login{max-width:550px}.login label{display:block;margin:16px 0}.login input{display:block;width:100%;margin-top:6px}.admin h2{margin-top:24px}.admin input{max-width:100%}.admin-card label{display:inline-block;margin:8px}
