/* ==========================================================================
   Your Wedding in Georgia — Design system stylesheet
   Color palette extracted from YWG logo: cream, gold, blush pink, navy
   ========================================================================== */

@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,500&family=Poppins:wght@300;400;500;600;700&display=swap");

/* ---- Design tokens ---- */
:root {
  /* Brand palette — from YWG logo */
  --cream:        #FAF3EE;   /* background cream */
  --beige:        #F0E6DC;   /* alt section background */
  --gold:         #B8952A;   /* primary accent */
  --gold-light:   #D4AF5A;   /* lighter gold */
  --gold-pale:    #E6CFA0;   /* very pale gold */
  --blush:        #E8C4B0;   /* soft pink-blush from logo flowers */
  --blush-light:  #F5E6DF;   /* pale blush for backgrounds */
  --navy:         #2C2C3E;   /* deep navy text */
  --navy-soft:    #5C5769;   /* muted navy for secondary text */
  --white:        #FFFFFF;
  --ivory:        #FDF8F2;

  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body:    "Poppins", "Segoe UI", sans-serif;

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

  --shadow-sm: 0 2px 8px rgba(44, 44, 62, 0.08);
  --shadow-md: 0 10px 30px rgba(44, 44, 62, 0.12);
  --shadow-lg: 0 20px 50px rgba(44, 44, 62, 0.18);

  --max-width: 1100px;
  --header-height: 76px;
}

/* ---- Reset ---- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

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

body {
  margin: 0;
  font-family: var(--font-body);
  background-color: var(--cream);
  color: var(--navy);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--gold); }

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

h2 { font-size: clamp(1.8rem, 1.4rem + 1.6vw, 2.6rem); }
h3 { font-size: 1.35rem; }
p  { margin: 0 0 1em; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin: 0.5rem 0 2rem;
  color: var(--gold);
}
.ornament::before,
.ornament::after {
  content: "";
  height: 1px;
  width: 48px;
  background: var(--gold-pale);
}
.ornament svg {
  width: 18px; height: 18px;
  fill: none; stroke: var(--gold); stroke-width: 1.4;
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap;
}

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

.skip-link {
  position: absolute; left: 1rem; top: -60px;
  background: var(--navy); color: var(--white);
  padding: 0.7rem 1.2rem; border-radius: var(--radius-sm);
  z-index: 2000; transition: top 0.2s ease;
}
.skip-link:focus { top: 1rem; }

/* ---- Layout helpers ---- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }
section { padding: 4.5rem 1.5rem; }
.section-narrow { max-width: 800px; margin: 0 auto; }
.section-tight { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.text-center { text-align: center; }
.bg-alt { background: var(--blush-light); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--gold);
  color: var(--white);
  padding: 0.85rem 1.9rem;
  border: none;
  border-radius: 999px;
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  box-shadow: var(--shadow-sm);
}
.btn:hover, .btn:focus-visible {
  background-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.8);
  box-shadow: none;
}
.btn-outline:hover, .btn-outline:focus-visible {
  background: rgba(255,255,255,0.15); color: var(--white);
}

.btn-secondary {
  background: var(--white);
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-secondary:hover, .btn-secondary:focus-visible {
  background: var(--blush-light); color: var(--gold);
}

.btn-block { width: 100%; justify-content: center; }

/* ==========================================================================
   Header / Navigation
   ========================================================================== */
.site-header {
  background: linear-gradient(120deg, var(--navy), #3a3850);
  color: var(--white);
  position: sticky; top: 0; z-index: 900;
  box-shadow: var(--shadow-sm);
}

.site-header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.6rem 1.5rem;
  min-height: var(--header-height);
}

/* Logo image in nav */
.brand {
  display: flex; align-items: center; gap: 0.6rem;
  color: var(--white); text-decoration: none;
  font-family: var(--font-display); font-size: 1.5rem;
  font-weight: 600; letter-spacing: 0.01em;
}
.brand-logo-img {
  width: 56px; height: 56px;
  object-fit: contain;
  border-radius: 50%;
  background: var(--cream);
  padding: 3px;
}
.brand-tag {
  display: block; font-family: var(--font-body);
  font-size: 0.62rem; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--gold-pale);
  font-weight: 500;
}

.nav-controls { display: flex; align-items: center; gap: 1.5rem; }

