:root {
  --ink: #1f1d1a;
  --muted: #6d675f;
  --paper: #fbfaf7;
  --soft: #f1ebe3;
  --line: #ded3c6;
  --sage: #647a6b;
  --sage-dark: #30483b;
  --rose: #b77c6f;
  --wine: #543139;
  --gold: #c7a46a;
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(31, 29, 26, 0.14);
  --max: 1180px;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.inline-link {
  color: var(--gold);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.dark-link {
  color: var(--sage-dark);
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

body.modal-open {
  overflow: hidden;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 14px max(22px, calc((100vw - var(--max)) / 2));
  color: var(--white);
  background: linear-gradient(180deg, rgba(20, 17, 14, 0.58), rgba(20, 17, 14, 0.18));
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(251, 250, 247, 0.94);
  border-bottom: 1px solid rgba(31, 29, 26, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  overflow: hidden;
  background: #2d151c;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.38), 0 8px 20px rgba(31, 29, 26, 0.18);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.95rem;
  font-weight: 700;
  flex: 0 0 auto;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
  letter-spacing: 0;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  line-height: 1.05;
}

.brand small {
  margin-top: 3px;
  font-size: 0.72rem;
  text-transform: uppercase;
  color: currentColor;
  opacity: 0.72;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.94rem;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  color: currentColor;
}

.site-nav a:hover {
  background: rgba(255, 255, 255, 0.14);
}

.site-header.is-scrolled .site-nav a:hover,
.site-header.is-open .site-nav a:hover {
  background: rgba(31, 29, 26, 0.07);
}

.nav-book {
  margin-left: 8px;
  border: 1px solid currentColor;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  margin-left: 8px;
  padding: 3px;
  border: 1px solid currentColor;
  border-radius: 999px;
}

.language-switcher button {
  display: inline-grid;
  min-width: 34px;
  min-height: 32px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  color: currentColor;
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 900;
}

.language-switcher button.is-active {
  color: var(--ink);
  background: var(--white);
}

.site-header.is-scrolled .language-switcher button.is-active,
.site-header.is-open .language-switcher button.is-active {
  color: var(--white);
  background: var(--wine);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: currentColor;
  background: transparent;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 2px;
}

.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 86svh;
  padding: 132px max(24px, calc((100vw - var(--max)) / 2)) 70px;
  overflow: hidden;
  color: var(--white);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(18, 15, 13, 0.78) 0%, rgba(18, 15, 13, 0.48) 45%, rgba(18, 15, 13, 0.2) 100%),
    linear-gradient(0deg, rgba(18, 15, 13, 0.62) 0%, rgba(18, 15, 13, 0.05) 50%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--sage-dark);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: 5.7rem;
  line-height: 0.95;
}

h2 {
  margin-bottom: 18px;
  font-size: 3rem;
  line-height: 1.04;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
  line-height: 1.16;
}

.hero-copy {
  max-width: 660px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.2rem;
}

.hero-actions,
.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0;
}

.button.primary {
  color: var(--ink);
  background: var(--gold);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.62);
}

.button.light.primary {
  background: var(--white);
}

.button.light.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.72);
}

.button:hover {
  transform: translateY(-1px);
}

.hero-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(100%, 820px);
  margin: 42px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
}

.hero-details div {
  padding: 18px;
  background: rgba(17, 14, 12, 0.32);
}

.hero-details dt {
  margin-bottom: 4px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-details dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.93rem;
}

.section-pad {
  padding: 92px max(24px, calc((100vw - var(--max)) / 2));
  scroll-margin-top: 90px;
}

.intro {
  background: var(--sage-dark);
  color: var(--white);
  padding-top: 46px;
  padding-bottom: 46px;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.72fr);
  gap: 42px;
  align-items: end;
}

.intro h2 {
  max-width: 720px;
  margin-bottom: 0;
}

.intro p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.48fr);
  gap: 36px;
  align-items: end;
  margin-bottom: 32px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -18px;
}

.section-heading p:last-child {
  margin: 0;
  color: var(--muted);
}

.services-section {
  background: var(--paper);
}

.service-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 26px;
}

.tab {
  min-height: 40px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.tab.is-active {
  color: var(--white);
  border-color: var(--sage-dark);
  background: var(--sage-dark);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 265px), 1fr));
  gap: 14px;
}

