/* =============================================
   AYESA DREAM COUTURE
   Soft Fairytale Palette
   ============================================= */

:root {
  --color-bg:            #FDF8F5;
  --color-surface:       #F5EDE6;
  --color-surface-alt:   #EFE3DA;
  --color-text:          #2A1520;
  --color-text-muted:    rgba(42, 21, 32, 0.55);
  --color-border:        rgba(42, 21, 32, 0.1);

  --color-rose:          #C9849A;
  --color-rose-dark:     #A86880;
  --color-rose-light:    rgba(201, 132, 154, 0.12);
  --color-lavender:      #B5A8C8;
  --color-lavender-light:rgba(181, 168, 200, 0.12);
  --color-gold:          #C9A96E;

  --font-serif: 'Cormorant Garamond', 'Georgia', serif;
  --font-sans:  'Poppins', sans-serif;

  --ease-expo:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --t-fast: 0.25s;
  --t-base: 0.45s;
  --t-slow: 0.7s;
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.7;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a   { color: inherit; text-decoration: none; }

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-text);
}
h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 2rem); }
h4 { font-size: clamp(1rem, 1.5vw, 1.3rem); }

p  { color: var(--color-text-muted); }
em { color: var(--color-rose-dark); font-style: italic; }

.label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.63rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-rose);
  margin-bottom: 0.8rem;
}

/* =============================================
   UTILITIES
   ============================================= */
.divider {
  width: 50px;
  height: 1px;
  background: var(--color-rose);
  opacity: 0.45;
  margin: 1.5rem auto;
}
.divider--left { margin-left: 0; }

.btn {
  display: inline-block;
  padding: 0.9rem 2.8rem;
  border: 1px solid var(--color-rose);
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-rose-dark);
  transition:
    background var(--t-fast) var(--ease-quart),
    color      var(--t-fast) var(--ease-quart),
    box-shadow var(--t-fast) var(--ease-quart);
}
.btn:hover {
  background: var(--color-rose);
  color: #fff;
  box-shadow: 0 6px 24px rgba(201, 132, 154, 0.35);
}
.btn--filled {
  background: var(--color-rose);
  color: #fff;
}
.btn--filled:hover {
  background: var(--color-rose-dark);
  box-shadow: 0 6px 24px rgba(168, 104, 128, 0.35);
}

/* =============================================
   MOTION SYSTEM
   ============================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity   var(--t-slow) var(--ease-expo),
    transform var(--t-slow) var(--ease-expo);
}
.reveal--left  { transform: translateX(-28px); }
.reveal--right { transform: translateX( 28px); }
.reveal--scale { transform: scale(0.95); }
.reveal.is-visible { opacity: 1; transform: none; }

.reveal[data-delay="100"] { transition-delay: 0.10s; }
.reveal[data-delay="200"] { transition-delay: 0.20s; }
.reveal[data-delay="300"] { transition-delay: 0.30s; }
.reveal[data-delay="400"] { transition-delay: 0.40s; }
.reveal[data-delay="500"] { transition-delay: 0.50s; }
.reveal[data-delay="600"] { transition-delay: 0.60s; }

/* =============================================
   NAV
   ============================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 3rem;
  background: rgba(253, 248, 245, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition:
    background    var(--t-base) ease,
    border-color  var(--t-base) ease;
}
.nav--scrolled {
  background: rgba(253, 248, 245, 0.98);
  border-bottom-color: var(--color-border);
}

.nav__logo {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  color: var(--color-text);
  flex-shrink: 0;
  transition: color var(--t-fast) ease;
}
.nav__logo:hover { color: var(--color-rose-dark); }

.nav__links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.8rem;
}
.nav__links a {
  font-size: 0.63rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  transition: color var(--t-fast) ease;
}
.nav__links a:hover { color: var(--color-rose-dark); }

.nav__cta {
  padding: 0.45rem 1.1rem;
  border: 1px solid var(--color-rose) !important;
  color: var(--color-rose-dark) !important;
  transition:
    background var(--t-fast) ease,
    color      var(--t-fast) ease !important;
}
.nav__cta:hover {
  background: var(--color-rose) !important;
  color: #fff !important;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 201;
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--color-text);
  transition: transform var(--t-fast) ease, opacity var(--t-fast) ease;
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* =============================================
   HERO
   ============================================= */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem 5rem;
  background: radial-gradient(ellipse at 50% 40%, #F5EDE6 0%, #FDF8F5 65%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 85%, rgba(181, 168, 200, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 15%, rgba(201, 132, 154, 0.14) 0%, transparent 50%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  max-width: 820px;
}
.hero__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.63rem;
  font-weight: 500;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--color-rose);
  margin-bottom: 1.8rem;
}
.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.hero__sub {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-style: italic;
  color: var(--color-text-muted);
  max-width: 52ch;
  margin: 0 auto 2.8rem;
  line-height: 1.8;
}
.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}
.hero__scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 42px;
  background: var(--color-rose);
  opacity: 0.45;
  animation: scroll-line 2.2s ease-in-out infinite;
}
@keyframes scroll-line {
  0%, 100% { opacity: 0.25; transform: scaleY(1);   }
  50%       { opacity: 0.65; transform: scaleY(1.3); }
}