.nav-links {
  list-style: none; display: flex;
  gap: 1.85rem; margin: 0; padding: 0;
}
.nav-links a {
  color: var(--white); text-decoration: none;
  font-weight: 500; font-size: 0.95rem;
  position: relative; padding: 0.3rem 0.1rem;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -4px;
  width: 0; height: 2px; background: var(--gold);
  transition: width 0.2s ease;
}
.nav-links a:hover::after,
.nav-links a:focus-visible::after { width: 100%; }
.nav-links a[aria-current="page"] { color: var(--gold-pale); }
.nav-links a[aria-current="page"]::after { width: 100%; }

.nav-toggle {
  display: none; background: none; border: none;
  color: var(--white); cursor: pointer; padding: 0.4rem;
}
.nav-toggle svg {
  width: 26px; height: 26px; stroke: currentColor;
  fill: none; stroke-width: 2; stroke-linecap: round;
}

.language-switcher {
  display: flex; gap: 0.6rem;
  border-left: 1px solid rgba(255,255,255,0.25);
  padding-left: 1.2rem;
}
.language-option {
  background: none; border: none;
  color: rgba(255,255,255,0.75); cursor: pointer;
  font-size: 0.85rem; font-family: var(--font-body); padding: 0.2rem 0.3rem;
}
.language-option:hover { color: var(--white); }
.language-option.active {
  font-weight: 600; color: var(--gold-pale);
  border-bottom: 2px solid var(--gold);
}

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .nav-controls {
    position: fixed; inset: var(--header-height) 0 0 0;
    background: var(--navy); flex-direction: column;
    align-items: flex-start; gap: 0; padding: 1rem 1.5rem 2rem;
    transform: translateY(-8px); opacity: 0; pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease; overflow-y: auto;
  }
  .nav-controls.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .nav-links { flex-direction: column; gap: 0; width: 100%; }
  .nav-links li { width: 100%; border-bottom: 1px solid rgba(255,255,255,0.12); }
  .nav-links a { display: block; padding: 0.9rem 0.1rem; }
  .language-switcher { border-left: none; padding-left: 0; padding-top: 1rem; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative; min-height: 88vh; color: var(--white);
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  text-align: center; padding: 6rem 1.5rem;
  background:
    linear-gradient(rgba(44,44,62,0.52), rgba(44,44,62,0.52)),
    url("images/wedding-background.jpg") no-repeat center center/cover;
}
.hero .eyebrow { color: var(--gold-pale); }
.hero h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 1.9rem + 2.4vw, 4rem);
  max-width: 16ch; margin-bottom: 0.4em;
}
.hero p {
  font-size: 1.15rem; max-width: 46ch;
  color: rgba(255,255,255,0.92); margin-bottom: 2rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.hero-small { min-height: 46vh; padding: 4rem 1.5rem; }
.hero-small h1 { font-size: clamp(2rem, 1.6rem + 1.6vw, 2.8rem); }

/* ==========================================================================
   Stats
   ========================================================================== */
.stats {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px,1fr));
  gap: 2rem; max-width: var(--max-width); margin: 0 auto; text-align: center;
}
.stat h3 { font-size: 2.6rem; color: var(--gold); margin-bottom: 0.1em; }
.stat p  { margin: 0; color: var(--navy-soft); font-size: 0.95rem; }

/* ==========================================================================
   Cards
   ========================================================================== */
.card-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 1.75rem; max-width: var(--max-width); margin: 0 auto;
}
.card {
  background: var(--white);
  border: 1px solid var(--blush-light);
  border-radius: var(--radius-md); padding: 1.9rem 1.6rem;
  text-align: center; box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.card:hover, .card:focus-within {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.card .icon {
  width: 52px; height: 52px; margin: 0 auto 1rem;
  display: grid; place-items: center; border-radius: 50%;
  background: var(--blush-light); color: var(--gold); font-size: 1.4rem;
}
.card h3 { margin-bottom: 0.5rem; }
.card p  { color: var(--navy-soft); font-size: 0.95rem; }

/* ==========================================================================
   Home sections
   ========================================================================== */
.intro-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; max-width: var(--max-width); margin: 0 auto; align-items: center;
}
.intro-split img, .intro-split svg.frame {
  border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
}
@media (max-width: 760px) { .intro-split { grid-template-columns: 1fr; } }

.preview-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1rem; max-width: var(--max-width); margin: 0 auto;
}
.preview-grid a { display: block; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); position: relative; }
.preview-grid img { width: 100%; height: 220px; object-fit: cover; transition: transform 0.4s ease; }
.preview-grid a:hover img, .preview-grid a:focus-visible img { transform: scale(1.06); }
@media (max-width: 760px) { .preview-grid { grid-template-columns: repeat(2,1fr); } }

