/* ==========================================================================
   Guest-Ready Cleaning — guestreadycleaningsc.com
   Palette is sampled directly from logo.png: navy wordmark, sky-blue badge,
   golden sun/squeegee, warm paper cream.
   ========================================================================== */

:root {
  --navy-900: #0c3149;
  --navy: #12405e;
  --navy-600: #1b5b82;
  --navy-400: #4d7f9e;

  --sky: #8fc7e8;
  --sky-300: #b9dcf1;
  --sky-200: #dcedf8;
  --sky-100: #eef7fc;

  --gold: #f3c34c;
  --gold-600: #e0a52c;
  --gold-100: #fdf3d9;

  --cream: #fbf8f1;
  --paper: #f4eddf;
  --white: #fff;

  --ink: #12293a;
  --body: #46606f;
  --muted: #6d8494;
  --line: #e3ded1;

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-sm: 0 1px 2px rgba(12, 49, 73, .06), 0 2px 8px rgba(12, 49, 73, .05);
  --shadow: 0 4px 12px rgba(12, 49, 73, .07), 0 12px 32px rgba(12, 49, 73, .07);
  --shadow-lg: 0 12px 28px rgba(12, 49, 73, .1), 0 32px 64px rgba(12, 49, 73, .12);

  --font-head: "Montserrat", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;

  --wrap: 1180px;
  --gutter: clamp(1.15rem, 4vw, 2.5rem);
  --header-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--body);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  margin: 0 0 .6em;
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -.02em;
  color: var(--navy);
}

h1 { font-size: clamp(2.15rem, 5.6vw, 3.5rem); }
h2 { font-size: clamp(1.7rem, 4.4vw, 2.65rem); }
h3 { font-size: clamp(1.12rem, 2.2vw, 1.32rem); }

p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

a { color: var(--navy-600); text-decoration: none; }
a:hover { color: var(--navy); }

img, picture, video, svg { display: block; max-width: 100%; }
img, video { height: auto; }

ul, ol { margin: 0; padding: 0; list-style: none; }

svg { width: 1em; height: 1em; fill: currentColor; }

:focus-visible {
  outline: 3px solid var(--gold-600);
  outline-offset: 3px;
  border-radius: 4px;
}

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.skip-link {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -120%);
  z-index: 200;
  padding: .7rem 1.2rem;
  background: var(--navy);
  color: var(--white);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-weight: 600;
}
.skip-link:focus { transform: translate(-50%, 0); color: var(--white); }

