/* =========================================
   CSS Custom Properties
   ========================================= */
:root {
  --color-bg: #f5f4f0;
  --color-bg-dark: #12110f;
  --color-bg-mid: #1e1d1a;
  --color-surface: #ffffff;
  --color-surface-dark: #1e1d1a;
  --color-text-primary: #1a1916;
  --color-text-secondary: #4a4844;
  --color-text-muted: #7a7873;
  --color-text-light: #f0ede8;
  --color-text-light-muted: #a8a49e;
  --color-accent: #c8a96e;
  --color-accent-dark: #a8893e;
  --color-accent-light: #e8d4a8;
  --color-border: #e2dfd8;
  --color-border-dark: #2e2d2a;
  --color-dot: rgba(26, 25, 22, 0.07);
  --color-dot-light: rgba(240, 237, 232, 0.08);

  --shadow-xs: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.07), 0 1px 3px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.09), 0 2px 6px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.08);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.16), 0 8px 20px rgba(0,0,0,0.10);
  --shadow-accent: 0 4px 20px rgba(200, 169, 110, 0.25);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  --transition-fast: 0.18s ease;
  --transition-base: 0.28s ease;
  --transition-slow: 0.45s ease;

  --font-heading: 'Vollkorn', Georgia, serif;
  --font-body: 'Work Sans', system-ui, sans-serif;

  --nav-height: 72px;
}

/* =========================================
   Reset & Base
   ========================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text-primary);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast), opacity var(--transition-fast);
}

ul {
  list-style: none;
}

address {
  font-style: normal;
}

/* =========================================
   Dot Grid Background Utility
   ========================================= */
.dot-grid-light {
  background-image: radial-gradient(circle, var(--color-dot) 1.2px, transparent 1.2px);
  background-size: 24px 24px;
}

.dot-grid-dark {
  background-image: radial-gradient(circle, var(--color-dot-light) 1.2px, transparent 1.2px);
  background-size: 24px 24px;
}

/* =========================================
   Global Header
   ========================================= */
.global-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--nav-height);
  transition: background var(--transition-base), box-shadow var(--transition-base);
}

.global-header.nav-light {
  background: rgba(245, 244, 240, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--color-border), var(--shadow-xs);
}

.global-header.nav-dark {
  background: rgba(18, 17, 15, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--color-border-dark);
}

.global-nav {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.global-nav__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  transition: opacity var(--transition-fast);
}

.global-nav__logo:hover {
  opacity: 0.8;
}

.global-nav__logo-img {
  width: 32px;
  height: 32px;
}

.global-nav__logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  transition: color var(--transition-fast);
}

.nav-light .global-nav__logo-text {
  color: var(--color-text-primary);
}

.nav-dark .global-nav__logo-text {
  color: var(--color-text-light);
}

.global-nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.global-nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color var(--transition-fast);
  position: relative;
}

.global-nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--color-accent);
  transition: width var(--transition-base);
}

.global-nav__link:hover::after {
  width: 100%;
}

.nav-light .global-nav__link {
  color: var(--color-text-secondary);
}

.nav-light .global-nav__link:hover {
  color: var(--color-text-primary);
}

.nav-dark .global-nav__link {
  color: var(--color-text-light-muted);
}

.nav-dark .global-nav__link:hover {
  color: var(--color-text-light);
}

.global-nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast);
}

.global-nav__hamburger:hover {
  background: rgba(200, 169, 110, 0.12);
}

.global-nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  transition: background var(--transition-fast), transform var(--transition-base), opacity var(--transition-fast);
}

.nav-light .global-nav__hamburger span {
  background: var(--color-text-primary);
}

.nav-dark .global-nav__hamburger span {
  background: var(--color-text-light);
}

/* =========================================
   Mobile Menu
   ========================================= */
.global-mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(12, 11, 9, 0.6);
  z-index: 950;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
  backdrop-filter: blur(3px);
}

.global-mobile-overlay.is-active {
  opacity: 1;
  pointer-events: all;
}