.testimonial-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 1.75rem; max-width: var(--max-width); margin: 0 auto;
}
.testimonial {
  background: var(--white); border-radius: var(--radius-md);
  padding: 1.75rem; box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--gold);
}
.testimonial p.quote {
  font-family: var(--font-display); font-style: italic;
  font-size: 1.15rem; color: var(--navy);
}
.testimonial .cite { color: var(--navy-soft); font-size: 0.9rem; }

.cta-band {
  background: linear-gradient(120deg, var(--navy), #3a3850);
  color: var(--white); text-align: center;
  border-radius: var(--radius-lg);
  max-width: var(--max-width); margin: 0 auto; padding: 3.5rem 2rem;
}
.cta-band h2 { color: var(--white); }
.cta-band p { color: rgba(255,255,255,0.85); max-width: 50ch; margin: 0 auto 1.75rem; }

/* ==========================================================================
   About page
   ========================================================================== */
.highlight {
  background-color: var(--blush-light); padding: 1.3rem 1.5rem;
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 2rem 0; font-family: var(--font-display);
  font-size: 1.2rem; color: var(--navy);
}
.faces {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px,1fr));
  gap: 2.5rem; max-width: var(--max-width); margin: 0 auto; text-align: center;
}
.face-card img {
  width: 160px; height: 160px; border-radius: 50%;
  border: 3px solid var(--gold); object-fit: cover; margin: 0 auto 1rem;
}
.face-card .role {
  color: var(--gold); font-size: 0.85rem; letter-spacing: 0.08em;
  text-transform: uppercase; font-weight: 600; display: block; margin-bottom: 0.5rem;
}
.press-quote {
  border-left: 3px solid var(--gold); padding-left: 1.2rem;
  margin: 1.5rem 0; font-style: italic; color: var(--navy-soft);
}

/* ==========================================================================
   Services page
   ========================================================================== */
.services-header {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem; max-width: var(--max-width); margin: 0 auto 2rem;
}
.search-wrap { position: relative; }
.search-wrap input[type="search"] {
  padding: 0.65rem 1rem 0.65rem 2.4rem; border-radius: 999px;
  border: 1.5px solid var(--blush); width: 260px; max-width: 60vw;
  font-family: var(--font-body); background: var(--white);
}
.search-wrap svg {
  position: absolute; left: 0.85rem; top: 50%; transform: translateY(-50%);
  width: 16px; height: 16px; stroke: var(--navy-soft); fill: none; stroke-width: 2;
}
.service-box { cursor: pointer; }
.service-box .icon { font-size: 1.6rem; }
.no-results { text-align: center; color: var(--navy-soft); padding: 2rem 0; display: none; }

/* Modal */
.modal-overlay {
  display: none; position: fixed; inset: 0;
  background-color: rgba(44,44,62,0.6); z-index: 1000;
  justify-content: center; align-items: center; padding: 1.5rem;
}
.modal-overlay.is-open { display: flex; }
.modal-content {
  background: var(--white); padding: 2.2rem; border-radius: var(--radius-md);
  max-width: 480px; width: 100%; position: relative; box-shadow: var(--shadow-lg);
}
.close-modal {
  position: absolute; top: 1rem; right: 1.1rem;
  font-size: 1.5rem; line-height: 1; cursor: pointer;
  color: var(--gold); background: none; border: none;
}

/* ==========================================================================
   Gallery page
   ========================================================================== */
.filters { display: flex; justify-content: center; gap: 0.75rem; flex-wrap: wrap; margin: 0 0 2.5rem; }
.filters button {
  background: var(--white); color: var(--gold);
  border: 1.5px solid var(--gold); padding: 0.5rem 1.3rem;
  border-radius: 999px; cursor: pointer; font-family: var(--font-body);
  font-weight: 500; transition: background-color 0.2s ease, color 0.2s ease;
}
.filters button:hover, .filters button.active { background: var(--gold); color: var(--white); }