.service-card {
  display: flex;
  min-height: 244px;
  flex-direction: column;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 24px rgba(31, 29, 26, 0.04);
}

.service-card.is-hidden {
  display: none;
}

.service-card > span {
  margin-bottom: 14px;
  color: var(--sage);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.service-card p {
  margin-bottom: 18px;
  color: var(--muted);
}

.featured-service {
  border-color: rgba(84, 49, 57, 0.26);
  background: #fcf7f4;
}

.service-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(31, 29, 26, 0.1);
}

.service-meta b {
  color: var(--muted);
  font-size: 0.9rem;
}

.service-meta strong {
  color: var(--wine);
  font-size: 1.25rem;
}

.service-book-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  margin-top: 14px;
  padding: 0 15px;
  border: 1px solid var(--sage-dark);
  border-radius: 999px;
  color: var(--sage-dark);
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 850;
}

.service-book-link:hover {
  color: var(--white);
  background: var(--sage-dark);
}

.equipment {
  background: #f8f2ec;
}

.equipment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr));
  gap: 16px;
}

.equipment-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(31, 29, 26, 0.1);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(31, 29, 26, 0.05);
}

.equipment-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: #fbfaf7;
}

.equipment-card div {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px;
}

.equipment-card span {
  margin-bottom: 10px;
  color: var(--sage);
  font-size: 0.73rem;
  font-weight: 900;
  text-transform: uppercase;
}

.equipment-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.equipment-link {
  align-self: flex-start;
  margin-top: auto;
}

.equipment-note {
  max-width: 820px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.experience {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
  gap: 58px;
  align-items: center;
  background: var(--soft);
}

.image-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.image-collage img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  border-radius: var(--radius);
}

.image-collage img:nth-child(2),
.image-collage img:nth-child(4) {
  transform: translateY(28px);
}

.experience-copy p {
  color: var(--muted);
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink);
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48em;
  width: 13px;
  height: 13px;
  border: 2px solid var(--rose);
  border-radius: 50%;
  background: var(--paper);
}

.about {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(260px, 0.58fr);
  gap: 72px;
  align-items: center;
  background: var(--paper);
}

.gallery {
  background: var(--paper);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.75fr;
  gap: 14px;
}

.gallery-grid figure {
  position: relative;
  min-height: 280px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--soft);
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.gallery-wide {
  grid-row: span 2;
}

.gallery-wide img {
  min-height: 574px;
}

.gallery-grid figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  max-width: calc(100% - 28px);
  padding: 8px 11px;
  border-radius: 999px;
  color: var(--ink);
  background: rgba(251, 250, 247, 0.86);
  font-size: 0.86rem;
  font-weight: 850;
  backdrop-filter: blur(10px);
}

.about-copy p {
  max-width: 680px;
  color: var(--muted);
}

.portrait {
  margin: 0;
}

.portrait img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.portrait figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.92rem;
}

.booking {
  background: var(--wine);
  color: var(--white);
}

.booking-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: end;
}

