/* AO Coffee — beach sand + bamboo wood tones, island teal accents
   Clean layout; photos and bags keep their color */

:root {
  --bg: #f7f1e6;
  --bg-alt: #efe4d2;
  --surface: #fffaf3;
  --sand: #e8d9c0;
  --bamboo: #c4a574;
  --bamboo-deep: #8b6914;
  --bamboo-ink: #5c4a2f;
  --text: #1a1612;
  --text-muted: #6b5e4e;
  --border: #dccdb5;
  --accent: #1a1612;
  --accent-hover: #3d3428;
  --accent-soft: #efe6d8;
  --teal: #1f6f66;
  --teal-hover: #185a53;
  --teal-ink: #ffffff;
  --lagoon: #1f6f66;
  --lagoon-soft: #d9ebe7;
  --espresso: #1a1612;
  --radius: 10px;
  --radius-lg: 16px;
  --font-sans: "DM Sans", system-ui, -apple-system, sans-serif;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --max: 1120px;
  --header-h: 4.25rem;
  --ease: 0.2s ease;
}



*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

/* Beach / bamboo atmosphere */
body {
  background-image:
    radial-gradient(ellipse 120% 60% at 50% -10%, rgba(31, 111, 102, 0.07), transparent 55%),
    linear-gradient(180deg, #f7f1e6 0%, #f3eadb 40%, #efe4d2 100%);
  background-attachment: fixed;
}

.bamboo-rule {
  height: 3px;
  width: 100%;
  background: linear-gradient(
    90deg,
    #a67c3d 0%,
    #d2b48c 18%,
    #c4a574 35%,
    #8b6914 50%,
    #c4a574 65%,
    #d2b48c 82%,
    #a67c3d 100%
  );
  opacity: 0.85;
}

.section--surface {
  background:
    linear-gradient(180deg, rgba(255, 250, 243, 0.92), rgba(239, 228, 210, 0.75));
  border-block: 1px solid var(--border);
}

.section--alt {
  background:
    linear-gradient(135deg, rgba(232, 217, 192, 0.55), rgba(217, 235, 231, 0.35));
}

.route-card,
.product-card,
.info-card {
  background: rgba(255, 250, 243, 0.92);
  border-color: var(--border);
  box-shadow: 0 1px 0 rgba(139, 105, 20, 0.06);
}

.route-card:hover,
.product-card:hover {
  border-color: var(--bamboo);
}

.frame {
  background: var(--sand);
  box-shadow: inset 0 0 0 1px rgba(139, 105, 20, 0.12);
}

.btn-secondary {
  background: transparent;
  border-color: var(--bamboo);
  color: var(--bamboo-ink);
}

.btn-secondary:hover {
  background: rgba(196, 165, 116, 0.18);
  border-color: var(--bamboo-deep);
  color: var(--text);
}



img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--text);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--accent-hover);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--text);
  color: var(--bg);
  padding: 0.75rem 1rem;
  z-index: 1000;
}

.skip-link:focus {
  left: 0.5rem;
  top: 0.5rem;
}

/* ========== Layout ========== */
.wrap {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.section {
  padding: 4rem 0;
}

.section--tight {
  padding: 2.5rem 0 4rem;
}

.section--alt {
  background: var(--bg-alt);
}

.section--surface {
  background: var(--surface);
}

.page-intro {
  padding: 3.25rem 0 1.25rem;
}

.page-intro h1 {
  margin: 0 0 0.75rem;
  max-width: 22ch;
}

.page-intro .lead {
  margin: 0;
  max-width: 46ch;
}

.split {
  display: grid;
  gap: 2.75rem;
  align-items: center;
}

@media (min-width: 800px) {
  .split {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .split--reverse > :first-child {
    order: 2;
  }
}

/* ========== Typography ========== */
h1,
h2,
h3,
.product-name {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text);
}

h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-variation-settings: "SOFT" 50, "WONK" 0.5;
}

h2 {
  font-size: clamp(1.5rem, 3.2vw, 2rem);
  margin: 0 0 0.75rem;
}

h3 {
  font-size: 1.2rem;
  margin: 0 0 0.4rem;
}

.product-name {
  font-size: 1.35rem;
  margin: 0 0 0.4rem;
}

p {
  margin: 0 0 1rem;
}

