/* ==========================================================================
   SIP & STREAM — GLOBAL DESIGN SYSTEM
   Version 1

   Palette:
     --navy-950  #0A2036  deep navy   (dark backgrounds, primary text)
     --navy-800  #123A5E  secondary navy (gradients, hover states)
     --blue-600  #1C86C2  brand aqua-blue (from Sip & Stream mark)
     --blue-100  #E7F4FA  pale aqua tint (section backgrounds)
     --stone-100 #F4F1E8  warm limestone tint (grounding / source motif)
     --gold-500  #B9925A  muted champagne accent (used sparingly)
     --ink       #1C2630  body text
     --white     #FFFFFF
   ========================================================================== */

:root {
  --navy-950: #0a2036;
  --navy-900: #0d2941;
  --navy-800: #123a5e;
  --blue-600: #1c86c2;
  --blue-500: #2a9bd8;
  --blue-100: #e7f4fa;
  --stone-100: #f4f1e8;
  --stone-200: #ece6d6;
  --gold-500: #b9925a;
  --ink: #1c2630;
  --ink-soft: #4a5866;
  --white: #ffffff;
  --line: rgba(10, 32, 54, 0.12);

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --max-width: 1240px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 18px;

  --shadow-sm: 0 2px 10px rgba(10, 32, 54, 0.08);
  --shadow-md: 0 10px 34px rgba(10, 32, 54, 0.14);
  --shadow-lg: 0 22px 60px rgba(10, 32, 54, 0.22);

  --header-height: 84px;
}

/* ------------------------- Reset & base ------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  color: var(--navy-950);
  margin: 0 0 0.5em;
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.01em;
}

p {
  margin: 0 0 1em;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: 24px;
}

@media (min-width: 768px) {
  .container {
    padding-inline: 40px;
  }
}

/* Visually hidden but accessible */
.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;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 200;
  background: var(--navy-950);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 0 0 var(--radius-sm) 0;
}

.skip-link:focus {
  left: 0;
}

:focus-visible {
  outline: 3px solid var(--gold-500);
  outline-offset: 3px;
}

/* ------------------------- Type scale ------------------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-600);
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--gold-500);
  display: inline-block;
}

h1,
.h1 {
  font-size: clamp(2.1rem, 5.4vw, 3.6rem);
}

h2,
.h2 {
  font-size: clamp(1.65rem, 3.6vw, 2.5rem);
}

h3,
.h3 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
}

.lede {
  font-size: clamp(1.02rem, 2vw, 1.2rem);
  color: var(--ink-soft);
  max-width: 56ch;
}

.section-intro {
  max-width: 680px;
  margin-bottom: 44px;
}

.section-intro.center {
  margin-inline: auto;
  text-align: center;
}

/* ------------------------- Buttons ------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
  min-height: 48px;
  white-space: nowrap;
}

.btn-primary {
  background: var(--blue-600);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--navy-950);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
}

.btn-outline-dark {
  background: transparent;
  color: var(--navy-950);
  border-color: var(--navy-950);
}

.btn-outline-dark:hover {
  background: var(--navy-950);
  color: var(--white);
}

.btn-block {
  width: 100%;
}

/* ------------------------- Header ------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  z-index: 110;
}

.brand img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.28rem;
  color: var(--navy-950);
  line-height: 1.1;
}

.brand-name span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--blue-600);
  text-transform: uppercase;
  margin-top: 2px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav a {
  display: inline-block;
  padding: 10px 16px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy-800);
  border-radius: var(--radius-sm);
  transition: color 0.15s ease, background-color 0.15s ease;
}

.main-nav a:hover {
  color: var(--blue-600);
  background: var(--blue-100);
}

.main-nav a[aria-current="page"] {
  color: var(--blue-600);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--line);
  background: var(--white);
  cursor: pointer;
  z-index: 110;
  flex-shrink: 0;
}

.nav-toggle .bar {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--navy-950);
  position: relative;
  transition: background-color 0.2s ease;
}

.nav-toggle .bar::before,
.nav-toggle .bar::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: var(--navy-950);
  transition: transform 0.25s ease, top 0.25s ease, opacity 0.2s ease;
}

.nav-toggle .bar::before {
  top: -6px;
}

.nav-toggle .bar::after {
  top: 6px;
}

.nav-toggle[aria-expanded="true"] .bar {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .bar::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .bar::after {
  top: 0;
  transform: rotate(-45deg);
}

@media (max-width: 899px) {
  .main-nav {
    position: fixed;
    inset: 0;
    top: var(--header-height);
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 18px 24px 40px;
    gap: 4px;
    transform: translateX(100%);
    transition: transform 0.28s ease;
    overflow-y: auto;
    height: calc(100vh - var(--header-height));
  }

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

  .main-nav a {
    padding: 16px 18px;
    font-size: 1.05rem;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
  }

  .main-nav .nav-cta-mobile {
    margin-top: 16px;
    border-bottom: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .header-actions .btn-primary.desktop-only {
    display: none;
  }
}

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

body.nav-open {
  overflow: hidden;
}

/* ------------------------- Hero ------------------------- */
.hero {
  position: relative;
  background: linear-gradient(155deg, var(--navy-950) 0%, var(--navy-800) 62%, var(--blue-600) 140%);
  color: var(--white);
  overflow: hidden;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  padding-top: 64px;
  padding-bottom: 72px;
  position: relative;
  z-index: 2;
}