/* =============================================
   SECTION BASE
   ============================================= */
.section { padding: 7rem 2rem; }
.section--alt  { background: var(--color-surface); }
.section--deep { background: var(--color-surface-alt); }

.section__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.section__header {
  text-align: center;
  margin-bottom: 4rem;
}
.section__header p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  max-width: 52ch;
  margin: 1rem auto 0;
}

/* =============================================
   IMAGE PLACEHOLDER
   ============================================= */
.img-ph {
  background: var(--color-surface-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  width: 100%;
  height: 100%;
}

/* =============================================
   HOME — FEATURED COLLECTIONS
   ============================================= */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.feat-card {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  cursor: pointer;
}
.feat-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transition: transform var(--t-slow) var(--ease-expo);
}
.feat-card:hover .feat-card__img { transform: scale(1.05); }

.feat-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(42, 21, 32, 0.6) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  color: #fff;
}
.feat-card__label {
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 0.3rem;
}
.feat-card__title {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-style: italic;
  font-weight: 400;
  color: #fff;
  line-height: 1.2;
}
.feat-card__arrow {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateX(-8px);
  transition:
    opacity   var(--t-fast) ease,
    transform var(--t-fast) ease;
}
.feat-card:hover .feat-card__arrow { opacity: 1; transform: translateX(0); }

/* =============================================
   HOME — COUTURE PREVIEW
   ============================================= */
.preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.preview__image {
  min-height: 520px;
  overflow: hidden;
}
.preview__content {
  background: var(--color-surface);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 4.5rem;
  gap: 1.5rem;
}
.preview__content blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-style: italic;
  line-height: 1.7;
  color: var(--color-text);
  border-left: 2px solid var(--color-rose);
  padding-left: 1.5rem;
}

/* =============================================
   HOME — PHILOSOPHY
   ============================================= */
.philosophy {
  text-align: center;
  padding: 8rem 2rem;
}
.philosophy__inner {
  max-width: 720px;
  margin: 0 auto;
}
.philosophy blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-style: italic;
  line-height: 1.65;
  color: var(--color-text);
  margin: 1.5rem 0 2.5rem;
}

/* =============================================
   HOME — CTA BANNER
   ============================================= */
.cta-banner {
  background: var(--color-surface-alt);
  text-align: center;
  padding: 8rem 2rem;
}
.cta-banner__inner { max-width: 580px; margin: 0 auto; }
.cta-banner h2    { margin-bottom: 1rem; }
.cta-banner p     { margin-bottom: 2.5rem; }

/* =============================================
   OUR STORY
   ============================================= */
.story-page {
  padding-top: 72px;
}
.story-hero {
  background: var(--color-surface);
  text-align: center;
  padding: 7rem 2rem 5rem;
}
.story-hero h1 { font-style: italic; margin-top: 1rem; }

.story-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 6rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}
.story-body p {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--color-text);
}
.story-body p:last-child {
  font-style: italic;
  color: var(--color-rose-dark);
}

/* =============================================
   COLLECTIONS
   ============================================= */