p:last-child {
  margin-bottom: 0;
}

.lead {
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.muted {
  color: var(--text-muted);
  font-size: 1rem;
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.7rem;
}

.eyebrow--lagoon {
  color: var(--text-muted);
}


/* ========== Promo ticker ========== */
.promo-ticker {
  display: block;
  background: var(--teal);
  color: var(--teal-ink);
  overflow: hidden;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
}

.promo-ticker:hover {
  color: var(--teal-ink);
  background: var(--teal-hover);
}

.promo-ticker__track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 28s linear infinite;
}

.promo-ticker:hover .promo-ticker__track {
  animation-play-state: paused;
}

.promo-ticker__group {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-shrink: 0;
  padding: 0.55rem 0;
  padding-right: 1.5rem;
  white-space: nowrap;
}

.promo-ticker__group span {
  flex-shrink: 0;
}

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .promo-ticker__track {
    animation: none;
    width: 100%;
    justify-content: center;
  }
  .promo-ticker__group[aria-hidden="true"] {
    display: none;
  }
  .promo-ticker__group {
    width: 100%;
    justify-content: center;
    padding-right: 0;
  }
}

/* ========== Header / Nav ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 241, 230, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
}


.logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  text-decoration: none;
}

.logo img {
  display: block;
  height: 2.35rem;
  width: auto;
  max-width: min(52vw, 210px);
}

.footer-brand img {
  display: block;
  height: 2.1rem;
  width: auto;
  max-width: 200px;
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--text);
  text-decoration: none;
}

.logo:hover {
  color: var(--text);
}

.logo span {
  font-weight: 500;
  color: var(--text-muted);
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0.5rem;
  border: none;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--text);
  border-radius: 1px;
  transition: var(--ease);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.site-nav a {
  display: block;
  padding: 0.65rem 0.85rem;
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: var(--radius);
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--accent);
  background: var(--accent-soft);
}

.site-nav a.is-active {
  font-weight: 600;
}

.header-cta {
  display: none;
}

/* Quote CTA matches ticker teal */
.header-cta,
a.btn.header-cta {
  background: var(--teal) !important;
  color: var(--teal-ink) !important;
  border-color: var(--teal) !important;
}
.header-cta:hover,
a.btn.header-cta:hover {
  background: var(--teal-hover) !important;
  border-color: var(--teal-hover) !important;
  color: var(--teal-ink) !important;
}



.nav-mobile-cta {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  display: grid;
  gap: 0.6rem;
}

@media (max-width: 899px) {
  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 0 0;
    background: var(--bg);
    padding: 1.5rem 1.25rem;
    transform: translateX(100%);
    transition: transform var(--ease);
    overflow-y: auto;
  }

  .site-nav.is-open {
    transform: translateX(0);
  }
}

@media (min-width: 900px) {
  .nav-toggle {
    display: none;
  }

  .site-nav {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    flex: 1;
    justify-content: center;
  }

  .site-nav ul {
    flex-direction: row;
    gap: 0.1rem;
  }

  .site-nav a {
    padding: 0.4rem 0.65rem;
    font-size: 0.92rem;
  }

  .nav-mobile-cta {
    display: none;
  }

  .header-cta {
    display: inline-flex;
  }

  .header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
  }
}

/* ========== Buttons ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.75rem 1.35rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background var(--ease), color var(--ease), border-color var(--ease), transform var(--ease);
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--text);
  color: #fff;
  border-color: var(--text);
}

.btn-primary:hover {
  background: var(--accent-hover);
  color: #fff;
  border-color: var(--accent-hover);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn-secondary:hover {
  border-color: var(--text-muted);
  color: var(--text);
  background: var(--surface);
}

.btn-lagoon {
  background: var(--teal);
  color: var(--teal-ink);
  border-color: var(--teal);
}

.btn-lagoon:hover {
  background: var(--teal-hover);
  color: var(--teal-ink);
  border-color: var(--teal-hover);
}

.btn-ghost {
  background: transparent;
  color: var(--accent);
  border-color: transparent;
  padding-inline: 0.5rem;
}

.btn-ghost:hover {
  color: var(--accent-hover);
  text-decoration: underline;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

/* ========== Hero ========== */
.hero {
  padding: 3.5rem 0 3rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -10% -40% 40%;
  height: 70%;
  background: radial-gradient(ellipse, rgba(194, 78, 45, 0.08), transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  gap: 2.5rem;
  align-items: center;
  position: relative;
}

@media (min-width: 800px) {
  .hero {
    padding: 4.5rem 0 3.5rem;
  }

  .hero-inner {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3.5rem;
  }
}

.hero h1 {
  margin: 0 0 1rem;
  max-width: 14ch;
}

.hero .lead {
  margin-bottom: 0;
  max-width: 38ch;
}

.hero-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-alt);
  box-shadow: 0 20px 50px rgba(26, 18, 14, 0.08);
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

