/* ==========================================================================
   Uplifting Closet — stylesheet
   Editorial luxury bridal atelier aesthetic
   ========================================================================== */

:root {
  /* Palette */
  --cream:        #FAF5EF;
  --cream-warm:   #FFFDF9;
  --ivory:        #F4ECE2;
  --rose:         #B68A7E;
  --rose-deep:    #8B5A4E;
  --wine:         #5C2B2B;
  --gold:         #B8915E;
  --gold-soft:    #D9C2A3;
  --charcoal:     #231F1C;
  --smoke:        #6B5F58;
  --hairline:     rgba(35, 31, 28, 0.12);

  /* Typography */
  --f-display: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --f-body:    'Jost', 'Helvetica Neue', Arial, sans-serif;
  --f-script:  'Italianno', cursive;

  /* Scale */
  --sp-1: 0.5rem;
  --sp-2: 1rem;
  --sp-3: 1.5rem;
  --sp-4: 2rem;
  --sp-5: 3rem;
  --sp-6: 4.5rem;
  --sp-7: 6.5rem;
  --sp-8: 9rem;

  --container:        min(1240px, 92vw);
  --container-narrow: min(780px, 92vw);
  --container-wide:   min(1440px, 96vw);

  --radius-sm: 2px;
  --radius-md: 4px;

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--f-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  color: var(--charcoal);
  background: var(--cream);
  overflow-x: hidden;
}

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

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

button { font: inherit; cursor: pointer; border: 0; background: transparent; }

ul { list-style: none; }

/* Typography primitives -------------------------------------------------- */
.display-xxl,
.display-xl,
.display-lg,
.display-md,
.display-sm {
  font-family: var(--f-display);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -0.01em;
  color: var(--charcoal);
}

.display-xxl { font-size: clamp(3.5rem, 9vw, 8.5rem); }
.display-xl  { font-size: clamp(2.75rem, 7vw, 6rem); }
.display-lg  { font-size: clamp(2.25rem, 5.5vw, 4.5rem); }
.display-md  { font-size: clamp(1.75rem, 4vw, 3rem); }
.display-sm  { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }

.display-italic { font-style: italic; font-weight: 400; }

.script {
  font-family: var(--f-script);
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  color: var(--rose-deep);
  line-height: 0.9;
  font-weight: 400;
}

.eyebrow {
  font-family: var(--f-body);
  font-size: 0.75rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--rose-deep);
  font-weight: 400;
}

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

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

.lead {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.7;
  color: var(--smoke);
  font-weight: 300;
}

/* Layout helpers --------------------------------------------------------- */
.container        { width: var(--container); margin-inline: auto; }
.container-narrow { width: var(--container-narrow); margin-inline: auto; }
.container-wide   { width: var(--container-wide); margin-inline: auto; }

.section { padding-block: var(--sp-7); }
.section-lg { padding-block: var(--sp-8); }
.section-sm { padding-block: var(--sp-5); }

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  color: var(--gold);
  margin-block: var(--sp-4);
}
.divider::before,
.divider::after {
  content: '';
  flex: 1;
  max-width: 60px;
  height: 1px;
  background: currentColor;
}

/* Buttons ---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  padding: 1.1em 2.2em;
  font-family: var(--f-body);
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 400;
  cursor: pointer;
  transition: all 350ms var(--ease);
  border-radius: var(--radius-sm);
}

.btn-primary {
  background: var(--charcoal);
  color: var(--cream-warm);
  border: 1px solid var(--charcoal);
}
.btn-primary:hover {
  background: var(--wine);
  border-color: var(--wine);
  letter-spacing: 0.28em;
}

.btn-ghost {
  background: transparent;
  color: var(--charcoal);
  border: 1px solid var(--charcoal);
}
.btn-ghost:hover {
  background: var(--charcoal);
  color: var(--cream-warm);
  letter-spacing: 0.28em;
}

.btn-gold {
  background: var(--gold);
  color: var(--cream-warm);
  border: 1px solid var(--gold);
}
.btn-gold:hover {
  background: var(--rose-deep);
  border-color: var(--rose-deep);
}

.btn-arrow::after {
  content: '→';
  font-family: var(--f-display);
  font-size: 1.2em;
  transition: transform 350ms var(--ease);
}
.btn-arrow:hover::after { transform: translateX(6px); }

/* Text link */
.tlink {
  position: relative;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose-deep);
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  transition: color 300ms var(--ease);
}
.tlink:hover { color: var(--wine); }

/* ==========================================================================
   Navigation
   ========================================================================== */