.collections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
.coll-card { display: flex; flex-direction: column; }
.coll-card__image {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.coll-card__image .img-ph {
  transition: transform var(--t-slow) var(--ease-expo);
}
.coll-card:hover .coll-card__image .img-ph { transform: scale(1.05); }

.coll-card h3 { font-style: italic; margin-bottom: 0.5rem; }
.coll-card p  { font-size: 0.92rem; }
.coll-card__link {
  display: inline-block;
  margin-top: 1.2rem;
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-rose-dark);
  border-bottom: 1px solid var(--color-rose);
  padding-bottom: 2px;
  transition: color var(--t-fast) ease;
}
.coll-card__link:hover { color: var(--color-rose); }

/* =============================================
   EXPERIENCE STEPS
   ============================================= */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.5rem 2rem;
}
.step { display: flex; flex-direction: column; gap: 0.7rem; }
.step__num {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--color-rose);
  opacity: 0.35;
  line-height: 1;
}
.step h3 { font-style: italic; }
.step p   { font-size: 0.9rem; }

/* =============================================
   PROCESS TIMELINE
   ============================================= */
.timeline {
  display: flex;
  flex-direction: column;
  max-width: 800px;
  margin: 3rem auto 0;
}
.tl-item {
  display: grid;
  grid-template-columns: 70px 1px 1fr;
  gap: 0 2rem;
  padding-bottom: 3.5rem;
}
.tl-item:last-child { padding-bottom: 0; }

.tl-num {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--color-rose);
  opacity: 0.4;
  text-align: right;
  padding-top: 0.1rem;
  line-height: 1;
}
.tl-line {
  width: 1px;
  background: var(--color-rose);
  opacity: 0.2;
  position: relative;
}
.tl-line::before {
  content: '';
  position: absolute;
  top: 7px;
  left: 50%;
  transform: translateX(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-rose);
  opacity: 0.9;
}
.tl-item:last-child .tl-line { background: transparent; }

.tl-content { padding-top: 0.1rem; }
.tl-content h3 { font-style: italic; margin-bottom: 0.4rem; }
.tl-content p  { font-size: 0.9rem; }

/* =============================================
   SHOP
   ============================================= */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.shop-card { display: flex; flex-direction: column; }
.shop-card__image {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  margin-bottom: 1.1rem;
  position: relative;
}
.shop-card__image .img-ph {
  transition: transform var(--t-slow) var(--ease-expo);
}
.shop-card:hover .shop-card__image .img-ph { transform: scale(1.05); }
.shop-card__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--color-rose);
  color: #fff;
  font-size: 0.57rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
}
.shop-card h4   { font-style: italic; margin-bottom: 0.25rem; }
.shop-card__price {
  font-size: 0.88rem;
  color: var(--color-gold);
  margin-bottom: 0.8rem;
}
.shop-card .btn { font-size: 0.62rem; padding: 0.6rem 1.3rem; }

/* =============================================
   FORMS
   ============================================= */
.form-page {
  max-width: 820px;
  margin: 0 auto;
  padding: 10rem 2rem 7rem;
}
.form-page h1 { font-style: italic; margin-bottom: 0.5rem; }
.form-page > p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  margin-bottom: 3.5rem;
}

.form-section { margin-bottom: 3rem; }
.form-section__title {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-rose);
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 1.8rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.form-grid--full { grid-column: 1 / -1; }

.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--color-text);
}
.field input,
.field select,
.field textarea {
  padding: 0.8rem 1rem;
  border: 1px solid var(--color-border);
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 300;
  outline: none;
  width: 100%;
  transition: border-color var(--t-fast) ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--color-rose); }
.field textarea { resize: vertical; min-height: 110px; }

.check-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.8rem;
  margin-top: 0.4rem;
}
.check-group label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  cursor: pointer;
}
.check-group input[type="checkbox"] { accent-color: var(--color-rose); }

/* =============================================
   CONTACT
   ============================================= */
.contact-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 10rem 2rem 7rem;
  text-align: center;
}
.contact-page h1 { font-style: italic; margin-bottom: 1rem; }
.contact-page > p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 3rem 0;
  text-align: left;
}
.contact-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 1.5rem;
  border: 1px solid var(--color-border);
  transition:
    border-color var(--t-fast) ease,
    background   var(--t-fast) ease;
}
.contact-link:hover {
  border-color: var(--color-rose);
  background: var(--color-rose-light);
}
.contact-link__type {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-rose);
}
.contact-link__value { font-size: 0.92rem; }
.contact-link__arrow { color: var(--color-text-muted); }