.global-mobile-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: min(360px, 90vw);
  height: 100vh;
  background: var(--color-bg-dark);
  background-image: radial-gradient(circle, var(--color-dot-light) 1.2px, transparent 1.2px);
  background-size: 24px 24px;
  z-index: 960;
  transform: translateX(100%);
  transition: transform var(--transition-slow) cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  padding: 2rem;
  box-shadow: -8px 0 40px rgba(0,0,0,0.3);
}

.global-mobile-panel.is-open {
  transform: translateX(0);
}

.global-mobile-panel__close {
  align-self: flex-end;
  background: var(--color-surface-dark);
  border: 1px solid var(--color-border-dark);
  color: var(--color-text-light);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: background var(--transition-fast), border-color var(--transition-fast);
  margin-bottom: 2.5rem;
}

.global-mobile-panel__close:hover {
  background: rgba(200, 169, 110, 0.15);
  border-color: var(--color-accent);
}

.global-mobile-panel__nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
}

.global-mobile-panel__link {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-text-light);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--color-border-dark);
  transition: color var(--transition-fast), padding-left var(--transition-fast);
  display: block;
}

.global-mobile-panel__link:hover {
  color: var(--color-accent);
  padding-left: 0.5rem;
}

.global-mobile-panel__footer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border-dark);
}

.global-mobile-panel__contact {
  font-size: 0.875rem;
  color: var(--color-text-light-muted);
  transition: color var(--transition-fast);
}

.global-mobile-panel__contact:hover {
  color: var(--color-accent);
}

/* =========================================
   Hero Section
   ========================================= */
.home-hero {
  min-height: 100vh;
  background-color: var(--color-bg-dark);
  background-image: radial-gradient(circle, var(--color-dot-light) 1.2px, transparent 1.2px);
  background-size: 24px 24px;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  padding: calc(var(--nav-height) + 5rem) 2rem 5rem;
  max-width: 100%;
  overflow: hidden;
}

.home-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse 70% 60% at 30% 40%, rgba(200, 169, 110, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.home-hero__content {
  max-width: 600px;
  margin: 0 auto 0 max(2rem, calc((100vw - 1280px) / 2));
  position: relative;
  z-index: 2;
}

.home-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1.5rem;
}

.home-hero__eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
  display: inline-block;
}

.home-hero__heading {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--color-text-light);
  letter-spacing: -0.03em;
  margin-bottom: 1.75rem;
}

.home-hero__heading em {
  font-style: italic;
  color: var(--color-accent);
}

.home-hero__subtext {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: var(--color-text-light-muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 2.5rem;
}

.home-hero__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.home-hero__btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-accent);
  color: var(--color-bg-dark);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-md);
  letter-spacing: 0.02em;
  transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
  box-shadow: var(--shadow-accent);
}

.home-hero__btn-primary:hover {
  background: #d4b87a;
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(200, 169, 110, 0.35);
}

.home-hero__btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-text-light-muted);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.85rem 1.25rem;
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-md);
  transition: color var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast);
}

.home-hero__btn-secondary:hover {
  color: var(--color-text-light);
  border-color: rgba(200, 169, 110, 0.4);
  background: rgba(200, 169, 110, 0.06);
}

.home-hero__visual {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-start;
  padding-right: max(2rem, calc((100vw - 1280px) / 2));
}

.home-hero__img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}

.home-hero__img {
  width: 100%;
  max-width: 500px;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(200, 169, 110, 0.15);
  display: block;
}

.home-hero__img-badge {
  position: absolute;
  bottom: 2rem;
  left: -1.5rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text-primary);
  box-shadow: var(--shadow-lg);
  letter-spacing: 0.03em;
}

.home-hero__img-badge i {
  color: var(--color-accent);
  font-size: 1rem;
}

.home-hero__scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: var(--color-text-light-muted);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: scrollBounce 2.5s ease-in-out infinite;
  z-index: 2;
}

.home-hero__scroll-hint i {
  font-size: 0.75rem;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.6; }
  50% { transform: translateX(-50%) translateY(5px); opacity: 1; }
}