/* --------------------------------------------------------- buttons ------- */
.btn {
  --btn-bg: var(--navy);
  --btn-fg: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55em;
  padding: .8rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .01em;
  text-align: center;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease;
}
.btn svg { width: 1.05em; height: 1.05em; flex: none; }
.btn:hover { color: var(--btn-fg); transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn:disabled {
  opacity: .6;
  cursor: progress;
  transform: none;
  box-shadow: none;
}

.btn--primary {
  --btn-bg: linear-gradient(135deg, var(--gold) 0%, var(--gold-600) 100%);
  --btn-fg: var(--navy-900);
  background-image: var(--btn-bg);
  box-shadow: 0 2px 6px rgba(224, 165, 44, .3), 0 10px 22px rgba(224, 165, 44, .26);
}
.btn--primary:hover { box-shadow: 0 4px 10px rgba(224, 165, 44, .34), 0 16px 30px rgba(224, 165, 44, .3); }

.btn--ghost {
  background: transparent;
  border-color: rgba(18, 64, 94, .22);
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}
.btn--ghost:hover { background: var(--white); border-color: rgba(18, 64, 94, .4); color: var(--navy); }

.btn--lg { padding: 1rem 1.7rem; font-size: 1.02rem; }
.btn--block { width: 100%; }

/* --------------------------------------------------------- top bar ------- */
.topbar {
  background: var(--navy-900);
  color: var(--sky-200);
  font-size: .82rem;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  min-height: 38px;
  text-align: center;
}
.topbar__item { display: inline-flex; align-items: center; gap: .4em; }
.topbar__item svg { color: var(--gold); }
.topbar a { color: var(--white); font-weight: 600; }
.topbar a:hover { color: var(--gold); }
@media (max-width: 600px) {
  .topbar__item--area { display: none; }
}

/* ---------------------------------------------------------- header ------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 248, 241, .88);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .25s ease, border-color .25s ease, background-color .25s ease;
}
.header.is-stuck {
  background: rgba(251, 248, 241, .96);
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px rgba(12, 49, 73, .07);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.brand { display: inline-flex; align-items: center; gap: .6rem; }
.brand img { width: auto; height: 42px; }
.brand__text {
  display: flex;
  flex-direction: column;
  font-family: var(--font-head);
  line-height: 1;
}
.brand__text strong {
  font-size: 1.06rem;
  font-weight: 800;
  letter-spacing: -.015em;
  color: var(--navy);
}
.brand__text em {
  font-style: normal;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--navy-400);
}

.nav { display: flex; align-items: center; gap: 1.75rem; }
.nav__list { display: flex; align-items: center; gap: 1.6rem; }
.nav__list a {
  position: relative;
  font-size: .93rem;
  font-weight: 600;
  color: var(--navy);
  padding-block: .35rem;
}
.nav__list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s ease;
}
.nav__list a:hover::after, .nav__list a.is-active::after { transform: scaleX(1); }

.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(18, 64, 94, .18);
  border-radius: 12px;
  background: var(--white);
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: var(--navy);
  transition: transform .25s ease, opacity .2s ease;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 900px) {
  .hamburger { display: block; }
  .nav {
    position: absolute;
    inset: 100% 0 auto;
    flex-direction: column;
    align-items: stretch;
    gap: .25rem;
    padding: .5rem var(--gutter) 1.35rem;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    /* Collapsed by default; JS toggles .is-open. */
    display: none;
  }
  .nav.is-open { display: flex; animation: menu-in .22s ease both; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__list a {
    display: block;
    padding: .85rem .25rem;
    border-bottom: 1px solid var(--line);
    font-size: 1.02rem;
  }
  .nav__list a::after { display: none; }
  .nav__cta { margin-top: 1rem; }
}
@keyframes menu-in {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ------------------------------------------------------------ hero ------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(2.5rem, 6vw, 4.75rem) 0 clamp(3rem, 7vw, 5rem);
  background:
    radial-gradient(120% 90% at 88% -10%, var(--sky-200) 0%, rgba(220, 237, 248, 0) 58%),
    radial-gradient(80% 70% at 4% 4%, var(--gold-100) 0%, rgba(253, 243, 217, 0) 55%),
    var(--cream);
}
.hero__glow {
  position: absolute;
  right: -12%;
  top: -22%;
  width: 46rem;
  height: 46rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(243, 195, 76, .22) 0%, rgba(243, 195, 76, 0) 62%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  display: grid;
  gap: clamp(2.25rem, 5vw, 3.5rem);
  align-items: center;
}
@media (min-width: 900px) {
  .hero__inner { grid-template-columns: 1.05fr .95fr; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55em;
  margin-bottom: 1.1rem;
  padding: .42rem .95rem .42rem .7rem;
  border: 1px solid rgba(18, 64, 94, .12);
  border-radius: 999px;
  background: rgba(255, 255, 255, .75);
  box-shadow: var(--shadow-sm);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .01em;
  color: var(--navy);
}
.eyebrow__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-600);
  box-shadow: 0 0 0 4px rgba(243, 195, 76, .28);
}

/* Stops stay dark enough to hold contrast against the cream background. */
.grad {
  background: linear-gradient(100deg, var(--navy) 0%, #1b6f95 48%, #a8761a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lede {
  max-width: 34rem;
  margin-bottom: 1.9rem;
  font-size: clamp(1.02rem, 2.1vw, 1.16rem);
  color: var(--body);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-bottom: 1.9rem;
}
@media (max-width: 420px) {
  .hero__actions .btn { width: 100%; }
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.35rem;
  font-size: .88rem;
  font-weight: 500;
  color: var(--navy);
}
.chips li { display: inline-flex; align-items: center; gap: .45em; }
.chips svg { color: var(--gold-600); }

/* hero media */
.hero__media { position: relative; }
.media-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--navy-900);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  transform: rotate(-1.1deg);
}
.media-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.media-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 49, 73, 0) 55%, rgba(12, 49, 73, .35) 100%);
  pointer-events: none;
}
.media-card__play {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  color: var(--navy);
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform .18s ease, background-color .18s ease;
}
.media-card__play:hover { transform: scale(1.07); background: var(--white); }
.media-card__play svg { width: 22px; height: 22px; }
.media-card__play .icon-pause { display: none; }
.media-card__play.is-playing .icon-play { display: none; }
.media-card__play.is-playing .icon-pause { display: block; }

