
:root {
  --ivory: #f7f2ea;
  --paper: #fffdf9;
  --stone: #e8dfd3;
  --navy: #0d2740;
  --navy-soft: #173854;
  --gold: #bd8b3d;
  --gold-soft: #d8b77a;
  --charcoal: #2f3437;
  --muted: #747679;
  --danger: #8f3e35;
  --success: #3f6d58;
  --shadow-sm: 0 8px 24px rgba(13,39,64,.08);
  --shadow-lg: 0 24px 64px rgba(13,39,64,.16);
  --radius: 26px;
  --content: 1120px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ivory);
  color: var(--charcoal);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}
button, a { font: inherit; }
button { cursor: pointer; }
img { display:block; max-width:100%; }
a { color: inherit; }
.no-scroll { overflow: hidden; }

.hero {
  min-height: 92svh;
  position: relative;
  display: grid;
  place-items: end center;
  padding: 28px 18px 42px;
  color: white;
  background:
    linear-gradient(180deg, rgba(9,28,45,.2) 0%, rgba(9,28,45,.78) 65%, rgba(9,28,45,.94) 100%),
    var(--hero-image, url("./assets/photos/hero.webp")) center/cover no-repeat,
    linear-gradient(145deg,var(--primary-soft),var(--primary));
}
.hero::after {
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(189,139,61,.08), transparent 40%, rgba(255,255,255,.03));
  pointer-events:none;
}
.hero__inner {
  position:relative; z-index:1;
  width:min(720px,100%);
  text-align:center;
}
.brand {
  display:inline-flex;
  align-items:center;
  gap:10px;
  letter-spacing:.24em;
  text-transform:uppercase;
  font-size:.74rem;
  color:var(--gold-soft);
  font-weight:700;
}
.brand::before,.brand::after {
  content:""; width:34px; height:1px; background:currentColor;
}
.hero h1 {
  margin:0 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size:clamp(2.65rem,12vw,5.4rem);
  font-weight:500;
  line-height:.92;
  letter-spacing:-.035em;
}
.hero__property {
  margin:20px auto 6px;
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(1.45rem,6vw,2rem);
  line-height:1.1;
  color:white;
  letter-spacing:.01em;
}
.hero__platform { margin:13px 0 0; color:var(--gold-soft); text-transform:uppercase; letter-spacing:.2em; font-size:.68rem; font-weight:750; }
.hero__subtitle {
  margin:0 auto;
  max-width:560px;
  color:rgba(255,255,255,.82);
  font-size:clamp(.92rem,3.5vw,1.08rem);
}
.hero__button { margin-top:28px; }

.button {
  min-height:48px;
  border:0;
  border-radius:999px;
  padding:13px 20px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  text-decoration:none;
  font-weight:750;
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform:translateY(-2px); }
.button--gold { background:var(--gold); color:white; box-shadow:0 12px 30px rgba(189,139,61,.3); }
.button--navy { background:var(--navy); color:white; }
.button--light { background:white; color:var(--navy); box-shadow:var(--shadow-sm); }
.button--outline { border:1px solid rgba(189,139,61,.7); background:transparent; color:var(--navy); }
.button--block { width:100%; }

.section { padding:64px 18px; }
.container { width:min(var(--content),100%); margin:auto; }
.eyebrow {
  margin:0 0 8px;
  color:var(--gold);
  text-transform:uppercase;
  letter-spacing:.22em;
  font-size:.73rem;
  font-weight:800;
}
h2,h3 { color:var(--navy); }
h2 {
  margin:0;
  font-family:Georgia, "Times New Roman", serif;
  font-size:clamp(2.1rem,8vw,4rem);
  line-height:1.05;
  font-weight:500;
  letter-spacing:-.025em;
}
.lead { max-width:700px; color:var(--muted); font-size:1.02rem; }