/* =========================================
   About Section
   ========================================= */
.home-about {
  background-color: var(--color-bg);
  background-image: radial-gradient(circle, var(--color-dot) 1.2px, transparent 1.2px);
  background-size: 24px 24px;
  padding: 7rem 2rem;
}

.home-about__container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.home-about__visual-col {
  position: relative;
}

.home-about__img-stack {
  position: relative;
}

.home-about__img-main {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  display: block;
}

.home-about__img-accent {
  position: absolute;
  bottom: -2.5rem;
  right: -2.5rem;
  padding: 0.5rem;
  background: var(--color-surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
}

.home-about__img-small {
  width: 180px;
  height: 130px;
  object-fit: cover;
  border-radius: calc(var(--radius-md) - 2px);
  display: block;
}

.home-about__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent-dark);
  margin-bottom: 1rem;
}

.home-about__heading {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text-primary);
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.home-about__body {
  font-size: 1rem;
  color: var(--color-text-secondary);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.home-about__note {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: rgba(200, 169, 110, 0.08);
  border: 1px solid rgba(200, 169, 110, 0.25);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.home-about__note i {
  color: var(--color-accent-dark);
  margin-top: 0.1rem;
  flex-shrink: 0;
  font-size: 0.9rem;
}

.home-about__pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.home-about__pillar {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text-primary);
  box-shadow: var(--shadow-xs);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
}

.home-about__pillar:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-sm), 0 0 0 1px rgba(200, 169, 110, 0.2);
  transform: translateY(-1px);
}

.home-about__pillar i {
  color: var(--color-accent-dark);
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* =========================================
   Topics Section (Bento Grid)
   ========================================= */
.home-topics {
  background-color: var(--color-bg-mid);
  background-image: radial-gradient(circle, var(--color-dot-light) 1.2px, transparent 1.2px);
  background-size: 24px 24px;
  padding: 7rem 2rem;
}

.home-topics__container {
  max-width: 1280px;
  margin: 0 auto;
}

.home-topics__header {
  text-align: center;
  margin-bottom: 4rem;
}

.home-topics__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}

.home-topics__heading {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--color-text-light);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.home-topics__subtext {
  font-size: 1rem;
  color: var(--color-text-light-muted);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.65;
}

.home-topics__bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 1.25rem;
}

.home-topics__card {
  background: rgba(30, 29, 26, 0.8);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition-base), box-shadow var(--transition-base), transform var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.home-topics__card:hover {
  border-color: rgba(200, 169, 110, 0.35);
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(200, 169, 110, 0.12);
  transform: translateY(-3px);
}

.home-topics__card--wide {
  grid-column: span 2;
}

.home-topics__card--tall {
  grid-row: span 2;
}

.home-topics__card--accent {
  background: rgba(200, 169, 110, 0.08);
  border-color: rgba(200, 169, 110, 0.25);
}

.home-topics__card-icon {
  width: 44px;
  height: 44px;
  background: rgba(200, 169, 110, 0.12);
  border: 1px solid rgba(200, 169, 110, 0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  transition: background var(--transition-fast);
}

.home-topics__card:hover .home-topics__card-icon {
  background: rgba(200, 169, 110, 0.2);
}

.home-topics__card-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text-light);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.home-topics__card-text {
  font-size: 0.875rem;
  color: var(--color-text-light-muted);
  line-height: 1.65;
}

.home-topics__card-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-top: 1.25rem;
  opacity: 0.75;
  transition: opacity var(--transition-base);
}

.home-topics__card:hover .home-topics__card-img {
  opacity: 0.9;
}

.home-topics__card-img--bottom {
  margin-top: auto;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  height: 140px;
  margin-top: 1.5rem;
}

.home-topics__card--tall {
  padding-bottom: 0;
  min-height: 380px;
  display: flex;
  flex-direction: column;
}

/* =========================================
   Overlap Zone
   ========================================= */
.home-overlap-zone {
  position: relative;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  margin-top: -40px;
  margin-bottom: -40px;
}