.hero-bags {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: 1.25rem;
  background: linear-gradient(160deg, var(--surface), var(--bg-alt));
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.hero-bags img {
  width: 100%;
  max-width: 180px;
  margin-inline: auto;
  filter: drop-shadow(0 12px 24px rgba(26, 18, 14, 0.15));
}

/* ========== Route cards (home) ========== */
.route-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .route-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .route-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}


.route-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.route-card__top .eyebrow {
  margin: 0;
}

.route-card__icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--bg-alt);
  color: var(--text);
  flex-shrink: 0;
  border: 1px solid var(--border);
}

.route-card__icon svg {
  width: 1.35rem;
  height: 1.35rem;
  display: block;
}

.route-card--featured .route-card__icon {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}

.route-card {
  display: flex;
  flex-direction: column;
  padding: 1.5rem 1.4rem 1.6rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: inherit;
  transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
  min-height: 100%;
}

.route-card:hover {
  border-color: var(--accent);
  box-shadow: 0 10px 30px rgba(26, 18, 14, 0.06);
  transform: translateY(-2px);
  color: inherit;
}

.route-card .eyebrow {
  margin-bottom: 0.5rem;
}

.route-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.route-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  flex: 1;
  margin-bottom: 1rem;
}

.route-card .link-hint {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--accent);
}

/* ========== Product grid (Valor-like) ========== */
.product-grid {
  display: grid;
  gap: 2.5rem 1.75rem;
  margin-top: 2rem;
}

@media (min-width: 560px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .product-grid--4 {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem 1.5rem;
  }

  .product-grid--home {
    grid-template-columns: repeat(4, 1fr);
  }
}

.product-card {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.product-card__media {
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg-alt) 100%);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1rem 1.25rem;
  margin-bottom: 1.15rem;
  overflow: hidden;
  transition: box-shadow var(--ease), border-color var(--ease);
}

.product-card:hover .product-card__media {
  border-color: #cbbba8;
  box-shadow: 0 16px 40px rgba(26, 18, 14, 0.08);
}

.product-card__media img,
.product-card__media .bag-img {
  width: min(100%, 200px);
  height: auto;
  filter: drop-shadow(0 14px 28px rgba(26, 18, 14, 0.18));
  transition: transform var(--ease);
}

.product-card:hover .product-card__media img {
  transform: translateY(-4px);
}

.product-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.35rem;
  align-items: center;
}

.product-meta {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0;
}

.product-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  justify-content: center;
  margin: 0.25rem 0 0.35rem;
}

.note {
  font-size: 0.8rem;
  color: var(--text-muted);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
}

.product-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0;
  max-width: 28ch;
}

.product-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1rem;
  width: 100%;
}

.product-price {
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text);
  margin: 0;
}

.product-price small {
  font-weight: 500;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.product-card a.product-name-link {
  text-decoration: none;
  color: inherit;
}

.product-card a.product-name-link:hover .product-name {
  color: var(--accent);
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 0.25rem;
}

.section-head .lead {
  margin-top: 0.35rem;
  max-width: 44ch;
}

/* ========== Product detail ========== */
.product-detail {
  display: grid;
  gap: 2.5rem;
  align-items: start;
  padding: 2rem 0 4rem;
}

@media (min-width: 800px) {
  .product-detail {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
    padding: 3rem 0 5rem;
  }
}

.product-detail__visual {
  background: linear-gradient(180deg, var(--surface), var(--bg-alt));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-detail__visual img {
  width: min(100%, 280px);
  filter: drop-shadow(0 18px 36px rgba(26, 18, 14, 0.2));
}

.product-detail__meta {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lagoon);
  margin: 0 0 0.75rem;
}

.product-detail h1 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 2.75rem);
}

