/* =========================================================
   Aiana Jain — editorial fashion journal
   Modern-traditional · warm heritage palette · editorial minimal
   ========================================================= */

:root {
  /* Palette — warm quiet-luxury neutrals (NOVAELLE-inspired): cream, camel,
     taupe, crisp white, warm near-black. Accent is camel-brown, not red. */
  --paper: #ffffff;       /* crisp white sections */
  --ivory: #f4efe7;       /* warm cream background */
  --cream: #e9e0d1;       /* sand */
  --sand: #ded2bf;        /* deeper sand for tiles */
  --ink: #221e18;         /* warm near-black */
  --ink-soft: #5a5247;    /* muted warm grey-brown */
  --brass: #957449;       /* camel — eyebrows, small accents (deepened for legibility) */
  --brass-deep: #785a32;  /* deep camel — links */
  --saree-red: #8a6a48;   /* muted camel-brown — hover/highlight (was red) */
  --terracotta: #b08a62;  /* soft clay — newsletter button */
  --line: #e3dac9;        /* hairline rules / gridlines */
  --white: #fffdf9;

  /* Type */
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Layout */
  --wrap: 1180px;
  --wrap-narrow: 720px;
  --gap: clamp(1.25rem, 4vw, 2.5rem);
  --radius: 2px;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--brass-deep); text-decoration: none; }
a:hover { color: var(--saree-red); }

/* Keyboard focus — visible branded ring, never removed without a replacement */
:focus-visible { outline: 2px solid var(--brass-deep); outline-offset: 3px; border-radius: 1px; }
:focus:not(:focus-visible) { outline: none; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 0.5em;
  text-wrap: balance;
}

.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: clamp(1.25rem, 5vw, 3rem); }
.wrap-narrow { max-width: var(--wrap-narrow); margin-inline: auto; padding-inline: clamp(1.25rem, 5vw, 3rem); }

.visually-hidden, .skip-link {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link:focus {
  position: fixed; top: 0.5rem; left: 0.5rem; width: auto; height: auto;
  clip: auto; background: var(--ink); color: var(--white); padding: 0.6rem 1rem; z-index: 200;
}

/* ---------- Shared atoms ---------- */
.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0 0 0.9rem;
}
.eyebrow a { color: inherit; }
.section-heading { font-size: clamp(1.7rem, 4vw, 2.4rem); }
.section-head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; margin-bottom: 2rem; flex-wrap: wrap; }
.section-link { font-family: var(--sans); font-size: 0.85rem; font-weight: 600; letter-spacing: 0.04em; }

.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius);
  border: 1px solid var(--ink);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  cursor: pointer;
}
.btn-primary { background: var(--ink); color: var(--white); }
.btn-primary:hover { background: var(--saree-red); border-color: var(--saree-red); color: var(--white); }
.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--white); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--ivory) 88%, transparent);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: 1.05rem; }
.brand { display: inline-flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--serif); font-size: 1.4rem; letter-spacing: 0.01em; color: var(--ink); }
.brand-tag { font-family: var(--sans); font-size: 0.62rem; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase; color: var(--brass); margin-top: 0.3rem; }
.site-nav ul { display: flex; gap: 1.6rem; list-style: none; margin: 0; padding: 0; }
.site-nav a {
  font-family: var(--sans); font-size: 0.82rem; font-weight: 500; letter-spacing: 0.04em;
  color: var(--ink-soft); padding-block: 0.3rem; border-bottom: 1px solid transparent;
}
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--ink); border-color: var(--brass); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 0.4rem; cursor: pointer; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); transition: 0.25s; }

@media (max-width: 880px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--ivory); border-bottom: 1px solid var(--line);
    max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
  }
  .site-nav.is-open { max-height: 80vh; }
  .site-nav ul { flex-direction: column; gap: 0; padding: 0.5rem clamp(1.25rem, 5vw, 3rem) 1.5rem; }
  .site-nav li { border-bottom: 1px solid var(--line); }
  .site-nav a { display: block; padding: 0.9rem 0; font-size: 0.95rem; }
}

/* ---------- Brand wordmark + heart ---------- */
.brand-heart, .wordmark-heart { color: var(--brass); font-style: normal; display: inline-block; transform: translateY(-0.04em); }
.brand-name .brand-heart { font-size: 0.78em; margin: 0 0.12em; }