.nav-bar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 245, 239, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--hairline);
}

.nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 1.2rem 0;
  width: var(--container-wide);
  margin-inline: auto;
}

.nav-links {
  display: flex;
  gap: var(--sp-5);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 400;
}
.nav-links--left  { justify-content: flex-start; }
.nav-links--right { justify-content: flex-end; }

.nav-links a {
  position: relative;
  padding-bottom: 4px;
  transition: color 300ms var(--ease);
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--rose-deep);
  transform: translateX(-50%);
  transition: width 300ms var(--ease);
}
.nav-links a:hover { color: var(--rose-deep); }
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after { width: 100%; }

.nav-brand {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 1.55rem;
  letter-spacing: 0.08em;
  text-align: center;
  line-height: 1;
}
.nav-brand em {
  font-style: italic;
  color: var(--rose-deep);
  font-weight: 300;
}
.nav-brand-sub {
  display: block;
  font-family: var(--f-body);
  font-size: 0.58rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--smoke);
  margin-top: 3px;
  font-weight: 300;
}

.nav-toggle {
  display: none;
  width: 32px;
  height: 24px;
  position: relative;
  z-index: 110;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--charcoal);
  margin-block: 5px;
  transition: all 300ms var(--ease);
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav {
    grid-template-columns: auto 1fr auto;
    padding: 1rem 0;
    width: 92vw;
  }
  .nav-brand { text-align: left; font-size: 1.3rem; }
  .nav-brand-sub { display: none; }
  .nav-links {
    position: fixed;
    inset: 0;
    background: var(--cream);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--sp-4);
    font-size: 1rem;
    transform: translateX(100%);
    transition: transform 400ms var(--ease);
    pointer-events: none;
  }
  .nav-links.is-open { transform: translateX(0); pointer-events: auto; }
  .nav-links--left { order: 2; }
  .nav-toggle { display: block; grid-column: 3; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding-block: var(--sp-6);
  overflow: hidden;
  background: linear-gradient(180deg, var(--cream) 0%, var(--ivory) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -15%;
  right: -10%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(182, 138, 126, 0.18) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 35vw;
  height: 35vw;
  background: radial-gradient(circle, rgba(184, 145, 94, 0.12) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  width: var(--container-wide);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--sp-6);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-headline { position: relative; }
.hero-headline .eyebrow { margin-bottom: var(--sp-3); display: block; }
.hero-headline .script {
  position: absolute;
  top: -0.3em;
  right: -0.2em;
  transform: rotate(-6deg);
  z-index: 2;
}

.hero-body {
  max-width: 480px;
  margin-top: var(--sp-4);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-top: var(--sp-4);
}

.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  max-height: 640px;
  justify-self: end;
}
.hero-visual::before {
  content: '';
  position: absolute;
  inset: -20px;
  border: 1px solid var(--gold-soft);
  transform: translate(20px, 20px);
  z-index: 0;
}
.hero-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95);
}

.hero-meta {
  position: absolute;
  bottom: 3%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  z-index: 1;
}
.hero-meta .line {
  width: 48px;
  height: 1px;
  background: var(--smoke);
}
.hero-meta .txt {
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--smoke);
}

@media (max-width: 900px) {
  .hero { min-height: auto; padding-block: var(--sp-5); }
  .hero-grid { grid-template-columns: 1fr; gap: var(--sp-4); }
  .hero-visual { aspect-ratio: 3/4; max-height: 500px; justify-self: stretch; }
  .hero-meta { display: none; }
}

/* ==========================================================================
   Category pair (Bridal / Quince on home)
   ========================================================================== */
.pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--hairline);
  border-block: 1px solid var(--hairline);
}

.pair-card {
  position: relative;
  background: var(--cream-warm);
  padding: var(--sp-7) var(--sp-5);
  text-align: center;
  overflow: hidden;
  transition: background 500ms var(--ease);
}
.pair-card:hover { background: var(--ivory); }

.pair-card-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
}

.pair-card .badge {
  width: 90px;
  height: 90px;
  object-fit: contain;
  opacity: 0.85;
  margin-bottom: var(--sp-1);
}

.pair-card .script { margin-block: var(--sp-1); }
.pair-card p { color: var(--smoke); max-width: 420px; }

.pair-card::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--rose-deep);
  transform: translateX(-50%);
  transition: width 500ms var(--ease);
}
.pair-card:hover::before { width: 140px; }

@media (max-width: 768px) {
  .pair { grid-template-columns: 1fr; }
  .pair-card { padding: var(--sp-5) var(--sp-3); }
}

