:root {
  --ink: #0c0c0b;
  --ink-soft: #161714;
  --paper: #f2eee5;
  --paper-deep: #e8e1d4;
  --white: #faf8f2;
  --amber: #c89a62;
  --amber-light: #e3bc83;
  --line: rgba(16, 16, 14, 0.17);
  --line-dark: rgba(255, 255, 255, 0.16);
  --serif: "Instrument Serif", Georgia, serif;
  --sans: "DM Sans", Helvetica, Arial, sans-serif;
  --wrap: min(1180px, calc(100% - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }
a:focus-visible, button:focus-visible { outline: 2px solid var(--amber-light); outline-offset: 4px; }
.wrap { width: var(--wrap); margin-inline: auto; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 100; background: var(--white); padding: 12px 16px; }
.skip-link:focus { top: 16px; }

.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  height: 88px;
  padding: 0 max(24px, calc((100vw - 1180px) / 2));
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.16);
  transition: background .35s ease, height .35s ease, color .35s ease, border-color .35s ease;
}
.site-header.scrolled { height: 72px; background: rgba(12,12,11,.93); backdrop-filter: blur(16px); border-color: rgba(255,255,255,.1); }
.brand { display: inline-flex; align-items: center; gap: 12px; width: max-content; }
.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font: italic 20px/1 var(--serif);
  letter-spacing: -1px;
}
.brand-copy { display: grid; gap: 1px; text-transform: uppercase; }
.brand-copy strong { font-size: 13px; letter-spacing: .2em; }
.brand-copy small { font-size: 8px; letter-spacing: .25em; opacity: .65; }
.desktop-nav { display: flex; align-items: center; gap: 34px; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.desktop-nav a, .footer-links a { position: relative; }
.desktop-nav a::after, .footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 1px;
  background: var(--amber-light);
  transition: right .25s ease;
}
.desktop-nav a:hover::after, .footer-links a:hover::after { right: 0; }
.button {
  min-height: 52px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}
.button:hover { transform: translateY(-2px); }
.button svg, .text-link svg, .map-link svg { width: 16px; fill: none; stroke: currentColor; stroke-width: 1.5; }
.button-header { justify-self: end; min-height: 42px; padding-inline: 20px; border-color: rgba(255,255,255,.55); }
.button-header:hover { background: var(--white); color: var(--ink); }
.menu-toggle { display: none; background: none; border: 0; color: inherit; padding: 8px; }
.menu-toggle span { display: block; width: 25px; height: 1px; background: currentColor; margin: 6px 0; transition: transform .25s ease; }
.mobile-nav { display: none; }