/* ---------- Hero (split: text + single image) ---------- */
.hero-split { border-bottom: 1px solid var(--line); }
.hero-split-inner {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  align-items: stretch; max-width: 1400px; margin-inline: auto;
}
.hero-text {
  padding: clamp(2.5rem, 5vw, 5rem) clamp(1.5rem, 5vw, 4.5rem);
  display: flex; flex-direction: column; justify-content: center;
  min-height: min(80vh, 720px);
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 0.9rem;
  font-family: var(--sans); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--brass); margin: 0 0 1.6rem;
}
.hero-dash { width: 34px; height: 1px; background: var(--brass); display: inline-block; flex: none; }
.hero-title { font-size: clamp(2.7rem, 6vw, 5.1rem); line-height: 0.98; letter-spacing: -0.015em; margin: 0 0 1.4rem; }
.hero-title em { font-style: italic; color: var(--brass-deep); }
.hero-lead {
  font-family: var(--serif); font-style: italic; font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  line-height: 1.5; color: var(--ink-soft); max-width: 42ch; margin: 0 0 2.2rem;
}
.hero-split .hero-cta { display: flex; gap: 0.8rem; flex-wrap: wrap; align-items: center; }
.hero-stats {
  display: flex; gap: 2.4rem; margin-top: 3rem; padding-top: 1.8rem;
  border-top: 1px solid var(--line); flex-wrap: wrap;
}
.hero-stat-num { font-family: var(--serif); font-size: 1.6rem; color: var(--ink); line-height: 1; display: block; }
.hero-stat-label { font-family: var(--sans); font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--brass); margin-top: 0.4rem; display: block; max-width: 16ch; }
.hero-figure { position: relative; min-height: 440px; background: var(--cream); overflow: hidden; margin: 0; }
.hero-figure img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.hero-figcap {
  position: absolute; bottom: 1.1rem; left: 1.1rem; background: rgba(255,253,249,0.92);
  font-family: var(--sans); font-size: 0.66rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink); padding: 0.38rem 0.75rem; border: 1px solid var(--line);
}
@media (max-width: 720px) {
  .hero-figure { min-height: 380px; order: -1; }
}

/* ---------- Featured ---------- */
.featured { padding-block: clamp(2.5rem, 6vw, 4.5rem); }
.featured-card {
  display: grid; grid-template-columns: 1.05fr 0.95fr; align-items: stretch;
  background: var(--white); border: 1px solid var(--line); overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
}
.featured-card:hover { box-shadow: 0 24px 60px -30px rgba(28,26,23,0.4); }
.featured-media { background: var(--cream); min-height: 340px; position: relative; }
.featured-media img { width: 100%; height: 100%; object-fit: cover; }
.featured-body { padding: clamp(1.8rem, 4vw, 3.2rem); display: flex; flex-direction: column; justify-content: center; }
.featured-title { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 0.4em; }
.featured-excerpt { color: var(--ink-soft); margin: 0 0 1.5rem; }
.read-more { font-family: var(--sans); font-size: 0.85rem; font-weight: 600; letter-spacing: 0.05em; color: var(--saree-red); }
@media (max-width: 760px) { .featured-card { grid-template-columns: 1fr; } .featured-media { min-height: 260px; } }

/* ---------- Card grid ---------- */
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: var(--gap); }
.latest { padding-block: clamp(2.5rem, 6vw, 4.5rem); }
.card { background: var(--white); border: 1px solid var(--line); overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; }
.card:hover { transform: translateY(-4px); box-shadow: 0 20px 44px -28px rgba(28,26,23,0.45); }
.card-link { display: flex; flex-direction: column; height: 100%; color: inherit; }
.card-media { aspect-ratio: 4 / 5; background: var(--cream); overflow: hidden; display: grid; place-items: center; }
.card-media img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform 0.5s ease; }
.card:hover .card-media img { transform: scale(1.04); }
.card-media-placeholder {
  font-family: var(--serif); font-size: 1.4rem; font-style: italic; color: var(--brass);
  letter-spacing: 0.05em; text-align: center; padding: 1rem;
  background: linear-gradient(135deg, var(--cream), color-mix(in srgb, var(--terracotta) 14%, var(--cream)));
  width: 100%; height: 100%; display: grid; place-items: center;
}
.card-body { padding: 1.4rem 1.5rem 1.7rem; display: flex; flex-direction: column; flex: 1; }
.card-title { font-size: 1.35rem; margin-bottom: 0.4em; }
.card-excerpt { color: var(--ink-soft); font-size: 0.95rem; margin: 0 0 1.2rem; }
.card-meta { font-family: var(--sans); font-size: 0.74rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--brass); margin: auto 0 0; }

