/* Aquaivo core design system
   Premium, technology-forward, calm and trustworthy. */

:root {
  --ink: #07302f;
  --deep: #04211f;
  --cream: #f6f2e9;
  --paper: #fffdf8;
  --sand: #ece2cc;
  --orange: #f26b3e;
  --orange-deep: #d9532a;
  --glow: #2fd3c3;
  --lime: #cfe06f;
  --sky: #bfe3e2;
  --muted: #5f7473;
  --line: rgba(7, 48, 47, 0.12);
  --line-soft: rgba(7, 48, 47, 0.07);
  --shadow-sm: 0 1px 2px rgba(4, 33, 31, 0.06), 0 6px 18px rgba(4, 33, 31, 0.06);
  --shadow-md: 0 2px 6px rgba(4, 33, 31, 0.08), 0 24px 48px rgba(4, 33, 31, 0.10);
  --radius: 16px;
  --radius-lg: 24px;
  --container: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "DM Sans", system-ui, -apple-system, Segoe UI, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.drawer-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; }
:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Typography */
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-size: 11px;
  font-weight: 700;
  margin: 0 0 14px;
  color: #6f8b8a;
}
h1, h2, h3 { font-family: Fraunces, Georgia, serif; }
em { color: var(--orange); font-style: normal; }

/* Brand */
.brand {
  font: 700 25px Fraunces, serif;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -1px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.brand-mark {
  font: 700 18px Fraunces, serif;
  background: linear-gradient(150deg, var(--orange), var(--orange-deep));
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50% 50% 44% 44%;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 16px rgba(242, 107, 62, 0.35);
}

/* Buttons */
.primary-button,
.pill-button,
.ghost-button,
.light-button,
.text-button {
  font: 600 14px "DM Sans", sans-serif;
  cursor: pointer;
  border: 0;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease), background 0.18s var(--ease);
}
.primary-button {
  background: linear-gradient(150deg, var(--orange), var(--orange-deep));
  color: #fff;
  padding: 15px 22px;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(242, 107, 62, 0.28);
}
.primary-button:hover { transform: translateY(-2px); box-shadow: 0 16px 32px rgba(242, 107, 62, 0.34); }
.pill-button {
  background: var(--ink);
  color: #fff;
  padding: 11px 20px;
  border-radius: 50px;
}
.pill-button:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.ghost-button {
  background: transparent;
  color: var(--ink);
  padding: 10px 18px;
  border-radius: 50px;
  border: 1px solid var(--line);
}
.ghost-button:hover { border-color: var(--ink); }
.light-button {
  background: var(--lime);
  color: #173d3e;
  padding: 15px 22px;
  border-radius: 12px;
  white-space: nowrap;
}
.light-button:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.text-button {
  background: none;
  color: var(--ink);
  font-weight: 700;
  padding: 0;
}
.text-button span,
.primary-button span,
.light-button span { font-size: 18px; line-height: 1; transition: transform 0.18s var(--ease); }
.primary-button:hover span,
.text-button:hover span { transform: translateX(3px); }
.full-button { width: 100%; justify-content: center; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 18px max(24px, calc((100vw - var(--container)) / 2));
  background: rgba(246, 242, 233, 0.82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: padding 0.25s var(--ease), border-color 0.25s var(--ease), background 0.25s var(--ease);
}
.site-header.is-scrolled {
  padding-top: 12px;
  padding-bottom: 12px;
  border-color: var(--line);
  background: rgba(246, 242, 233, 0.94);
}
.site-nav {
  display: flex;
  gap: 26px;
  flex: 1;
}
.site-nav a {
  color: #43625f;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--orange);
  transition: width 0.2s var(--ease);
}
.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after { width: 100%; }
.site-nav a[aria-current="page"] { color: var(--ink); }
.site-header-actions { display: flex; align-items: center; gap: 12px; }

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  padding: 0;
  cursor: pointer;
}
.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px auto;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s var(--ease), opacity 0.2s var(--ease);
}
body.drawer-open .menu-button span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
body.drawer-open .menu-button span:nth-child(2) { opacity: 0; }
body.drawer-open .menu-button span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

