:root {
  --milk: #fffaf1;
  --sand: #ead9c3;
  --champagne: #d5b57c;
  --gold: #b57a2f;
  --deep-gold: #775020;
  --coffee: #3f2e24;
  --ink: #4a372b;
  --muted: #725e4d;
  --glass: rgba(255, 249, 238, 0.18);
  --glass-strong: rgba(255, 250, 239, 0.27);
  --shadow: 0 28px 80px rgba(91, 65, 37, 0.22);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 12%, rgba(255,255,255,.88), transparent 28rem),
    linear-gradient(145deg, #efe4d5 0%, #d8c3a7 100%);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }

.page-shell { min-height: 100vh; padding: 30px 16px 48px; }
.card {
  position: relative;
  width: min(100%, 520px);
  min-height: 1160px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.74);
  border-radius: 38px;
  background: #ead7bd;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.scene-bg { position: absolute; z-index: -3; left: 0; width: 100%; pointer-events: none; user-select: none; }
.scene-top { top: 0; height: auto; }
.scene-flow {
  top: 370px;
  bottom: 0;
  height: calc(100% - 370px);
  object-fit: fill;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 4%, #000 100%);
  mask-image: linear-gradient(to bottom, transparent 0, #000 4%, #000 100%);
}
.scene-sheen {
  position: absolute;
  z-index: -2;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to bottom, rgba(255,255,255,.03) 0 30%, transparent 46% 76%, rgba(75,48,24,.035)),
    radial-gradient(circle at 50% 18%, rgba(255,248,229,.08), transparent 20%);
}

.hero { position: relative; z-index: 1; padding: 126px 36px 24px; text-align: center; }
.portrait-wrap { position: relative; width: 178px; height: 178px; margin: 0 auto 27px; }
.portrait {
  position: relative;
  z-index: 3;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid rgba(255,248,225,.92);
  border-radius: 50%;
  box-shadow:
    0 0 0 2px rgba(178,116,37,.64),
    0 0 0 8px rgba(255,239,198,.22),
    0 0 32px 9px rgba(255,210,112,.50),
    0 16px 42px rgba(91,54,20,.27);
}
.moon {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 169%;
  height: 169%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  user-select: none;
}

.identity-copy { position: relative; z-index: 2; }
.eyebrow {
  margin: 0 0 12px;
  color: #72502a;
  font-size: 10.5px;
  font-weight: 760;
  line-height: 1.45;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-shadow: 0 1px rgba(255,255,255,.5);
}
h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(35px, 8vw, 44px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.035em;
}
.text-metal {
  color: #4a3016;
  background: linear-gradient(100deg, #33241a 0 26%, #6e4922 44%, #97682f 54%, #4a3120 72%, #7a5325 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 1px 8px rgba(255,249,230,.18);
}
.role { margin: 10px 0 0; color: #5f4939; font-size: 14px; font-weight: 560; }
.tagline { margin: 20px 0 9px; font-family: Georgia, "Times New Roman", serif; font-size: 23px; font-style: italic; }
.promise { max-width: 420px; margin: 0 auto; color: #534034; font-size: 14px; font-weight: 520; line-height: 1.65; text-shadow: 0 1px 2px rgba(255,255,255,.54); }

.actions { position: relative; z-index: 2; padding: 0 30px 0; }
.glass-button,
.contact-link {
  position: relative;
  border: 1px solid transparent;
  background:
    linear-gradient(135deg, rgba(255,250,240,.27), rgba(255,255,255,.07)) padding-box,
    linear-gradient(112deg, rgba(119,75,28,.88), rgba(255,238,184,.95) 35%, rgba(169,107,35,.86) 69%, rgba(255,246,217,.88)) border-box;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.72),
    inset 0 -1px 0 rgba(97,61,22,.08),
    0 11px 26px rgba(87,57,27,.12);
  backdrop-filter: blur(1.2px) saturate(1.07);
  -webkit-backdrop-filter: blur(1.2px) saturate(1.07);
}
.glass-button::before,
.contact-link::before {
  content: "";
  position: absolute;
  inset: 2px;
  pointer-events: none;
  border: 1px solid rgba(255,255,255,.20);
  border-radius: inherit;
}
.glass-button { display: flex; align-items: center; border-radius: 22px; transition: transform .2s ease, box-shadow .2s ease; }
.glass-button:hover,
.contact-link:hover { transform: translateY(-2px); box-shadow: inset 0 1px rgba(255,255,255,.75), 0 15px 32px rgba(87,57,27,.18); }
.booking-button { min-height: 84px; justify-content: center; flex-direction: column; gap: 5px; margin-bottom: 13px; padding: 15px 58px 14px 22px; text-align: center; background: linear-gradient(125deg,rgba(255,252,242,.30),rgba(177,112,38,.10)) padding-box, linear-gradient(110deg,#75481e,#ffe4a5 35%,#a46427 66%,#fff1c7) border-box; }
.button-title { font-family: Georgia, "Times New Roman", serif; font-size: 21px; font-weight: 650; }
.glass-button small { display: block; margin-top: 4px; color: #5f4b3c; font-size: 12px; line-height: 1.38; text-shadow: 0 1px rgba(255,255,255,.6); }
.button-arrow,
.chevron-wrap {
  position: absolute;
  right: 16px;
  top: 50%;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  border: 1px solid rgba(148,94,31,.48);
  border-radius: 50%;
  color: #775021;
  background: rgba(255,249,228,.30);
  box-shadow: inset 0 1px rgba(255,255,255,.7), 0 4px 13px rgba(102,62,21,.10);
}
.button-arrow { font-family: Georgia, serif; font-size: 19px; }

.location-button { min-height: 76px; gap: 13px; margin-bottom: 13px; padding: 12px 58px 12px 14px; }
.line-icon,
.utility-icon {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid rgba(157,101,35,.49);
  border-radius: 15px;
  color: #805725;
  background: rgba(255,247,220,.29);
  box-shadow: inset 0 1px rgba(255,255,255,.73), 0 5px 15px rgba(98,59,21,.10);
}
.line-icon svg,
.utility-icon svg { width: 23px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.55; }
.button-copy { min-width: 0; display: block; }
.button-copy strong { display: block; font-size: 14px; line-height: 1.35; }

.recommendation {
  position: relative;
  margin: 0 0 14px;
  padding: 17px 18px 17px 48px;
  border: 1px solid rgba(174,113,40,.42);
  border-radius: 20px;
  color: #5d4738;
  background: linear-gradient(100deg,rgba(255,250,237,.22),rgba(255,255,255,.045));
  box-shadow: inset 0 1px rgba(255,255,255,.55), 0 8px 23px rgba(91,54,22,.08);
}
.recommendation p { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: 15px; font-style: italic; line-height: 1.52; }
.quote-mark { position: absolute; left: 17px; top: 6px; color: #9d672a; font-family: Georgia, serif; font-size: 42px; line-height: 1; }

.groups { display: grid; gap: 12px; }
.group { margin: 0; }
.group summary { list-style: none; cursor: pointer; user-select: none; }
.group summary::-webkit-details-marker { display: none; }
.group-head { min-height: 78px; width: 100%; padding: 13px 62px 13px 17px; }
.group-head .button-copy strong { font-family: Georgia, "Times New Roman", serif; font-size: 20px; font-weight: 560; }
.group-head small { max-width: 330px; }
.chevron { width: 21px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; transition: transform .23s ease; }
.group[open] .chevron { transform: rotate(180deg); }
.group-body { display: grid; gap: 9px; padding: 10px 2px 3px; animation: groupOpen .24s ease; }
@keyframes groupOpen { from { opacity: 0; transform: translateY(-5px); } to { opacity: 1; transform: translateY(0); } }
.contact-link { display: flex; min-height: 66px; align-items: center; gap: 13px; padding: 9px 47px 9px 11px; border-radius: 19px; transition: transform .2s ease, box-shadow .2s ease; }
.contact-link img { width: 44px; height: 44px; flex: 0 0 auto; object-fit: cover; border: 1px solid rgba(255,255,255,.66); border-radius: 14px; box-shadow: 0 5px 14px rgba(75,45,20,.12); }
.contact-link > span:nth-last-child(2) { min-width: 0; }
.contact-link strong { display: block; color: #4d3729; font-size: 14px; }
.contact-link small { display: block; margin-top: 4px; color: #6b5341; font-size: 12px; line-height: 1.38; }
.mini-arrow { position: absolute; right: 17px; top: 50%; transform: translateY(-50%); color: #815726; font-family: Georgia, serif; font-size: 17px; }

footer { display: flex; align-items: center; justify-content: center; gap: 9px; padding: 23px 10px 0; color: #5e4331; font-size: 11.5px; text-shadow: 0 1px rgba(255,255,255,.55); }
footer a { border-bottom: 1px solid rgba(101,74,54,.42); }
.water-reveal { height: 142px; }

@media (max-width: 600px) {
  .page-shell { padding: 0; }
  .card { width: 100%; min-height: 100vh; border: 0; border-radius: 0; box-shadow: none; }
  .scene-flow { top: 347px; height: calc(100% - 347px); }
  .hero { padding: 118px 22px 21px; }
  .portrait-wrap { width: 168px; height: 168px; margin-bottom: 25px; }
  .actions { padding: 0 18px; }
  .booking-button { padding-left: 18px; }
  .group-head small { max-width: 260px; }
  .water-reveal { height: 150px; }
}

@media (max-width: 370px) {
  .hero { padding-top: 106px; }
  .portrait-wrap { width: 154px; height: 154px; }
  .actions { padding-inline: 13px; }
  .group-head { padding-left: 14px; padding-right: 57px; }
  .glass-button small, .contact-link small { font-size: 11.5px; }
}

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