/* ==========================================================================
   Services editorial grid
   ========================================================================== */
.services { background: var(--cream-warm); }

.services-head {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: var(--sp-5);
  align-items: end;
  margin-bottom: var(--sp-6);
}
.services-head h2 { max-width: 9ch; }
@media (max-width: 768px) {
  .services-head { grid-template-columns: 1fr; gap: var(--sp-3); }
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--sp-4) var(--sp-3);
}

.service {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.service-img {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--ivory);
  margin-bottom: var(--sp-2);
}
.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms var(--ease);
}
.service:hover .service-img img { transform: scale(1.04); }

.service-num {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--gold);
}
.service h3 { font-family: var(--f-display); font-size: 1.6rem; font-weight: 400; line-height: 1.2; }
.service p { color: var(--smoke); font-size: 0.95rem; }
.service .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: var(--sp-2);
}
.service .tag {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--smoke);
  padding: 4px 10px;
  border: 1px solid var(--hairline);
  border-radius: 99px;
}

/* Editorial asymmetric placement */
.service:nth-child(1) { grid-column: span 6; }
.service:nth-child(2) { grid-column: span 6; margin-top: var(--sp-6); }
.service:nth-child(3) { grid-column: span 6; }
.service:nth-child(4) { grid-column: span 6; margin-top: var(--sp-6); }

@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; }
  .service:nth-child(n) { grid-column: span 1; margin-top: 0; }
}

/* ==========================================================================
   About
   ========================================================================== */
.about {
  background: var(--ivory);
  position: relative;
  overflow: hidden;
}
.about-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: var(--sp-6);
  align-items: center;
}

.about-image {
  position: relative;
  aspect-ratio: 3/4;
}
.about-image::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--rose);
  transform: translate(-18px, 18px);
  z-index: 0;
}
.about-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content { max-width: 560px; }
.about-content h2 { margin-block: var(--sp-2); }
.about-signature {
  margin-top: var(--sp-4);
  padding-top: var(--sp-3);
  border-top: 1px solid var(--hairline);
  font-family: var(--f-script);
  font-size: 2.25rem;
  color: var(--rose-deep);
  line-height: 1;
}
.about-signature + .eyebrow { margin-top: var(--sp-1); display: block; }

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-image { max-width: 420px; }
}

/* ==========================================================================
   Pull quote
   ========================================================================== */
.pull-quote {
  text-align: center;
  padding-block: var(--sp-7);
  background: var(--charcoal);
  color: var(--cream-warm);
  position: relative;
}
.pull-quote::before,
.pull-quote::after {
  content: '';
  position: absolute;
  left: 50%;
  width: 1px;
  height: var(--sp-4);
  background: var(--gold);
}
.pull-quote::before { top: 0; }
.pull-quote::after  { bottom: 0; }
.pull-quote blockquote {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.5rem, 3vw, 2.6rem);
  line-height: 1.3;
  max-width: 820px;
  margin-inline: auto;
  padding-inline: var(--sp-3);
}
.pull-quote cite {
  display: block;
  margin-top: var(--sp-3);
  font-family: var(--f-body);
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

/* ==========================================================================
   Gallery / portfolio
   ========================================================================== */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
}
.gallery-item {
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--ivory);
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms var(--ease), filter 500ms var(--ease);
}
.gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(1.05);
}

.gallery-masonry {
  columns: 3 280px;
  column-gap: var(--sp-3);
}
.gallery-masonry .gallery-item {
  aspect-ratio: auto;
  break-inside: avoid;
  margin-bottom: var(--sp-3);
}
.gallery-masonry img { height: auto; }

/* ==========================================================================
   Page hero (interior pages)
   ========================================================================== */
.page-hero {
  padding: var(--sp-7) 0 var(--sp-6);
  text-align: center;
  background: linear-gradient(180deg, var(--ivory) 0%, var(--cream) 100%);
  position: relative;
}
.page-hero .eyebrow { margin-bottom: var(--sp-2); display: block; }
.page-hero h1 { max-width: 16ch; margin-inline: auto; }
.page-hero .lead { max-width: 62ch; margin: var(--sp-3) auto 0; }

/* ==========================================================================
   Experience layout (bridal / quince pages)
   ========================================================================== */