/* ---------- Shop the look rail (NOVAELLE-inspired) ---------- */
.shop-strip { padding-block: clamp(2.5rem, 6vw, 4.5rem); background: var(--paper); border-block: 1px solid var(--line); }
.shop-rail-wrap { overflow: hidden; }
.shop-rail {
  display: grid; grid-auto-flow: column; grid-auto-columns: minmax(240px, 1fr);
  gap: 1px; background: var(--line); border-block: 1px solid var(--line);
  overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}
.shop-card { scroll-snap-align: start; background: var(--paper); display: flex; flex-direction: column; color: inherit; transition: background 0.25s; }
.shop-card:hover { background: var(--ivory); }
.shop-card-media { position: relative; aspect-ratio: 4 / 5; overflow: hidden; background: var(--cream); }
.shop-card-media img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform 0.5s ease; }
.shop-card:hover .shop-card-media img { transform: scale(1.04); }
.shop-card-tag {
  position: absolute; top: 0.7rem; left: 0.7rem; background: color-mix(in srgb, var(--paper) 90%, transparent);
  font-family: var(--sans); font-size: 0.66rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink); padding: 0.3rem 0.6rem; border: 1px solid var(--line);
}
.shop-card-body { padding: 1.1rem 1.2rem 1.4rem; display: flex; flex-direction: column; flex: 1; }
.shop-card-body .eyebrow { margin-bottom: 0.5rem; }
.shop-card-title { font-size: 1.12rem; line-height: 1.2; margin-bottom: 0.9rem; }
.shop-card-cta { font-family: var(--sans); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.04em; color: var(--brass-deep); margin-top: auto; }
.shop-card:hover .shop-card-cta { color: var(--saree-red); }

/* ---------- Watch / YouTube rail ---------- */
.watch { padding-block: clamp(2.5rem, 6vw, 4.5rem); }
.watch-rail-label { margin: 0 0 0.9rem; }
.video-rail {
  display: grid; grid-auto-flow: column; grid-auto-columns: minmax(170px, 1fr);
  gap: 1rem; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 0.5rem;
  scrollbar-width: thin; -webkit-overflow-scrolling: touch; margin-bottom: 1.5rem;
}
.video-card { scroll-snap-align: start; color: inherit; display: flex; flex-direction: column; }
.video-thumb {
  position: relative; aspect-ratio: 9 / 16; overflow: hidden; background: var(--ink);
  border: 1px solid var(--line);
}
.video-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.video-card:hover .video-thumb img { transform: scale(1.05); }
.video-play {
  position: absolute; inset: 0; margin: auto; width: 48px; height: 48px;
  display: grid; place-items: center; border-radius: 50%;
  background: color-mix(in srgb, var(--paper) 88%, transparent); color: var(--ink);
  transition: transform 0.25s, background 0.25s;
}
.video-card:hover .video-play { transform: scale(1.1); background: var(--paper); }
.video-views {
  position: absolute; bottom: 0.55rem; left: 0.55rem;
  font-family: var(--sans); font-size: 0.68rem; font-weight: 600; letter-spacing: 0.04em;
  color: var(--white); background: color-mix(in srgb, var(--ink) 70%, transparent);
  padding: 0.22rem 0.5rem; border-radius: 999px; backdrop-filter: blur(2px);
}
.video-title { font-family: var(--sans); font-size: 0.86rem; line-height: 1.35; color: var(--ink); margin: 0.7rem 0 0; }
.video-card:hover .video-title { color: var(--saree-red); }

/* ---------- Categories strip ---------- */
.categories-strip { padding-block: clamp(2rem, 5vw, 3.5rem); border-top: 1px solid var(--line); }
.cat-tiles { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; }
.cat-tiles a {
  display: flex; flex-direction: column; gap: 0.4rem; padding: 1.6rem; background: var(--white);
  border: 1px solid var(--line); transition: background 0.25s, border-color 0.25s;
}
.cat-tiles a:hover { background: var(--cream); border-color: var(--brass); }
.cat-name { font-family: var(--serif); font-size: 1.25rem; color: var(--ink); }
.cat-count { font-family: var(--sans); font-size: 0.74rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--brass); }