.float-card {
  position: absolute;
  left: clamp(-.5rem, -1vw, 0rem);
  bottom: clamp(-1.1rem, -2vw, -.5rem);
  display: flex;
  align-items: center;
  gap: .75rem;
  max-width: 17rem;
  padding: .85rem 1.05rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}
.float-card__icon {
  display: grid;
  place-items: center;
  flex: none;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--gold-100), var(--sky-200));
  color: var(--gold-600);
}
.float-card__icon svg { width: 20px; height: 20px; }
.float-card p { display: flex; flex-direction: column; margin: 0; line-height: 1.35; }
.float-card strong { font-family: var(--font-head); font-size: .92rem; color: var(--navy); }
.float-card span { font-size: .8rem; color: var(--muted); }

/* ----------------------------------------------------------- stats ------- */
.stats {
  padding: clamp(1.5rem, 4vw, 2.25rem) 0;
  background: var(--white);
  border-block: 1px solid var(--line);
}
.stats__grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 860px) {
  .stats__grid { grid-template-columns: repeat(4, 1fr); }
}
.stat { display: flex; flex-direction: column; gap: .3rem; }
.stat + .stat { position: relative; }
@media (min-width: 860px) {
  .stat + .stat::before {
    content: "";
    position: absolute;
    left: -.75rem;
    top: .2rem;
    bottom: .2rem;
    width: 1px;
    background: var(--line);
  }
}
.stat__num {
  font-family: var(--font-head);
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.01em;
  color: var(--navy);
}
.stat__label { font-size: .85rem; color: var(--muted); }

/* -------------------------------------------------------- sections ------- */
.section { padding: clamp(3.25rem, 8vw, 6rem) 0; }
.section--tint {
  background: linear-gradient(180deg, var(--sky-100), var(--cream) 85%);
}
.section--dark {
  background:
    radial-gradient(90% 70% at 80% 0%, rgba(143, 199, 232, .18) 0%, rgba(143, 199, 232, 0) 60%),
    var(--navy);
}

.section__head {
  max-width: 44rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.section__head--light h2 { color: var(--white); }
.section__head--light .section__sub { color: var(--sky-300); }

.kicker {
  margin-bottom: .7rem;
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-600);
}
.section__sub { font-size: clamp(1rem, 2vw, 1.08rem); color: var(--body); }

/* ----------------------------------------------------- service cards ---- */
.cards {
  display: grid;
  gap: clamp(1.25rem, 3vw, 1.85rem);
}
@media (min-width: 720px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1020px) { .cards { grid-template-columns: repeat(3, 1fr); } }

.card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card__media { position: relative; overflow: hidden; }
.card__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .5s ease;
}
.card:hover .card__media img { transform: scale(1.04); }
.card__tag {
  position: absolute;
  left: .85rem;
  top: .85rem;
  padding: .32rem .7rem;
  border-radius: 999px;
  background: rgba(251, 248, 241, .94);
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--navy);
}
.card__body { flex: 1; padding: 1.4rem 1.4rem .4rem; }
.card__body > p { font-size: .95rem; }

.ticks { margin-top: 1rem; display: grid; gap: .5rem; }
.ticks li {
  position: relative;
  padding-left: 1.6rem;
  font-size: .92rem;
  color: var(--body);
}
.ticks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .42em;
  width: 1.05rem;
  height: 1.05rem;
  border-radius: 50%;
  background: var(--sky-200) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2312405e'%3E%3Cpath d='M9.6 16.6 5 12l1.4-1.4 3.2 3.2 8-8L19 7.2Z'/%3E%3C/svg%3E") center / .8rem no-repeat;
}

.card__link {
  margin: 1.15rem 1.4rem 1.5rem;
  font-family: var(--font-head);
  font-size: .92rem;
  font-weight: 700;
  color: var(--navy);
}
.card__link span { display: inline-block; transition: transform .2s ease; }
.card__link:hover span { transform: translateX(4px); }

/* ----------------------------------------------------------- hosts ------- */
.hosts {
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}
@media (min-width: 920px) {
  .hosts { grid-template-columns: 1.1fr .9fr; }
}
.hosts__copy > p { max-width: 34rem; }

