/* ova-theme.css — shared by the guest site and the staff dashboard.
   Guest pages get warm paper and a serif display face; staff pages get a
   cooler, denser variant of the same palette. Same product, two registers. */

:root{
  /* Palette */
  --ink:        #07242a;   /* deep lagoon shadow */
  --ink-soft:   #3d565c;
  --paper:      #fbf7f0;   /* sand — warmer than white against the photo */
  --white:      #ffffff;
  --reef:       #0e766e;   /* brand teal */
  --reef-deep:  #0a5951;
  --reef-tint:  #e8f4f2;
  --sun:        #f0b429;   /* accent, used sparingly */
  --warn:       #b45309;
  --warn-bg:    #fef6e7;
  --warn-line:  #f0d9a8;
  --danger:     #9b1c1c;
  --danger-bg:  #fdecec;
  --danger-line:#f6cccc;
  --line:       rgba(7,36,42,.10);
  --line-solid: #e3e8e9;
  --cool-bg:    #f4f6f6;   /* staff background */

  /* Shape */
  --r:    14px;
  --r-sm: 10px;
  --r-lg: 22px;
  --shadow-card:  0 10px 26px rgba(7,36,42,.10);
  --shadow-lift:  0 18px 44px rgba(7,36,42,.20);

  --maxw: 1080px;
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }

body{
  font-family:'Archivo', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  font-size:16px;
  line-height:1.5;
  color:var(--ink);
  background:var(--paper);
  -webkit-font-smoothing:antialiased;
}

/* Staff pages set this class on <body> to switch register */
body.staff{ background:var(--cool-bg); font-size:15px; }

.page{ max-width:var(--maxw); margin:0 auto; padding:0 20px 64px; }
.page-narrow{ max-width:1000px; }

/* ---------------------------------------------------------------- HERO -- */
/* The photo sits behind the hero only. Below it the page is paper, so body
   text stays legible without a heavy scrim over the whole document. */
.hero{
  position:relative;
  margin:20px 0 0;
  padding:64px 32px 96px;
  border-radius:var(--r-lg);
  overflow:hidden;
  isolation:isolate;
  color:var(--paper);
}
.hero::before{
  content:""; position:absolute; inset:0; z-index:-2;
  background-color:var(--ink);
  background-image:var(--hero-image);
  background-position:center 60%;
  background-size:cover;
  background-repeat:no-repeat;
}
.hero::after{
  content:""; position:absolute; inset:0; z-index:-1;
  background:linear-gradient(180deg, rgba(7,36,42,.30) 0%, rgba(7,36,42,.62) 60%, rgba(7,36,42,.80) 100%);
}
.hero h1{
  font-family:'Fraunces', Georgia, serif;
  font-weight:600;
  font-size:clamp(34px, 6vw, 56px);
  line-height:1.04;
  letter-spacing:-.015em;
  margin:0 0 14px;
}
.hero .lede{
  font-size:clamp(15px, 2.2vw, 18px);
  line-height:1.55;
  max-width:44ch;
  margin:0;
  color:rgba(251,247,240,.86);
}

.eyebrow{
  font-size:12px; letter-spacing:.16em; text-transform:uppercase;
  font-weight:600; color:var(--sun); margin:0 0 14px;
}

/* ------------------------------------------------------------- ARRIVAL -- */
/* Breaks the hero's lower edge: the one thing a guest must do is literally
   the thing that breaks the frame. */
.arrival{
  position:relative;
  margin:-56px auto 0;
  max-width:720px;
  background:var(--white);
  border:1px solid var(--line);
  border-radius:var(--r);
  box-shadow:var(--shadow-lift);
  padding:26px 26px 22px;
}
.arrival h2{
  font-family:'Fraunces', Georgia, serif;
  font-size:23px; font-weight:600;
  margin:0 0 6px; letter-spacing:-.01em;
}
.arrival p{
  margin:0 0 18px; font-size:15px; line-height:1.55;
  color:var(--ink-soft); max-width:52ch;
}

.facts{
  display:flex; flex-wrap:wrap; gap:8px 26px;
  margin:20px 0 0; padding:16px 0 0;
  border-top:1px solid var(--line);
  font-size:13.5px; color:var(--ink-soft);
}
.facts b{ color:var(--ink); font-weight:600; }