.home-overlap-zone__line {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, rgba(200, 169, 110, 0.4), rgba(200, 169, 110, 0.1));
}

.home-overlap-zone__badge {
  position: relative;
  z-index: 2;
  width: 52px;
  height: 52px;
  background: var(--color-bg);
  border: 2px solid var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  font-size: 1.1rem;
  box-shadow: var(--shadow-md), 0 0 0 4px rgba(200, 169, 110, 0.1);
}

/* =========================================
   How We Work Section
   ========================================= */
.home-how {
  background-color: var(--color-bg);
  background-image: radial-gradient(circle, var(--color-dot) 1.2px, transparent 1.2px);
  background-size: 24px 24px;
  padding: 9rem 2rem 7rem;
}

.home-how__container {
  max-width: 1280px;
  margin: 0 auto;
}

.home-how__header {
  margin-bottom: 3.5rem;
}

.home-how__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent-dark);
  margin-bottom: 0.75rem;
}

.home-how__heading {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--color-text-primary);
  letter-spacing: -0.02em;
}

.home-how__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.home-how__step {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-base), border-color var(--transition-base), transform var(--transition-fast);
}

.home-how__step:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(200, 169, 110, 0.3);
  transform: translateY(-2px);
}

.home-how__step-num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(200, 169, 110, 0.15);
  line-height: 1;
  margin-bottom: 1rem;
  letter-spacing: -0.04em;
}

.home-how__step-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 0.75rem;
}

.home-how__step-text {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.home-how__disclaimer {
  max-width: 760px;
}

.home-how__disclaimer-inner {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(26, 25, 22, 0.04);
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--color-accent);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  line-height: 1.65;
}

.home-how__disclaimer-inner i {
  color: var(--color-accent-dark);
  font-size: 1rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

/* =========================================
   Resources Section
   ========================================= */
.home-resources {
  background-color: var(--color-surface);
  background-image: radial-gradient(circle, var(--color-dot) 1.2px, transparent 1.2px);
  background-size: 24px 24px;
  padding: 7rem 2rem;
}

.home-resources__container {
  max-width: 1280px;
  margin: 0 auto;
}

.home-resources__header {
  text-align: center;
  margin-bottom: 4rem;
}

.home-resources__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent-dark);
  margin-bottom: 0.75rem;
}

.home-resources__heading {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--color-text-primary);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.home-resources__subtext {
  font-size: 1rem;
  color: var(--color-text-secondary);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.65;
}

.home-resources__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.home-resources__item {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-xs);
  transition: box-shadow var(--transition-base), border-color var(--transition-base), transform var(--transition-fast);
}

.home-resources__item:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(200, 169, 110, 0.3);
  transform: translateY(-2px);
}

.home-resources__item-icon {
  width: 48px;
  height: 48px;
  background: rgba(200, 169, 110, 0.1);
  border: 1px solid rgba(200, 169, 110, 0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent-dark);
  font-size: 1.2rem;
  margin-bottom: 1.25rem;
}

.home-resources__item-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 0.6rem;
}

.home-resources__item-text {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.home-resources__img-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.home-resources__img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.home-resources__img:hover {
  transform: scale(1.015);
  box-shadow: var(--shadow-lg);
}

/* =========================================
   Contact Section
   ========================================= */
.home-contact {
  background-color: var(--color-bg-dark);
  background-image: radial-gradient(circle, var(--color-dot-light) 1.2px, transparent 1.2px);
  background-size: 24px 24px;
  padding: 7rem 2rem;
}

.home-contact__container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  margin-bottom: 4rem;
}

.home-contact__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}

.home-contact__heading {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--color-text-light);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.home-contact__body {
  font-size: 1rem;
  color: var(--color-text-light-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.home-contact__details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.home-contact__details li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--color-text-light-muted);
}

.home-contact__details li i {
  color: var(--color-accent);
  font-size: 0.9rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
  width: 16px;
}

.home-contact__details a {
  color: var(--color-text-light-muted);
  transition: color var(--transition-fast);
}

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

