:root {
  --porcelain: #f7f3f0;
  --paper: #fffdfb;
  --plum: #681f3b;
  --plum-dark: #35101f;
  --amber: #c48a42;
  --rose: #d9a9b2;
  --ink: #19171a;
  --muted: #6d6569;
  --line: rgba(25, 23, 26, 0.16);
  --display: "Prata", Georgia, serif;
  --body: "Manrope", system-ui, sans-serif;
  --page: min(1280px, calc(100% - 40px));
  --shadow: 0 24px 80px rgba(53, 16, 31, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--porcelain);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button, a, select { cursor: pointer; }
:focus-visible { outline: 3px solid var(--amber); outline-offset: 4px; }
.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;
}
.skip-link {
  position: fixed; top: 12px; left: 12px; z-index: 100;
  padding: 10px 16px; color: white; background: var(--ink);
  transform: translateY(-150%); transition: transform 180ms ease;
}
.skip-link:focus { transform: translateY(0); }
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 50;
  display: grid; grid-template-columns: auto 1fr auto auto;
  align-items: center; gap: 28px; min-height: 78px;
  padding: 12px max(20px, calc((100vw - 1280px) / 2));
  color: white;
  background: linear-gradient(to bottom, rgba(25,23,26,.72), transparent);
  transition: color 240ms ease, background 240ms ease, box-shadow 240ms ease;
}
.site-header.is-scrolled {
  color: var(--ink); background: rgba(247, 243, 240, 0.94);
  box-shadow: 0 1px 0 var(--line); backdrop-filter: blur(18px);
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; letter-spacing: .24em; }
.brand-logo { width: 124px; height: 46px; object-fit: contain; transition: filter 240ms ease; }
.site-header.is-scrolled .brand-logo { filter: brightness(0); }
.brand-mark {
  display: inline-grid; place-items: center;
  width: 42px; aspect-ratio: 1; border: 1px solid currentColor;
  border-radius: 50%; font-family: var(--display); font-size: 24px; letter-spacing: 0;
}
.site-nav { justify-self: center; display: flex; gap: 28px; font-size: 14px; font-weight: 600; }
.site-nav a { position: relative; padding: 12px 0; }
.site-nav a::after {
  content: ""; position: absolute; inset: auto 0 7px;
  height: 1px; background: currentColor; transform: scaleX(0); transform-origin: right;
  transition: transform 220ms ease;
}
.site-nav a:hover::after, .site-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.language-switcher { display: flex; gap: 3px; padding: 3px; border: 1px solid currentColor; border-radius: 99px; }
.language-switcher button {
  min-width: 34px; min-height: 34px; padding: 0 7px;
  color: inherit; background: transparent; border: 0; border-radius: 99px;
  font-size: 11px; font-weight: 700;
}
.language-switcher button[aria-pressed="true"] { color: var(--plum-dark); background: var(--amber); }
.header-cta {
  display: inline-grid; place-items: center; min-height: 46px; padding: 0 20px;
  color: var(--plum-dark); background: var(--amber); font-size: 13px; font-weight: 700;
  transition: transform 180ms ease, background 180ms ease;
}
.header-cta:hover { transform: translateY(-2px); background: #d29a56; }
.menu-toggle { display: none; color: inherit; background: transparent; border: 0; }
.section-shell { width: var(--page); margin-inline: auto; padding-block: 120px; }
.hero { position: relative; min-height: 760px; height: 100svh; overflow: hidden; color: white; background: var(--plum-dark); }
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(31,8,17,.86) 0%, rgba(49,15,29,.58) 33%, rgba(30,12,20,.08) 65%),
    linear-gradient(0deg, rgba(20,8,13,.54), transparent 45%);
}
.hero-content {
  position: relative; z-index: 2; display: flex; flex-direction: column; justify-content: center;
  width: var(--page); height: 100%; margin-inline: auto; padding-top: 80px;
}
.eyebrow, .section-kicker {
  margin: 0 0 22px; color: var(--amber); font-size: 12px; font-weight: 700;
  letter-spacing: .19em; text-transform: uppercase;
}
.eyebrow::before, .section-kicker::before { content: ""; display: inline-block; width: 38px; height: 1px; margin: 0 12px 4px 0; background: currentColor; }
.hero h1 {
  max-width: 740px; margin: 0; font-family: var(--display); font-size: clamp(58px, 7.4vw, 118px);
  font-weight: 400; line-height: .98; letter-spacing: -.045em;
}
.hero-copy { max-width: 500px; margin: 34px 0 0; color: rgba(255,255,255,.8); font-size: clamp(17px, 2vw, 21px); }
.hero-actions { display: flex; align-items: center; gap: 32px; margin-top: 38px; }
.button {
  display: inline-grid; place-items: center; min-height: 54px; padding: 0 28px;
  border: 0; font-size: 14px; font-weight: 700; transition: transform 180ms ease, background 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--plum-dark); background: var(--amber); }