@media (min-width: 900px) {
  .hero .container {
    grid-template-columns: 1.05fr 0.95fr;
    padding-top: 88px;
    padding-bottom: 40px;
    min-height: 640px;
  }
}

.hero-copy .eyebrow {
  color: var(--gold-500);
}

.hero-copy .eyebrow::before {
  background: var(--white);
}

.hero h1 {
  color: var(--white);
}

.hero h1 em {
  font-style: italic;
  color: var(--blue-500);
}

.hero-lede {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.02rem, 2vw, 1.18rem);
  max-width: 52ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.hero-media {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-media .frame {
  position: relative;
  width: min(100%, 380px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
}

.hero-media .frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-media .ripple-badge {
  position: absolute;
  bottom: -18px;
  left: -18px;
  background: var(--white);
  color: var(--navy-950);
  padding: 14px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  font-family: var(--font-body);
  display: none;
}

@media (min-width: 560px) {
  .hero-media .ripple-badge {
    display: block;
  }
}

.ripple-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--blue-600);
}

.ripple-badge span {
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* Signature wave divider */
.wave-divider {
  display: block;
  width: 100%;
  height: 44px;
  line-height: 0;
}

.wave-divider svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* ------------------------- Sections ------------------------- */
section {
  position: relative;
}

.section {
  padding: 76px 0;
}

.section-sm {
  padding: 48px 0;
}

.bg-stone {
  background: var(--stone-100);
}

.bg-blue-tint {
  background: var(--blue-100);
}

.bg-navy {
  background: var(--navy-950);
  color: var(--white);
}

.bg-navy h2,
.bg-navy h3 {
  color: var(--white);
}

.bg-navy .lede {
  color: rgba(255, 255, 255, 0.78);
}

/* Intro strip */
.intro-strip {
  display: grid;
  gap: 28px;
  align-items: start;
}

@media (min-width: 800px) {
  .intro-strip {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
  }
}

/* Origin / source section */
.origin-section .container {
  display: grid;
  gap: 40px;
  align-items: center;
}

@media (min-width: 900px) {
  .origin-section .container {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
  .origin-section.reverse .container {
    direction: rtl;
  }
  .origin-section.reverse .container > * {
    direction: ltr;
  }
}

.media-block {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.media-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3.2;
}

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

.media-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 22px 24px 18px;
  background: linear-gradient(0deg, rgba(10, 32, 54, 0.82), rgba(10, 32, 54, 0));
  color: var(--white);
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}

/* Feature list */
.feature-list {
  margin-top: 24px;
  display: grid;
  gap: 16px;
}

.feature-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.feature-list .icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--blue-100);
  color: var(--blue-600);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-list strong {
  display: block;
  color: var(--navy-950);
  font-size: 1rem;
}

.feature-list p {
  margin: 2px 0 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

/* Audience / who we serve cards */
.card-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.audience-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.audience-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.audience-card .icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--navy-950);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.audience-card h3 {
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.audience-card p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* Lifestyle gallery */
.gallery-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 160px;
}

.gallery-grid .g-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.gallery-grid .g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-grid .g-large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-grid .g-tall {
  grid-row: span 2;
}

@media (max-width: 760px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 150px;
  }
  .gallery-grid .g-large {
    grid-column: span 2;
    grid-row: span 2;
  }
  .gallery-grid .g-tall {
    grid-row: span 1;
    grid-column: span 1;
  }
}

/* CTA banner */
.cta-banner {
  background: linear-gradient(120deg, var(--navy-950), var(--navy-800));
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 52px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 14px;
}

.cta-banner .lede {
  color: rgba(255, 255, 255, 0.8);
  margin-inline: auto;
  margin-bottom: 30px;
}

.cta-banner .hero-actions {
  justify-content: center;
  margin-top: 0;
}

