/* Delaware Canvas Art — coastal artisan theme */

/* Self-hosted Latin fonts (no Google Fonts round-trip on mobile) */
@font-face {
  font-family: "Source Sans 3";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/source-sans-3-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Source Sans 3";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/source-sans-3-600-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/cormorant-garamond-600-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Great Vibes";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/great-vibes-400-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --navy: #1a2b45;
  --navy-deep: #0f1a2c;
  --navy-soft: #2a3f5f;
  --gold: #c5a059;
  --gold-light: #d4b87a;
  --gold-deep: #a8843f;
  --sunset: #e08a4f;
  --sunset-soft: #f0b48a;
  --sand: #f3ebe0;
  --sand-deep: #e6d9c8;
  --foam: #faf7f2;
  --ink: #1a2b45;
  --muted: #5c6b7a;
  --white: #ffffff;
  --shadow-soft: 0 12px 40px rgba(26, 43, 69, 0.12);
  --radius: 2px;
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-script: "Great Vibes", cursive;
  --font-body: "Source Sans 3", "Segoe UI", sans-serif;
  --transition: 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(ellipse 120% 80% at 10% -10%, rgba(224, 138, 79, 0.12), transparent 50%),
    radial-gradient(ellipse 90% 60% at 100% 0%, rgba(197, 160, 89, 0.1), transparent 45%),
    linear-gradient(180deg, var(--foam) 0%, var(--sand) 48%, #ebe2d4 100%);
  min-height: 100vh;
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

a:hover {
  color: var(--gold-deep);
}

/* Lightweight layout (replaces Bootstrap grid on this site) */
.container {
  width: min(100% - 1.5rem, 1140px);
  margin-inline: auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}

.row.g-4,
.row.g-5,
.row.g-lg-5 {
  gap: 1.5rem;
}

.row.g-5 {
  gap: 2rem;
}

.row.gy-4 {
  row-gap: 1.5rem;
}

.row > [class*="col-"] {
  width: 100%;
  min-width: 0;
}

.d-flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.align-items-center { align-items: center; }
.align-items-start { align-items: flex-start; }
.justify-content-between { justify-content: space-between; }
.justify-content-center { justify-content: center; }
.ms-auto { margin-left: auto; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1.5rem; }
.text-center { text-align: center; }
.text-secondary { color: var(--muted); }
.small { font-size: 0.875rem; }
.fs-5 { font-size: 1.25rem; }
.gap-2 { gap: 0.5rem; }
.border-0 { border: 0 !important; }

@media (min-width: 768px) {
  .col-md-6 { width: calc(50% - 0.75rem); flex: 1 1 calc(50% - 0.75rem); }
}

@media (min-width: 992px) {
  .row.g-lg-5 { gap: 3rem; }
  .align-items-lg-center { align-items: center; }
  .col-lg-5 { width: calc(41.666% - 1rem); flex: 1 1 calc(41.666% - 1rem); }
  .col-lg-6 { width: calc(50% - 1rem); flex: 1 1 calc(50% - 1rem); }
  .col-lg-7 { width: calc(58.333% - 1rem); flex: 1 1 calc(58.333% - 1rem); }
  .col-lg-8 { width: calc(66.666% - 1rem); flex: 1 1 calc(66.666% - 1rem); }
  .order-lg-1 { order: 1; }
  .order-lg-2 { order: 2; }
}

/* Typography */
.brand-wordmark {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1;
}

.brand-script {
  font-family: var(--font-script);
  color: var(--gold);
  font-weight: 400;
  line-height: 1;
}

.section-kicker {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
  line-height: 1.15;
}

.section-lead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 36rem;
}

/* Nav */
#site-nav {
  min-height: 76px;
}

.site-nav {
  background: rgba(250, 247, 242, 0.97);
  border-bottom: 1px solid rgba(26, 43, 69, 0.08);
  padding: 0.65rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.site-nav-inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.site-nav .navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.site-nav .navbar-brand img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 2px var(--white), 0 0 0 3px var(--navy);
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.nav-brand-text .brand-wordmark {
  font-size: 0.95rem;
  letter-spacing: 0.16em;
}

.nav-brand-text .brand-script {
  font-size: 1.15rem;
  margin-top: -0.15rem;
}

.nav-toggle {
  margin-left: auto;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(26, 43, 69, 0.25);
  border-radius: var(--radius);
  background: transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-toggle-bar,
.nav-toggle-bar::before,
.nav-toggle-bar::after {
  display: block;
  width: 1.25rem;
  height: 2px;
  background: var(--navy);
  position: relative;
}

.nav-toggle-bar::before,
.nav-toggle-bar::after {
  content: "";
  position: absolute;
  left: 0;
}

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

.nav-panel {
  display: none;
  width: 100%;
}

.nav-panel.is-open {
  display: block;
}

.nav-list {
  list-style: none;
  margin: 0.5rem 0 0;
  padding: 0.35rem 0 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.site-nav .nav-link {
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  padding: 0.55rem 0.25rem;
  display: block;
  position: relative;
}

.site-nav .nav-link:hover,
.site-nav .nav-link.active {
  color: var(--gold-deep);
}

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

  .nav-panel {
    display: block !important;
    width: auto;
    margin-left: auto;
  }

  .nav-list {
    flex-direction: row;
    align-items: center;
    margin: 0;
    padding: 0;
    gap: 0.15rem;
  }

  .site-nav .nav-link {
    padding: 0.5rem 0.9rem;
  }

  .site-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 0.9rem;
    right: 0.9rem;
    bottom: 0.25rem;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
  }

  .site-nav .nav-link:hover::after,
  .site-nav .nav-link.active::after {
    transform: scaleX(1);
  }
}

/* Buttons */
.btn {
  display: inline-block;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  text-align: center;
  line-height: 1.25;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius);
  transition: background-color var(--transition), color var(--transition), border-color var(--transition);
}