.home-contact__form {
  background: rgba(30, 29, 26, 0.6);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-lg);
}

.home-contact__form-row {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.home-contact__field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.home-contact__label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text-light-muted);
  letter-spacing: 0.03em;
}

.home-contact__label span {
  color: var(--color-accent);
}

.home-contact__input,
.home-contact__textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-text-light);
  outline: none;
  transition: border-color var(--transition-fast), background var(--transition-fast), box-shadow var(--transition-fast);
  width: 100%;
}

.home-contact__input::placeholder,
.home-contact__textarea::placeholder {
  color: rgba(168, 164, 158, 0.5);
}

.home-contact__input:focus,
.home-contact__textarea:focus {
  border-color: var(--color-accent);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 0 0 3px rgba(200, 169, 110, 0.12);
}

.home-contact__textarea {
  resize: vertical;
  min-height: 96px;
}

.home-contact__form-footer {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.home-contact__privacy-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.8rem;
  color: var(--color-text-light-muted);
  line-height: 1.6;
}

.home-contact__checkbox {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 0.1rem;
  accent-color: var(--color-accent);
  cursor: pointer;
}

.home-contact__privacy-label a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.home-contact__privacy-label a:hover {
  color: var(--color-accent-light);
}

.home-contact__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: var(--color-accent);
  color: var(--color-bg-dark);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.9rem 2rem;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
  box-shadow: var(--shadow-accent);
  width: 100%;
  min-height: 48px;
}

.home-contact__submit:hover {
  background: #d4b87a;
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(200, 169, 110, 0.35);
}

.home-contact__map-row {
  max-width: 1280px;
  margin: 0 auto;
}

.home-contact__map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border-dark);
  box-shadow: var(--shadow-lg);
}

.home-contact__map {
  display: block;
  filter: grayscale(30%) contrast(0.9);
}

/* =========================================
   Global Footer
   ========================================= */
.global-footer {
  background: #0e0d0b;
  background-image: radial-gradient(circle, rgba(240, 237, 232, 0.04) 1.2px, transparent 1.2px);
  background-size: 24px 24px;
  padding: 0;
}

.global-footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 2rem 4rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 6rem;
  align-items: start;
}

.global-footer__cta-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--color-text-light);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.global-footer__cta-text {
  font-size: 0.95rem;
  color: var(--color-text-light-muted);
  line-height: 1.7;
  margin-bottom: 1.75rem;
  max-width: 400px;
}

.global-footer__signup {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.global-footer__signup-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-text-light);
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  min-height: 48px;
}

.global-footer__signup-input::placeholder {
  color: rgba(168, 164, 158, 0.45);
}

.global-footer__signup-input:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(200, 169, 110, 0.1);
}

.global-footer__signup-btn {
  background: var(--color-accent);
  color: var(--color-bg-dark);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.85rem 1.5rem;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background var(--transition-fast), transform var(--transition-fast);
  white-space: nowrap;
  min-height: 48px;
}

.global-footer__signup-btn:hover {
  background: #d4b87a;
  transform: translateY(-1px);
}

.global-footer__cta-note {
  font-size: 0.75rem;
  color: rgba(168, 164, 158, 0.6);
  line-height: 1.5;
}