/* SIZE CHART */
.size-chart { margin-top: 5rem; text-align: left; }
.size-chart h2 { text-align: center; font-style: italic; margin-bottom: 0.5rem; }
.size-chart .label { display: block; text-align: center; }

.size-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  margin-top: 2rem;
}
.size-table th {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-rose);
  padding: 0.8rem 1.2rem;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}
.size-table td {
  padding: 0.75rem 1.2rem;
  color: var(--color-text-muted);
  border-bottom: 1px solid var(--color-border);
}
.size-table tr:last-child td { border-bottom: none; }
.size-table tbody tr:hover td {
  background: var(--color-surface);
  color: var(--color-text);
}

/* =============================================
   FAQ
   ============================================= */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item { border-bottom: 1px solid var(--color-border); }
.faq-item:first-child { border-top: 1px solid var(--color-border); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.4rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--color-text);
  gap: 1rem;
}
.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border: 1px solid var(--color-rose);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-rose);
  font-size: 1rem;
  line-height: 1;
  transition:
    transform var(--t-fast) ease,
    background var(--t-fast) ease,
    color      var(--t-fast) ease;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--color-rose);
  color: #fff;
}
.faq-answer {
  display: none;
  padding: 0 0 1.5rem;
  font-size: 0.92rem;
  color: var(--color-text-muted);
  max-width: 65ch;
  line-height: 1.8;
}
.faq-item.open .faq-answer { display: block; }

/* =============================================
   POLICY PAGES
   ============================================= */
.policy-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 10rem 2rem 7rem;
}
.policy-page h1 { font-style: italic; margin-bottom: 0.5rem; }
.policy-page .policy-date {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  margin-bottom: 3rem;
  display: block;
}
.policy-page h2 {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  margin: 2.5rem 0 0.75rem;
}
.policy-page p {
  color: var(--color-text);
  margin-bottom: 1rem;
  line-height: 1.85;
  font-size: 0.95rem;
}
.policy-page ul {
  padding-left: 1.5rem;
  margin-bottom: 1.2rem;
}
.policy-page ul li {
  color: var(--color-text-muted);
  margin-bottom: 0.45rem;
  line-height: 1.75;
  font-size: 0.93rem;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--color-surface-alt);
  border-top: 1px solid var(--color-border);
  padding: 5rem 2rem 2rem;
}
.footer__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
.footer__brand-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--color-text);
  margin-bottom: 0.7rem;
}
.footer__tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.88rem;
  color: var(--color-text-muted);
}
.footer__col h4 {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-rose);
  margin-bottom: 1.2rem;
}
.footer__col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.footer__col ul a {
  font-size: 0.83rem;
  color: var(--color-text-muted);
  transition: color var(--t-fast) ease;
}
.footer__col ul a:hover { color: var(--color-rose-dark); }

.footer__bottom {
  border-top: 1px solid var(--color-border);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer__copy {
  font-size: 0.72rem;
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
}
.footer__policies {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer__policies a {
  font-size: 0.68rem;
  color: var(--color-text-muted);
  letter-spacing: 0.06em;
  transition: color var(--t-fast) ease;
}
.footer__policies a:hover { color: var(--color-rose-dark); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .nav { padding: 1rem 1.5rem; }
  .nav__toggle { display: flex; }
  .nav__links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--color-bg);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.2rem;
    z-index: 199;
  }
  .nav__links.is-open { display: flex; }
  .nav__links a { font-size: 1rem; letter-spacing: 0.08em; }

  .feat-grid { grid-template-columns: 1fr; }

  .preview { grid-template-columns: 1fr; }
  .preview__image { min-height: 380px; }
  .preview__content { padding: 3.5rem 2rem; }

  .collections-grid { grid-template-columns: repeat(2, 1fr); }
  .shop-grid { grid-template-columns: repeat(2, 1fr); }

  .form-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .section { padding: 5rem 1.2rem; }
  .collections-grid { grid-template-columns: 1fr; }
  .shop-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .form-page,
  .contact-page,
  .policy-page { padding: 8rem 1.2rem 5rem; }
}