.welcome-story {
  background:var(--paper);
  border-bottom:1px solid rgba(189,139,61,.16);
}
.welcome-story__grid { display:grid; gap:32px; }
.welcome-story__copy { align-self:center; }
.welcome-story__copy h2 { margin-bottom:22px; }
.welcome-story__copy p:not(.eyebrow) { max-width:620px; color:var(--muted); }
.welcome-story__drawer { display:grid; gap:28px; }
.welcome-story__gallery {
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:10px;
}
.welcome-story__image {
  width:100%;
  height:180px;
  object-fit:cover;
  border-radius:20px;
}
.welcome-story__image--large {
  grid-column:1/-1;
  height:280px;
}
.concierge-intro {
  margin-top:42px;
  padding:24px;
  border-radius:var(--radius);
  background:var(--ivory);
  border:1px solid rgba(189,139,61,.22);
}
.concierge-intro h3 { margin:0 0 7px; font-family:Georgia,serif; font-size:1.55rem; font-weight:500; }
.concierge-intro p:not(.eyebrow) { max-width:700px; margin:0 0 18px; color:var(--muted); }
.concierge-intro .button + .button { margin-top:10px; }

.weather-card {
  position:relative;
  margin:24px 0 0;
  padding:14px 16px;
  border:1px solid rgba(189,139,61,.28);
  border-radius:22px;
  background:rgba(255,253,249,.82);
  box-shadow:var(--shadow-sm);
  display:grid;
  grid-template-columns:54px auto 1fr;
  gap:12px;
  align-items:center;
}
.weather-card[hidden] { display:none; }
.weather-card__icon { width:54px; height:54px; object-fit:contain; }
.weather-card__current { display:grid; line-height:1.05; }
.weather-card__label { color:var(--gold); font-size:.68rem; font-weight:800; text-transform:uppercase; letter-spacing:.12em; }
.weather-card__current strong { color:var(--navy); font-family:Georgia,serif; font-size:2rem; font-weight:500; }
.weather-card__detail { display:grid; color:var(--navy); font-weight:750; }
.weather-card__detail small { color:var(--muted); font-weight:500; }
.weather-card__credit { position:absolute; right:12px; bottom:5px; color:var(--muted); font-size:.58rem; }

.moments {
  display:grid;
  grid-template-columns:1fr;
  gap:18px;
  margin-top:34px;
}
.moment {
  border:1px solid rgba(189,139,61,.22);
  border-radius:var(--radius);
  overflow:hidden;
  background:var(--paper);
  box-shadow:var(--shadow-sm);
  text-align:left;
  padding:0;
  transition:transform .22s ease, box-shadow .22s ease;
}
.moment:hover { transform:translateY(-4px); box-shadow:var(--shadow-lg); }
.moment__image {
  aspect-ratio:1/1;
  width:100%;
  object-fit:contain;
  object-position:center;
  padding:26px 26px 4px;
}
.moment__body { padding:20px; }
.moment__title { margin:0 0 3px; font-size:1.25rem; color:var(--navy); }
.moment__copy { margin:0; color:var(--muted); font-size:.92rem; }
.moment__arrow { color:var(--gold); font-weight:900; float:right; }