.global-footer__links-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.global-footer__links-title {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.global-footer__links-group ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.global-footer__links-group a {
  font-size: 0.875rem;
  color: var(--color-text-light-muted);
  transition: color var(--transition-fast);
}

.global-footer__links-group a:hover {
  color: var(--color-text-light);
}

.global-footer__contact-block {
  grid-column: span 2;
}

.global-footer__contact-block p {
  font-size: 0.875rem;
  color: var(--color-text-light-muted);
  line-height: 1.7;
  margin-bottom: 0.2rem;
}

.global-footer__contact-block a {
  transition: color var(--transition-fast);
}

.global-footer__contact-block a:hover {
  color: var(--color-accent);
}

.global-footer__bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  border-top: 1px solid var(--color-border-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.global-footer__copy {
  font-size: 0.8rem;
  color: rgba(168, 164, 158, 0.5);
}

.global-footer__disclaimer {
  font-size: 0.75rem;
  color: rgba(168, 164, 158, 0.4);
}

/* =========================================
   Back to Top
   ========================================= */
.global-back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  background: var(--color-accent);
  color: var(--color-bg-dark);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: var(--shadow-lg), var(--shadow-accent);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity var(--transition-base), transform var(--transition-base), background var(--transition-fast);
  z-index: 800;
}

.global-back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.global-back-to-top:hover {
  background: #d4b87a;
  transform: translateY(-3px);
}

/* =========================================
   Legal Pages Base Styles
   ========================================= */
.legal-page-body {
  background-color: var(--color-bg);
  background-image: radial-gradient(circle, var(--color-dot) 1.2px, transparent 1.2px);
  background-size: 24px 24px;
}

.legal-hero {
  background-color: var(--color-bg-dark);
  background-image: radial-gradient(circle, var(--color-dot-light) 1.2px, transparent 1.2px);
  background-size: 24px 24px;
  padding: calc(var(--nav-height) + 4rem) 2rem 4rem;
}

.legal-hero__inner {
  max-width: 800px;
  margin: 0 auto;
}

.legal-hero__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}

.legal-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--color-text-light);
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.legal-hero__meta {
  font-size: 0.85rem;
  color: var(--color-text-light-muted);
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 5rem 2rem 6rem;
}

.legal-timeline {
  position: relative;
  padding-left: 2.5rem;
}

.legal-timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--color-accent), var(--color-border));
}

.legal-timeline__section {
  position: relative;
  margin-bottom: 3.5rem;
}

.legal-timeline__section::before {
  content: '';
  position: absolute;
  left: -2.5rem;
  top: 0.35rem;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--color-accent);
  border: 2px solid var(--color-bg);
  box-shadow: 0 0 0 2px var(--color-accent);
}

.legal-timeline__date {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent-dark);
  margin-bottom: 0.5rem;
}

.legal-timeline__heading {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 0.75rem;
}

.legal-timeline__body {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  line-height: 1.75;
}

.legal-timeline__body p {
  margin-bottom: 0.75rem;
}

.legal-timeline__body p:last-child {
  margin-bottom: 0;
}

.legal-timeline__body ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin: 0.5rem 0;
}

.legal-timeline__body ul li {
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
  color: var(--color-text-secondary);
}

/* Terms page uses letter-based sections */
.legal-letter-section {
  margin-bottom: 3rem;
  padding: 2rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xs);
  transition: box-shadow var(--transition-base);
}

.legal-letter-section:hover {
  box-shadow: var(--shadow-sm);
}

.legal-letter-section__letter {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(200, 169, 110, 0.2);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.legal-letter-section__heading {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 0.75rem;
}

.legal-letter-section__body {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  line-height: 1.75;
}

.legal-letter-section__body p {
  margin-bottom: 0.75rem;
}

.legal-letter-section__body p:last-child {
  margin-bottom: 0;
}

.legal-letter-section__body ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin: 0.5rem 0;
}

.legal-letter-section__body ul li {
  margin-bottom: 0.4rem;
}

/* Cookies page uses compact cards */
.legal-cookie-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin: 2rem 0;
}

.legal-cookie-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-xs);
}

.legal-cookie-card__name {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--color-text-primary);
  margin-bottom: 0.3rem;
}

.legal-cookie-card__type {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-accent-dark);
  margin-bottom: 0.5rem;
}

.legal-cookie-card__desc {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.legal-section-plain {
  margin-bottom: 2.5rem;
}

.legal-section-plain__heading {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--color-border);
}

.legal-section-plain__body {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  line-height: 1.75;
  margin-top: 0.75rem;
}

.legal-section-plain__body p {
  margin-bottom: 0.75rem;
}

.legal-section-plain__body p:last-child {
  margin-bottom: 0;
}

.legal-section-plain__body ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin: 0.5rem 0;
}