.experience-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-6);
  align-items: center;
  padding-block: var(--sp-6);
}
.experience-block:nth-child(even) > .experience-visual { order: 2; }
.experience-visual {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--ivory);
}
.experience-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.experience-content { max-width: 520px; }
.experience-content .eyebrow { display: block; margin-bottom: var(--sp-2); }
.experience-content h2 { margin-bottom: var(--sp-3); }
.experience-content ul {
  list-style: none;
  margin-top: var(--sp-3);
}
.experience-content ul li {
  position: relative;
  padding: 0.7em 0 0.7em var(--sp-3);
  border-top: 1px solid var(--hairline);
  font-size: 0.95rem;
  color: var(--smoke);
}
.experience-content ul li:last-child { border-bottom: 1px solid var(--hairline); }
.experience-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.25em;
  width: 8px;
  height: 1px;
  background: var(--gold);
}

@media (max-width: 900px) {
  .experience-block { grid-template-columns: 1fr; gap: var(--sp-3); padding-block: var(--sp-4); }
  .experience-block:nth-child(even) > .experience-visual { order: 0; }
}

/* ==========================================================================
   Shop (product cards)
   ========================================================================== */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--sp-4);
}
.product {
  background: var(--cream-warm);
  overflow: hidden;
  border: 1px solid var(--hairline);
  display: flex;
  flex-direction: column;
  transition: transform 400ms var(--ease), box-shadow 400ms var(--ease);
}
.product:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px -20px rgba(35, 31, 28, 0.15);
}
.product-img {
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--ivory);
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease);
}
.product:hover .product-img img { transform: scale(1.05); }
.product-body {
  padding: var(--sp-3);
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
  flex: 1;
}
.product h3 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 1.35rem;
  line-height: 1.2;
}
.product-price {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--rose-deep);
}
.product p { color: var(--smoke); font-size: 0.9rem; flex: 1; }
.product .btn { margin-top: var(--sp-2); width: 100%; justify-content: center; }

/* ==========================================================================
   Form (contact / inquiry)
   ========================================================================== */
.form {
  display: grid;
  gap: var(--sp-3);
  grid-template-columns: 1fr 1fr;
}
.form .full { grid-column: 1 / -1; }
.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4em;
}
.form-field label {
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--smoke);
}
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--f-body);
  font-size: 1rem;
  padding: 0.9em 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--hairline);
  color: var(--charcoal);
  transition: border-color 300ms var(--ease);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-bottom-color: var(--rose-deep);
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-actions { display: flex; gap: var(--sp-2); margin-top: var(--sp-3); }

@media (max-width: 768px) {
  .form { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: var(--charcoal);
  color: var(--ivory);
  padding: var(--sp-7) 0 var(--sp-4);
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--sp-5);
  margin-bottom: var(--sp-6);
}
.footer-brand {
  font-family: var(--f-display);
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1;
}
.footer-brand em { font-style: italic; color: var(--gold-soft); }
.footer-tag {
  margin-top: var(--sp-2);
  font-size: 0.9rem;
  color: rgba(244, 236, 226, 0.7);
  max-width: 34ch;
}
.footer h4 {
  font-family: var(--f-body);
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: var(--sp-2);
}
.footer ul li { padding-block: 0.3em; font-size: 0.95rem; }
.footer a:hover { color: var(--gold-soft); }

.footer-bottom {
  border-top: 1px solid rgba(244, 236, 226, 0.15);
  padding-top: var(--sp-3);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-2);
  font-size: 0.75rem;
  color: rgba(244, 236, 226, 0.6);
  letter-spacing: 0.1em;
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-4); }
  .footer-brand { grid-column: 1 / -1; }
}

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band {
  text-align: center;
  padding-block: var(--sp-7);
  background: var(--rose);
  color: var(--cream-warm);
  position: relative;
}
.cta-band .script { color: var(--cream-warm); opacity: 0.85; }
.cta-band h2 { color: var(--cream-warm); margin-block: var(--sp-2); }
.cta-band p { max-width: 52ch; margin-inline: auto; color: rgba(255,253,249,0.85); }
.cta-band .btn-primary {
  background: var(--charcoal);
  border-color: var(--charcoal);
  margin-top: var(--sp-3);
}
.cta-band .btn-primary:hover { background: var(--wine); border-color: var(--wine); }

/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes reveal-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes reveal-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.reveal { opacity: 0; animation: reveal-up 1s var(--ease) forwards; }
.reveal-1 { animation-delay: 0.1s; }
.reveal-2 { animation-delay: 0.25s; }
.reveal-3 { animation-delay: 0.4s; }
.reveal-4 { animation-delay: 0.55s; }
.reveal-5 { animation-delay: 0.7s; }

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* Print tidy-up ---------------------------------------------------------- */
@media print {
  .nav-bar, .footer, .cta-band { display: none; }
}