.early-invitation {
  margin-top:24px;
  padding:20px;
  border:2px solid var(--navy);
  border-radius:var(--radius);
  background:linear-gradient(135deg,#fffdf9,#f7f2ea);
  box-shadow:var(--shadow-sm);
  display:grid;
  grid-template-columns:124px 1fr;
  gap:16px;
  align-items:center;
}
.early-invitation__image {
  width:124px;
  aspect-ratio:1;
  object-fit:contain;
  border-radius:18px;
}
.early-invitation__eyebrow {
  display:block;
  margin-bottom:4px;
  color:var(--gold);
  text-transform:uppercase;
  letter-spacing:.16em;
  font-size:.69rem;
  font-weight:800;
}
.early-invitation h3 { margin:0 0 3px; font-size:1.15rem; }
.early-invitation p { margin:0; color:var(--muted); font-size:.9rem; }
.early-invitation .button { width:100%; grid-column:1/-1; }
.direct-invitation{margin-top:18px;padding:16px;border:1px solid rgba(189,139,61,.28);border-radius:var(--radius);background:var(--paper);box-shadow:var(--shadow-sm);display:grid;grid-template-columns:74px 1fr;gap:14px;align-items:center}.direct-invitation img{width:74px;border-radius:16px}.direct-invitation h3,.direct-invitation p{margin:0}.direct-invitation p{color:var(--muted);font-size:.9rem}.direct-invitation .button{grid-column:1/-1;width:100%}
.departure-invitation{margin-top:18px;padding:16px;border:1px solid rgba(13,39,64,.18);border-radius:var(--radius);background:linear-gradient(135deg,var(--navy),var(--navy-soft));color:white;box-shadow:var(--shadow-sm);display:grid;grid-template-columns:74px 1fr;gap:14px;align-items:center}.departure-invitation img{width:74px;border-radius:16px}.departure-invitation h3,.departure-invitation p{margin:0}.departure-invitation p{color:#e8edf2;font-size:.9rem}.departure-invitation .button{grid-column:1/-1;width:100%;border-color:rgba(255,255,255,.5);color:white}.departure-invitation .early-invitation__eyebrow{color:#d8b77a}.departure-checklist{display:grid;gap:12px;margin:22px 0}.departure-checklist>div{display:grid;grid-template-columns:34px 1fr;gap:12px;padding:16px;border:1px solid rgba(189,139,61,.22);border-radius:18px;background:var(--paper)}.departure-checklist span{display:grid;place-items:center;width:30px;height:30px;border-radius:50%;background:var(--gold);color:white;font-weight:900}.departure-checklist p{margin:0;color:var(--muted)}.departure-checklist strong{color:var(--navy)}

.drawer {
  position:fixed;
  inset:0;
  z-index:50;
  background:var(--ivory);
  transform:translateX(102%);
  transition:transform .3s cubic-bezier(.2,.8,.2,1);
  overflow:auto;
  padding-bottom:90px;
}
.drawer.is-open { transform:none; }
.drawer__header {
  position:sticky;
  top:0;
  z-index:3;
  display:grid;
  grid-template-columns:48px 1fr 48px;
  align-items:center;
  padding:12px 14px;
  background:rgba(247,242,234,.92);
  backdrop-filter:blur(15px);
  border-bottom:1px solid rgba(189,139,61,.25);
}
.drawer__title { text-align:center; font-weight:800; color:var(--navy); }
.drawer__header-spacer{width:44px;height:44px}.concierge-intro__hint{display:block;margin-top:10px;text-align:center;color:var(--muted);font-size:.78rem;letter-spacing:.04em}
.icon-button {
  width:44px;height:44px;border-radius:50%;
  background:white;border:1px solid rgba(189,139,61,.3);
  color:var(--navy);font-size:1.25rem;
}
.drawer__content {
  width:min(820px,100%);
  margin:auto;
  padding:26px 18px 52px;
}
.drawer__content h2 { margin-bottom:10px; }
.drawer__intro { color:var(--muted); margin-bottom:24px; }

.arrival-options {
  display:grid;
  gap:14px;
  margin:8px 0 20px;
}
.arrival-option {
  width:100%;
  display:grid;
  grid-template-columns:92px 1fr;
  gap:15px;
  align-items:center;
  padding:12px;
  border:1px solid rgba(189,139,61,.24);
  border-radius:22px;
  background:var(--paper);
  color:var(--navy);
  text-align:left;
  box-shadow:var(--shadow-sm);
}
.arrival-option img {
  width:92px;
  aspect-ratio:1;
  object-fit:contain;
  border-radius:17px;
}
.arrival-option span { display:grid; gap:5px; }
.arrival-option strong { font-size:1.04rem; }
.arrival-option small { color:var(--muted); line-height:1.35; }

.guide-options { display:grid; gap:12px; margin-top:20px; }
.guide-option {
  width:100%;
  display:grid;
  grid-template-columns:72px 1fr auto;
  gap:14px;
  align-items:center;
  padding:10px;
  border:1px solid rgba(189,139,61,.22);
  border-radius:20px;
  background:white;
  color:var(--navy);
  text-align:left;
  box-shadow:var(--shadow-sm);
}
.guide-option img { width:72px; aspect-ratio:1; object-fit:cover; border-radius:14px; }
.guide-option span { display:grid; gap:4px; }
.guide-option strong { font-size:1rem; }
.guide-option small { color:var(--muted); line-height:1.35; }
.guide-option b { padding-right:7px; color:var(--gold); font-size:1.2rem; }
.entry-steps .info-card { position:relative; padding-left:58px; }
.entry-step {
  position:absolute;
  left:17px;
  top:17px;
  width:28px;
  height:28px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:var(--gold);
  color:white;
  font-weight:850;
}
.entry-photo { margin:0 0 18px; }
.entry-photo img { width:100%; max-height:470px; object-fit:cover; border-radius:24px; box-shadow:var(--shadow-sm); }
.entry-photo figcaption { margin-top:8px; color:var(--muted); font-size:.82rem; text-align:center; }
.secure-access { margin:18px 0; }
.secure-access__heading { display:grid; gap:3px; margin-bottom:12px; color:var(--navy); }
.secure-access__heading span { color:var(--gold); text-transform:uppercase; letter-spacing:.15em; font-size:.7rem; font-weight:850; }
.access-code { margin:12px 0; padding:20px; border:1px solid rgba(189,139,61,.38); border-radius:22px; background:var(--navy); color:white; text-align:center; box-shadow:var(--shadow-sm); }
.access-code span,.access-code small { display:block; }
.access-code span { color:var(--gold-soft); text-transform:uppercase; letter-spacing:.14em; font-size:.72rem; font-weight:850; }
.access-code strong { display:block; margin:7px 0; font-family:Georgia,serif; font-size:2.2rem; letter-spacing:.12em; }
.access-code small { color:rgba(255,255,255,.78); }
.service-dialog { width:min(560px,calc(100% - 28px)); border:0; border-radius:26px; padding:22px; background:var(--paper); box-shadow:var(--shadow-lg); }
.service-dialog::backdrop { background:rgba(13,39,64,.62); backdrop-filter:blur(4px); }
.service-form { display:grid; gap:15px; }
.service-form .dialog-heading { display:flex; justify-content:space-between; align-items:flex-start; gap:12px; }
.service-form .dialog-heading h3 { margin:0; font-family:Georgia,serif; font-size:1.65rem; font-weight:500; }
.service-form label { display:grid; gap:6px; color:var(--navy); font-size:.82rem; font-weight:800; }
.service-form input[type=date],.service-form select,.service-form textarea { width:100%; border:1px solid rgba(189,139,61,.3); border-radius:14px; padding:12px; background:white; color:var(--charcoal); }
.permission-field { grid-template-columns:auto 1fr!important; align-items:center; }
.permission-field input { width:20px; height:20px; accent-color:var(--gold); }
.close-button { border:0; background:#efe5d7; color:var(--navy); width:40px; height:40px; border-radius:50%; font-size:1.3rem; }
.action:disabled { opacity:.52; cursor:not-allowed; }
.late-reminder { margin-top:18px; }
.availability-note { display:block; margin:7px 4px 0; color:var(--muted); line-height:1.35; }
.guest-services { margin:0 0 18px; padding:17px; border:1px solid rgba(189,139,61,.28); border-radius:22px; background:var(--paper); }
.guest-services article { display:flex; justify-content:space-between; gap:12px; padding:11px 0; border-top:1px solid rgba(189,139,61,.16); }
.guest-services article:first-of-type { border-top:0; }
.guest-services article div { display:grid; gap:2px; }
.guest-services article span { color:var(--muted); font-size:.8rem; }
.service-status { align-self:start; padding:5px 8px; border-radius:999px; background:#efe5d7; color:var(--navy); text-transform:capitalize; white-space:nowrap; }

.info-card {
  background:var(--paper);
  border:1px solid rgba(189,139,61,.2);
  border-radius:22px;
  padding:19px;
  margin:13px 0;
  box-shadow:var(--shadow-sm);
}
.info-card h3 { margin:0 0 6px; font-size:1.08rem; }
.info-card p { margin:0 0 10px; }
.info-card p:last-child { margin-bottom:0; }

.notice {
  border-radius:20px;
  padding:17px;
  margin:15px 0;
  border:1px solid #e8c789;
  background:#fff7e8;
}
.notice strong { color:#80571f; }
.notice--security { border-color:#e1aaa4; background:#fff1ef; }
.notice--security strong { color:var(--danger); }

.pills { display:flex; gap:7px; flex-wrap:wrap; margin:10px 0; }
.pill {
  padding:6px 10px;
  border-radius:999px;
  background:#efe5d7;
  color:#76531e;
  font-size:.77rem;
  font-weight:800;
}

.action {
  width:100%;
  display:flex;
  justify-content:center;
  align-items:center;
  min-height:46px;
  border-radius:14px;
  padding:11px 14px;
  text-decoration:none;
  border:0;
  background:var(--navy);
  color:white;
  font-weight:800;
  margin-top:10px;
}
.action--gold { background:var(--gold); }
.action--soft { background:#efe5d7;color:var(--navy); }

.copy-row {
  display:flex;
  gap:8px;
  align-items:center;
  background:white;
  border:1px solid rgba(189,139,61,.3);
  border-radius:15px;
  padding:9px;
  margin:9px 0 15px;
}
.copy-row code { flex:1; overflow:auto; padding:5px 7px; color:var(--navy); }
.copy-row button {
  border:0; border-radius:10px; background:var(--gold); color:white; padding:9px 11px; font-weight:800;
}
.wifi-qr {
  background:white;
  border-radius:22px;
  padding:12px;
  max-width:430px;
  margin:18px auto;
  box-shadow:var(--shadow-sm);
}

.accordion { margin:12px 0; }
.accordion__button {
  width:100%;
  border:0;
  border-radius:18px;
  padding:16px 17px;
  background:white;
  color:var(--navy);
  display:flex;
  align-items:center;
  justify-content:space-between;
  text-align:left;
  font-weight:850;
  box-shadow:var(--shadow-sm);
}
.accordion__content {
  display:none;
  padding:15px 17px 5px;
  color:var(--charcoal);
}
.accordion.is-open .accordion__content { display:block; }
.accordion.is-open .accordion__button span:last-child { transform:rotate(45deg); }

.recommendation {
  display:grid;
  gap:4px;
}
.recommendation small { color:var(--gold); text-transform:uppercase; letter-spacing:.12em; font-weight:800; }
.recommendation-accordion{margin-bottom:12px}.recommendation-accordion .accordion__content{padding:0 14px 14px}.recommendation-list{display:grid;gap:12px}.recommendation-list .info-card{margin:0}
.recommendation-accordion__label { display:flex; align-items:center; gap:12px; }
.recommendation-accordion__label img { width:42px; height:42px; flex:0 0 42px; }

.product-grid { display:grid; grid-template-columns:1fr; gap:14px; }
.product-card { background:white; border-radius:22px; padding:19px; border:1px solid rgba(189,139,61,.2); box-shadow:var(--shadow-sm); }
.product-card h3 { margin:0 0 6px; }
.product-card--illustrated{display:grid;grid-template-columns:96px 1fr;gap:16px;align-items:start}.product-card--illustrated>img{width:96px;border-radius:17px}.product-card--illustrated .action{width:100%}
.product-price { display:block; margin:0 0 8px; color:var(--gold); font-family:Georgia,serif; font-size:1.45rem; font-weight:500; }
.product-card p { margin:0 0 13px; color:var(--muted); }

.bottom-nav {
  position:fixed;
  z-index:30;
  left:12px;right:12px;bottom:12px;
  border-radius:22px;
  padding:7px;
  background:rgba(13,39,64,.96);
  backdrop-filter:blur(14px);
  border:1px solid rgba(216,183,122,.45);
  display:grid;
  grid-template-columns:repeat(4,1fr);
  box-shadow:0 16px 42px rgba(13,39,64,.28);
}
.bottom-nav button {
  border:0;background:transparent;color:white;
  padding:7px 2px;font-size:.71rem;
}
.bottom-nav span { display:block;font-size:1.1rem;margin-bottom:2px;color:var(--gold-soft); }
.bottom-nav--with-basket{grid-template-columns:repeat(5,1fr)}.basket-nav{position:relative}.basket-nav small{position:absolute;top:2px;left:calc(50% + 5px);display:grid;place-items:center;min-width:17px;height:17px;padding:0 4px;border-radius:999px;background:var(--gold);color:white;font-size:.64rem;font-weight:900}.basket-nav small[hidden]{display:none}.basket-nav.has-items{color:#f5dba8}

.footer {
  padding:48px 22px 115px;
  text-align:center;
  color:var(--muted);
}
.footer__logo {
  width:min(520px,100%);
  margin:0 auto;
}
.footer__property-lockup { display:grid; justify-items:center; gap:5px; color:var(--navy); }
.footer__property-lockup strong { font-family:Georgia,serif; font-size:1.55rem; font-weight:500; }
.footer__property-lockup span { color:var(--gold); text-transform:uppercase; letter-spacing:.15em; font-size:.75rem; font-weight:800; }
.footer__property-lockup small { color:var(--muted); }

.toast {
  position:fixed;
  z-index:80;
  left:50%;
  bottom:96px;
  transform:translate(-50%,20px);
  opacity:0;
  pointer-events:none;
  padding:11px 16px;
  border-radius:999px;
  background:var(--navy);
  color:white;
  font-weight:800;
  transition:.2s ease;
}
.toast.show { opacity:1; transform:translate(-50%,0); }

@media (min-width:720px) {
  .hero { padding-bottom:70px; }
  .moments { grid-template-columns:repeat(2,1fr); }
  .product-grid { grid-template-columns:repeat(2,1fr); }
  .early-invitation { grid-template-columns:122px 1fr auto; padding:18px 24px 18px 18px; }
  .early-invitation__image { width:122px; }
  .early-invitation .button { width:auto; grid-column:auto; }
  .direct-invitation{grid-template-columns:88px 1fr auto;padding:18px 24px}.direct-invitation img{width:88px}.direct-invitation .button{width:auto;grid-column:auto}
  .departure-invitation{grid-template-columns:88px 1fr auto;padding:18px 24px}.departure-invitation img{width:88px}.departure-invitation .button{width:auto;grid-column:auto}
  .bottom-nav { left:50%; right:auto; width:520px; transform:translateX(-50%); }
  .section { padding:84px 28px; }
  .weather-card { width:max-content; min-width:440px; }
  .welcome-story__grid { grid-template-columns:.9fr 1.1fr; gap:58px; }
  .welcome-story__drawer { grid-template-columns:.9fr 1.1fr; gap:42px; }
  .welcome-story__drawer .concierge-intro { grid-column:1/-1; }
  .welcome-story__image { height:210px; }
  .welcome-story__image--large { height:360px; }
  .concierge-intro { padding:28px 30px; }
  .arrival-options { grid-template-columns:repeat(3,1fr); }
  .arrival-option { grid-template-columns:1fr; text-align:center; }
  .arrival-option img { width:100%; max-width:170px; margin:auto; }
}
@media (prefers-reduced-motion:reduce) {
  * { scroll-behavior:auto!important; transition:none!important; }
}