.legal-section-plain__body ul li {
  margin-bottom: 0.4rem;
}

/* =========================================
   Thanks Page
   ========================================= */
.thanks-body {
  background-color: var(--color-bg);
  background-image: radial-gradient(circle, var(--color-dot) 1.2px, transparent 1.2px);
  background-size: 24px 24px;
}

.thanks-main {
  min-height: calc(100vh - var(--nav-height) - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-height) + 4rem) 2rem 6rem;
}

.thanks-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 4rem 3rem;
  max-width: 520px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-xl);
}

.thanks-card__checkmark {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
}

.thanks-card__checkmark svg {
  width: 80px;
  height: 80px;
}

.thanks-card__checkmark .check-circle {
  fill: none;
  stroke: var(--color-accent);
  stroke-width: 2.5;
  stroke-dasharray: 251;
  stroke-dashoffset: 251;
  animation: drawCircle 0.8s ease forwards;
}

.thanks-card__checkmark .check-path {
  fill: none;
  stroke: var(--color-accent);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  animation: drawCheck 0.5s ease 0.7s forwards;
}

@keyframes drawCircle {
  to { stroke-dashoffset: 0; }
}

@keyframes drawCheck {
  to { stroke-dashoffset: 0; }
}

.thanks-card__heading {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeInUp 0.5s ease 1.2s forwards;
}

.thanks-card__text {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeInUp 0.5s ease 1.4s forwards;
}

.thanks-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-accent);
  color: var(--color-bg-dark);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.9rem 2rem;
  border-radius: var(--radius-md);
  transition: background var(--transition-fast), transform var(--transition-fast);
  box-shadow: var(--shadow-accent);
  opacity: 0;
  animation: fadeInUp 0.5s ease 1.6s forwards;
}

.thanks-card__btn:hover {
  background: #d4b87a;
  transform: translateY(-2px);
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =========================================
   Cookie Consent Banner
   ========================================= */
.nar-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--color-bg-dark);
  border-top: 1px solid var(--color-border-dark);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.25);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nar-cookie-banner.is-visible {
  transform: translateY(0);
}

.nar-cookie-banner__main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.nar-cookie-banner__text {
  flex: 1;
  min-width: 260px;
  font-size: 0.85rem;
  color: var(--color-text-light-muted);
  line-height: 1.6;
}

.nar-cookie-banner__text a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--transition-fast);
}

.nar-cookie-banner__text a:hover {
  color: var(--color-accent-light);
}

.nar-cookie-banner__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.nar-cookie-btn {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
  border: 1px solid transparent;
  min-height: 40px;
  white-space: nowrap;
}

.nar-cookie-btn--accept {
  background: var(--color-accent);
  color: var(--color-bg-dark);
  border-color: var(--color-accent);
}

.nar-cookie-btn--accept:hover {
  background: #d4b87a;
  transform: translateY(-1px);
}

.nar-cookie-btn--reject {
  background: transparent;
  color: var(--color-text-light-muted);
  border-color: var(--color-border-dark);
}

.nar-cookie-btn--reject:hover {
  border-color: var(--color-text-light-muted);
  color: var(--color-text-light);
}

.nar-cookie-btn--customize {
  background: transparent;
  color: var(--color-text-light-muted);
  border-color: transparent;
  text-decoration: underline;
  text-underline-offset: 2px;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.nar-cookie-btn--customize:hover {
  color: var(--color-text-light);
}

.nar-cookie-banner__customize {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem 1.5rem;
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  border-top: 1px solid var(--color-border-dark);
  padding-top: 1.25rem;
}

.nar-cookie-banner__customize.is-open {
  display: flex;
}

.nar-cookie-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.25rem;
}

.nar-cookie-toggle__info {
  flex: 1;
}

.nar-cookie-toggle__name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-light);
  margin-bottom: 0.2rem;
}

.nar-cookie-toggle__desc {
  font-size: 0.78rem;
  color: var(--color-text-light-muted);
  line-height: 1.5;
}

.nar-cookie-switch {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}