.feature-list { margin: 1.9rem 0; display: grid; gap: 1.35rem; }
@media (min-width: 620px) {
  .feature-list { grid-template-columns: repeat(2, 1fr); gap: 1.6rem 1.75rem; }
}
.feature-list dt {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: .35rem;
  font-family: var(--font-head);
  font-size: .98rem;
  font-weight: 700;
  color: var(--navy);
}
.feature-list__icon {
  display: grid;
  place-items: center;
  flex: none;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--navy-600);
  box-shadow: var(--shadow-sm);
}
.feature-list__icon svg { width: 18px; height: 18px; }
.feature-list dd { margin: 0; font-size: .92rem; color: var(--body); }

.hosts__media { margin: 0; }
.hosts__media img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}
.hosts__media figcaption {
  margin-top: .9rem;
  font-size: .85rem;
  font-style: italic;
  color: var(--muted);
  text-align: center;
}

/* ----------------------------------------------------------- steps ------- */
.steps {
  counter-reset: step;
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 700px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1020px) { .steps { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; } }

.step {
  position: relative;
  padding: 1.6rem 1.35rem 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.step__num {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 1rem;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-600) 100%);
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy-900);
  box-shadow: 0 6px 14px rgba(224, 165, 44, .28);
}
.step h3 { margin-bottom: .45rem; }
.step p { font-size: .92rem; }

/* --------------------------------------------------------- gallery ------- */
.gallery { display: grid; gap: clamp(1.1rem, 3vw, 1.75rem); }
@media (min-width: 700px) { .gallery { grid-template-columns: repeat(3, 1fr); } }
.gallery__item { margin: 0; }
.gallery__item img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.gallery__item figcaption {
  margin-top: .85rem;
  font-size: .87rem;
  color: var(--sky-300);
}

/* ------------------------------------------------------------ area ------- */
.area {
  display: grid;
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: start;
}
@media (min-width: 900px) { .area { grid-template-columns: 1.35fr .65fr; } }
.area__copy > p { max-width: 34rem; }

.pills { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 1.6rem; }
.pills li {
  padding: .45rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  font-size: .88rem;
  font-weight: 500;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}

.area__card {
  padding: 1.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--white), var(--sky-100));
  box-shadow: var(--shadow);
}
.area__card h3 { margin-bottom: .5rem; }
.area__card p { font-size: .93rem; }
.area__card .btn { margin-top: 1.1rem; }
.area__or { margin-top: .9rem; font-size: .88rem; color: var(--muted); }
.area__or a { font-weight: 700; }

/* ------------------------------------------------------------- faq ------- */
.faq { display: grid; gap: .75rem; max-width: 52rem; }
.faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s ease;
}
.faq details[open] { box-shadow: var(--shadow); }
.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem 1.25rem;
  cursor: pointer;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  flex: none;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: var(--sky-200) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2312405e'%3E%3Cpath d='M11 5h2v14h-2z'/%3E%3Cpath d='M5 11h14v2H5z'/%3E%3C/svg%3E") center / .95rem no-repeat;
  transition: transform .25s ease, background-color .25s ease;
}
.faq details[open] summary::after {
  transform: rotate(135deg);
  background-color: var(--gold-100);
}
.faq__body { padding: 0 1.25rem 1.25rem; }
.faq__body p { font-size: .95rem; }

/* ----------------------------------------------------------- quote ------- */
.quote-section {
  background:
    radial-gradient(80% 60% at 10% 0%, var(--gold-100) 0%, rgba(253, 243, 217, 0) 55%),
    var(--cream);
}
.quote {
  display: grid;
  gap: clamp(2rem, 4vw, 3.25rem);
  align-items: start;
}
@media (min-width: 920px) { .quote { grid-template-columns: .9fr 1.1fr; } }
.quote__copy > p { max-width: 32rem; }

.contact-list { margin-top: 2rem; display: grid; gap: 1.1rem; }
.contact-list li { display: flex; align-items: center; gap: .9rem; }
.contact-list__icon {
  display: grid;
  place-items: center;
  flex: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--navy-600);
  box-shadow: var(--shadow-sm);
}
.contact-list__icon svg { width: 20px; height: 20px; }
.contact-list span:last-child { display: flex; flex-direction: column; line-height: 1.35; }
.contact-list small {
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-list a, .contact-list strong {
  font-family: var(--font-head);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--navy);
}
.contact-list a:hover { color: var(--gold-600); }