/* --------------------------------------------------------------- BUTTONS -- */
.actions{ display:flex; flex-wrap:wrap; gap:10px; }
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:13px 22px; border-radius:var(--r-sm);
  font:inherit; font-size:15px; font-weight:600;
  text-decoration:none; border:1px solid transparent; cursor:pointer;
  transition:background .16s ease, border-color .16s ease, transform .16s ease;
}
.btn-primary{ background:var(--reef); color:#fff; }
.btn-primary:hover{ background:var(--reef-deep); }
.btn-ghost{ background:var(--white); color:var(--reef); border-color:rgba(14,118,110,.35); }
.btn-ghost:hover{ background:rgba(14,118,110,.06); }
.btn-block{ width:100%; }
.btn:active{ transform:translateY(1px); }

/* ------------------------------------------------------------------ NAV -- */
.section{ margin:52px 0 0; }
.section-label{
  font-size:12px; letter-spacing:.14em; text-transform:uppercase;
  font-weight:600; color:var(--ink-soft); margin:0 0 16px;
  display:flex; align-items:center; gap:8px;
}
.grid{ display:grid; grid-template-columns:repeat(auto-fit, minmax(220px, 1fr)); gap:14px; }

.card{
  display:flex; align-items:flex-start; gap:14px; padding:18px;
  border-radius:var(--r); background:var(--white);
  border:1px solid var(--line);
  text-decoration:none; color:var(--ink);
  transition:border-color .16s ease, box-shadow .16s ease, transform .16s ease;
  opacity:0; transform:translateY(6px);
  animation:rise .38s ease forwards;
}
.card:hover{
  border-color:rgba(14,118,110,.35);
  box-shadow:var(--shadow-card);
  transform:translateY(-3px);
}
.card svg{ width:22px; height:22px; color:var(--reef); flex:none; margin-top:2px; }
.card-title{ display:block; font-weight:600; font-size:15.5px; margin:0 0 3px; }
.card-sub{ display:block; font-size:13.5px; line-height:1.45; color:var(--ink-soft); }

@keyframes rise{ to{ opacity:1; transform:none; } }

/* -------------------------------------------------------- CONTACT / MAP -- */
/* Two columns: how to reach us, and where we are. Collapses on mobile. */
.split{ display:grid; grid-template-columns:1fr 1fr; gap:14px; }

.block{
  background:var(--white); border:1px solid var(--line);
  border-radius:var(--r); padding:20px 22px;
}
.block h3{
  font-family:'Fraunces', Georgia, serif;
  font-size:18px; font-weight:600; margin:0 0 4px; letter-spacing:-.01em;
}
.block p.note{ margin:0 0 16px; font-size:13.5px; line-height:1.5; color:var(--ink-soft); }

/* Contact rows read as a list of methods, each with its own affordance. */
.method{
  display:flex; align-items:center; gap:12px;
  padding:11px 0; border-top:1px solid var(--line);
  text-decoration:none; color:var(--ink);
}
.method:first-of-type{ border-top:none; padding-top:0; }
.method svg{ width:19px; height:19px; color:var(--reef); flex:none; }
.method-label{ display:block; font-size:12px; color:var(--ink-soft); line-height:1.3; }
.method-value{ display:block; font-weight:600; font-size:15px; line-height:1.35; }
a.method:hover .method-value{ color:var(--reef); }

address.addr{
  font-style:normal; font-size:15px; line-height:1.65;
  margin:0 0 18px; color:var(--ink);
}
address.addr span{ display:block; }
address.addr span:first-child{ font-weight:600; }

/* ----------------------------------------------------------------- FOOT -- */
.foot{
  margin:44px 0 0; padding:16px 0 0;
  border-top:1px solid var(--line);
  display:flex; flex-wrap:wrap; gap:6px 20px; align-items:center;
  font-size:13px; color:var(--ink-soft);
}
.foot a{ color:var(--ink-soft); text-decoration:none; border-bottom:1px solid var(--line); }
.foot a:hover{ color:var(--reef); border-color:var(--reef); }

/* ---------------------------------------------------------------- STAFF -- */
.topbar{
  background:var(--white); border-bottom:1px solid var(--line-solid);
  padding:12px 20px; display:flex; align-items:center; gap:14px;
  position:sticky; top:0; z-index:10;
}
.topbar strong{ font-size:15px; }
.topbar .spacer{ flex:1; }
.topbar a{ color:var(--ink-soft); text-decoration:none; font-size:13.5px; }
.topbar a:hover{ color:var(--reef); }

.staff h1{ font-size:22px; font-weight:700; margin:0 0 2px; letter-spacing:-.01em; }
.staff .date{ color:var(--ink-soft); font-size:13.5px; margin:0 0 24px; }
.staff .section{ margin:0 0 28px; }

.count{
  background:var(--ink); color:#fff; border-radius:20px;
  padding:1px 8px; font-size:11px; letter-spacing:0; font-weight:600;
}

.panel{
  background:var(--white); border:1px solid var(--line-solid);
  border-radius:var(--r-sm); overflow:hidden;
}
.row{
  display:grid; grid-template-columns:96px 1fr auto;
  gap:14px; align-items:center;
  padding:14px 16px; border-bottom:1px solid var(--line-solid);
}
.row:last-child{ border-bottom:none; }
.row .time{ font-weight:700; font-variant-numeric:tabular-nums; }
.row .who{ font-weight:600; }
.row .meta{ color:var(--ink-soft); font-size:13px; }
.ref{ font-family:ui-monospace, SFMono-Regular, Menlo, monospace; font-size:12px; color:var(--ink-soft); }

.tag{
  display:inline-block; font-size:12px; font-weight:600;
  padding:3px 9px; border-radius:20px; white-space:nowrap;
}
.tag-ready{ background:var(--reef-tint); color:var(--reef); }
.tag-docs{ background:var(--warn-bg); color:var(--warn); }
.tag-held{ background:var(--danger-bg); color:var(--danger); }

.action{
  display:inline-block; padding:8px 14px; border-radius:var(--r-sm);
  background:var(--reef); color:#fff; text-decoration:none;
  font-size:13.5px; font-weight:600; white-space:nowrap;
}
.action:hover{ background:var(--reef-deep); }
.action-quiet{ background:var(--white); color:var(--reef); border:1px solid var(--line-solid); }
.action-quiet:hover{ background:#f0f7f6; }

/* Blocked work is the first thing on screen and the only thing tinted. */
.attention .panel{ border-color:var(--warn-line); }
.attention .row{ background:var(--warn-bg); }

.empty{ padding:18px 16px; color:var(--ink-soft); font-size:14px; }

/* ----------------------------------------------------------------- AUTH -- */
.centered{ display:flex; align-items:center; justify-content:center; min-height:100vh; padding:20px; }
.box{
  width:100%; max-width:380px; background:var(--white);
  border:1px solid var(--line-solid); border-radius:12px;
  padding:30px 26px; box-shadow:0 12px 32px rgba(7,36,42,.07);
}
.box h1{ font-size:19px; font-weight:700; margin:0 0 4px; letter-spacing:-.01em; }
.box .sub{ color:var(--ink-soft); font-size:13.5px; margin:0 0 22px; }

label{ display:block; font-size:13px; font-weight:600; margin:0 0 6px; }
input[type=text], input[type=password]{
  width:100%; padding:11px 12px; font:inherit;
  border:1px solid var(--line-solid); border-radius:var(--r-sm);
  background:var(--white); margin:0 0 16px;
}
input:focus{ outline:3px solid rgba(14,118,110,.35); outline-offset:1px; border-color:var(--reef); }

.notice{ border-radius:var(--r-sm); padding:10px 12px; font-size:13.5px; margin:0 0 18px; }
.notice-error{ background:var(--danger-bg); color:var(--danger); border:1px solid var(--danger-line); }
.notice-ok{ background:var(--reef-tint); color:var(--reef-deep); border:1px solid rgba(14,118,110,.25); }
.notice-warn{ background:var(--warn-bg); color:var(--warn); border:1px solid var(--warn-line); }

.backlink{ display:block; text-align:center; margin:18px 0 0; font-size:13px; color:var(--ink-soft); text-decoration:none; }
.backlink:hover{ color:var(--reef); }

code.hash{
  display:block; word-break:break-all; background:var(--cool-bg);
  border:1px solid var(--line-solid); border-radius:8px; padding:12px;
  font-family:ui-monospace, SFMono-Regular, Menlo, monospace; font-size:12.5px;
  margin:0 0 16px;
}

/* --------------------------------------------------------- QUALITY FLOOR -- */
a:focus-visible, .btn:focus-visible, button:focus-visible{
  outline:3px solid var(--sun); outline-offset:3px; border-radius:6px;
}
body.staff a:focus-visible, body.staff button:focus-visible{ outline-color:var(--reef); }

@media (max-width:640px){
  .page{ padding:0 14px 48px; }
  .hero{ margin-top:12px; padding:44px 22px 82px; border-radius:18px; }
  .arrival{ margin-top:-52px; padding:22px 20px 20px; }
  .actions .btn{ flex:1 1 100%; }
  .split{ grid-template-columns:1fr; }
  .row{ grid-template-columns:1fr; gap:6px; }
  .row .action{ justify-self:start; margin-top:6px; }
}

@media (prefers-reduced-motion: reduce){
  .card{ animation:none; opacity:1; transform:none; }
  .card:hover, .btn:active{ transform:none; }
  *{ transition-duration:.01ms !important; }
}

/* ---------------------------------------------------------------- FORMS -- */
/* Guest form pages: paper background, generous fields, one column on mobile. */
.page-form{ max-width:800px; }
.form-head{ margin:32px 0 26px; }
.form-head h1{
  font-family:'Fraunces', Georgia, serif; font-weight:600;
  font-size:clamp(28px,5vw,40px); line-height:1.08;
  letter-spacing:-.015em; margin:0 0 12px;
}
.form-head .eyebrow{ color:var(--reef); }
.lede-dark{
  font-size:16px; line-height:1.55; color:var(--ink-soft);
  max-width:58ch; margin:0;
}

fieldset.fs{
  border:1px solid var(--line); border-radius:var(--r);
  background:var(--white); padding:20px 22px 18px; margin:0 0 16px;
}
fieldset.fs legend{
  font-size:12px; letter-spacing:.14em; text-transform:uppercase;
  font-weight:600; color:var(--ink-soft); padding:0 8px;
}

.fields{ display:grid; grid-template-columns:1fr 1fr; gap:14px 18px; }
.f{ display:flex; flex-direction:column; min-width:0; }
.f-wide{ grid-column:1 / -1; }
.f-grow{ flex:1 1 240px; }

.f label{ margin:0 0 6px; }
.req{
  font-size:11px; font-weight:500; color:var(--reef);
  text-transform:uppercase; letter-spacing:.08em; margin-left:6px;
}

input[type=email], input[type=tel], input[type=date], input[type=number],
input[type=search], input[type=file], select, textarea{
  width:100%; padding:11px 12px; font:inherit;
  border:1px solid var(--line-solid); border-radius:var(--r-sm);
  background:var(--white); color:var(--ink); margin:0;
}
textarea{ resize:vertical; }
select{ appearance:none; background-image:none; }
input[type=file]{ padding:9px 12px; }
input:focus, select:focus, textarea:focus{
  outline:3px solid rgba(14,118,110,.35); outline-offset:1px; border-color:var(--reef);
}

.hint{ font-size:13px; line-height:1.5; color:var(--ink-soft); margin:14px 0 0; }

.privacy{ margin-top:20px; }
ul.plain{ margin:0 0 16px; padding:0 0 0 18px; font-size:13.5px; line-height:1.6; color:var(--ink-soft); }
ul.plain li{ margin:0 0 7px; }
ul.plain b{ color:var(--ink); font-weight:600; }

.check{
  display:flex; align-items:flex-start; gap:11px;
  font-size:14px; line-height:1.5; font-weight:400;
  border-top:1px solid var(--line); padding-top:16px; margin:0;
}
.check input{ width:19px; height:19px; flex:none; margin-top:1px; accent-color:var(--reef); }

.notice-list{ margin:8px 0 0; padding:0 0 0 18px; }
.notice-list li{ margin:0 0 4px; }

.filters{ display:flex; flex-wrap:wrap; gap:12px 16px; align-items:flex-end; }
.filters .f{ min-width:150px; }
.f-actions{ flex-direction:row; gap:8px; align-items:center; }

/* ------------------------------------------------------ DETAIL LIST/PANEL -- */
.panel.pad{ padding:20px 22px; }

dl.dl{ margin:0; }
.dl-row{
  display:grid; grid-template-columns:210px 1fr; gap:14px;
  padding:10px 0; border-bottom:1px solid var(--line);
}
.dl-row:last-child{ border-bottom:none; }
dl.dl dt{ font-size:13.5px; color:var(--ink-soft); margin:0; }
dl.dl dd{ margin:0; font-size:14.5px; }
.muted{ color:var(--ink-soft); }

.stack{ display:block; }
.tag-done{ background:var(--line); color:var(--ink-soft); }
.action-danger{
  background:var(--white); color:var(--danger);
  border:1px solid var(--danger-line); font:inherit; font-size:13.5px;
  font-weight:600; padding:8px 14px; border-radius:var(--r-sm); cursor:pointer;
}
.action-danger:hover{ background:var(--danger-bg); }

@media (max-width:640px){
  .fields{ grid-template-columns:1fr; }
  .dl-row{ grid-template-columns:1fr; gap:2px; }
  .filters .f{ min-width:100%; }
}

/* ==========================================================================
   CHECK-IN APP
   A separate register from the marketing pages: full-bleed, single column,
   thumb-reachable actions, one question per block. Built for a phone held
   one-handed in an airport queue.
   ========================================================================== */

body.app{
  background:var(--paper);
  /* Comfortable on notched phones */
  padding:0;
}

/* ---- Sticky bar with progress ------------------------------------------- */
.app-bar{
  position:sticky; top:0; z-index:20;
  background:rgba(251,247,240,.94);
  backdrop-filter:saturate(160%) blur(10px);
  -webkit-backdrop-filter:saturate(160%) blur(10px);
  border-bottom:1px solid var(--line);
  padding-top:env(safe-area-inset-top);
}
.app-bar-inner{
  display:flex; align-items:center; gap:12px;
  height:52px; padding:0 14px;
  max-width:620px; margin:0 auto;
}
.app-back{
  width:38px; height:38px; margin-left:-8px;
  display:flex; align-items:center; justify-content:center;
  border-radius:50%; text-decoration:none;
  color:var(--ink); font-size:19px; line-height:1;
  transition:background .15s ease;
}
.app-back:hover{ background:rgba(7,36,42,.06); }
.app-title{
  flex:1; text-align:center; font-size:14px; font-weight:600;
  color:var(--ink-soft); letter-spacing:-.005em;
  white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
}
.app-step{
  min-width:38px; text-align:right;
  font-size:12.5px; font-weight:600; color:var(--ink-soft);
  font-variant-numeric:tabular-nums;
}
.app-progress{ height:3px; background:rgba(7,36,42,.08); }
.app-progress i{
  display:block; height:100%; background:var(--reef);
  border-radius:0 3px 3px 0;
  transition:width .45s cubic-bezier(.4,0,.2,1);
}

/* ---- Page body ----------------------------------------------------------- */
.app-main{
  max-width:620px; margin:0 auto;
  padding:26px 18px calc(40px + env(safe-area-inset-bottom));
}
.app-kicker{
  font-size:12px; letter-spacing:.14em; text-transform:uppercase;
  font-weight:600; color:var(--reef); margin:0 0 8px;
}
.app-h1{
  font-family:'Fraunces', Georgia, serif; font-weight:600;
  font-size:clamp(26px,6.4vw,34px); line-height:1.12;
  letter-spacing:-.015em; margin:0 0 10px;
}
.app-lede{
  font-size:15.5px; line-height:1.55; color:var(--ink-soft);
  margin:0 0 26px; max-width:46ch;
}

/* ---- One question per block --------------------------------------------- */
.q{ margin:0 0 22px; }
.q label{
  display:block; font-size:15.5px; font-weight:600;
  color:var(--ink); margin:0 0 7px; letter-spacing:-.005em;
}
.q-help{
  font-size:13.5px; line-height:1.45; color:var(--ink-soft);
  margin:-3px 0 10px;
}
.q-error{
  font-size:13.5px; line-height:1.45; color:var(--danger);
  margin:9px 0 0; font-weight:500;
}
.q-switches{ display:flex; flex-direction:column; gap:12px; }

/* Inputs are 17px so iOS doesn't zoom the viewport on focus. */
body.app input[type=text],
body.app input[type=email],
body.app input[type=tel],
body.app input[type=date],
body.app input[type=number],
body.app input[type=password],
body.app select,
body.app textarea{
  width:100%; padding:14px 15px; font:inherit; font-size:17px;
  border:1.5px solid var(--line-solid); border-radius:12px;
  background:var(--white); color:var(--ink);
  -webkit-appearance:none; appearance:none;
  transition:border-color .15s ease, box-shadow .15s ease;
}
body.app textarea{ font-size:16px; line-height:1.5; resize:vertical; min-height:88px; }
body.app select{ background-image:none; }
body.app input:focus, body.app select:focus, body.app textarea:focus{
  outline:none; border-color:var(--reef);
  box-shadow:0 0 0 4px rgba(14,118,110,.14);
}

/* ---- Guest count stepper ------------------------------------------------- */
.stepper{
  display:flex; align-items:stretch; gap:0;
  border:1.5px solid var(--line-solid); border-radius:12px;
  background:var(--white); overflow:hidden; max-width:220px;
}
.stepper-btn{
  width:56px; flex:none; border:0; background:transparent;
  font:inherit; font-size:24px; line-height:1; font-weight:400;
  color:var(--reef); cursor:pointer;
  transition:background .15s ease;
}
.stepper-btn:hover{ background:var(--reef-tint); }
.stepper-btn:active{ background:rgba(14,118,110,.18); }
body.app .stepper input{
  border:0 !important; border-radius:0 !important;
  border-left:1.5px solid var(--line-solid) !important;
  border-right:1.5px solid var(--line-solid) !important;
  text-align:center; font-weight:700; font-size:19px;
  box-shadow:none !important; -moz-appearance:textfield;
}
.stepper input::-webkit-outer-spin-button,
.stepper input::-webkit-inner-spin-button{ -webkit-appearance:none; margin:0; }

/* ---- Passport upload ----------------------------------------------------- */
.visually-hidden{
  position:absolute; width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip:rect(0 0 0 0); white-space:nowrap; border:0;
}
.dropzone{
  display:flex; align-items:center; gap:14px;
  padding:18px 16px; cursor:pointer;
  border:1.5px dashed rgba(14,118,110,.45); border-radius:12px;
  background:var(--reef-tint);
  transition:background .15s ease, border-color .15s ease;
}
.dropzone:hover{ background:#dcefec; border-color:var(--reef); }
.dropzone:active{ transform:scale(.995); }
.dz-icon{
  width:44px; height:44px; flex:none;
  display:flex; align-items:center; justify-content:center;
  background:var(--white); border-radius:12px; color:var(--reef);
}
.dz-icon svg{ width:24px; height:24px; }
.dz-text{
  font-size:14.5px; line-height:1.4; font-weight:500; color:var(--reef-deep);
  word-break:break-word;
}
.dz-preview{
  display:block; width:100%; max-height:230px; object-fit:cover;
  border-radius:12px; margin:12px 0 0; border:1px solid var(--line);
}

/* ---- Switch rows --------------------------------------------------------- */
.switch{
  display:flex; align-items:flex-start; gap:12px;
  font-size:14.5px; line-height:1.45; font-weight:400 !important;
  color:var(--ink); margin:0 !important; cursor:pointer;
  background:var(--white); border:1px solid var(--line);
  border-radius:12px; padding:14px 15px;
}
.switch input{
  width:21px; height:21px; flex:none; margin:0; accent-color:var(--reef);
}

/* ---- Optional extras ----------------------------------------------------- */
.more-fields{
  border:1px solid var(--line); border-radius:12px;
  background:var(--white); margin:0 0 22px; overflow:hidden;
}
.more-fields summary{
  padding:15px 16px; cursor:pointer; list-style:none;
  font-size:14.5px; font-weight:600; color:var(--reef);
  display:flex; align-items:center; justify-content:space-between; gap:10px;
}
.more-fields summary::-webkit-details-marker{ display:none; }
.more-fields summary span{
  font-size:11.5px; font-weight:500; text-transform:uppercase;
  letter-spacing:.1em; color:var(--ink-soft);
}
.more-fields summary::after{
  content:"+"; font-size:19px; font-weight:400; color:var(--ink-soft);
}
.more-fields[open] summary::after{ content:"\2212"; }
.more-fields[open] summary{ border-bottom:1px solid var(--line); }
.more-fields .q{ margin:16px; }

/* ---- Actions ------------------------------------------------------------- */
.app-actions{ display:flex; flex-direction:column; gap:10px; margin:30px 0 0; }
body.app .btn{ padding:16px 22px; font-size:16px; border-radius:12px; }

/* ---- Review step --------------------------------------------------------- */
.summary{
  background:var(--white); border:1px solid var(--line);
  border-radius:14px; padding:16px 18px; margin:0 0 14px;
}
.summary-row{
  display:flex; justify-content:space-between; gap:14px;
  padding:7px 0; font-size:14.5px;
}
.summary-k{ color:var(--ink-soft); flex:none; }
.summary-v{ font-weight:600; text-align:right; }
.summary-edit{
  display:inline-block; margin:8px 0 0; font-size:13.5px;
  font-weight:600; color:var(--reef); text-decoration:none;
}
.summary-edit:hover{ text-decoration:underline; }

.guest-card{
  display:flex; align-items:center; gap:14px;
  background:var(--white); border:1px solid var(--line);
  border-radius:14px; padding:15px 16px; margin:0 0 10px;
  text-decoration:none; color:var(--ink);
  transition:border-color .15s ease, box-shadow .15s ease;
}
.guest-card:hover{ border-color:rgba(14,118,110,.4); box-shadow:var(--shadow-card); }
.guest-no{
  width:32px; height:32px; flex:none;
  display:flex; align-items:center; justify-content:center;
  background:var(--reef-tint); color:var(--reef);
  border-radius:50%; font-size:14px; font-weight:700;
}
.guest-body{ flex:1; min-width:0; }
.guest-name{ display:block; font-weight:600; font-size:15px; margin:0 0 2px; }
.guest-meta{
  display:block; font-size:13px; color:var(--ink-soft);
  white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
}
.guest-edit{ font-size:13.5px; font-weight:600; color:var(--reef); flex:none; }

.privacy-card{
  background:var(--white); border:1px solid var(--line);
  border-radius:14px; padding:20px 18px; margin:22px 0 0;
}
.privacy-card h2{
  font-family:'Fraunces', Georgia, serif; font-size:17px;
  font-weight:600; margin:0 0 12px; letter-spacing:-.01em;
}
.privacy-card .switch{ margin-top:16px !important; background:var(--paper); }

/* ---- Done step ----------------------------------------------------------- */
.done{ text-align:center; padding:22px 0 0; }
.done .app-lede{ margin-left:auto; margin-right:auto; }
.done-mark{ width:76px; height:76px; margin:0 auto 22px; }
.done-mark svg{ width:100%; height:100%; }
.done-circle{
  stroke:var(--reef); stroke-width:2.5; stroke-dasharray:151; stroke-dashoffset:151;
  animation:drawCircle .55s cubic-bezier(.65,0,.45,1) forwards;
}
.done-tick{
  stroke:var(--reef); stroke-width:3.4; stroke-linecap:round; stroke-linejoin:round;
  stroke-dasharray:48; stroke-dashoffset:48;
  animation:drawTick .35s cubic-bezier(.65,0,.45,1) .5s forwards;
}
@keyframes drawCircle{ to{ stroke-dashoffset:0; } }
@keyframes drawTick{ to{ stroke-dashoffset:0; } }
.done-contact{
  font-size:13.5px; color:var(--ink-soft); margin:26px 0 0; line-height:1.6;
}
.done-contact a{ color:var(--reef); font-weight:600; text-decoration:none; }

/* ---- Loading overlay ----------------------------------------------------- */
.overlay{
  position:fixed; inset:0; z-index:100;
  display:flex; align-items:center; justify-content:center;
  background:rgba(7,36,42,.55);
  backdrop-filter:blur(3px); -webkit-backdrop-filter:blur(3px);
  animation:fadeIn .18s ease;
}
.overlay[hidden]{ display:none; }
.overlay-card{
  background:var(--white); border-radius:16px;
  padding:28px 32px; text-align:center; min-width:230px; max-width:300px;
  box-shadow:0 20px 50px rgba(7,36,42,.3);
}
.overlay-text{
  font-size:14.5px; font-weight:600; color:var(--ink);
  margin:16px 0 0; line-height:1.4;
}
.overlay-bar{
  height:5px; background:var(--line); border-radius:3px;
  margin:14px 0 0; overflow:hidden;
}
.overlay-bar[hidden]{ display:none; }
.overlay-bar i{
  display:block; height:100%; width:0;
  background:var(--reef); border-radius:3px;
  transition:width .18s ease;
}
.spinner{
  width:40px; height:40px; margin:0 auto;
  border:3.5px solid var(--line);
  border-top-color:var(--reef);
  border-radius:50%;
  animation:spin .75s linear infinite;
}
@keyframes spin{ to{ transform:rotate(360deg); } }
@keyframes fadeIn{ from{ opacity:0; } to{ opacity:1; } }

@media (prefers-reduced-motion: reduce){
  .done-circle, .done-tick{ animation:none; stroke-dashoffset:0; }
  .spinner{ animation-duration:1.6s; }
  .app-progress i{ transition:none; }
}


/* ==========================================================================
   SITE CHROME — shared header and footer for the public pages
   ========================================================================== */

.site-head{
  position:sticky; top:0; z-index:50;
  background:rgba(251,247,240,.94);
  backdrop-filter:saturate(160%) blur(10px);
  -webkit-backdrop-filter:saturate(160%) blur(10px);
  border-bottom:1px solid var(--line);
}
.site-head-inner{
  max-width:var(--maxw); margin:0 auto;
  padding:0 20px; height:64px;
  display:flex; align-items:center; justify-content:space-between; gap:20px;
}
.brand{ display:flex; align-items:center; gap:11px; text-decoration:none; color:var(--ink); }
.brand-mark{ height:38px; width:auto; }
.brand-text{
  display:flex; flex-direction:column; line-height:1.02;
  font-family:'Fraunces', Georgia, serif; font-weight:600;
  font-size:17px; letter-spacing:-.01em;
}

.site-nav{ display:flex; align-items:center; gap:26px; }
.site-nav a{
  font-size:14.5px; font-weight:500; color:var(--ink-soft);
  text-decoration:none; padding:6px 0;
  border-bottom:2px solid transparent; transition:color .15s ease, border-color .15s ease;
}
.site-nav a:hover{ color:var(--reef); }
.site-nav a[aria-current=page]{ color:var(--ink); border-bottom-color:var(--reef); }
.site-nav .nav-cta{
  background:var(--reef); color:#fff; padding:9px 17px;
  border-radius:9px; font-weight:600; border-bottom:none;
}
.site-nav .nav-cta:hover{ background:var(--reef-deep); color:#fff; }

.burger{
  display:none; flex-direction:column; gap:4.5px;
  background:none; border:0; cursor:pointer; padding:8px;
}
.burger span{ width:22px; height:2px; background:var(--ink); border-radius:2px; transition:transform .2s ease, opacity .2s ease; }
.burger.is-open span:nth-child(1){ transform:translateY(6.5px) rotate(45deg); }
.burger.is-open span:nth-child(2){ opacity:0; }
.burger.is-open span:nth-child(3){ transform:translateY(-6.5px) rotate(-45deg); }

.mobile-menu{
  display:flex; flex-direction:column;
  background:var(--paper); border-bottom:1px solid var(--line);
  padding:6px 20px 14px;
}
.mobile-menu[hidden]{ display:none; }
.mobile-menu a{
  padding:13px 0; font-size:16px; font-weight:500;
  color:var(--ink); text-decoration:none;
  border-bottom:1px solid var(--line);
}
.mobile-menu a:last-child{ border-bottom:none; color:var(--reef); font-weight:600; }

@media (max-width:820px){
  .site-nav{ display:none; }
  .burger{ display:flex; }
}

/* ---- Page heads ---------------------------------------------------------- */
.page-head{ margin:44px 0 34px; }
.page-h1{
  font-family:'Fraunces', Georgia, serif; font-weight:600;
  font-size:clamp(30px,5.4vw,44px); line-height:1.08;
  letter-spacing:-.015em; margin:0 0 12px;
}
.page-lede{
  font-size:16.5px; line-height:1.6; color:var(--ink-soft);
  max-width:56ch; margin:0;
}

/* ---- Rooms --------------------------------------------------------------- */
.room{
  background:var(--white); border:1px solid var(--line);
  border-radius:var(--r); padding:24px 26px; margin:0 0 14px;
}
.room-name{
  font-family:'Fraunces', Georgia, serif; font-size:21px;
  font-weight:600; margin:0 0 4px; letter-spacing:-.01em;
}
.room-meta{ font-size:13.5px; color:var(--reef); font-weight:600; margin:0 0 12px; }
.room-blurb{ font-size:15px; line-height:1.6; color:var(--ink-soft); margin:0 0 16px; max-width:64ch; }

.chips{ display:flex; flex-wrap:wrap; gap:8px; list-style:none; margin:0; padding:0; }
.chips li{
  font-size:12.5px; font-weight:500; color:var(--ink-soft);
  background:var(--paper); border:1px solid var(--line);
  padding:5px 11px; border-radius:20px;
}

/* ---- Site footer --------------------------------------------------------- */
.site-foot{ background:var(--white); border-top:1px solid var(--line); margin:64px 0 0; }
.site-foot-inner{
  max-width:var(--maxw); margin:0 auto; padding:44px 20px 30px;
  display:grid; grid-template-columns:repeat(3,1fr); gap:34px;
}
.foot-title{
  font-size:12px; letter-spacing:.14em; text-transform:uppercase;
  font-weight:600; color:var(--ink-soft); margin:0 0 14px;
}
.foot-addr{ font-style:normal; font-size:14.5px; line-height:1.65; margin:0 0 12px; }
.foot-addr span{ display:block; }
.foot-map{ font-size:13.5px; font-weight:600; color:var(--reef); text-decoration:none; }
.foot-map:hover{ text-decoration:underline; }
.foot-note{ font-size:13.5px; line-height:1.55; color:var(--ink-soft); margin:0 0 12px; }
.foot-list{ list-style:none; margin:0 0 12px; padding:0; font-size:14.5px; line-height:1.9; }
.foot-list a{ color:var(--ink); text-decoration:none; }
.foot-list a:hover{ color:var(--reef); }
.foot-badge{ height:64px; width:auto; margin:8px 0 0; opacity:.9; }

.foot-bar{
  border-top:1px solid var(--line);
  padding:15px 20px; text-align:center;
  font-size:13px; color:var(--ink-soft);
  display:flex; justify-content:center; flex-wrap:wrap; gap:6px 20px;
}
.foot-bar a{ color:var(--ink-soft); text-decoration:none; }
.foot-bar a:hover{ color:var(--reef); }

@media (max-width:760px){
  .site-foot-inner{ grid-template-columns:1fr; gap:28px; padding:32px 18px 24px; }
  .page-head{ margin:30px 0 26px; }
}