/* Mobile drawer */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 45;
  background: rgba(4, 33, 31, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s var(--ease);
}
.drawer-panel {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 46;
  width: min(340px, 86vw);
  height: 100%;
  background: var(--paper);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transform: translateX(100%);
  transition: transform 0.32s var(--ease);
  box-shadow: -30px 0 60px rgba(4, 33, 31, 0.25);
}
body.drawer-open .drawer-backdrop { opacity: 1; pointer-events: auto; }
body.drawer-open .drawer-panel { transform: translateX(0); }
.drawer-head { display: flex; align-items: center; justify-content: space-between; }
.drawer-close {
  border: 0;
  background: none;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  color: var(--ink);
}
.drawer-nav { display: flex; flex-direction: column; }
.drawer-nav a {
  padding: 14px 4px;
  border-bottom: 1px solid var(--line-soft);
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
}
.drawer-nav a[aria-current="page"] { color: var(--orange); }
.drawer-actions { display: grid; gap: 10px; margin-top: 6px; }
.drawer-actions .ghost-button,
.drawer-actions .pill-button { justify-content: center; padding: 13px; }
.drawer-note { font-size: 12px; color: var(--muted); margin: auto 0 0; }

/* Hero */
.hero {
  max-width: var(--container);
  margin: 22px auto 0;
  padding: 72px clamp(28px, 6vw, 72px) 84px;
  min-height: 460px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(120% 120% at 88% 8%, rgba(47, 211, 195, 0.28), transparent 42%),
    radial-gradient(90% 90% at 8% 92%, rgba(207, 224, 111, 0.22), transparent 46%),
    linear-gradient(155deg, #0a3b39, #04211f 78%);
  color: #eef6f4;
  display: flex;
}
.hero-copy { position: relative; z-index: 2; width: 60%; }
.hero .eyebrow { color: #9fd6d0; }
.hero h1 {
  font-size: clamp(48px, 6.6vw, 82px);
  letter-spacing: -2.4px;
  line-height: 0.98;
  margin: 0;
}
.hero h1 em { color: var(--lime); }
.hero-text {
  font-size: 17px;
  line-height: 1.65;
  max-width: 460px;
  margin: 24px 0 0;
  color: #cfe4e1;
}
.hero .primary-button { margin-top: 30px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.trust-row span {
  font-size: 12px;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 100px;
  padding: 8px 13px;
  backdrop-filter: blur(4px);
}

/* Decorative hero art */
.hero-art { position: absolute; inset: 0; z-index: 1; }
.sun {
  width: 210px; height: 210px;
  background: radial-gradient(circle at 40% 40%, #ffe6b0, rgba(255, 230, 176, 0.05) 70%);
  border-radius: 50%;
  position: absolute; right: 9%; top: 40px;
  filter: blur(2px);
}
.cloud, .boat, .water-line { display: none; }
.hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 160px;
  background:
    repeating-linear-gradient(90deg, transparent 0 38px, rgba(47, 211, 195, 0.14) 38px 39px),
    repeating-linear-gradient(0deg, transparent 0 38px, rgba(47, 211, 195, 0.10) 38px 39px);
  mask-image: linear-gradient(to top, #000, transparent);
  -webkit-mask-image: linear-gradient(to top, #000, transparent);
}

/* Search card */
.search-card {
  max-width: 1080px;
  margin: -36px auto 0;
  background: var(--paper);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  position: relative;
  z-index: 5;
}
.search-field {
  border-right: 1px solid var(--line-soft);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
}
.field-icon { font-size: 20px; color: var(--orange); }
.search-field label {
  color: #7d8c8c;
  font-size: 11px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}
.search-field strong { color: var(--ink); font-size: 14px; }
.search-field label { flex: 1; text-transform: uppercase; letter-spacing: 0.4px; font-weight: 700; }
.search-field input {
  border: 0; background: transparent; padding: 2px 0; margin: 0;
  font: 500 14px "DM Sans", sans-serif; color: var(--ink); width: 100%;
  text-transform: none; letter-spacing: 0;
}
.search-field input:focus { outline: none; }
.search-field select {
  border: 0; background: transparent; padding: 2px 0; margin: 0;
  font: 500 14px "DM Sans", sans-serif; color: var(--ink); width: 100%;
  text-transform: none; letter-spacing: 0; cursor: pointer;
}
.search-field select:focus { outline: none; }
.search-field select[aria-invalid="true"] { color: var(--orange-deep); }
.search-field:focus-within { background: #fff; box-shadow: inset 0 0 0 2px var(--orange); border-radius: 8px; }
.search-card .primary-button { border-radius: 12px; }
.search-hint { grid-column: 1 / -1; margin: 0; padding: 8px 18px 0; font-size: 12px; color: var(--orange-deep); font-weight: 600; }

.listing-skeleton {
  min-height: 280px; border-radius: var(--radius);
  background: linear-gradient(100deg, #eef1ee 30%, #f6f8f5 50%, #eef1ee 70%);
  background-size: 200% 100%; animation: sk 1.3s ease-in-out infinite;
}
@keyframes sk { to { background-position: -200% 0; } }
@media (prefers-reduced-motion: reduce) { .listing-skeleton { animation: none; } }
.listing-fallback { grid-column: 1 / -1; font-size: 14px; color: var(--muted); text-align: center; padding: 30px; }
.listing-fallback a { color: var(--orange-deep); font-weight: 600; }

/* Sections */
.section { max-width: var(--container); margin: 108px auto; padding: 0 24px; }
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 34px;
}
.section h2,
.feature-copy h2,
.partner-banner h2,
.modal h2 {
  font-size: clamp(30px, 4vw, 44px);
  letter-spacing: -1.6px;
  line-height: 1.02;
  margin: 0;
}

/* Experience cards */
.experience-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.experience-card {
  min-height: 232px;
  padding: 22px;
  border-radius: 18px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
  border: 1px solid var(--line-soft);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.experience-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.experience-card::after {
  content: "";
  position: absolute;
  width: 150px; height: 150px;
  border-radius: 50%;
  right: -50px; top: -50px;
  background: rgba(255, 255, 255, 0.35);
}
.experience-card p { margin: 0 0 6px; font-size: 12px; position: relative; z-index: 2; }
.experience-card h3 { font: 600 24px Fraunces, serif; margin: 0; letter-spacing: -0.6px; position: relative; z-index: 2; }
.card-icon { font-size: 28px; position: relative; z-index: 2; }
.card-arrow { position: absolute; right: 18px; bottom: 16px; font-size: 20px; }
.sunset { background: linear-gradient(160deg, #ffd9a8, #f7be85); }
.birthday { background: linear-gradient(160deg, #e9bfe2, #dda9d4); }
.beach { background: linear-gradient(160deg, #cfece0, #b7dfd2); }
.corporate { background: linear-gradient(160deg, #d9e5f4, #cbd9ee); }

/* Listings */
.listing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.listing-card {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.listing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.listing-image {
  height: 178px;
  padding: 14px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.listing-image.sail { background: linear-gradient(150deg, #a7d8dc 0 46%, #387b83 47% 100%); }
.listing-image.yacht { background: linear-gradient(150deg, #f7ce91 0 42%, #ce7e4f 43% 100%); }
.listing-image.cruise { background: linear-gradient(150deg, #9ebfc7 0 46%, #315e75 47% 100%); }
.listing-image::after {
  content: "";
  display: block;
  align-self: end;
  width: 74%;
  height: 56px;
  background: #fffdf6;
  clip-path: polygon(0 5%, 100% 5%, 83% 100%, 16% 100%);
  border-radius: 5px;
}
.tag, .verify {
  font-size: 10px;
  font-weight: 700;
  border-radius: 50px;
  padding: 6px 9px;
  letter-spacing: 0.4px;
}
.tag { background: #fff; color: var(--ink); }
.verify { color: #1f5d5a; background: #d8f2ec; display: inline-flex; align-items: center; gap: 4px; }
.listing-content { padding: 18px; }
.listing-title { display: flex; justify-content: space-between; gap: 8px; align-items: baseline; }
.listing-title h3 { font: 700 18px Fraunces, serif; margin: 0; letter-spacing: -0.4px; }
.listing-content p { color: var(--muted); font-size: 12px; margin: 7px 0 15px; }
.listing-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--line-soft);
  padding-top: 14px;
  font-size: 12px;
  color: var(--muted);
}
.listing-meta strong { font-size: 15px; color: var(--ink); font-family: Fraunces, serif; }

/* Feature section */
.feature-section {
  max-width: var(--container);
  margin: 118px auto;
  background: linear-gradient(160deg, #0a3b39, #04211f);
  color: #e9f4f2;
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  overflow: hidden;
}
.feature-art {
  min-height: 460px;
  position: relative;
  padding: 32px;
  overflow: hidden;
  background:
    radial-gradient(90% 90% at 20% 20%, rgba(47, 211, 195, 0.3), transparent 55%),
    radial-gradient(80% 80% at 90% 90%, rgba(207, 224, 111, 0.22), transparent 55%);
}
.feature-art p {
  position: absolute;
  bottom: 26px;
  left: 32px;
  font: 600 24px Fraunces, serif;
  max-width: 200px;
  margin: 0;
}
.feature-art .route {
  position: absolute;
  top: 90px;
  left: 16%;
  height: 260px;
  width: 68%;
  border: 2px dashed rgba(207, 224, 111, 0.6);
  border-radius: 58% 42% 46% 52%;
  transform: rotate(14deg);
}
.route-dot { width: 16px; height: 16px; border-radius: 50%; background: var(--orange); position: absolute; z-index: 1; }
.route-dot.start { top: 86px; left: 20%; }
.route-dot.end { bottom: 96px; right: 18%; background: var(--lime); }
.mini-boat { font-size: 74px; position: absolute; top: 180px; left: 40%; transform: rotate(-16deg); opacity: 0.9; }
.feature-copy { padding: 62px clamp(28px, 5vw, 58px); }
.feature-copy .eyebrow { color: #9fd6d0; }
.feature-copy h2 { margin-bottom: 30px; }
.feature-copy ol { margin: 0; padding: 0; list-style: none; }
.feature-copy li {
  display: flex;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.feature-copy li > span { font: 700 13px "DM Sans"; color: var(--lime); }
.feature-copy strong { font-size: 15px; }
.feature-copy li p { font-size: 13px; color: #b9d2cf; margin: 5px 0 0; line-height: 1.55; }

/* Partner banner */
.partner-banner {
  max-width: var(--container);
  margin: 0 auto 72px;
  padding: 54px clamp(28px, 5vw, 64px);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(80% 120% at 90% 10%, rgba(47, 211, 195, 0.22), transparent 45%),
    linear-gradient(155deg, #0a3b39, #04211f);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.partner-banner .eyebrow { color: #9fd6d0; }
.partner-banner > div > p:last-child { max-width: 520px; color: #b6d0cf; margin: 14px 0 0; line-height: 1.55; }

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(4, 33, 31, 0.62);
  backdrop-filter: blur(4px);
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 20px;
}
.modal.hidden { display: none; }
.modal-panel {
  background: var(--paper);
  width: min(460px, 100%);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  box-shadow: var(--shadow-md);
}
.modal-panel h2 { font-size: 32px; letter-spacing: -1px; }
.modal-panel > p:not(.eyebrow) { line-height: 1.6; color: #547071; margin: 14px 0 26px; }
.close-modal {
  position: absolute;
  right: 16px;
  top: 12px;
  border: 0;
  background: transparent;
  font-size: 26px;
  cursor: pointer;
  color: var(--ink);
}

/* Footer */
.site-footer {
  max-width: var(--container);
  margin: 0 auto;
  padding: 60px 24px 34px;
  border-top: 1px solid var(--line);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 28px;
}
.footer-brand p { font-size: 13px; color: var(--muted); max-width: 280px; margin: 14px 0; }
.footer-signal {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  color: #5f7473;
  border: 1px solid var(--line);
  border-radius: 40px;
  padding: 6px 11px;
}
.footer-signal i { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); }
.site-footer strong { display: block; font-size: 12px; margin-bottom: 14px; }
.site-footer a {
  display: block;
  color: #557371;
  text-decoration: none;
  font-size: 13px;
  margin: 9px 0;
}
.site-footer a:hover { color: var(--ink); }
.footer-base {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid var(--line-soft);
  font-size: 12px;
  color: var(--muted);
}

/* Availability calendar (booking + account) */
.cal { display: block; }
.cal-msg { font-size: 13px; color: var(--muted); padding: 16px 0; }
.cal-msg.cal-err { color: #b23c1e; }
.cal-retry { border: 1px solid var(--line); background: #fff; border-radius: 8px; padding: 8px 14px; font: 600 12px "DM Sans", sans-serif; cursor: pointer; }
.cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.cal-head strong { font: 600 15px Fraunces, serif; letter-spacing: -0.3px; }
.cal-nav {
  width: 34px; height: 34px;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 9px;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  color: var(--ink);
}
.cal-nav:disabled { opacity: 0.35; cursor: not-allowed; }
.cal-week { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; margin-bottom: 4px; }
.cal-week span { text-align: center; font-size: 10px; font-weight: 700; letter-spacing: 0.5px; color: #8b9a99; padding: 4px 0; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal-pad { aspect-ratio: 1; }
.cal-day {
  aspect-ratio: 1;
  border: 1px solid var(--line-soft);
  background: var(--paper);
  border-radius: 9px;
  font: 500 13px "DM Sans", sans-serif;
  color: var(--ink);
  cursor: pointer;
  transition: transform 0.12s var(--ease), border-color 0.12s var(--ease), background 0.12s var(--ease);
}
.cal-day.is-available:hover { border-color: var(--orange); transform: translateY(-1px); }
.cal-day.is-unavailable { color: #b9c4c3; background: repeating-linear-gradient(135deg, #f4f6f3 0 5px, #eef1ee 5px 10px); cursor: not-allowed; border-color: transparent; text-decoration: line-through; }
.cal-day.is-held { color: #9d7229; background: #fdf1d9; border-color: #f0dcae; cursor: not-allowed; }
.cal-day.is-today { font-weight: 700; box-shadow: inset 0 0 0 1px var(--line); }
.cal-day.is-selected {
  background: linear-gradient(150deg, var(--orange), var(--orange-deep));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 6px 16px rgba(242, 107, 62, 0.32);
}
.cal-day:focus-visible { outline: 2px solid var(--ink); outline-offset: 2px; z-index: 1; }
.cal-day[aria-disabled="true"] { cursor: not-allowed; }
.cal-legend { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 14px; margin: 14px 0 0; font-size: 11px; color: var(--muted); }
.cal-legend i { display: inline-block; width: 9px; height: 9px; border-radius: 3px; margin-right: 5px; vertical-align: -1px; }
.cal-legend .dot-available { background: var(--orange); }
.cal-legend .dot-unavailable { background: #c8d2d0; }
.cal-legend .dot-held { background: #f0c869; }
.cal-slot { font-size: 11px; color: var(--muted); margin: 8px 0 0; }

/* Slot picker (booking page) */
.slot-picker { margin-top: 16px; }
.slot-picker legend, .slot-picker .slot-legend { font-size: 11px; font-weight: 700; letter-spacing: 0.4px; text-transform: uppercase; color: #5f7473; margin-bottom: 10px; padding: 0; }
.slot-options { display: grid; gap: 8px; }
.slot-option {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  border: 1px solid var(--line); border-radius: 10px; padding: 12px 14px;
  background: var(--paper); cursor: pointer; font-size: 13px; text-align: left; width: 100%;
  transition: border-color 0.15s var(--ease), background 0.15s var(--ease);
}
.slot-option:hover:not([aria-disabled="true"]) { border-color: var(--orange); }
.slot-option:focus-visible { outline: 2px solid var(--ink); outline-offset: 2px; }
.slot-option[aria-checked="true"] { border-color: var(--orange); background: #fdf1ea; }
.slot-option[aria-disabled="true"] { opacity: 0.5; cursor: not-allowed; }
.slot-option .slot-name { font-weight: 600; }
.slot-option .slot-meta { color: var(--muted); font-size: 12px; }
.slot-option .slot-state { font-size: 11px; font-weight: 700; }
.slot-option[aria-disabled="true"] .slot-state { color: #b23c1e; }

/* Screen-reader only + skip link */
.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: absolute; left: 12px; top: -60px; z-index: 100;
  background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 8px;
  font: 600 13px "DM Sans", sans-serif; text-decoration: none;
  transition: top 0.15s var(--ease);
}
.skip-link:focus { top: 12px; }

.hold-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 11px;
  background: #edf5ef;
  border: 1px solid #d6e7da;
}
.hold-bar p { margin: 0; font-size: 12px; color: #3f5f52; flex: 1; }
.hold-bar strong { font: 600 15px Fraunces, serif; color: #2f7458; font-variant-numeric: tabular-nums; }
.hold-dot { width: 8px; height: 8px; border-radius: 50%; background: #3f9a74; flex-shrink: 0; }
.hold-bar.is-warning { background: #fdf1d9; border-color: #f0dcae; }
.hold-bar.is-warning strong { color: #9d7229; }
.hold-bar.is-warning .hold-dot { background: #d99a2b; }
.hold-bar.is-expired { background: #f9e7e1; border-color: #eccabd; }
.hold-bar.is-expired strong, .hold-bar.is-expired p { color: #b23c1e; }
.hold-bar.is-expired .hold-dot { background: #b23c1e; }
.cal-label { display: block; font-size: 11px; font-weight: 700; letter-spacing: 0.4px; text-transform: uppercase; color: #5f7473; margin-bottom: 12px; }
.primary-button.is-disabled { opacity: 0.5; box-shadow: none; cursor: not-allowed; }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Responsive */
@media (max-width: 940px) {
  .site-nav, .site-header-actions { display: none; }
  .menu-button { display: block; margin-left: auto; }
  .experience-grid { grid-template-columns: 1fr 1fr; }
  .listing-grid { grid-template-columns: 1fr 1fr; }
  .feature-section { grid-template-columns: 1fr; }
  .feature-art { min-height: 280px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .hero { border-radius: 20px; margin-top: 14px; padding: 54px 24px 70px; min-height: 0; }
  .hero-copy { width: 100%; }
  .sun { right: -60px; top: auto; bottom: -40px; opacity: 0.7; }
  .search-card { margin: -24px 16px 0; display: flex; flex-direction: column; }
  .search-field { border-right: 0; border-bottom: 1px solid var(--line-soft); }
  .search-field:last-of-type { border-bottom: 0; }
  .section { margin: 76px auto; }
  .section-heading { flex-direction: column; align-items: flex-start; }
  .experience-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .listing-grid { grid-template-columns: 1fr; }
  .partner-banner { flex-direction: column; align-items: flex-start; text-align: left; margin-bottom: 40px; }
  .partner-banner .light-button { width: 100%; justify-content: center; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 22px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-base { flex-direction: column; gap: 8px; }
}

/* ---- International phone field (phone-field.js) ---- */
.phone-field { display: block; }
.phone-field-row { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: 10px; }
.phone-field-country,
.phone-field-number { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.phone-field label { font-size: 0.85rem; font-weight: 600; color: var(--ink); }
.phone-field select,
.phone-field input {
  width: 100%; box-sizing: border-box; padding: 12px 12px; border: 1px solid var(--line);
  border-radius: 12px; background: var(--paper); font: inherit; color: var(--ink); min-height: 46px;
}
.phone-field select:focus,
.phone-field input:focus { outline: 2px solid var(--glow); outline-offset: 1px; border-color: var(--glow); }
.phone-field-hint { display: block; margin-top: 6px; font-size: 0.82rem; color: var(--muted); }
.phone-field.is-invalid input { border-color: #c0392b; }
.phone-field.is-invalid .phone-field-hint { color: #c0392b; }
.phone-field.is-valid .phone-field-hint { color: #1e7d5a; }
@media (max-width: 520px) {
  .phone-field-row { grid-template-columns: 1fr; }
}

/* ---- role-specific signup ---- */
.signup-note { margin: 0 0 14px; padding: 10px 12px; border-radius: 10px; background: var(--sand); font-size: 0.85rem; color: var(--ink); }
.check-line { display: flex; gap: 8px; align-items: flex-start; font-size: 0.9rem; margin: 4px 0 10px; color: var(--ink); }
.check-line input { margin-top: 3px; }
#signup-operator textarea { min-height: 68px; }
