:root {
  --ink: #161513;
  --muted: #6c6963;
  --white: #ffffff;
  --soft: #f5f3ef;
  --gold: #b6882e;
  --gold-light: #d8b65d;
  --border: #dedad3;
  --serif: "Italiana", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { color: inherit; }

.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: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.7rem 1rem;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 110px;
  padding: 0 5vw;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(20, 18, 15, 0.08);
}
.brand { width: clamp(255px, 22vw, 305px); }
.brand img { width: 100%; height: 82px; object-fit: contain; }
.site-nav { display: flex; align-items: center; gap: clamp(1.6rem, 3vw, 3rem); font-size: 0.88rem; }
.site-nav > a:not(.nav-cta) { position: relative; }
.site-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -0.35rem;
  left: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}
.site-nav > a:hover::after { transform: scaleX(1); }
.nav-cta { padding: 0.72rem 1.35rem; color: var(--white); background: var(--ink); }
.menu-button { display: none; }

.hero {
  display: grid;
  grid-template-columns: 46% 54%;
  min-height: 780px;
  padding-top: 110px;
  background: var(--white);
}
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 7vw 5vw 5vw;
}
.eyebrow {
  margin: 0 0 1.5rem;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--serif); font-weight: 400; }
h1 { margin-bottom: 1.7rem; font-size: clamp(3.6rem, 6vw, 7.5rem); line-height: 0.92; letter-spacing: -0.04em; }
h1 em, h2 em { color: var(--gold); font-style: italic; }
.hero-intro { max-width: 31rem; margin-bottom: 2.3rem; color: var(--muted); font-size: 1.04rem; }
.hero-actions { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0.9rem 1.35rem; font-size: 0.85rem; font-weight: 600; }
.button-primary { color: var(--white); background: var(--gold); transition: background 180ms ease, transform 180ms ease; }
.button-primary:hover { background: #946c20; transform: translateY(-2px); }
.text-link { padding-block: 0.5rem; border-bottom: 1px solid var(--ink); font-size: 0.85rem; }
.text-link span { margin-left: 0.45rem; color: var(--gold); }
.hero-media { position: relative; min-height: 690px; overflow: hidden; }
.hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(255,255,255,0.16), transparent 26%); pointer-events: none; }
.hero-media > img { width: 100%; height: 100%; object-fit: cover; object-position: 57% center; }
.hero-stamp {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 112px;
  aspect-ratio: 1;
  color: var(--gold);
  background: rgba(255,255,255,0.92);
  border-radius: 50%;
  box-shadow: 0 18px 50px rgba(30, 25, 18, 0.14);
}
.hero-stamp span { font-family: var(--serif); font-size: 2rem; line-height: 1; }
.hero-stamp small { margin-top: -1.6rem; font-family: var(--serif); font-style: italic; }

.marquee { overflow: hidden; color: var(--white); background: var(--ink); }
.marquee-track { display: flex; align-items: center; width: max-content; min-height: 84px; animation: marquee 24s linear infinite; }
.marquee span { padding-inline: 2.2rem; font-family: var(--serif); font-size: 1.45rem; letter-spacing: 0.04em; }
.marquee i { width: 5px; aspect-ratio: 1; background: var(--gold-light); border-radius: 50%; }
@keyframes marquee { to { transform: translateX(-50%); } }

.section { padding: clamp(5rem, 9vw, 9rem) 5vw; }
.section-heading { display: grid; grid-template-columns: 30% 70%; align-items: start; margin-bottom: 5rem; }
.section-heading h2, .experience h2, .booking h2, .connect h2 { margin: 0; font-size: clamp(3rem, 5vw, 6rem); line-height: 1; letter-spacing: -0.035em; }
.service { display: grid; grid-template-columns: 10% 1fr auto; align-items: center; gap: 2rem; padding: 2.4rem 0; border-top: 1px solid var(--border); }
.service:last-child { border-bottom: 1px solid var(--border); }
.service-number { color: var(--gold); font-size: 0.75rem; letter-spacing: 0.12em; }
.service h3 { margin-bottom: 0.45rem; font-size: clamp(2rem, 3vw, 3.5rem); line-height: 1.05; }
.service p { max-width: 48rem; margin-bottom: 0; color: var(--muted); }
.service-mark { color: rgba(182, 136, 46, 0.14); font-family: var(--serif); font-size: clamp(3rem, 6vw, 6rem); line-height: 1; }