.booking-panel p:not(.eyebrow) {
  max-width: 680px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.studio-address {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-style: normal;
}

.studio-address span {
  display: block;
  margin-bottom: 5px;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.studio-address .room-number {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
  font-weight: 800;
}

.studio-contact {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-links a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
}

.contact-links a:hover {
  color: var(--wine);
  background: var(--white);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  gap: 30px;
  align-items: start;
  padding: 46px max(24px, calc((100vw - var(--max)) / 2));
  border-top: 1px solid var(--line);
  background: var(--ink);
  color: var(--white);
}

.site-footer p {
  max-width: 460px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
}

.footer-links a:hover {
  color: var(--white);
}

.fine-print {
  grid-column: 1 / -1;
  font-size: 0.86rem;
}

.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(20, 17, 14, 0.72);
}

.booking-modal[hidden] {
  display: none;
}

.booking-dialog {
  position: relative;
  width: min(100%, 960px);
  max-height: calc(100svh - 40px);
  overflow: visible;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.booking-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: var(--white);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.booking-form-heading {
  max-width: 520px;
  padding-right: 42px;
}

.booking-form-heading h2 {
  margin-bottom: 8px;
  font-size: 1.9rem;
}

.booking-help {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.92rem;
}

.booking-help a {
  color: var(--sage-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 14px;
}

.booking-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.booking-form > .booking-form-grid,
.booking-form > .slot-fieldset,
.booking-form > label:nth-of-type(3),
.booking-form > .booking-status {
  grid-column: 1 / -1;
}

.booking-form label,
.slot-fieldset {
  display: grid;
  gap: 8px;
  margin: 0;
}

.booking-form label span,
.slot-fieldset legend {
  color: var(--sage-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.booking-form input:not(.sr-only),
.booking-form select,
.booking-form textarea {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 8px 11px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

.booking-form textarea {
  min-height: 62px;
  resize: vertical;
}

.slot-fieldset {
  padding: 0;
  border: 0;
}

.slot-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
  gap: 7px;
  min-height: 40px;
}

.slot-list p {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
}

.slot-button {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--white);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.slot-button:hover,
.slot-button.is-selected {
  color: var(--white);
  border-color: var(--sage-dark);
  background: var(--sage-dark);
}

.booking-status {
  min-height: 20px;
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.booking-status.is-error {
  color: #9b2f2f;
}

.booking-status.is-success {
  color: var(--sage-dark);
}

.booking-form button[type="submit"] {
  grid-column: 1 / -1;
  justify-self: start;
  cursor: pointer;
}

.booking-form button[type="submit"]:disabled {
  cursor: wait;
  opacity: 0.68;
}

@media (max-width: 920px) {
  h1 {
    font-size: 4.2rem;
  }

  h2 {
    font-size: 2.45rem;
  }

  .intro-grid,
  .section-heading,
  .experience,
  .about,
  .gallery-grid,
  .equipment-grid,
  .booking-panel,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .gallery-wide {
    grid-row: auto;
  }

  .gallery-wide img {
    min-height: 340px;
  }

  .booking-actions,
  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 66px;
    padding: 11px 18px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 66px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 18px 18px;
    color: var(--ink);
    background: var(--paper);
    border-bottom: 1px solid rgba(31, 29, 26, 0.1);
    box-shadow: 0 18px 40px rgba(31, 29, 26, 0.12);
  }

  .site-header.is-open .site-nav {
    display: flex;
  }

  .site-nav a {
    justify-content: space-between;
    border-radius: var(--radius);
  }

  .nav-book {
    margin: 8px 0 0;
  }

  .language-switcher {
    align-self: flex-start;
    margin: 10px 0 0;
  }

  .hero {
    min-height: 88svh;
    padding: 106px 20px 46px;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(18, 15, 13, 0.78) 0%, rgba(18, 15, 13, 0.36) 44%, rgba(18, 15, 13, 0.78) 100%);
  }

  h1 {
    font-size: 3.08rem;
    line-height: 1;
  }

  h2 {
    font-size: 2.05rem;
  }

  h3 {
    font-size: 1.22rem;
  }

  .hero-copy {
    font-size: 1.04rem;
  }

  .hero-details {
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  .hero-details div {
    padding: 14px;
  }

  .section-pad {
    padding: 68px 20px;
  }

  .intro {
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .section-heading .eyebrow {
    margin-bottom: 0;
  }

  .service-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .tab {
    border-radius: var(--radius);
  }

  .service-card {
    min-height: 220px;
  }

  .equipment-card img {
    aspect-ratio: 16 / 10;
  }

  .image-collage {
    gap: 8px;
  }

  .image-collage img {
    min-height: 160px;
  }

  .image-collage img:nth-child(2),
  .image-collage img:nth-child(4) {
    transform: translateY(18px);
  }

  .gallery-grid figure,
  .gallery-grid img,
  .gallery-wide img {
    min-height: 240px;
  }

  .button {
    width: 100%;
  }

  .booking-modal {
    align-items: end;
    padding: 12px;
  }

  .booking-dialog {
    max-height: 92vh;
    overflow: auto;
    padding: 24px 18px;
  }

  .booking-form {
    grid-template-columns: 1fr;
  }

  .booking-form-grid {
    grid-template-columns: 1fr;
  }

  .booking-form button[type="submit"] {
    justify-self: stretch;
  }
}

@media (max-width: 420px) {
  .brand strong {
    font-size: 0.98rem;
  }

  .brand small {
    font-size: 0.68rem;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  h1 {
    font-size: 2.62rem;
  }

  .service-tabs {
    grid-template-columns: 1fr;
  }
}