/* Page hero (interior pages) */
.page-hero {
  background: linear-gradient(155deg, var(--navy-950), var(--navy-800));
  color: var(--white);
  padding: 68px 0 84px;
}

.page-hero .eyebrow {
  color: var(--gold-500);
}

.page-hero .eyebrow::before {
  background: var(--white);
}

.page-hero h1 {
  color: var(--white);
  max-width: 20ch;
}

.page-hero .lede {
  color: rgba(255, 255, 255, 0.82);
}

.breadcrumb {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 18px;
  letter-spacing: 0.03em;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.85);
}

.breadcrumb a:hover {
  color: var(--white);
  text-decoration: underline;
}

/* Values grid (About) */
.values-grid {
  display: grid;
  gap: 26px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: 12px;
}

.value-item h3 {
  font-size: 1.08rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.value-item h3::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-500);
  flex-shrink: 0;
}

.value-item p {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

/* Product spec / label facts */
.spec-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.spec-list .spec-row {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.spec-row dt {
  font-weight: 700;
  color: var(--navy-950);
  font-size: 0.92rem;
  letter-spacing: 0.02em;
}

.spec-row dd {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.source-note {
  margin-top: 20px;
  padding: 16px 18px;
  background: var(--blue-100);
  border-left: 3px solid var(--blue-600);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.source-note a {
  color: var(--blue-600);
  font-weight: 700;
  text-decoration: underline;
}

/* Serving suggestions */
.serve-grid {
  display: grid;
  gap: 26px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.serve-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
}

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

.serve-card .serve-body {
  padding: 22px 22px 26px;
}

.serve-card h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.serve-card p {
  color: var(--ink-soft);
  font-size: 0.92rem;
  margin-bottom: 0;
}

/* ------------------------- Contact page ------------------------- */
.contact-layout {
  display: grid;
  gap: 48px;
}

@media (min-width: 900px) {
  .contact-layout {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 64px;
    align-items: start;
  }
}

.contact-info-card {
  background: var(--stone-100);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
}

.contact-method {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.contact-method:last-child {
  border-bottom: none;
}

.contact-method .icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--white);
  color: var(--blue-600);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

.contact-method h3 {
  font-size: 0.98rem;
  margin-bottom: 2px;
}

.contact-method p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.tag-soon {
  display: inline-block;
  margin-top: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-500);
  background: rgba(185, 146, 90, 0.12);
  padding: 3px 9px;
  border-radius: 20px;
}

.contact-note {
  margin-top: 22px;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

/* Form */
.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  box-shadow: var(--shadow-sm);
}

.form-row {
  display: grid;
  gap: 18px;
  margin-bottom: 18px;
}

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

.field label {
  display: block;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--navy-950);
  margin-bottom: 7px;
}

.field .required {
  color: var(--blue-600);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.96rem;
  color: var(--ink);
  background: var(--white);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue-600);
  box-shadow: 0 0 0 3px rgba(28, 134, 194, 0.15);
  outline: none;
}

.field textarea {
  resize: vertical;
  min-height: 130px;
}

.field .error-msg {
  display: none;
  color: #b3261e;
  font-size: 0.82rem;
  margin-top: 6px;
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: #b3261e;
}

.field.has-error .error-msg {
  display: block;
}

.form-status {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  display: none;
}

.form-status.is-visible {
  display: block;
}

.form-status.info {
  background: var(--blue-100);
  color: var(--navy-950);
  border-left: 3px solid var(--blue-600);
}

.form-status.error {
  background: #fdeceb;
  color: #7a1e17;
  border-left: 3px solid #b3261e;
}

.form-fine-print {
  margin-top: 14px;
  font-size: 0.8rem;
  color: var(--ink-soft);
}

/* ------------------------- Footer ------------------------- */
.site-footer {
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.78);
  padding: 64px 0 28px;
}

.footer-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: 1.3fr 1fr 1fr;
}

@media (max-width: 760px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-brand img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}

.footer-brand span {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--white);
}

.site-footer p {
  font-size: 0.9rem;
  max-width: 34ch;
}

.footer-heading {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}

.footer-links li {
  margin-bottom: 11px;
}

.footer-links a {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.15s ease;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-contact li {
  font-size: 0.9rem;
  margin-bottom: 11px;
  color: rgba(255, 255, 255, 0.75);
}

.footer-bottom {
  margin-top: 52px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
}

/* ------------------------- Misc utility ------------------------- */
.text-center {
  text-align: center;
}

.mt-0 {
  margin-top: 0;
}

.stack-gap-sm > * + * {
  margin-top: 12px;
}

@media (max-width: 599px) {
  .section {
    padding: 56px 0;
  }
  .cta-banner {
    padding: 40px 24px;
  }
}