.experience { display: grid; grid-template-columns: 63% 37%; min-height: 720px; background: var(--soft); }
.experience-card { align-self: center; max-width: 68rem; padding: 8vw 7vw; }
.experience-card > p:not(.eyebrow) { max-width: 42rem; margin: 2.4rem 0 3.2rem; color: var(--muted); font-size: 1.05rem; }
.experience-points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.experience-points span { padding-top: 1rem; border-top: 1px solid #cfc9c0; font-size: 0.86rem; }
.experience-points b { display: block; margin-bottom: 0.5rem; color: var(--gold); font-size: 0.7rem; }
.gold-panel { position: relative; display: flex; flex-direction: column; justify-content: space-between; padding: 4rem 3rem; color: var(--white); background: linear-gradient(145deg, #d1ad50 0%, #a47420 60%, #785016 100%); overflow: hidden; }
.gold-panel::before { content: ""; position: absolute; inset: -20%; background: radial-gradient(circle at 20% 25%, rgba(255,255,255,0.3), transparent 30%); }
.gold-panel > span { position: relative; align-self: flex-end; font-size: 0.72rem; letter-spacing: 0.35em; }
.gold-panel p { position: relative; margin: 0; font-family: var(--serif); font-size: clamp(3rem, 5vw, 5.4rem); line-height: 0.92; }

.booking { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(520px, 1.2fr); gap: clamp(3rem, 8vw, 9rem); align-items: start; color: var(--white); background: var(--ink); }
.booking-intro { position: sticky; top: 2rem; }
.booking-intro > p:not(.eyebrow):not(.booking-note) { max-width: 34rem; margin: 2rem 0 0; color: #c9c4bc; }
.booking-note { margin: 1.2rem 0 0; color: var(--gold-light); font-size: 0.82rem; }
.booking-privacy { max-width: 35rem; margin: 1.6rem 0 0; padding-top: 1.4rem; color: #c9c4bc; font-size: 0.82rem; border-top: 1px solid rgba(255, 255, 255, 0.16); }
.booking-privacy strong { color: var(--white); }
.booking-form { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.booking-honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.field-group { display: grid; gap: 0.55rem; }
.field-full { grid-column: 1 / -1; }
.field-group label { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.03em; }
.field-group label span { color: #8f8a83; font-weight: 400; }
.field-group input,
.field-group select,
.field-group textarea {
  width: 100%;
  min-height: 52px;
  padding: 0.85rem 0;
  color: var(--white);
  background: transparent;
  border: 0;
  border-bottom: 1px solid #56514b;
  border-radius: 0;
  font: inherit;
  font-size: 1rem;
  outline: none;
}
.field-group textarea { resize: vertical; }
.field-group select { color-scheme: dark; }
.field-group input::placeholder,
.field-group textarea::placeholder { color: #7f7a73; }
.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus { border-color: var(--gold-light); box-shadow: 0 1px 0 var(--gold-light); }
.booking-submit { grid-column: 1 / -1; justify-self: start; margin-top: 0.8rem; border: 0; cursor: pointer; }
.booking-submit:disabled { cursor: wait; opacity: 0.68; transform: none; }
.booking-result { margin-top: 0.8rem; padding: 1.5rem; color: var(--ink); background: var(--white); }
.booking-result[hidden] { display: none; }
.booking-result p { white-space: pre-line; }
.booking-result-actions { display: flex; gap: 0.8rem; flex-wrap: wrap; }
.result-button { min-height: 44px; color: var(--white); background: var(--ink); border: 0; cursor: pointer; }
.booking-result small { display: block; min-height: 1.2rem; margin-top: 0.8rem; color: var(--gold); }

.instagram-section { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr); gap: clamp(3rem, 8vw, 9rem); align-items: center; background: var(--white); }
.instagram-copy h2 { margin: 0 0 1.8rem; font-size: clamp(3rem, 5vw, 6rem); line-height: 1; letter-spacing: -0.035em; }
.instagram-copy > p:not(.eyebrow) { max-width: 31rem; margin-bottom: 2rem; color: var(--muted); }
.instagram-embed-wrap { display: grid; min-height: 520px; place-items: center; padding: clamp(1rem, 3vw, 2.5rem); background: var(--soft); border: 1px solid var(--border); }
.instagram-media { width: 100% !important; max-width: 540px !important; min-width: 0 !important; margin: 0 !important; }
.instagram-media > a { display: grid; min-height: 420px; place-items: center; padding: 2rem; color: var(--gold); text-align: center; border: 1px solid var(--border); }

.visit { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr); gap: clamp(3rem, 8vw, 9rem); align-items: start; background: #f4f0e9; }
.visit h2 { margin: 0; font-size: clamp(3rem, 5vw, 6rem); line-height: 1; letter-spacing: -0.035em; }
.visit h2 em { color: var(--gold); font-weight: 400; }
.visit-details { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 5vw, 5rem); padding-top: 0.55rem; }
.visit-label { margin: 0 0 1.4rem; color: var(--gold); font-size: 0.76rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; }
.visit address { margin-bottom: 1.6rem; font-family: var(--serif); font-size: clamp(1.5rem, 2vw, 2.1rem); font-style: normal; line-height: 1.35; }
.visit-address .text-link { display: table; margin-bottom: 0.9rem; }
.visit-address .instagram-link { color: var(--gold); border-bottom-color: var(--gold); }
.visit-hours dl { margin: 0; }
.visit-hours dl div { display: grid; grid-template-columns: 1fr auto; gap: 1.5rem; padding: 1rem 0; border-top: 1px solid rgba(28, 26, 23, 0.16); }
.visit-hours dl div:last-child { border-bottom: 1px solid rgba(28, 26, 23, 0.16); }
.visit-hours dt, .visit-hours dd { margin: 0; }
.visit-hours dd { color: #686057; text-align: right; }

.connect { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 4rem; }
.connect-copy p:last-child { max-width: 42rem; margin: 2rem 0 0; color: var(--muted); }
.circle-link { display: grid; place-content: center; width: clamp(160px, 18vw, 240px); aspect-ratio: 1; color: var(--white); background: var(--ink); border-radius: 50%; text-align: center; transition: background 180ms ease, transform 180ms ease; }
.circle-link:hover { background: var(--gold); transform: rotate(-4deg); }
.circle-link span { font-family: var(--serif); font-size: 1.5rem; }
.circle-link b { color: var(--gold-light); font-size: 1.2rem; }

footer { display: grid; grid-template-columns: 1fr auto auto auto auto; align-items: center; gap: 3rem; padding: 2.2rem 5vw; color: #bfbab2; background: var(--ink); font-size: 0.78rem; }
footer p { margin: 0; }
.footer-brand { color: var(--gold-light); font-size: 0.7rem; letter-spacing: 0.22em; }
.footer-brand span { font-family: var(--serif); font-size: 1.1rem; font-style: italic; letter-spacing: 0; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 700ms ease, transform 700ms ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 860px) {
  .site-header { min-height: 88px; padding-inline: 1.2rem; }
  .brand { width: 215px; }
  .brand img { height: 66px; }
  .menu-button { position: relative; z-index: 2; display: grid; gap: 6px; width: 44px; height: 44px; padding: 12px 9px; background: transparent; border: 0; }
  .menu-button span:not(.sr-only) { display: block; height: 1px; background: var(--ink); transition: transform 180ms ease; }
  .menu-button[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }
  .site-nav { position: absolute; top: 0; right: 0; left: 0; display: grid; gap: 1.2rem; padding: 6.5rem 1.5rem 2rem; background: var(--white); border-bottom: 1px solid var(--border); transform: translateY(-110%); transition: transform 240ms ease; }
  .site-nav.is-open { transform: translateY(0); }
  .nav-cta { text-align: center; }
  .hero { grid-template-columns: 1fr; padding-top: 88px; }
  .hero-copy { min-height: 620px; padding: 7rem 1.4rem 4.5rem; }
  .hero-media { min-height: 560px; }
  .section { padding: 5.5rem 1.4rem; }
  .section-heading { grid-template-columns: 1fr; gap: 1rem; margin-bottom: 3rem; }
  .service { grid-template-columns: 40px 1fr; gap: 1rem; padding: 2rem 0; }
  .service-mark { display: none; }
  .experience { grid-template-columns: 1fr; }
  .experience-card { padding: 5.5rem 1.4rem; }
  .experience-points { grid-template-columns: 1fr; }
  .gold-panel { min-height: 480px; }
  .booking { grid-template-columns: 1fr; }
  .booking-intro { position: static; }
  .instagram-section { grid-template-columns: 1fr; }
  .visit { grid-template-columns: 1fr; }
  .connect { grid-template-columns: 1fr; }
  .circle-link { justify-self: end; }
  footer { grid-template-columns: 1fr; gap: 0.6rem; }
}

@media (max-width: 520px) {
  h1 { font-size: clamp(3.3rem, 16vw, 5rem); }
  .hero-copy { min-height: 570px; }
  .hero-media { min-height: 440px; }
  .hero-stamp { right: 1rem; bottom: 1rem; width: 92px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 1.2rem; }
  .button { width: 100%; }
  .service { align-items: start; }
  .booking-form { grid-template-columns: 1fr; }
  .visit-details { grid-template-columns: 1fr; }
  .field-group, .field-full { grid-column: 1; }
  .booking-submit { width: 100%; }
  .connect { gap: 2.5rem; }
  .circle-link { width: 160px; }
}

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