/* ---------- Brand statement (oversized wordmark) ---------- */
.brand-statement { background: var(--paper); border-block: 1px solid var(--line); padding-block: clamp(3rem, 8vw, 6rem); margin-top: clamp(2rem, 5vw, 3.5rem); }
.brand-statement-inner { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(1.5rem, 5vw, 4.5rem); align-items: center; }
.brand-statement-media { margin: 0; aspect-ratio: 4 / 5; overflow: hidden; background: var(--cream); }
.brand-statement-media img { width: 100%; height: 100%; object-fit: cover; }
.wordmark { font-size: clamp(2.8rem, 8vw, 5.5rem); line-height: 0.95; letter-spacing: -0.01em; margin: 0.2em 0 0.4em; }
.wordmark-heart { font-size: 0.6em; margin: 0 0.08em; vertical-align: 0.05em; }
.brand-statement-lead { font-family: var(--serif); font-size: clamp(1.2rem, 2.6vw, 1.6rem); font-style: italic; color: var(--ink); margin: 0 0 1rem; }
.brand-statement-text > p:not(.brand-statement-lead):not(.eyebrow) { color: var(--ink-soft); margin-bottom: 1.6rem; }
@media (max-width: 760px) { .brand-statement-inner { grid-template-columns: 1fr; } .brand-statement-media { max-width: 340px; } }

/* ---------- Page head ---------- */
.page-head { padding-block: clamp(3rem, 7vw, 5rem) clamp(1.5rem, 4vw, 2.5rem); }
.page-title { font-size: clamp(2.2rem, 6vw, 3.6rem); }
.page-intro { font-size: 1.15rem; color: var(--ink-soft); max-width: 60ch; }

/* ---------- Filter bar ---------- */
.filter-bar { padding-bottom: 2.5rem; }
.filter-list { display: flex; flex-wrap: wrap; gap: 0.5rem; list-style: none; margin: 0; padding: 0; border-bottom: 1px solid var(--line); padding-bottom: 1.2rem; }
.filter-list a {
  font-family: var(--sans); font-size: 0.82rem; font-weight: 500; letter-spacing: 0.04em;
  padding: 0.45rem 1rem; border: 1px solid var(--line); border-radius: 999px; color: var(--ink-soft);
  transition: 0.2s;
}
.filter-list a:hover, .filter-list a.is-active { background: var(--ink); color: var(--white); border-color: var(--ink); }

/* ---------- Single post ---------- */
.post { padding-bottom: clamp(3rem, 7vw, 5rem); }
.post-header { padding-block: clamp(2.5rem, 6vw, 4rem) clamp(1.5rem, 4vw, 2.5rem); text-align: center; }
.post-header .eyebrow { margin-bottom: 1.2rem; }
.post-title { font-size: clamp(2.1rem, 6vw, 4rem); line-height: 1.05; }
.post-standfirst { font-size: clamp(1.1rem, 2.4vw, 1.4rem); font-family: var(--serif); font-style: italic; color: var(--ink-soft); max-width: 60ch; margin: 0.8em auto 0; }
.post-meta { font-family: var(--sans); font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--brass); margin-top: 1.6rem; display: flex; gap: 0.6rem; justify-content: center; flex-wrap: wrap; }

.post-hero { margin: 0 auto clamp(2rem, 5vw, 3.5rem); max-width: 1180px; padding-inline: clamp(1.25rem, 5vw, 3rem); }
.post-hero img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.post-hero figcaption { font-family: var(--sans); font-size: 0.8rem; color: var(--ink-soft); text-align: center; margin-top: 0.8rem; font-style: italic; }

/* Prose */
.post-body, .prose { font-size: 1.12rem; line-height: 1.8; }
.post-body p, .prose p { margin: 0 0 1.5rem; }
.post-body h2, .prose h2 { font-size: clamp(1.5rem, 3.5vw, 2.1rem); margin: 2.4rem 0 0.8rem; }
.post-body h3, .prose h3 { font-size: 1.4rem; margin: 2rem 0 0.6rem; }
.post-body ul, .post-body ol, .prose ul, .prose ol { margin: 0 0 1.6rem; padding-left: 1.3rem; }
.post-body li, .prose li { margin-bottom: 0.6rem; }
.post-body strong, .prose strong { font-weight: 600; color: var(--ink); }
.post-body em, .prose em { font-style: italic; }
.post-body blockquote, .prose blockquote {
  margin: 2rem 0; padding: 0.4rem 0 0.4rem 1.5rem; border-left: 3px solid var(--brass);
  font-family: var(--serif); font-style: italic; font-size: 1.25rem; color: var(--ink-soft);
}
.prose .lead { font-family: var(--serif); font-size: clamp(1.3rem, 3vw, 1.6rem); font-style: italic; line-height: 1.5; color: var(--ink); margin-bottom: 1.8rem; }