.form {
  padding: clamp(1.4rem, 3vw, 2.1rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-lg);
}
.form__intro { margin-bottom: 1.35rem; font-size: .9rem; color: var(--muted); }
.form__row { display: grid; gap: 0; }
@media (min-width: 560px) { .form__row { grid-template-columns: 1fr 1fr; gap: 0 1rem; } }

.field { margin-bottom: 1.1rem; }
.field label {
  display: block;
  margin-bottom: .38rem;
  font-family: var(--font-head);
  font-size: .86rem;
  font-weight: 700;
  color: var(--navy);
}
.field__hint {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .78rem;
  color: var(--muted);
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: .78rem .9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--cream);
  color: var(--ink);
  font-family: inherit;
  font-size: .97rem;
  transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
}
.field textarea { resize: vertical; min-height: 6.5rem; }
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2312405e'%3E%3Cpath d='m7 10 5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .7rem center;
  background-size: 1.15rem;
  padding-right: 2.4rem;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  background: var(--white);
  border-color: var(--sky);
  box-shadow: 0 0 0 4px rgba(143, 199, 232, .3);
}
.field input::placeholder, .field textarea::placeholder { color: #9aaebc; }

.field__error {
  margin: .35rem 0 0;
  font-size: .8rem;
  font-weight: 600;
  color: #b4442f;
  min-height: 0;
}
.field.has-error input, .field.has-error select, .field.has-error textarea {
  border-color: #d9755d;
  background: #fdf6f4;
}

/* Honeypot: reachable to bots parsing the HTML, invisible to people. */
.form__trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form__note { margin-top: 1rem; font-size: .82rem; color: var(--muted); text-align: center; }
.form__status {
  margin: .9rem 0 0;
  padding: 0;
  font-size: .9rem;
  font-weight: 600;
  color: var(--navy-600);
  text-align: center;
}
.form__status:not(:empty) {
  padding: .7rem .9rem;
  border-radius: var(--radius-sm);
  background: var(--sky-100);
}
/* Matches the specificity of the :not(:empty) rule above so the tint wins. */
.form__status--ok:not(:empty) {
  color: #1d6b4a;
  background: #e8f6ee;
}
.form__status--error:not(:empty) {
  color: #a33d29;
  background: #fdf0ec;
}

/* ---------------------------------------------------------- footer ------- */
.footer {
  padding-top: clamp(2.75rem, 6vw, 4rem);
  background: var(--navy-900);
  color: var(--sky-300);
  font-size: .92rem;
}
.footer__inner {
  display: grid;
  gap: 2.25rem;
  padding-bottom: 2.5rem;
}
@media (min-width: 700px) {
  .footer__inner { grid-template-columns: 1.5fr 1fr 1fr 1.1fr; gap: 2rem; }
}
.footer__brand p { max-width: 26rem; font-size: .9rem; line-height: 1.7; }
.footer__logo {
  display: inline-block;
  margin-bottom: 1.1rem;
  padding: .7rem .95rem;
  border-radius: var(--radius);
  background: var(--cream);
}
.footer__logo img { width: auto; height: 74px; }

.footer__col h2 {
  margin-bottom: .9rem;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
}
.footer__col ul { display: grid; gap: .6rem; }
.footer__col a { color: var(--sky-300); }
.footer__col a:hover { color: var(--white); }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.5rem;
  justify-content: space-between;
  padding-block: 1.35rem;
  border-top: 1px solid rgba(143, 199, 232, .2);
  font-size: .82rem;
  color: var(--navy-400);
}
.footer__bottom p { margin: 0; }

/* ------------------------------------------------- mobile action bar ----- */
.mobile-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  display: none;
  gap: .6rem;
  padding: .7rem 1rem calc(.7rem + env(safe-area-inset-bottom));
  background: rgba(251, 248, 241, .95);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -6px 20px rgba(12, 49, 73, .08);
}
.mobile-bar .btn { flex: 1; padding-inline: .75rem; }
.mobile-bar .btn--ghost { flex: 0 0 auto; background: var(--white); }
@media (max-width: 720px) {
  .mobile-bar { display: flex; }
  body { padding-bottom: 4.75rem; }
  .nav__cta { display: none; }
}

/* ------------------------------------------------------ animation ------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s cubic-bezier(.22, .68, .36, 1);
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .media-card { transform: none; }
}