.btn-gold {
  color: var(--white);
  background: var(--gold);
  border-color: var(--gold);
}

.btn-gold:hover {
  color: var(--white);
  background: var(--gold-deep);
  border-color: var(--gold-deep);
}

.btn-navy {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.btn-navy:hover {
  color: var(--white);
  background: var(--navy-soft);
  border-color: var(--navy-soft);
}

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

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

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

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

/* Lightweight modal (Stripe setup only) */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(15, 26, 44, 0.55);
}

.modal.is-open {
  display: flex;
}

.modal-dialog {
  width: min(100%, 520px);
}

.modal-content {
  background: var(--foam);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.modal-header,
.modal-body,
.modal-footer {
  padding: 1rem 1.25rem;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.modal-title {
  margin: 0;
  font-family: var(--font-display);
}

.btn-close {
  border: 0;
  background: transparent;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  color: var(--navy);
}

/* Hero — full-bleed banner */
.hero {
  position: relative;
  min-height: min(72vh, 720px);
  display: flex;
  align-items: flex-end;
  background-color: var(--navy-deep);
  color: var(--white);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  margin: 0;
}

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

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(105deg, rgba(15, 26, 44, 0.78) 0%, rgba(15, 26, 44, 0.45) 42%, rgba(15, 26, 44, 0.15) 70%, transparent 100%),
    linear-gradient(0deg, rgba(15, 26, 44, 0.55) 0%, transparent 45%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 4rem 1.5rem 5rem;
}

.hero-brand {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1.5rem;
  animation: rise-in 0.9s var(--transition) both;
}

.hero-brand .brand-wordmark {
  color: var(--white);
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  letter-spacing: 0.14em;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

.hero-brand .brand-script {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  color: var(--gold-light);
  margin-left: 0.15em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.4vw, 1.65rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  max-width: 28rem;
  margin-bottom: 0.85rem;
  animation: rise-in 0.9s 0.12s var(--transition) both;
}

.hero-support {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 26rem;
  margin-bottom: 2rem;
  animation: rise-in 0.9s 0.22s var(--transition) both;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  animation: rise-in 0.9s 0.32s var(--transition) both;
}

.page-banner {
  position: relative;
  min-height: 220px;
  display: flex;
  align-items: flex-end;
  background-color: var(--navy-deep);
  background-image: image-set(
    url("../images/banner-960.webp") type("image/webp"),
    url("../images/banner-1280.jpg") type("image/jpeg")
  );
  background-size: cover;
  background-position: center 40%;
  color: var(--white);
}

@supports not (background-image: image-set(url("x.webp") type("image/webp"))) {
  .page-banner {
    background-image: url("../images/banner-1280.jpg");
  }
}

.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(15, 26, 44, 0.82) 0%, rgba(15, 26, 44, 0.4) 55%, rgba(15, 26, 44, 0.2) 100%);
}

.page-banner-inner {
  position: relative;
  z-index: 1;
  padding: 3.5rem 0 2.5rem;
}

.page-banner h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  margin: 0 0 0.5rem;
}

.page-banner p {
  margin: 0;
  max-width: 32rem;
  color: rgba(255, 255, 255, 0.88);
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section-alt {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(243, 235, 224, 0.9)),
    radial-gradient(ellipse at 80% 20%, rgba(197, 160, 89, 0.12), transparent 50%);
}

.split-visual {
  position: relative;
}

.split-visual img {
  width: 100%;
  /* aspect-ratio: 4 / 5; */
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

.split-copy {
  padding: 1rem 0;
}

@media (min-width: 992px) {
  .split-copy {
    padding-left: 2.5rem;
  }
}

/* Feature strip — one purpose, not a dashboard */
.promise {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto;
}

.promise .brand-script {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  display: block;
  margin-bottom: 0.75rem;
}

/* Gallery grid — interactive tiles (cards for purchase navigation) */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}

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