/* Shop the look */
.shop-the-look { margin: 3rem 0; padding: clamp(1.6rem, 4vw, 2.5rem); background: var(--cream); border: 1px solid var(--line); }
.shop-the-look h2 { font-size: 1.6rem; margin-bottom: 0.3em; }
.stl-disclosure { font-size: 0.82rem; color: var(--ink-soft); font-style: italic; margin: 0 0 1.4rem; }
.stl-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.6rem; }
.stl-list a {
  display: flex; align-items: baseline; gap: 0.8rem; flex-wrap: wrap;
  padding: 0.9rem 1.1rem; background: var(--white); border: 1px solid var(--line);
  transition: border-color 0.2s, transform 0.2s;
}
.stl-list a:hover { border-color: var(--brass); transform: translateX(3px); }
.stl-name { font-weight: 600; color: var(--ink); }
.stl-brand { font-size: 0.85rem; color: var(--ink-soft); }
.stl-price { margin-left: auto; font-family: var(--serif); color: var(--brass-deep); }

.post-tags { list-style: none; display: flex; flex-wrap: wrap; gap: 0.5rem; padding: 0; margin: 2.5rem 0 0; }
.post-tags a { font-family: var(--sans); font-size: 0.8rem; color: var(--brass); }

.post-share { display: flex; align-items: center; gap: 1.2rem; margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line); }
.post-share span:first-child { font-family: var(--sans); font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); }
.post-share a { font-family: var(--sans); font-size: 0.85rem; font-weight: 500; }

/* Related */
.related { padding-block: clamp(2.5rem, 6vw, 4rem); border-top: 1px solid var(--line); margin-top: clamp(2rem, 5vw, 3rem); }

/* About page */
.about-page { padding-block: clamp(3rem, 7vw, 5rem); }
.about-portrait { aspect-ratio: 3 / 2; margin: 2rem 0 3rem; }

/* ---------- Newsletter ---------- */
.newsletter { background: var(--ink); color: var(--ivory); padding-block: clamp(3rem, 7vw, 5rem); margin-top: clamp(3rem, 7vw, 5rem); }
.newsletter-inner { max-width: 640px; margin-inline: auto; text-align: center; }
.newsletter .eyebrow { color: var(--terracotta); }
.newsletter h2 { color: var(--ivory); font-size: clamp(1.8rem, 4.5vw, 2.8rem); }
.newsletter-sub { color: color-mix(in srgb, var(--ivory) 75%, transparent); margin-bottom: 2rem; }
.newsletter-form { display: flex; gap: 0.6rem; max-width: 460px; margin-inline: auto; flex-wrap: wrap; }
.newsletter-form input {
  flex: 1; min-width: 200px; padding: 0.9rem 1.1rem; border: 1px solid color-mix(in srgb, var(--ivory) 40%, transparent);
  background: transparent; color: var(--ivory); font-family: var(--sans); font-size: 1rem; border-radius: var(--radius);
}
.newsletter-form input::placeholder { color: color-mix(in srgb, var(--ivory) 55%, transparent); }
.newsletter-form input:focus { outline: 2px solid var(--terracotta); outline-offset: 2px; }
.newsletter-form button {
  padding: 0.9rem 1.8rem; background: var(--terracotta); color: var(--white); border: 0; border-radius: var(--radius);
  font-family: var(--sans); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; font-size: 0.82rem; cursor: pointer;
  transition: background 0.2s;
}
.newsletter-form button:hover { background: var(--saree-red); }
.newsletter-fineprint { font-size: 0.76rem; color: color-mix(in srgb, var(--ivory) 55%, transparent); margin-top: 1.2rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--cream); border-top: 1px solid var(--line); padding-block: clamp(2.5rem, 6vw, 4rem) 1.5rem; }
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; }
.footer-brand .brand-name { font-family: var(--serif); font-size: 1.5rem; }
.footer-brand p { color: var(--ink-soft); margin-top: 0.4rem; max-width: 30ch; }
.footer-nav ul, .footer-social { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-nav a, .footer-social a { font-family: var(--sans); font-size: 0.9rem; color: var(--ink-soft); }
.footer-nav a:hover, .footer-social a:hover { color: var(--saree-red); }
.footer-legal { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line); }
.footer-legal p { font-family: var(--sans); font-size: 0.78rem; color: var(--ink-soft); margin: 0; }
@media (max-width: 700px) { .footer-inner { grid-template-columns: 1fr; gap: 1.6rem; } }

/* ---------- Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