.gallery-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 1.25rem; max-width: var(--max-width); margin: 0 auto;
}
.gallery-item {
  border: none; padding: 0; background: none; cursor: pointer;
  border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm);
}
.gallery-item img { width: 100%; height: 240px; object-fit: cover; transition: transform 0.35s ease; }
.gallery-item:hover img, .gallery-item:focus-visible img { transform: scale(1.06); }

.lightbox {
  position: fixed; inset: 0; background: rgba(20,18,30,0.92);
  display: none; justify-content: center; align-items: center;
  z-index: 1500; padding: 2rem;
}
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 82vh; border-radius: var(--radius-md); box-shadow: var(--shadow-lg); }
.lightbox-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: none; border: none; color: var(--white); font-size: 2rem; cursor: pointer; line-height: 1;
}

/* ==========================================================================
   Calendar / Booking
   ========================================================================== */
.calendar-wrap {
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md); padding: 1.5rem; margin-bottom: 2rem;
}
.calendar-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1rem;
}
.calendar-header h3 {
  font-family: var(--font-display); font-size: 1.25rem;
  color: var(--navy); margin: 0;
}
.cal-nav {
  background: none; border: 1.5px solid var(--gold); color: var(--gold);
  width: 34px; height: 34px; border-radius: 50%; cursor: pointer;
  font-size: 1rem; display: grid; place-items: center;
  transition: background 0.2s, color 0.2s;
}
.cal-nav:hover { background: var(--gold); color: var(--white); }
.calendar-grid {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px;
}
.calendar-day-label {
  text-align: center; font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--navy-soft); padding: 0.4rem 0;
}
.calendar-day {
  text-align: center; padding: 0.55rem 0.2rem;
  border-radius: var(--radius-sm); cursor: pointer;
  font-size: 0.9rem; transition: background 0.15s, color 0.15s;
  border: 1.5px solid transparent; color: var(--navy);
  background: transparent;
}
.calendar-day:hover:not(.empty):not(.past):not(.booked) {
  background: var(--blush-light); border-color: var(--gold);
}
.calendar-day.empty { pointer-events: none; }
.calendar-day.past  { color: #ccc; pointer-events: none; }
.calendar-day.booked {
  background: var(--blush); color: var(--navy-soft);
  pointer-events: none; text-decoration: line-through;
}
.calendar-day.selected {
  background: var(--gold); color: var(--white);
  font-weight: 600; border-color: var(--gold);
}
.calendar-day.today { border-color: var(--gold); font-weight: 600; }

.calendar-legend {
  display: flex; gap: 1.2rem; flex-wrap: wrap;
  margin-top: 1rem; font-size: 0.78rem; color: var(--navy-soft);
}
.legend-dot {
  width: 11px; height: 11px; border-radius: 50%; display: inline-block; margin-right: 4px; vertical-align: middle;
}

/* Time slots */
.time-slots {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(110px,1fr));
  gap: 0.6rem; margin: 1rem 0 1.5rem;
}
.time-slot {
  border: 1.5px solid var(--gold-pale); border-radius: var(--radius-sm);
  padding: 0.55rem 0.5rem; text-align: center; cursor: pointer;
  font-size: 0.85rem; color: var(--navy); background: var(--white);
  transition: all 0.15s;
}
.time-slot:hover:not(.taken) { border-color: var(--gold); background: var(--blush-light); }
.time-slot.selected { background: var(--gold); color: var(--white); border-color: var(--gold); font-weight: 600; }
.time-slot.taken { background: var(--blush-light); color: #bbb; border-color: transparent; cursor: not-allowed; text-decoration: line-through; }

/* ==========================================================================
   Forms
   ========================================================================== */
.form-card {
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md); padding: 2.5rem; max-width: 640px; margin: 0 auto;
}
.field { margin-bottom: 1.4rem; }
.field label { display: block; font-weight: 500; margin-bottom: 0.4rem; color: var(--navy); font-size: 0.95rem; }
.field .req { color: var(--gold); }
.field input, .field select, .field textarea {
  width: 100%; padding: 0.8rem 0.9rem;
  border: 1.5px solid #e4d9de; border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 1rem;
  background: var(--ivory); color: var(--navy);
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--gold); outline: none; background: var(--white);
}
.field small.error { display: none; color: #b3261e; font-size: 0.82rem; margin-top: 0.35rem; }
.field.has-error input,
.field.has-error select,
.field.has-error textarea { border-color: #b3261e; }
.field.has-error small.error { display: block; }
.form-note { font-size: 0.85rem; color: var(--navy-soft); margin-top: -0.6rem; margin-bottom: 1.4rem; }
.form-success { display: none; text-align: center; padding: 2.5rem; }
.form-success.is-visible { display: block; }
.form-success svg { width: 56px; height: 56px; stroke: var(--gold); fill: none; stroke-width: 1.6; margin-bottom: 1rem; }
.form-shell.is-submitted .form-fields { display: none; }

/* ==========================================================================
   Contact
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; max-width: var(--max-width); margin: 0 auto; align-items: start; }
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info-list { list-style: none; margin: 0 0 1.8rem; padding: 0; }
.contact-info-list li { display: flex; gap: 0.8rem; align-items: flex-start; margin-bottom: 1.3rem; }
.contact-info-list svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 1.8; flex-shrink: 0; margin-top: 0.15rem; }
.social-row { display: flex; gap: 0.8rem; }
.social-row a {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--blush-light); color: var(--gold);
  display: grid; place-items: center; text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.social-row a:hover { background: var(--gold); color: var(--white); }
.social-row svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.8; }
.map-frame { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); margin-top: 1.5rem; }
.map-frame iframe { width: 100%; height: 280px; border: 0; display: block; }

/* ==========================================================================
   404
   ========================================================================== */
.error-container { max-width: 560px; margin: 0 auto; text-align: center; padding: 5rem 1.5rem; }
.error-container .error-code { font-family: var(--font-display); font-size: 6rem; color: var(--gold); margin-bottom: 0; line-height: 1; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.85); padding: 3.5rem 1.5rem 2rem; }
.footer-grid {
  max-width: var(--max-width); margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.5rem; padding-bottom: 2.5rem;
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-grid h4 {
  color: var(--gold-pale); font-family: var(--font-body);
  font-size: 0.78rem; letter-spacing: 0.14em;
  text-transform: uppercase; margin-bottom: 1rem;
}
.footer-brand {
  display: flex; align-items: center; gap: 0.6rem;
  color: var(--white); text-decoration: none;
  font-family: var(--font-display); font-size: 1.4rem; margin-bottom: 0.8rem;
}
.footer-brand-img { width: 40px; height: 40px; border-radius: 50%; object-fit: contain; background: var(--cream); padding: 2px; }
.footer-grid p { color: rgba(255,255,255,0.65); font-size: 0.92rem; }
.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.92rem; }
.footer-links a:hover { color: var(--gold-pale); }
.newsletter-form { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.newsletter-form input[type="email"] {
  flex: 1 1 160px; padding: 0.65rem 0.8rem; border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.25); background: rgba(255,255,255,0.08);
  color: var(--white); min-width: 0;
}
.newsletter-form input[type="email"]::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-form button {
  background: var(--gold); color: var(--white); border: none;
  padding: 0.65rem 1.1rem; border-radius: var(--radius-sm); font-weight: 600; cursor: pointer;
}
.newsletter-form button:hover { background: var(--gold-light); }
.newsletter-note { font-size: 0.78rem; margin-top: 0.6rem; color: rgba(255,255,255,0.55); }
.footer-bottom {
  max-width: var(--max-width); margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.12); padding-top: 1.5rem;
  display: flex; justify-content: space-between; flex-wrap: wrap;
  gap: 0.8rem; font-size: 0.85rem; color: rgba(255,255,255,0.55);
}
.footer-bottom a { color: rgba(255,255,255,0.55); }

/* ==========================================================================
   Back to top
   ========================================================================== */
.back-to-top {
  position: fixed; right: 1.5rem; bottom: 1.5rem;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--gold); color: var(--white); border: none;
  display: grid; place-items: center; cursor: pointer;
  box-shadow: var(--shadow-md); opacity: 0; transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
  z-index: 800;
}
.back-to-top.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-to-top:hover { background: var(--gold-light); }
.back-to-top svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2.2; }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--blush-light); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 6px; }