.nar-cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.nar-cookie-switch__slider {
  position: absolute;
  inset: 0;
  background: var(--color-border-dark);
  border-radius: 12px;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.nar-cookie-switch__slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  top: 3px;
  background: white;
  border-radius: 50%;
  transition: transform var(--transition-fast);
}

.nar-cookie-switch input:checked + .nar-cookie-switch__slider {
  background: var(--color-accent);
}

.nar-cookie-switch input:checked + .nar-cookie-switch__slider::before {
  transform: translateX(20px);
}

.nar-cookie-switch input:disabled + .nar-cookie-switch__slider {
  opacity: 0.6;
  cursor: not-allowed;
}

.nar-cookie-banner__save {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem 1.5rem;
  display: none;
}

.nar-cookie-banner__save.is-open {
  display: block;
}

.nar-cookie-btn--save {
  background: var(--color-accent);
  color: var(--color-bg-dark);
  border-color: var(--color-accent);
}

.nar-cookie-btn--save:hover {
  background: #d4b87a;
}

/* =========================================
   Responsive
   ========================================= */
@media (max-width: 1024px) {
  .home-hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: calc(var(--nav-height) + 4rem);
  }

  .home-hero__content {
    margin: 0 auto;
    max-width: 600px;
  }

  .home-hero__subtext {
    margin-left: auto;
    margin-right: auto;
  }

  .home-hero__actions {
    justify-content: center;
  }

  .home-hero__visual {
    justify-content: center;
    padding-right: 0;
  }

  .home-hero__img {
    max-width: 100%;
    height: 380px;
  }

  .home-hero__scroll-hint {
    display: none;
  }

  .home-about__container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .home-about__img-accent {
    right: 1rem;
  }

  .home-topics__bento {
    grid-template-columns: 1fr 1fr;
  }

  .home-topics__card--wide {
    grid-column: span 2;
  }

  .home-topics__card--tall {
    grid-row: auto;
  }

  .home-how__steps {
    grid-template-columns: 1fr;
    max-width: 600px;
  }

  .home-contact__container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .global-footer__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .global-footer__links-col {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .global-footer__contact-block {
    grid-column: auto;
  }
}

@media (max-width: 768px) {
  .global-nav__links {
    display: none;
  }

  .global-nav__hamburger {
    display: flex;
  }

  .home-hero__heading {
    font-size: clamp(2.2rem, 8vw, 3rem);
  }

  .home-topics__bento {
    grid-template-columns: 1fr;
  }

  .home-topics__card--wide {
    grid-column: span 1;
  }

  .home-resources__grid {
    grid-template-columns: 1fr;
  }

  .home-resources__img-row {
    grid-template-columns: 1fr;
  }

  .global-footer__links-col {
    grid-template-columns: 1fr 1fr;
  }

  .global-footer__contact-block {
    grid-column: span 2;
  }

  .global-footer__signup {
    flex-direction: column;
  }

  .global-footer__signup-btn {
    width: 100%;
  }

  .global-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }

  .legal-cookie-grid {
    grid-template-columns: 1fr;
  }

  .thanks-card {
    padding: 3rem 1.75rem;
  }

  .home-about__pillars {
    grid-template-columns: 1fr;
  }

  .nar-cookie-banner__main {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .nar-cookie-banner__actions {
    width: 100%;
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .home-hero {
    padding-top: calc(var(--nav-height) + 3rem);
    padding-bottom: 3rem;
  }

  .home-about,
  .home-topics,
  .home-how,
  .home-resources,
  .home-contact {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .home-hero__img {
    height: 280px;
  }

  .home-about__img-main {
    height: 320px;
  }

  .home-about__img-accent {
    display: none;
  }

  .global-footer__inner {
    padding: 3rem 1.25rem 2rem;
  }

  .global-nav {
    padding: 0 1.25rem;
  }

  .global-back-to-top {
    bottom: 1.25rem;
    right: 1.25rem;
  }

  .home-contact__form {
    padding: 1.75rem 1.25rem;
  }

  .home-overlap-zone {
    display: none;
  }
}