.button-primary:hover { background: #d49e5b; }
.text-link { display: inline-flex; align-items: center; gap: 14px; min-height: 44px; border-bottom: 1px solid rgba(255,255,255,.5); }
.hero-note {
  position: absolute; right: max(20px, calc((100vw - 1280px) / 2)); bottom: 34px; z-index: 2;
  margin: 0; font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  writing-mode: vertical-rl;
}
.hero::after {
  content: ""; position: absolute; z-index: 1; right: 13%; bottom: -25%;
  width: 36vw; height: 55vw; max-height: 800px; border: 2px solid rgba(196,138,66,.55);
  border-radius: 50%; transform: rotate(22deg); pointer-events: none;
}
.intro { padding-bottom: 80px; }
.intro-grid { display: grid; grid-template-columns: 1.4fr .6fr; gap: 11vw; align-items: end; }
.intro h2, .section-heading h2, .about h2, .careers h2, .booking h2 {
  margin: 0; font-family: var(--display); font-size: clamp(40px, 5vw, 76px);
  font-weight: 400; line-height: 1.08; letter-spacing: -.035em;
}
.intro-grid > p, .section-heading > p { margin: 0; color: var(--muted); }
.section-heading {
  display: grid; grid-template-columns: 1.2fr .55fr; gap: 8vw; align-items: end;
  margin-bottom: 54px;
}
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card {
  position: relative; min-height: 310px; padding: 32px;
  border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
  transition: color 220ms ease, background 220ms ease, transform 220ms ease;
}
.service-card-featured { background: rgba(217,169,178,.25); }
.service-card-dark { color: white; background: var(--plum-dark); }
@media (hover: hover) and (pointer: fine) {
  .service-card:hover {
    z-index: 2; transform: translateY(-5px); background: var(--paper); box-shadow: var(--shadow);
  }
  .service-card-dark:hover { color: white; background: var(--plum-dark); }
}
.service-card h3 { margin: 0 0 12px; font-family: var(--display); font-size: 28px; font-weight: 400; }
.service-card p { max-width: 310px; margin: 0 0 28px; color: var(--muted); font-size: 14px; }
.service-card-dark p { color: rgba(255,255,255,.66); }
.service-card-brows {
  grid-column: 1 / -1; min-height: 250px; padding-right: 42%; background: #e5c59e;
}
.service-card-brows h3 { max-width: 620px; font-size: clamp(30px, 3vw, 46px); }
.service-card-brows p { max-width: 540px; }
.service-card a {
  position: absolute; left: 32px; bottom: 28px; display: inline-flex; align-items: center;
  min-height: 44px; font-size: 13px; font-weight: 700; border-bottom: 1px solid currentColor;
}
.service-card a::after { content: "↗"; margin-left: 8px; color: var(--amber); }
.about {
  display: grid; grid-template-columns: 1fr 1fr; min-height: 760px;
  color: white; background: var(--plum-dark); overflow: hidden;
}
.about-art { position: relative; display: grid; place-items: center; min-height: 650px; background: #a86f42; overflow: hidden; }
.about-art strong { position: relative; z-index: 2; font-family: var(--display); font-size: clamp(220px, 32vw, 520px); font-weight: 400; line-height: 1; color: var(--plum-dark); }
.amber-orbit {
  position: absolute; width: 54%; aspect-ratio: 1; border-radius: 58% 42% 61% 39%;
  background: radial-gradient(circle at 35% 30%, #ffd48d, var(--amber) 45%, #8c451d 100%);
  box-shadow: inset -30px -20px 60px rgba(72,26,12,.35), 0 35px 90px rgba(0,0,0,.2);
  transform: rotate(-18deg);
}
.plum-stroke {
  position: absolute; width: 110%; height: 20%; left: -8%; top: 44%; border-radius: 50%;
  background: var(--plum); transform: rotate(-12deg); filter: blur(1px);
}
.about-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(50px, 8vw, 130px); }
.about-copy > p:not(.section-kicker) { max-width: 560px; margin: 32px 0 44px; color: rgba(255,255,255,.7); }
.principles { display: grid; margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.2); }
.principles li { display: grid; grid-template-columns: 52px 1fr; align-items: center; min-height: 68px; border-bottom: 1px solid rgba(255,255,255,.2); }
.principles span { color: var(--amber); font-size: 11px; }
.principles strong { font-size: 14px; font-weight: 600; }
.gallery { overflow: hidden; }
.gallery-grid {
  display: grid; grid-template-columns: 1.08fr .92fr; grid-template-rows: repeat(2, 310px); gap: 20px;
}
.gallery-item { margin: 0; overflow: hidden; background: var(--rose); }
.gallery-item-tall { grid-row: 1 / 3; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 500ms cubic-bezier(.2,.65,.3,1);
}
@media (hover: hover) and (pointer: fine) {
  .gallery-item:hover img { transform: scale(1.025); }
}
.reviews { overflow: hidden; }
.reviews-heading { margin-bottom: 70px; }
.sample-label { padding: 16px; border-left: 2px solid var(--amber); font-size: 12px; }
.reviews-track { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.review-card {
  display: flex; flex-direction: column; min-height: 350px; padding: 34px;
  background: var(--paper); border: 1px solid transparent; transition: transform 220ms ease, border-color 220ms ease;
}
.review-card:nth-child(2) { transform: translateY(38px); }
.review-card:hover { border-color: var(--amber); }
.stars { color: var(--amber); letter-spacing: .2em; }
.review-card blockquote { margin: 46px 0 32px; font-family: var(--display); font-size: clamp(20px, 2vw, 27px); line-height: 1.5; }
.review-card p { display: flex; justify-content: space-between; gap: 16px; margin: auto 0 0; font-size: 12px; }
.review-card p span { color: var(--muted); text-align: right; }
.review-controls { display: none; align-items: center; justify-content: center; gap: 24px; margin-top: 38px; }
.review-controls button { width: 46px; height: 46px; color: var(--ink); background: transparent; border: 1px solid var(--ink); border-radius: 50%; }
.review-count { font-size: 12px; letter-spacing: .1em; }
.careers {
  display: grid; grid-template-columns: .9fr 1.1fr; gap: 9vw;
  padding: 120px max(20px, calc((100vw - 1280px) / 2)); color: white; background: var(--plum-dark);
}
.careers-copy > p:not(.section-kicker) { max-width: 520px; margin: 30px 0 36px; color: rgba(255,255,255,.7); }
.careers-button { color: var(--plum-dark); background: var(--amber); }
.careers-button:hover { background: #d49e5b; }
.career-roles { align-self: center; margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.22); }
.career-roles li {
  display: flex; align-items: center; min-height: 94px; border-bottom: 1px solid rgba(255,255,255,.22);
  font-family: var(--display); font-size: clamp(26px, 3vw, 42px); line-height: 1.15;
}
.booking {
  display: grid; grid-template-columns: .85fr 1.15fr; gap: 8vw;
  padding: 120px max(20px, calc((100vw - 1280px) / 2)); background: var(--rose);
}
.booking-intro > p:not(.section-kicker) { max-width: 520px; margin: 30px 0 44px; }
.booking-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; padding-top: 24px; border-top: 1px solid rgba(25,23,26,.25); }
.booking-meta p { display: grid; gap: 5px; margin: 0; }
.booking-meta span { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.booking-meta strong { font-size: 13px; }
.booking-form {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  align-self: center; padding: clamp(28px, 4vw, 56px); background: var(--paper); box-shadow: var(--shadow);
}
.field { display: grid; gap: 8px; }
.field-wide { grid-column: 1 / -1; }
.field label { font-size: 12px; font-weight: 700; }
.field input, .field select {
  width: 100%; min-height: 52px; padding: 0 14px; color: var(--ink);
  background: transparent; border: 0; border-bottom: 1px solid var(--line); border-radius: 0;
}
.field input:focus, .field select:focus { border-color: var(--plum); outline: 0; box-shadow: 0 2px 0 var(--plum); }
.field [aria-invalid="true"] { border-color: #a61b3c; }
.field-error { min-height: 18px; color: #8b1731; font-size: 11px; }
.consent { display: flex; align-items: flex-start; gap: 12px; color: var(--muted); font-size: 12px; }
.consent input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--plum); }
.call-note { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.6; }
.button-submit { color: white; background: var(--plum); }
.button-submit:hover { background: var(--plum-dark); }
.form-status { min-height: 24px; margin: 0; font-size: 13px; }
.site-footer {
  display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 60px;
  padding: 80px max(20px, calc((100vw - 1280px) / 2)) 28px;
  color: white; background: var(--ink);
}
.footer-brand { display: block; }
.footer-logo { width: 170px; height: auto; object-fit: contain; }
.footer-brand p { max-width: 340px; color: rgba(255,255,255,.6); }
.site-footer > div:not(.footer-brand) { display: flex; flex-direction: column; align-items: flex-start; }
.site-footer a, .site-footer address, .footer-hours { color: rgba(255,255,255,.72); font-style: normal; font-size: 14px; line-height: 1.7; }
.site-footer a { display: flex; align-items: center; min-height: 44px; transition: color 180ms ease; }
.site-footer a:hover { color: var(--amber); }
.footer-hours { margin: 0; }
.footer-label { margin: 0 0 18px; color: var(--amber); font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.footer-bottom { grid-column: 1 / -1; margin: 28px 0 0; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.15); color: rgba(255,255,255,.46); font-size: 11px; }

@media (max-width: 1050px) {
  .site-header { grid-template-columns: auto auto 1fr auto; gap: 18px; }
  .site-nav { gap: 16px; }
  .header-cta { display: none; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .about-copy { padding: 64px 48px; }
  .site-footer { grid-template-columns: 1.2fr repeat(3, .8fr); gap: 34px; }
}

@media (max-width: 820px) {
  :root { --page: min(100% - 32px, 680px); }
  .site-header { grid-template-columns: auto 1fr auto; gap: 8px; min-height: 70px; }
  .brand { grid-row: 1; }
  .menu-toggle { grid-column: 3; grid-row: 1; justify-self: end; display: grid; gap: 7px; width: 44px; height: 44px; padding: 12px 8px; }
  .menu-toggle span:not(.sr-only) { display: block; width: 28px; height: 1px; background: currentColor; transition: transform 180ms ease; }
  .menu-toggle[aria-expanded="true"] span:nth-last-child(2) { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .site-nav {
    position: fixed; inset: 70px 0 0; display: flex; flex-direction: column; justify-content: center;
    height: calc(100dvh - 70px);
    gap: 8px; padding: 32px; color: white; background: var(--plum-dark);
    justify-self: stretch; width: 100%; visibility: hidden; pointer-events: none;
    transform: translateX(100%); transition: transform 240ms ease, visibility 0s linear 240ms;
  }
  .site-nav.is-open {
    visibility: visible; pointer-events: auto; transform: translateX(0); transition-delay: 0s;
  }
  .site-nav a { font-family: var(--display); font-size: 36px; font-weight: 400; }
  .language-switcher { grid-column: 2; grid-row: 1; justify-self: end; }
  .hero { min-height: 680px; }
  .hero-image { object-position: 60% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(31,8,17,.9), rgba(49,15,29,.4) 75%); }
  .hero-content { padding-top: 100px; }
  .hero h1 { font-size: clamp(52px, 12vw, 82px); }
  .hero-note { display: none; }
  .hero::after { right: -20%; width: 74vw; height: 110vw; }
  .section-shell { padding-block: 90px; }
  .intro-grid, .section-heading { grid-template-columns: 1fr; gap: 28px; }
  .about { grid-template-columns: 1fr; }
  .about-art { min-height: 520px; }
  .gallery-grid { grid-template-rows: repeat(2, 260px); }
  .reviews-track { display: block; }
  .review-card { display: none; min-height: 330px; }
  .review-card.is-active { display: flex; }
  .review-card:nth-child(2) { transform: none; }
  .review-controls { display: flex; }
  .careers { grid-template-columns: 1fr; gap: 54px; padding-block: 90px; }
  .booking { grid-template-columns: 1fr; padding-block: 90px; }
  .site-footer { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  :root { --page: calc(100% - 28px); }
  .site-header { gap: 6px; padding-inline: 10px; }
  .brand-logo { width: 94px; height: 42px; }
  .language-switcher { gap: 1px; padding: 2px; }
  .language-switcher button { min-width: 34px; min-height: 44px; padding: 0 3px; font-size: 10px; }
  .hero { min-height: 660px; }
  .hero-content { justify-content: flex-end; padding-bottom: 70px; }
  .hero h1 { font-size: clamp(47px, 14.5vw, 68px); }
  .hero-copy { max-width: 330px; margin-top: 24px; font-size: 16px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 15px; margin-top: 28px; }
  .text-link { font-size: 13px; }
  .intro h2, .section-heading h2, .about h2, .careers h2, .booking h2 { font-size: clamp(37px, 11vw, 52px); }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 240px; padding: 28px; }
  .service-card-brows { grid-column: auto; padding-right: 28px; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: none; gap: 12px; }
  .gallery-item { aspect-ratio: 4 / 3; }
  .gallery-item-tall { grid-row: auto; aspect-ratio: 4 / 5; }
  .about-art { min-height: 390px; }
  .about-copy { padding: 70px 24px; }
  .reviews-heading { margin-bottom: 40px; }
  .review-card { padding: 28px; }
  .review-card blockquote { margin-top: 34px; font-size: 21px; }
  .booking { padding-inline: 14px; }
  .careers { padding-inline: 24px; }
  .career-roles li { min-height: 76px; font-size: 29px; }
  .booking-form { grid-template-columns: 1fr; padding: 28px 20px; }
  .field { grid-column: 1 / -1; }
  .booking-meta { grid-template-columns: 1fr; gap: 16px; }
  .site-footer { grid-template-columns: 1fr; padding-top: 64px; }
  .footer-brand, .footer-bottom { grid-column: 1; }
}

@keyframes rise-in {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-content > * { animation: rise-in 650ms both; }
.hero-content > :nth-child(2) { animation-delay: 90ms; }
.hero-content > :nth-child(3) { animation-delay: 170ms; }
.hero-content > :nth-child(4) { animation-delay: 250ms; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 520ms ease, transform 520ms ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