.hero { position: relative; min-height: 840px; height: 100svh; color: var(--white); overflow: hidden; background: #10110f; }
.hero-media { position: absolute; inset: 0; background: url("assets/jrs-hero.jpg") 58% center / cover no-repeat; transform: scale(1.015); animation: hero-settle 1.8s cubic-bezier(.2,.7,.2,1) forwards; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(6,7,6,.95) 0%, rgba(6,7,6,.72) 33%, rgba(6,7,6,.14) 68%, rgba(6,7,6,.2) 100%), linear-gradient(0deg, rgba(5,5,4,.6), transparent 40%); }
.hero-noise { position: absolute; inset: 0; opacity: .1; pointer-events: none; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.25'/%3E%3C/svg%3E"); }
.hero-content { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding-top: 100px; }
.hero-rating { display: flex; gap: 12px; align-items: center; margin-bottom: 26px; font-size: 11px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; }
.stars { color: var(--amber-light); letter-spacing: .12em; }
.hero h1, .section-heading h2, .experience-copy h2, .review-heading h2, .visit-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.04em;
}
.hero h1 { font-size: clamp(76px, 9vw, 138px); line-height: .78; max-width: 720px; }
em { color: var(--amber-light); font-weight: 400; }
.hero-lede { max-width: 540px; margin: 32px 0 0; font-size: clamp(16px, 1.5vw, 19px); line-height: 1.6; color: rgba(255,255,255,.72); }
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 38px; }
.button-primary { background: var(--amber-light); color: var(--ink); }
.button-primary:hover { background: var(--white); }
.text-link { display: inline-flex; align-items: center; gap: 11px; font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.text-link svg { width: 19px; }
.text-link::after { content: ""; position: absolute; }
.hero-footer { position: absolute; z-index: 3; bottom: 32px; left: 50%; transform: translateX(-50%); display: flex; justify-content: space-between; align-items: flex-end; }
.hero-location { display: grid; gap: 7px; text-transform: uppercase; }
.hero-location span { color: var(--amber-light); font-size: 9px; letter-spacing: .2em; }
.hero-location strong { font-size: 11px; letter-spacing: .08em; font-weight: 500; }
.scroll-cue { display: flex; align-items: center; gap: 12px; font-size: 9px; letter-spacing: .18em; text-transform: uppercase; opacity: .75; }
.scroll-cue svg { width: 14px; fill: none; stroke: currentColor; stroke-width: 1; animation: bounce 1.7s ease-in-out infinite; }
.reveal { opacity: 0; transform: translateY(20px); animation: reveal .8s cubic-bezier(.2,.7,.2,1) forwards; }
.reveal-delay-1 { animation-delay: .12s; }.reveal-delay-2 { animation-delay: .24s; }.reveal-delay-3 { animation-delay: .36s; }
@keyframes reveal { to { opacity: 1; transform: translateY(0); } }
@keyframes hero-settle { from { transform: scale(1.065); } to { transform: scale(1.015); } }
@keyframes bounce { 50% { transform: translateY(4px); } }

.marquee { overflow: hidden; background: var(--amber); color: var(--ink); border-block: 1px solid rgba(0,0,0,.15); }
.marquee-track { width: max-content; height: 54px; display: flex; align-items: center; gap: 28px; animation: marquee 28s linear infinite; }
.marquee span { font: 18px/1 var(--serif); font-style: italic; white-space: nowrap; }
.marquee i { width: 4px; height: 4px; border-radius: 50%; background: currentColor; opacity: .55; }
@keyframes marquee { to { transform: translateX(-50%); } }

.section { padding: 132px 0; }
.section-heading { display: grid; grid-template-columns: 1.15fr .85fr; align-items: end; gap: 100px; padding-bottom: 64px; border-bottom: 1px solid var(--line); }
.eyebrow { display: block; margin-bottom: 24px; color: #846340; font-size: 10px; font-weight: 600; letter-spacing: .24em; text-transform: uppercase; }
.section-heading h2, .experience-copy h2, .review-heading h2, .visit-copy h2 { font-size: clamp(56px, 6vw, 88px); line-height: .92; }
.section-heading p { margin: 0 0 8px; max-width: 430px; font-size: 16px; line-height: 1.72; color: rgba(12,12,11,.62); }
.service-row { display: grid; grid-template-columns: 70px 1fr auto; gap: 26px; align-items: center; padding: 34px 0; border-bottom: 1px solid var(--line); transition: padding .25s ease; }
.service-row:hover { padding-left: 12px; }
.service-number { font: italic 16px/1 var(--serif); color: #8f7556; }
.service-row h3 { margin: 0 0 8px; font: 38px/1 var(--serif); letter-spacing: -.02em; }
.service-row p { margin: 0; max-width: 620px; color: rgba(12,12,11,.56); font-size: 13px; line-height: 1.6; }
.service-tag { padding: 8px 13px; border: 1px solid var(--line); border-radius: 999px; font-size: 9px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; }
.services-cta { display: flex; justify-content: space-between; align-items: center; gap: 30px; padding-top: 42px; }
.services-cta p { max-width: 580px; margin: 0; color: rgba(12,12,11,.55); font-size: 13px; line-height: 1.65; }
.button-dark { color: var(--white); background: var(--ink); }
.button-dark:hover { background: #38352f; }

.section-dark { padding: 140px 0; color: var(--white); background: var(--ink-soft); }
.experience-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(60px, 9vw, 140px); align-items: center; }
.experience-visual { position: relative; }
.experience-visual::before { content: ""; position: absolute; inset: 20px -20px -20px 20px; border: 1px solid rgba(226,187,130,.35); }
.experience-visual img { position: relative; z-index: 1; width: 100%; aspect-ratio: 4 / 5; object-fit: cover; filter: saturate(.72) contrast(1.04); }
.image-caption { position: absolute; z-index: 2; right: -36px; bottom: 48px; padding: 14px 22px; color: var(--ink); background: var(--amber-light); font: italic 17px/1 var(--serif); transform: rotate(-90deg) translateX(100%); transform-origin: right bottom; }
.eyebrow-light { color: var(--amber-light); }
.experience-copy > p { max-width: 570px; margin: 34px 0 46px; color: rgba(255,255,255,.62); font-size: 16px; line-height: 1.75; }
.experience-points { list-style: none; margin: 0 0 44px; padding: 0; border-top: 1px solid var(--line-dark); }
.experience-points li { display: flex; align-items: center; gap: 24px; padding: 21px 0; border-bottom: 1px solid var(--line-dark); }
.experience-points span { color: var(--amber-light); font: italic 14px/1 var(--serif); }
.experience-points strong { font-size: 13px; letter-spacing: .02em; font-weight: 500; }
.text-link-light { gap: 18px; color: var(--amber-light); }

.reviews { background: var(--paper-deep); }
.review-heading { display: flex; justify-content: space-between; align-items: flex-end; gap: 50px; }
.rating-lockup { display: flex; align-items: center; gap: 20px; margin-bottom: 5px; }
.rating-lockup > strong { font: 74px/1 var(--serif); font-weight: 400; }
.rating-lockup div { display: grid; gap: 6px; }
.rating-lockup small { font-size: 10px; letter-spacing: .12em; text-transform: uppercase; opacity: .58; }
.review-grid { display: grid; grid-template-columns: 1.1fr .9fr .9fr; gap: 16px; margin-top: 70px; align-items: stretch; }
.review-card { min-height: 360px; display: flex; flex-direction: column; justify-content: space-between; padding: 38px; border: 1px solid var(--line); background: rgba(255,255,255,.2); }
.review-card-featured { min-height: 430px; background: var(--amber); border-color: var(--amber); transform: translateY(-16px); }
.review-card-dark { color: var(--white); background: var(--ink-soft); }
.quote-mark { height: 48px; font: 68px/1 var(--serif); color: #77542f; }
.review-card-dark .quote-mark { color: var(--amber-light); }
.review-card blockquote { margin: 40px 0; font: 28px/1.2 var(--serif); letter-spacing: -.015em; }
.review-card-featured blockquote { font-size: 34px; }
.review-card footer { display: grid; gap: 6px; }
.review-card footer strong { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }
.review-card footer span { font-size: 10px; opacity: .55; }

.visit { color: var(--white); background: var(--ink); }
.visit-grid { display: grid; grid-template-columns: 1fr 1fr; min-height: 700px; }
.visit-copy { padding: 118px max(48px, calc((100vw - 1180px) / 2)) 100px; padding-right: 7vw; }
.visit-details { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; padding: 46px 0; margin-top: 44px; border-block: 1px solid var(--line-dark); }
.visit-details span { display: block; margin-bottom: 14px; color: var(--amber-light); font-size: 9px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; }
.visit-details p { margin: 0; color: rgba(255,255,255,.7); font-size: 14px; line-height: 1.8; }
.visit-details a:hover { color: var(--amber-light); }
.visit-actions { display: flex; gap: 12px; margin-top: 38px; }
.button-outline { border-color: rgba(255,255,255,.4); color: var(--white); }
.button-outline:hover { background: var(--white); color: var(--ink); }
.map-card { position: relative; min-height: 650px; overflow: hidden; background: #cdc3b0; color: var(--ink); }
.map-card::after { content: ""; position: absolute; inset: 0; background-image: linear-gradient(25deg, transparent 48%, rgba(86,72,55,.11) 49%, rgba(86,72,55,.11) 51%, transparent 52%), linear-gradient(-20deg, transparent 48%, rgba(86,72,55,.08) 49%, rgba(86,72,55,.08) 51%, transparent 52%); background-size: 150px 120px, 230px 190px; }
.map-streets { position: absolute; inset: 0; transform: rotate(-8deg) scale(1.2); }
.road { position: absolute; display: block; background: #eee8dc; border: 1px solid rgba(117,98,74,.2); }
.road-one { left: 41%; top: -10%; width: 56px; height: 120%; }
.road-two { top: 42%; left: -10%; width: 120%; height: 72px; transform: rotate(9deg); }
.road-three { top: 15%; left: -10%; width: 120%; height: 26px; transform: rotate(-7deg); }
.road-four { left: 76%; top: -10%; width: 25px; height: 120%; transform: rotate(16deg); }
.map-pin { position: absolute; z-index: 3; left: 49%; top: 44%; display: grid; justify-items: center; gap: 13px; transform: translate(-50%,-50%); }
.map-pin .brand-mark { width: 68px; height: 68px; background: var(--ink); color: var(--white); border-color: var(--ink); box-shadow: 0 12px 30px rgba(0,0,0,.22); font-size: 26px; }
.map-pin small { padding: 8px 12px; background: rgba(242,238,229,.95); font-size: 10px; font-weight: 600; letter-spacing: .08em; white-space: nowrap; }
.map-link { position: absolute; z-index: 3; right: 34px; bottom: 34px; display: flex; align-items: center; gap: 12px; padding: 14px 18px; background: var(--paper); font-size: 10px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }

.site-footer { padding: 58px 0 30px; color: var(--white); background: #070706; }
.footer-top { display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; padding-bottom: 52px; }
.footer-top > p { margin: 0; color: rgba(255,255,255,.45); font: italic 17px/1.45 var(--serif); }
.footer-links { justify-self: end; display: flex; gap: 28px; font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.3); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.mobile-book { display: none; }
.reveal-on-scroll { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.reveal-on-scroll.visible { opacity: 1; transform: none; }

@media (max-width: 900px) {
  :root { --wrap: min(100% - 36px, 720px); }
  .site-header { grid-template-columns: 1fr auto; height: 72px; padding-inline: 18px; }
  .desktop-nav, .button-header { display: none; }
  .menu-toggle { display: block; justify-self: end; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .mobile-nav { position: fixed; z-index: 45; inset: 0; padding: 110px 28px 100px; background: rgba(12,12,11,.98); color: var(--white); flex-direction: column; gap: 0; }
  .mobile-nav.open { display: flex; }
  .mobile-nav a { padding: 20px 0; border-bottom: 1px solid var(--line-dark); font: 34px/1 var(--serif); }
  .hero { min-height: 760px; }
  .hero-media { background-position: 64% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(5,6,5,.94), rgba(5,6,5,.62) 58%, rgba(5,6,5,.2)), linear-gradient(0deg, rgba(5,5,4,.72), transparent 50%); }
  .hero h1 { font-size: clamp(66px, 14vw, 100px); }
  .hero-content { padding-top: 72px; }
  .hero-lede { max-width: 480px; }
  .section { padding: 94px 0; }
  .section-heading { grid-template-columns: 1fr; gap: 34px; padding-bottom: 48px; }
  .section-heading p { max-width: 600px; }
  .experience-grid { grid-template-columns: 1fr 1fr; gap: 54px; }
  .review-grid { grid-template-columns: 1fr 1fr; }
  .review-card-featured { transform: none; }
  .review-card-dark { grid-column: 1 / -1; min-height: 300px; }
  .visit-grid { grid-template-columns: 1fr; }
  .visit-copy { padding: 94px max(24px, calc((100vw - 720px) / 2)); }
  .map-card { min-height: 480px; }
}

@media (max-width: 640px) {
  :root { --wrap: calc(100% - 36px); }
  body { padding-bottom: 74px; }
  .brand-mark { width: 38px; height: 38px; }
  .brand-copy small { display: none; }
  .hero { min-height: 720px; height: 100svh; }
  .hero-media { background-position: 69% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(5,6,5,.88), rgba(5,6,5,.42)), linear-gradient(0deg, rgba(5,5,4,.85) 0%, rgba(5,5,4,.12) 70%); }
  .hero-content { justify-content: flex-end; padding-bottom: 146px; }
  .hero-rating { margin-bottom: 18px; }
  .hero h1 { font-size: clamp(62px, 19vw, 88px); }
  .hero-lede { margin-top: 24px; font-size: 15px; line-height: 1.55; }
  .hero-actions { margin-top: 28px; }
  .hero-actions .button-primary { width: 100%; }
  .hero-actions .text-link { display: none; }
  .hero-footer { bottom: 24px; }
  .scroll-cue { display: none; }
  .hero-location strong { font-size: 9px; }
  .marquee-track { height: 46px; gap: 22px; }
  .marquee span { font-size: 16px; }
  .section { padding: 80px 0; }
  .section-heading h2, .experience-copy h2, .review-heading h2, .visit-copy h2 { font-size: 54px; }
  .service-row { grid-template-columns: 36px 1fr; gap: 12px; padding: 28px 0; }
  .service-row:hover { padding-left: 0; }
  .service-row h3 { font-size: 30px; }
  .service-row p { font-size: 12px; }
  .service-tag { display: none; }
  .services-cta { align-items: stretch; flex-direction: column; }
  .section-dark { padding: 80px 0; }
  .experience-grid { grid-template-columns: 1fr; gap: 70px; }
  .experience-visual { width: calc(100% - 18px); }
  .experience-visual::before { inset: 14px -14px -14px 14px; }
  .experience-copy > p { margin: 28px 0 36px; }
  .review-heading { align-items: flex-start; flex-direction: column; }
  .rating-lockup { margin-top: 8px; }
  .rating-lockup > strong { font-size: 60px; }
  .review-grid { grid-template-columns: 1fr; margin-top: 52px; }
  .review-card, .review-card-featured { min-height: 320px; padding: 30px; }
  .review-card-dark { grid-column: auto; }
  .review-card blockquote, .review-card-featured blockquote { font-size: 29px; }
  .visit-copy { padding: 80px 18px; }
  .visit-details { grid-template-columns: 1fr; gap: 28px; margin-top: 34px; padding: 34px 0; }
  .visit-actions { align-items: stretch; flex-direction: column; }
  .map-card { min-height: 400px; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .footer-links { justify-self: start; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .mobile-book { position: fixed; z-index: 60; display: flex; align-items: center; justify-content: space-between; left: 10px; right: 10px; bottom: 10px; min-height: 62px; padding: 0 22px; background: var(--amber-light); color: var(--ink); box-shadow: 0 10px 30px rgba(0,0,0,.3); border-radius: 6px; }
  .mobile-book span { display: grid; gap: 3px; font-size: 13px; font-weight: 600; }
  .mobile-book small { font-size: 8px; font-weight: 500; letter-spacing: .13em; text-transform: uppercase; opacity: .6; }
  .mobile-book svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 1.5; }
}

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