@media (min-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.art-tile {
  display: block;
  text-decoration: none;
  color: inherit;
  background: transparent;
  border: none;
  padding: 0;
}

.art-tile-media {
  position: relative;
  overflow: hidden;
  background: var(--sand-deep);
  aspect-ratio: 4 / 3;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-soft);
}

.art-tile-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--transition);
}

.art-tile:hover .art-tile-media img,
.art-tile:focus-visible .art-tile-media img {
  transform: scale(1.05);
}

.art-tile-media::after {
  content: "View & Purchase";
  position: absolute;
  inset: auto 0 0 0;
  padding: 0.75rem;
  background: linear-gradient(transparent, rgba(15, 26, 44, 0.75));
  color: var(--white);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--transition), transform var(--transition);
}

.art-tile:hover .art-tile-media::after,
.art-tile:focus-visible .art-tile-media::after {
  opacity: 1;
  transform: translateY(0);
}

.art-tile h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin: 0 0 0.25rem;
  color: var(--navy);
}

.art-tile .price {
  font-size: 0.95rem;
  color: var(--gold-deep);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.art-tile .meta {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
}

/* Product detail */
.product-hero {
  padding: 3.5rem 0 4rem;
}

.product-image-wrap {
  background: var(--sand-deep);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.product-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.product-info h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 0.5rem;
}

.product-price {
  font-size: 1.5rem;
  color: var(--gold-deep);
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.size-picker {
  margin: 0 0 1.25rem;
}

.size-picker-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--navy);
  margin: 0 0 0.75rem;
}

.size-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.size-option {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
  width: 100%;
  margin: 0;
  padding: 0.85rem 0.9rem;
  border: 1px solid rgba(26, 43, 69, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.55);
  color: inherit;
  text-align: left;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
}

.size-option:hover {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.8);
}

.size-option:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.size-option.is-selected {
  border-color: var(--navy);
  background: rgba(26, 43, 69, 0.06);
  box-shadow: inset 0 0 0 1px var(--navy);
}

.size-option-label {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--navy);
}

.size-option-price {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold-deep);
}

.size-description {
  font-size: 0.98rem;
  color: var(--muted);
  margin: 0 0 1.25rem;
  max-width: 36rem;
}

.product-meta {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  border-top: 1px solid rgba(26, 43, 69, 0.12);
}

.product-meta li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(26, 43, 69, 0.12);
  font-size: 0.95rem;
}

.product-meta span:first-child {
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.stripe-checkout {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(26, 43, 69, 0.12);
}

.stripe-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.85rem;
}

.stripe-placeholder {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* Status pages */
.status-panel {
  text-align: center;
  padding: 6rem 0;
  max-width: 32rem;
  margin: 0 auto;
}

.status-panel .brand-script {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 1rem;
}

.order-ref {
  margin: 1.5rem auto 0.5rem;
  max-width: 36rem;
  padding: 1rem 1.25rem;
  background: rgba(26, 43, 69, 0.06);
  border-left: 3px solid var(--gold);
  color: var(--navy);
  font-size: 0.95rem;
  word-break: break-all;
}

.order-ref strong {
  display: inline-block;
  margin-top: 0.35rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

/* Support form */
.support-form {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(26, 43, 69, 0.1);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-soft);
}

.support-form .form-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 600;
}

.support-form .form-control {
  border-radius: var(--radius);
  border-color: rgba(26, 43, 69, 0.2);
  background: var(--foam);
  color: var(--ink);
  padding: 0.7rem 0.85rem;
  box-shadow: none;
}

.support-form .form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 0.2rem rgba(197, 160, 89, 0.25);
  background: var(--white);
}

.support-form-note {
  font-size: 0.9rem;
  color: var(--muted);
}

/* Legal pages */
.legal-copy h2 {
  margin-top: 2.25rem;
}

.legal-copy h2:first-of-type {
  margin-top: 0;
}

.legal-copy p {
  color: var(--ink);
}

/* Footer */
.site-footer {
  background:
    linear-gradient(180deg, rgba(26, 43, 69, 0.96), var(--navy-deep)),
    var(--navy-deep);
  color: rgba(255, 255, 255, 0.82);
  padding: 3.5rem 0 2rem;
  margin-top: 2rem;
}

.site-footer a {
  color: var(--gold-light);
  text-decoration: none;
}

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.footer-brand img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.2), 0 0 0 3px var(--gold);
}

.footer-brand .brand-wordmark {
  color: var(--white);
  font-size: 1.1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

/* Motion */
@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 767.98px) {
  .hero {
    min-height: min(62vh, 520px);
  }

  .page-banner {
    min-height: 180px;
  }

  .hero-inner {
    padding: 2.5rem 1.25rem 3rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