.buy-box {
  margin-top: 1.75rem;
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: grid;
  gap: 1rem;
}

.buy-box__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.buy-box .product-price {
  font-size: 1.5rem;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  margin-bottom: 1.25rem;
}

.back-link:hover {
  color: var(--accent);
}

/* ========== Media frame ========== */
.frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-alt);
  box-shadow: 0 12px 36px rgba(26, 18, 14, 0.06);
}

.frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.frame--tall img {
  aspect-ratio: 3 / 4;
}

/* ========== Lists / cards ========== */
.plain-list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
}

.plain-list li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.35rem;
  color: var(--text-muted);
}

.plain-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.95rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.75;
}

.steps {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
  counter-reset: step;
}

@media (min-width: 700px) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (min-width: 960px) {
  .steps--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step {
  counter-increment: step;
  padding: 1.4rem 1.4rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.step::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.55rem;
}

.card-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.75rem;
}

@media (min-width: 640px) {
  .card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.simple-card {
  padding: 1.4rem 1.4rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.simple-card h3 {
  font-family: var(--font-display);
  margin-bottom: 0.5rem;
}

.market-card {
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: grid;
  gap: 0.35rem;
}

.market-card .when {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--lagoon);
}

.market-card .where {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.market-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.75rem;
}

@media (min-width: 640px) {
  .market-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ========== Soft CTA ========== */
.cta-band {
  padding: 3.5rem 0;
  background: var(--text);
  color: #fff;
  text-align: center;
}

.cta-band h2 {
  color: #fff;
  margin-bottom: 0.65rem;
}

.cta-band .lead {
  color: rgba(255, 255, 255, 0.72);
  margin-inline: auto;
  max-width: 40ch;
}

.cta-band .btn-primary {
  background: var(--teal);
  color: var(--teal-ink);
  border-color: var(--teal);
}

.cta-band .btn-primary:hover {
  background: var(--teal-hover);
  border-color: var(--teal-hover);
  color: var(--teal-ink);
}

.cta-band .btn-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

.cta-band .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.65);
  color: #fff;
}

.cta-band .btn-row {
  justify-content: center;
}

/* ========== Forms ========== */
.contact-layout {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 840px) {
  .contact-layout {
    grid-template-columns: 1.35fr 0.75fr;
    gap: 3.5rem;
    align-items: start;
  }
}

.form {
  display: grid;
  gap: 1.1rem;
}

.form-row {
  display: grid;
  gap: 1.1rem;
}

@media (min-width: 560px) {
  .form-row--2 {
    grid-template-columns: 1fr 1fr;
  }
}

.form label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}

.form .req {
  color: var(--accent);
  font-weight: 700;
}

.form input,
.form select,
.form textarea {
  font: inherit;
  font-weight: 400;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--text);
  width: 100%;
}

.form textarea {
  min-height: 7.5rem;
  resize: vertical;
}

.form-note {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 400;
  margin: 0;
}

.contact-aside {
  padding: 1.6rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.contact-aside h2 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.contact-list .label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

.contact-list a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
}

.contact-list a:hover {
  color: var(--accent);
  text-decoration: underline;
}

.quote-banner {
  background: var(--lagoon-soft);
  border: 1px solid #c5ddd6;
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.4rem;
  margin-bottom: 2rem;
}

.quote-banner p {
  margin: 0;
  color: var(--text);
}

/* ========== Footer ========== */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 2.75rem 0 1.5rem;
  background: var(--bg-alt);
  font-size: 1rem;
}

.footer-inner {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
  display: grid;
  gap: 2rem;
}

@media (min-width: 720px) {
  .footer-inner {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2rem;
  }
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.footer-brand span {
  font-weight: 500;
  color: var(--text-muted);
}

.site-footer p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.footer-heading {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  margin: 0 0 0.75rem;
}

.footer-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
}

.footer-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
}

.footer-nav a:hover {
  color: var(--accent);
}

.footer-meta {
  width: min(100% - 2.5rem, var(--max));
  margin: 2rem auto 0;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.footer-meta p {
  margin: 0;
  font-size: inherit;
}

/* ========== Utilities ========== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

a.product-card__media {
  text-decoration: none;
  color: inherit;
}
