/*
Theme Name:  Aroosa
Theme URI:   https://aroosa.com
Author:      Aroosa Studio
Author URI:  https://aroosa.com
Description: A luxury bridal fashion WooCommerce theme crafted for Aroosa. Pixel-perfect, fully responsive, and WooCommerce-ready.
Version:     1.0.0
License:     GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: aroosa
Tags:        woocommerce, bridal, fashion, luxury, responsive, custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
WC requires at least: 8.0
WC tested up to: 8.9
*/

/* ============================================================
   AROOSA THEME — MASTER STYLESHEET
   All component styles are in assets/css/aroosa.css
   This file satisfies WordPress theme requirements.
   ============================================================ */
.hero {
  position: relative;
  min-height: 1000px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-cream);
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(247,244,239,0.85) 40%, rgba(247, 244, 239, 0) 60%);
}

.hero__content {
  position: relative;
  z-index: 1;
  /* max-width: var(--container); */
  margin: 0 50px;
  /* padding: var(--space-xxl) var(--container-pad); */
  max-width: 620px;
}




/* ================================================================Custom CSS===================================================== */

/* ════════════════════════════════════════════
   TOKENS
   ════════════════════════════════════════════ */
:root {
  --ivory:         #faf8f2;
  --ivory-warm:    #f5f0e6;
  --ivory-border:  #e6dfd0;
  --ivory-deep:    #ece4d4;
  --page-bg:       #f8f5ee;
  --white:         #ffffff;
  --charcoal:      #2c2820;
  --brown-mid:     #4a4038;
  --gold:          #b89560;
  --gold-btn:      #c8a870;
  --gold-btn-hover:#a87840;
  --gold-light:    #d4b88a;
  --grey-soft:     #9a9080;
  --grey-text:     #6a6050;
  --grey-light:    #bfb8a8;
  --sidebar-bg:    #f2ede2;
  --filter-border: #ddd5c0;

  --serif:  'Cormorant Garamond', Georgia, serif;
  --sans:   'Jost', system-ui, sans-serif;

  --ease:  cubic-bezier(.25,.46,.45,.94);
  --fast:  .22s;
  --med:   .45s;

  --max-w: 1260px;
  --pad:   clamp(1rem, 4vw, 2rem);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--sans); background: var(--page-bg); color: var(--charcoal); line-height: 1.6; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img  { max-width: 100%; height: auto; display: block; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--sans); }

/* ── Utility ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad); }

/* Placeholder image */
.ph {
  display: flex; align-items: center; justify-content: center;
  font-family: var(--sans); font-size: .6rem; letter-spacing: .1em;
  text-transform: uppercase; color: var(--grey-light);
  background: linear-gradient(145deg, var(--ivory-warm) 0%, var(--ivory-deep) 100%);
  overflow: hidden; position: relative;
}
.ph::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(-45deg, transparent, transparent 9px,
    rgba(255,255,255,.22) 9px, rgba(255,255,255,.22) 10px);
}
.ph span { position: relative; z-index: 1; text-align: center; padding: .5rem; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .65s var(--ease), transform .65s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.d1 { transition-delay: .06s; } .d2 { transition-delay: .14s; }
.d3 { transition-delay: .22s; } .d4 { transition-delay: .30s; }
.d5 { transition-delay: .38s; }

/* ════════════════════════════════════════════
   HEADER
   ════════════════════════════════════════════ */
.site-header {
  position: sticky; top: 0; z-index: 900;
  background: rgba(250,248,242,.97); backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--fast), box-shadow var(--fast);
}
.site-header.scrolled {
  border-bottom-color: var(--ivory-border);
  box-shadow: 0 1px 20px rgba(44,40,32,.07);
}

.header-inner {
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; padding: .9rem var(--pad);
  max-width: var(--max-w); margin: 0 auto;
}

/* Left nav */
.nav-left ul { display: flex; gap: 1.75rem; align-items: center; }
.nav-left ul li a {
  font-size: .7rem; font-weight: 400; letter-spacing: .16em;
  text-transform: uppercase; color: var(--charcoal);
  position: relative; padding-bottom: 3px;
  transition: color var(--fast);
}
.nav-left ul li a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width var(--fast) var(--ease);
}
.nav-left ul li a:hover,
.nav-left ul li.active a { color: var(--gold); }
.nav-left ul li a:hover::after,
.nav-left ul li.active a::after { width: 100%; }

/* Center logo */
.nav-logo { justify-self: center; text-align: center; }
.nav-logo a { display: flex; flex-direction: column; align-items: center; }
.logo-crown { width: 28px; height: 22px; color: var(--gold); margin-bottom: .2rem; }
.logo-wordmark {
  font-family: var(--serif); font-size: 1.5rem; font-weight: 500;
  letter-spacing: .12em; color: var(--charcoal); line-height: 1;
}
.logo-sub {
  font-family: var(--serif); font-style: italic; font-size: .52rem;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--grey-soft); display: block; margin-top: 2px;
}

/* Right nav */
.nav-right { display: flex; align-items: center; justify-content: flex-end; gap: .85rem; }
.nav-right-link {
  font-size: .7rem; font-weight: 400; letter-spacing: .16em;
  text-transform: uppercase; color: var(--charcoal);
  transition: color var(--fast);
}
.nav-right-link:hover { color: var(--gold); }

.icon-btn {
  width: 30px; height: 30px; display: flex; align-items: center;
  justify-content: center; border-radius: 50%; color: var(--charcoal);
  transition: color var(--fast), background var(--fast);
}
.icon-btn:hover { color: var(--gold); background: var(--ivory-warm); }
.icon-btn svg { width: 17px; height: 17px; stroke: currentColor; fill: none; stroke-width: 1.5; }

.book-btn {
  display: inline-flex; align-items: center;
  border: 1.5px solid var(--charcoal); padding: .45rem 1rem;
  font-size: .65rem; font-weight: 500; letter-spacing: .14em;
  text-transform: uppercase; color: var(--charcoal);
  transition: all var(--fast); white-space: nowrap;
}
.book-btn:hover { background: var(--charcoal); color: var(--white); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 1px; background: var(--charcoal); transition: all var(--fast); }
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile drawer */
.mobile-drawer {
  position: fixed; top: 58px; inset: 0; background: var(--ivory);
  z-index: 800; padding: 1.5rem var(--pad);
  transform: translateX(-100%); transition: transform .38s var(--ease);
  display: none; flex-direction: column;
}
.mobile-drawer.open { transform: translateX(0); }
.mobile-drawer li { border-bottom: 1px solid var(--ivory-border); }
.mobile-drawer li a {
  display: block; padding: .85rem 0;
  font-size: .92rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--charcoal); font-weight: 300;
}

/* ════════════════════════════════════════════
   PAGE HERO / BREADCRUMB
   ════════════════════════════════════════════ */
.page-banner {
  background: var(--page-bg);
  padding: 3.5rem var(--pad) 0;
}

/* ════════════════════════════════════════════
   SHOP LAYOUT: SIDEBAR + GRID
   ════════════════════════════════════════════ */
.shop-layout {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 2.5rem;
  /* max-width: var(--max-w); margin: 0 auto; */
  padding: 2rem var(--pad) 4rem;
  align-items: start;
  padding: 100px;
}

/* ── Sidebar ── */
.shop-sidebar {
  position: sticky; top: 80px;
  background: transparent;
}

.filter-group {
  border-bottom: 1px solid var(--filter-border);
}
.filter-group:first-child { border-top: 1px solid var(--filter-border); }

.filter-toggle {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: .85rem 0;
  font-family: var(--sans); font-size: .65rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase; color: var(--charcoal);
  background: transparent; cursor: pointer;
  transition: color var(--fast);
}
.filter-toggle:hover { color: var(--gold); }

.filter-arrow {
  width: 14px; height: 14px; stroke: currentColor; fill: none;
  stroke-width: 2; flex-shrink: 0; transition: transform var(--fast);
}
.filter-group.open .filter-arrow { transform: rotate(90deg); }

.filter-body {
  max-height: 0; overflow: hidden;
  transition: max-height .35s var(--ease), padding .35s;
}
.filter-group.open .filter-body { max-height: 400px; padding-bottom: 1rem; }

.filter-option {
  display: flex; align-items: center; gap: .6rem;
  padding: .35rem 0; cursor: pointer;
}
.filter-option input[type="checkbox"] {
  width: 14px; height: 14px; accent-color: var(--gold);
  cursor: pointer;
}
.filter-option label {
  font-size: .78rem; color: var(--grey-text); cursor: pointer;
  font-weight: 300; transition: color var(--fast);
}
.filter-option:hover label { color: var(--charcoal); }

/* Color swatches */
.color-swatch-row {
  display: flex; flex-wrap: wrap; gap: .4rem; padding: .5rem 0;
}
.color-swatch {
  width: 22px; height: 22px; border-radius: 50%;
  cursor: pointer; border: 2px solid transparent;
  transition: border-color var(--fast), transform var(--fast);
}
.color-swatch:hover { transform: scale(1.15); }
.color-swatch.active { border-color: var(--gold); }

/* ── Main content ── */
.shop-main {}

.shop-header {
  margin-bottom: 1.75rem;
}
.shop-page-title {
  font-family: var(--serif); font-size: clamp(1.65rem, 3vw, 2.4rem);
  font-weight: 400; color: var(--charcoal); margin-bottom: .65rem;
}
.shop-desc {
  font-size: .82rem; color: var(--grey-text); line-height: 1.75;
  font-weight: 300; max-width: 680px;
}

/* ── Product Grid ── */
.products-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem 1rem;
}

/* ── Product Card ── */
.product-card {
  display: flex; flex-direction: column;
  background: var(--white);
  transition: transform var(--fast) var(--ease), box-shadow var(--fast);
  position: relative;
}
.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(44,40,32,.09);
}

.product-img {
  position: relative; overflow: hidden;
  aspect-ratio: 3/4; background: var(--ivory-warm);
}
.product-img .ph { width: 100%; height: 100%; }
.product-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease);
}
.product-card:hover .product-img img { transform: scale(1.04); }

/* Wishlist heart */
.wishlist-btn {
  position: absolute; top: .7rem; right: .7rem;
  width: 28px; height: 28px; background: rgba(255,255,255,.9);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 1px 6px rgba(0,0,0,.1); z-index: 2;
  opacity: 0; transition: opacity var(--fast), transform var(--fast);
  cursor: pointer;
}
.wishlist-btn:hover { transform: scale(1.12); }
.wishlist-btn svg { width: 13px; height: 13px; stroke: var(--grey-text); fill: none; stroke-width: 1.5; }
.wishlist-btn.active svg { stroke: #c0392b; fill: #c0392b; }
.product-card:hover .wishlist-btn { opacity: 1; }

/* Pagination arrow on card (matching design) */
.card-nav {
  position: absolute; top: 50%; right: .6rem; transform: translateY(-50%);
  width: 22px; height: 22px; background: rgba(255,255,255,.8);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity var(--fast); cursor: pointer; z-index: 2;
}
.card-nav svg { width: 10px; height: 10px; stroke: var(--charcoal); fill: none; stroke-width: 2; }
.product-card:hover .card-nav { opacity: 1; }

.product-info {
  padding: .65rem .5rem .5rem;
}
.product-name {
  font-family: var(--serif); font-size: .95rem; font-weight: 400;
  color: var(--charcoal); margin-bottom: .55rem;
}

.book-appt-btn {
  display: block; width: 100%;
  background: var(--gold-btn); color: var(--white);
  padding: .5rem .5rem; text-align: center;
  font-family: var(--sans); font-size: .6rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  border: none; cursor: pointer;
  transition: background var(--fast);
}
.book-appt-btn:hover { background: var(--gold-btn-hover); }

/* ── Pagination ── */
.pagination {
  display: flex; align-items: center; justify-content: center;
  gap: .3rem; margin-top: 3rem; padding-top: 2rem;
  border-top: 1px solid var(--ivory-border);
}

.page-btn {
  display: flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  font-family: var(--sans); font-size: .78rem; font-weight: 400;
  color: var(--grey-text); transition: all var(--fast); cursor: pointer;
  border: 1px solid transparent;
}
.page-btn:hover { color: var(--charcoal); border-color: var(--ivory-border); }
.page-btn.active {
  color: var(--charcoal); font-weight: 600;
  border-color: var(--charcoal);
}
.page-btn.ellipsis { border: none; cursor: default; }
.page-next {
  display: flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; color: var(--charcoal);
  transition: color var(--fast); cursor: pointer;
}
.page-next:hover { color: var(--gold); }
.page-next svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; }

/* ════════════════════════════════════════════
   INSTAGRAM STRIP — FULL BLEED, 6 PHOTOS
   ════════════════════════════════════════════ */
.insta-section {
  background: var(--ivory-deep);
  padding: 4rem var(--pad);
}
.insta-inner { max-width: var(--max-w); margin: 0 auto; }

.insta-header { text-align: center; margin-bottom: 1.75rem; }
.insta-eyebrow {
  display: block; font-family: var(--sans); font-size: .65rem;
  letter-spacing: .28em; text-transform: uppercase; color: var(--gold);
  margin-bottom: .4rem;
}
.insta-handle {
  font-family: var(--serif); font-size: 1.5rem; font-style: italic;
  font-weight: 400; color: var(--charcoal);
}

/* 6-column full-width strip */
.insta-strip {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 0; margin-bottom: 1.75rem;
}

.insta-photo {
  position: relative; overflow: hidden; aspect-ratio: 1/1;
  cursor: pointer; background: var(--ivory-warm);
}
.insta-photo .ph { width: 100%; height: 100%; }
.insta-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .55s var(--ease);
}
.insta-photo:hover img { transform: scale(1.07); }

.insta-photo-overlay {
  position: absolute; inset: 0;
  background: rgba(44,40,32,.28);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity var(--fast);
}
.insta-photo:hover .insta-photo-overlay { opacity: 1; }
.insta-photo-overlay svg {
  width: 26px; height: 26px; stroke: var(--white); fill: none; stroke-width: 1.5;
}

.insta-cta { text-align: center; }
.btn-follow {
  display: inline-flex; align-items: center; gap: .5rem;
  border: 1.5px solid var(--charcoal); padding: .65rem 2rem;
  font-family: var(--sans); font-size: .68rem; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase; color: var(--charcoal);
  transition: all var(--fast);
}
.btn-follow:hover { background: var(--charcoal); color: var(--white); }

/* ════════════════════════════════════════════
   NEWSLETTER
   ════════════════════════════════════════════ */
.newsletter-section {
  background: var(--ivory);
  padding: 5.5rem var(--pad);
  text-align: center; position: relative; overflow: hidden;
}
.newsletter-section::before {
  content: ''; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 560px; height: 560px;
  border: 1px solid rgba(184,149,96,.1); border-radius: 50%;
  pointer-events: none;
}
.newsletter-section::after {
  content: ''; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 340px; height: 340px;
  border: 1px solid rgba(184,149,96,.08); border-radius: 50%;
  pointer-events: none;
}

.newsletter-inner { max-width: 480px; margin: 0 auto; position: relative; z-index: 1; }
.nl-eyebrow {
  display: block; font-family: var(--sans); font-size: .65rem;
  letter-spacing: .26em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 1rem;
}
.nl-title {
  font-family: var(--serif); font-size: clamp(1.6rem, 3.5vw, 2.35rem);
  font-weight: 400; color: var(--charcoal); line-height: 1.2;
  margin-bottom: .65rem;
}
.nl-sub {
  font-size: .82rem; color: var(--grey-text); line-height: 1.75;
  margin-bottom: 2rem; font-weight: 300;
}
.nl-form { display: flex; max-width: 400px; margin: 0 auto; }
.nl-input {
  flex: 1; padding: .75rem 1rem;
  border: 1px solid var(--ivory-border); border-right: none;
  background: var(--white); font-family: var(--sans); font-size: .8rem;
  color: var(--charcoal); outline: none;
  transition: border-color var(--fast);
}
.nl-input::placeholder { color: var(--grey-light); font-size: .78rem; }
.nl-input:focus { border-color: var(--gold); }
.nl-btn {
  padding: .75rem 1.35rem; background: var(--charcoal); color: var(--white);
  font-family: var(--sans); font-size: .65rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  border: none; cursor: pointer; transition: background var(--fast); white-space: nowrap;
}
.nl-btn:hover { background: var(--gold-btn); }

/* ════════════════════════════════════════════
   FOOTER — 5-COLUMN EXPANDED
   ════════════════════════════════════════════ */
.site-footer { background: #2a2520; padding: 4rem var(--pad) 2rem; }

.footer-brand {
  text-align: center; padding-bottom: 2.75rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
  margin-bottom: 2.75rem;
}
.footer-logo-name {
  font-family: var(--serif); font-size: 1.85rem; font-weight: 400;
  letter-spacing: .14em; color: #f0ece4; margin-bottom: .3rem;
}
.footer-logo-tag {
  font-family: var(--serif); font-style: italic; font-size: .75rem;
  color: #6a6050; letter-spacing: .06em;
}

.footer-cols {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 2rem; max-width: var(--max-w); margin: 0 auto;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.05);
}

.footer-col-head {
  font-family: var(--sans); font-size: .6rem; font-weight: 600;
  letter-spacing: .24em; text-transform: uppercase;
  color: #f0ece4; margin-bottom: 1.1rem;
}
.footer-col-nav { display: flex; flex-direction: column; gap: .55rem; }
.footer-col-nav a {
  font-size: .75rem; color: #6a6050; font-weight: 300;
  transition: color var(--fast);
}
.footer-col-nav a:hover { color: var(--gold-light); }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem; padding-top: 2rem;
  max-width: var(--max-w); margin: 0 auto;
}
.footer-copy { font-size: .68rem; color: rgba(255,255,255,.18); }

.footer-socials { display: flex; gap: 1.25rem; }
.footer-socials a {
  font-size: .65rem; font-weight: 500; letter-spacing: .14em;
  text-transform: uppercase; color: rgba(255,255,255,.35);
  transition: color var(--fast);
}
.footer-socials a:hover { color: var(--gold-light); }

.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a {
  font-size: .68rem; color: rgba(255,255,255,.18); transition: color var(--fast);
}
.footer-legal a:hover { color: var(--gold-light); }

/* ════════════════════════════════════════════
   RESPONSIVE — 1024px
   ════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .shop-layout { grid-template-columns: 170px 1fr; gap: 1.75rem; }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .insta-strip { grid-template-columns: repeat(3, 1fr); }
  .footer-cols { grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
}

/* ════════════════════════════════════════════
   RESPONSIVE — 768px
   ════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --pad: 1rem; }

  /* Header */
  .header-inner { grid-template-columns: auto 1fr auto; }
  .nav-left { display: none; }
  .nav-logo { justify-self: start; }
  .book-btn { display: none; }
  .hamburger { display: flex; }
  .mobile-drawer { display: flex; }
  .nav-right-link { display: none; }

  /* Shop layout */
  .shop-layout { grid-template-columns: 1fr; }
  .shop-sidebar { position: static; display: flex; flex-direction: row; flex-wrap: wrap; gap: .5rem; }
  .filter-group { flex: 1 1 140px; border: 1px solid var(--filter-border); padding: 0 .75rem; }
  .filter-group:first-child { border-top: 1px solid var(--filter-border); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }

  /* Instagram */
  .insta-strip { grid-template-columns: repeat(3, 1fr); }

  /* Footer */
  .footer-cols { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* Newsletter */
  .nl-form { flex-direction: column; }
  .nl-input { border-right: 1px solid var(--ivory-border); }
}

/* ════════════════════════════════════════════
   RESPONSIVE — 480px
   ════════════════════════════════════════════ */
@media (max-width: 480px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: .75rem; }
  .insta-strip { grid-template-columns: repeat(2, 1fr); }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .shop-layout {
    padding: 0px;
  padding: 2rem var(--pad) 4rem;
}

}








/* ================================== Story css ======================*/


/* ═══════════════════════════════════════════════════════════════
   TOKENS
   ═══════════════════════════════════════════════════════════════ */
:root {
  --ivory:        #faf8f2;
  --ivory-warm:   #f5f0e6;
  --ivory-section:#f8f5e8;   /* pale yellow-cream used between sections */
  --ivory-border: #e4dece;
  --white:        #ffffff;
  --charcoal:     #2c2820;
  --brown:        #4a3f30;
  --gold:         #b8956a;
  --gold-dark:    #9a7850;
  --gold-pale:    #f0e4cc;
  --grey-soft:    #9a9288;
  --grey-text:    #6a6258;
  --grey-light:   #c8c0b4;

  --serif:  'Cormorant Garamond', Georgia, serif;
  --sans:   'Jost', system-ui, sans-serif;

  --ease:   cubic-bezier(.25,.46,.45,.94);
  --t:      .25s;
  --tslow:  .65s;

  --max-w:  1200px;
  --pad:    clamp(1.25rem, 5vw, 2.5rem);

  /* Section vertical rhythm */
  --section-v: clamp(4rem, 8vw, 6.5rem);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; font-size: 16px; }
body  { font-family: var(--sans); background: var(--white); color: var(--charcoal); line-height: 1.6; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img   { max-width: 100%; height: auto; display: block; }
a     { text-decoration: none; color: inherit; }
ul    { list-style: none; }
button{ cursor: pointer; border: none; background: none; font-family: var(--sans); }

/* ── Utilities ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad); }
.sr-only   { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* Placeholder image */
.ph {
  display: flex; align-items: center; justify-content: center;
  font-size: .6rem; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.5); font-family: var(--sans);
  position: relative; overflow: hidden;
}
.ph::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(-45deg, transparent, transparent 9px, rgba(255,255,255,.08) 9px, rgba(255,255,255,.08) 10px);
}
.ph span { position: relative; z-index: 1; text-align: center; padding: .5rem; line-height: 1.6; }
.ph--light { color: var(--grey-light); }
.ph--light::before { background: repeating-linear-gradient(-45deg, transparent, transparent 9px, rgba(255,255,255,.25) 9px, rgba(255,255,255,.25) 10px); }

/* Eyebrow */
.eyebrow {
  display: block; font-size: .65rem; letter-spacing: .28em;
  text-transform: uppercase; color: var(--gold); font-weight: 400;
  margin-bottom: .8rem;
}

/* Scroll reveal */
.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity var(--tslow) var(--ease), transform var(--tslow) var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.d1 { transition-delay: .07s; }
.d2 { transition-delay: .16s; }
.d3 { transition-delay: .25s; }
.d4 { transition-delay: .34s; }
.d5 { transition-delay: .42s; }

/* Fade from left */
.reveal-left {
  opacity: 0; transform: translateX(-24px);
  transition: opacity var(--tslow) var(--ease), transform var(--tslow) var(--ease);
}
.reveal-left.in { opacity: 1; transform: none; }

/* Fade from right */
.reveal-right {
  opacity: 0; transform: translateX(24px);
  transition: opacity var(--tslow) var(--ease), transform var(--tslow) var(--ease);
}
.reveal-right.in { opacity: 1; transform: none; }

/* ═══════════════════════════════════════════════════════════════
   SECTION 1 — HERO
   Full-bleed dark cinematic photo, italic serif headline centred
   ═══════════════════════════════════════════════════════════════ */
.story-hero {
  position: relative;
  height: min(92vh, 720px);
  display: flex; align-items: center; justify-content: flex-start;
  overflow: hidden;
}

/* Background photo */
.story-hero__bg {
  position: absolute; inset: 0;
}
.story-hero__bg .ph {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #4a4438 0%, #2c2820 40%, #1a1610 75%, #0e0c08 100%);
}

/* Multi-layer vignette */
.story-hero__vignette {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(14,12,8,.72) 0%, rgba(14,12,8,.3) 55%, rgba(14,12,8,.05) 100%),
    linear-gradient(to bottom, rgba(0,0,0,.18) 0%, transparent 30%, rgba(0,0,0,.25) 100%);
  pointer-events: none;
}

/* Content */
.story-hero__content {
  position: relative; z-index: 2;
  padding: 0 var(--pad);
  max-width: var(--max-w); margin: 0 auto; width: 100%;
  animation: heroFade .9s var(--ease) both;
}

@keyframes heroFade {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: none; }
}

.story-hero__title {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 400; line-height: 1.08;
  color: var(--white);
  max-width: 700px;
}
.story-hero__title em {
  font-style: italic;
  font-weight: 300;
  display: block;
}

.story-hero__sub {
  font-size: clamp(.82rem, 1.5vw, .95rem);
  color: rgba(255,255,255,.55);
  line-height: 1.8; font-weight: 300;
  max-width: 440px; margin: 1.5rem 0 2.25rem;
}

/* CTA on hero */
.btn-hero {
  display: inline-flex; align-items: center; gap: .45rem;
  background: var(--gold); color: var(--white);
  padding: .72rem 2rem; font-family: var(--sans);
  font-size: .72rem; font-weight: 500; letter-spacing: .14em;
  text-transform: uppercase;
  transition: background var(--t);
}
.btn-hero:hover { background: var(--gold-dark); }

/* Scroll hint */
.story-hero__scroll {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: .35rem;
}
.story-hero__scroll span {
  font-size: .6rem; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.35);
}
.scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, rgba(255,255,255,.35), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .4; transform: scaleY(1); }
  50%       { opacity: 1; transform: scaleY(.7); }
}

/* ═══════════════════════════════════════════════════════════════
   SECTION 2 — DIALOGUE BETWEEN CULTURES
   2-col: portrait left  |  eyebrow + title + body + link right
   ═══════════════════════════════════════════════════════════════ */
.dialogue-section {
  background: var(--ivory);
  padding: var(--section-v) var(--pad);
}

.dialogue-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
  max-width: var(--max-w); margin: 0 auto;
}

/* Portrait image — slight rotation for editorial feel */
.dialogue-img {
  position: relative;
}
.dialogue-img__frame {
  position: relative;
  transform: rotate(-1.5deg);
  transition: transform .4s var(--ease);
}
.dialogue-img__frame:hover { transform: rotate(0deg); }

.dialogue-img__frame .ph {
  width: 100%; aspect-ratio: 4/5;
  background: linear-gradient(145deg, #d8d0c4 0%, #b4a898 50%, #9a8c7e 100%);
}

/* Decorative gold accent behind image */
.dialogue-img::before {
  content: '';
  position: absolute; bottom: -1.2rem; left: -1.2rem;
  right: 1.2rem; top: 1.2rem;
  border: 1px solid var(--gold-pale);
  z-index: -1; pointer-events: none;
}

/* Right content */
.dialogue-content {
  display: flex; flex-direction: column; gap: 1.35rem;
}

.dialogue-title {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 400; line-height: 1.15; color: var(--charcoal);
}

.dialogue-body {
  font-size: .9rem; color: var(--grey-text);
  line-height: 1.9; font-weight: 300;
}

.dialogue-link {
  display: inline-flex; align-items: center; gap: .4rem;
  font-family: var(--serif); font-style: italic;
  font-size: 1rem; color: var(--gold);
  border-bottom: 1px solid transparent;
  padding-bottom: 1px; align-self: flex-start;
  transition: border-color var(--t), color var(--t);
}
.dialogue-link:hover { border-color: var(--gold); color: var(--gold-dark); }
.dialogue-link .arrow {
  font-style: normal; font-size: .85em;
  transition: transform var(--t);
}
.dialogue-link:hover .arrow { transform: translateX(4px); }

/* ═══════════════════════════════════════════════════════════════
   SECTION 3 — PHILOSOPHY OF FORM
   Centered header + 3-col cards (illustration | fabric | detail)
   ═══════════════════════════════════════════════════════════════ */
.philosophy-section {
  background: var(--ivory-section);
  padding: var(--section-v) var(--pad);
}

.philosophy-inner { max-width: var(--max-w); margin: 0 auto; }

.philosophy-header {
  text-align: center; margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.philosophy-title {
  font-family: var(--serif);
  font-size: clamp(1.85rem, 4vw, 3rem);
  font-weight: 400; color: var(--charcoal); line-height: 1.1;
  margin-bottom: .65rem;
}

.philosophy-subtitle {
  font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--grey-light); font-weight: 400;
}

/* 3-column feature grid */
.philosophy-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
}

.phil-card {}

.phil-card__media {
  width: 100%; overflow: hidden; margin-bottom: 1.35rem;
}

/* Silhouette card — has illustration-style toned photo */
.phil-card--silhouette .phil-card__media {
  aspect-ratio: 3/4;
  background: var(--ivory-warm);
}
.phil-card--silhouette .ph {
  width: 100%; height: 100%;
  background: linear-gradient(160deg, #f0ece2 0%, #e0d8c8 100%);
}
/* SVG bride silhouette overlay hint */
.silhouette-icon {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.silhouette-icon svg {
  width: 55%; height: 55%;
  fill: #c8bfae;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.08));
}

/* Fabric + detail — photo placeholders */
.phil-card--fabric .phil-card__media,
.phil-card--detail .phil-card__media {
  aspect-ratio: 4/3;
}
.phil-card--fabric .ph {
  width: 100%; height: 100%;
  background: linear-gradient(145deg, #ddd8cc 0%, #c0baae 100%);
}
.phil-card--detail .ph {
  width: 100%; height: 100%;
  background: linear-gradient(145deg, #d8d4c8 0%, #bcb8ac 100%);
}

.phil-card__title {
  font-family: var(--serif); font-size: 1.2rem; font-weight: 400;
  color: var(--charcoal); margin-bottom: .55rem; line-height: 1.25;
}

.phil-card__desc {
  font-size: .82rem; color: var(--grey-text); line-height: 1.8; font-weight: 300;
}

/* ═══════════════════════════════════════════════════════════════
   SECTION 4 — INSIDE THE ATELIER
   2-col: italic quote/text left  |  photo mosaic right
   Photo mosaic: 1 tall left + 2 stacked right
   ═══════════════════════════════════════════════════════════════ */
.atelier-section {
  background: var(--ivory);
  padding: var(--section-v) var(--pad);
}

.atelier-inner {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
  max-width: var(--max-w); margin: 0 auto;
}

/* Left — italic editorial text */
.atelier-content { display: flex; flex-direction: column; gap: 1.5rem; }

.atelier-headline {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.75rem, 4vw, 2.85rem);
  font-weight: 400; line-height: 1.18; color: var(--charcoal);
}

.atelier-body {
  font-size: .88rem; color: var(--grey-text); line-height: 1.9; font-weight: 300;
}

/* Attribution pull-quote style */
.atelier-credit {
  display: flex; align-items: flex-start; gap: .75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--ivory-border);
}
.atelier-credit__line {
  width: 24px; height: 1px; background: var(--gold);
  flex-shrink: 0; margin-top: .6em;
}
.atelier-credit__text {
  font-family: var(--serif); font-style: italic;
  font-size: .85rem; color: var(--grey-soft); line-height: 1.5;
}

/* Right — photo mosaic */
.atelier-mosaic {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: .65rem;
}

/* Big photo spans both rows */
.atelier-mosaic__big {
  grid-row: 1 / 3;
  overflow: hidden;
}
.atelier-mosaic__big .ph {
  width: 100%; height: 100%; min-height: 380px;
  background: linear-gradient(145deg, #c8c0b0 0%, #a8a098 50%, #8a8278 100%);
}

.atelier-mosaic__small {
  overflow: hidden;
}
.atelier-mosaic__small .ph {
  width: 100%; height: 100%; min-height: 160px;
  background: linear-gradient(145deg, #d4cec0 0%, #b8b2a4 100%);
}
.atelier-mosaic__small:nth-child(3) .ph {
  background: linear-gradient(145deg, #ccc8b8 0%, #b0ac9e 100%);
}

/* Hover zoom on all mosaic photos */
.atelier-mosaic__big img,
.atelier-mosaic__small img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease);
}
.atelier-mosaic__big:hover img,
.atelier-mosaic__small:hover img { transform: scale(1.04); }

/* ═══════════════════════════════════════════════════════════════
   SECTION 5 — EVERY BRIDE, A STORY OF HER OWN
   Centered header + 5-col portrait strip with name/location tags
   ═══════════════════════════════════════════════════════════════ */
.brides-section {
  background: var(--white);
  padding: var(--section-v) 0;   /* no side padding — strip bleeds full width */
}

.brides-header {
  text-align: center;
  padding: 0 var(--pad);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.brides-title {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.75rem, 4vw, 2.85rem);
  font-weight: 400; color: var(--charcoal); line-height: 1.15;
  margin-bottom: .5rem;
}

.brides-tagline {
  font-size: .72rem; letter-spacing: .14em;
  color: var(--grey-light); text-transform: uppercase; font-weight: 400;
}

/* 5-col strip — full viewport width */
.brides-strip {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 0;  /* flush / borderless */
}

.bride-card {
  position: relative; overflow: hidden;
  aspect-ratio: 3 / 4; cursor: pointer;
}

.bride-card .ph {
  width: 100%; height: 100%;
}

.bride-card img {
  width: 100%; height: 100%; object-fit: cover; object-position: top;
  transition: transform .65s var(--ease);
}
.bride-card:hover img { transform: scale(1.06); }

/* Dark gradient overlay at bottom */
.bride-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.6) 0%, transparent 50%);
  opacity: .7; transition: opacity var(--t);
}
.bride-card:hover .bride-card__overlay { opacity: 1; }

/* Name & location tag */
.bride-card__info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1rem .9rem .85rem;
}
.bride-card__name {
  font-family: var(--serif); font-weight: 500;
  font-size: .95rem; color: var(--white); line-height: 1.2; margin-bottom: .2rem;
}
.bride-card__location {
  font-size: .62rem; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.65); font-weight: 400;
}

/* Photo tones per card */
.bride-card:nth-child(1) .ph { background: linear-gradient(160deg, #a89888 0%, #786858 100%); }
.bride-card:nth-child(2) .ph { background: linear-gradient(160deg, #b8b0a0 0%, #908478 100%); }
.bride-card:nth-child(3) .ph { background: linear-gradient(160deg, #c0b8a8 0%, #988c80 100%); }
.bride-card:nth-child(4) .ph { background: linear-gradient(160deg, #b0a898 0%, #888074 100%); }
.bride-card:nth-child(5) .ph { background: linear-gradient(160deg, #a8a090 0%, #807870 100%); }

/* ═══════════════════════════════════════════════════════════════
   SECTION 6 — INSTAGRAM STRIP
   ═══════════════════════════════════════════════════════════════ */
.insta-section {
  background: #ebebeb;
  padding: 3rem var(--pad) 2.5rem;
}
.insta-inner { max-width: var(--max-w); margin: 0 auto; }

.insta-header { text-align: center; margin-bottom: 1.75rem; }
.insta-eyebrow {
  display: block; font-size: .62rem; letter-spacing: .28em;
  text-transform: uppercase; color: var(--grey-soft); margin-bottom: .45rem;
}
.insta-handle {
  font-family: var(--serif); font-style: italic;
  font-size: 1.55rem; color: var(--charcoal);
}

/* 5-photo strip */
.insta-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: .5rem;
  margin-bottom: 1.75rem;
}

.insta-item {
  position: relative; overflow: hidden;
  aspect-ratio: 1; background: var(--ivory-warm); cursor: pointer;
}
.insta-item .ph {
  width: 100%; height: 100%; font-size: .6rem;
}
.insta-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.insta-item:hover img { transform: scale(1.07); }

.insta-item__overlay {
  position: absolute; inset: 0;
  background: rgba(44,40,32,.3);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity var(--t);
}
.insta-item:hover .insta-item__overlay { opacity: 1; }
.insta-item__overlay svg {
  width: 26px; height: 26px; stroke: var(--white); fill: none; stroke-width: 1.5;
}

/* Photo tones */
.insta-item:nth-child(1) .ph { background: linear-gradient(135deg, #c8bfb0 0%, #a09488 100%); }
.insta-item:nth-child(2) .ph { background: linear-gradient(135deg, #d4d0c4 0%, #b4b0a4 100%); }
.insta-item:nth-child(3) .ph { background: linear-gradient(135deg, #b8c4c0 0%, #98a4a0 100%); }
.insta-item:nth-child(4) .ph { background: linear-gradient(135deg, #a8b4c0 0%, #88949c 100%); }
.insta-item:nth-child(5) .ph { background: linear-gradient(135deg, #c8c4b8 0%, #a8a49c 100%); }

.insta-cta { text-align: center; }
.insta-follow-btn {
  display: inline-flex; align-items: center; gap: .5rem;
  border: 1px solid var(--charcoal); padding: .62rem 2rem;
  font-family: var(--sans); font-size: .68rem; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase; color: var(--charcoal);
  background: var(--white); transition: all var(--t);
}
.insta-follow-btn:hover { background: var(--charcoal); color: var(--white); }

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — TABLET 900px
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .dialogue-inner  { grid-template-columns: 1fr; gap: 2.5rem; }
  .dialogue-img    { max-width: 420px; }
  .dialogue-img::before { display: none; }

  .atelier-inner   { grid-template-columns: 1fr; gap: 2.5rem; }
  .atelier-mosaic  { grid-template-columns: 1fr 1fr; }
  .atelier-mosaic__big { grid-row: auto; }
  .atelier-mosaic__big .ph { min-height: 260px; }
  .atelier-mosaic__small .ph { min-height: 200px; }

  .philosophy-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

  .brides-strip    { grid-template-columns: repeat(3, 1fr); }
  .brides-strip .bride-card:nth-child(n+4) { display: none; }  /* hide last 2 on tablet */

  .insta-grid      { grid-template-columns: repeat(3, 1fr); }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE 640px
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 640px) {
  :root { --pad: 1.1rem; }

  .story-hero { height: min(80vh, 580px); }
  .story-hero__title { font-size: clamp(2rem, 8vw, 2.75rem); }
  .story-hero__sub   { font-size: .82rem; }

  .dialogue-img { max-width: 100%; }
  .dialogue-img__frame { transform: none; }

  .philosophy-grid { grid-template-columns: 1fr; gap: 2rem; }
  .phil-card--fabric .phil-card__media,
  .phil-card--detail .phil-card__media { aspect-ratio: 16/9; }

  .atelier-inner    { gap: 2rem; }
  .atelier-mosaic   { grid-template-columns: 1fr; grid-template-rows: auto auto auto; gap: .5rem; }
  .atelier-mosaic__big { grid-row: auto; }
  .atelier-mosaic__big .ph { min-height: 220px; }

  .brides-strip { grid-template-columns: repeat(2, 1fr); }
  .brides-strip .bride-card:nth-child(n+4) { display: none; }

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

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE 400px
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 400px) {
  .brides-strip { grid-template-columns: 1fr 1fr; }
  .insta-grid   { grid-template-columns: 1fr 1fr; }
  .atelier-headline { font-size: 1.65rem; }
}







/* ======================================= Bridal Experience ================================ */

/* HERO */
.exp-hero { position: relative; height: 600px; color: #fff; display: flex; align-items: center; justify-content: center; text-align: center; }
.exp-hero__bg { position: absolute; top:0; left:0; right:0; bottom:0; background-size: cover; background-position: center; }
.exp-hero__overlay { position:absolute; top:0; left:0; right:0; bottom:0; background: rgba(0,0,0,0.3); }
.exp-hero__content { position: relative; z-index: 1; }
.exp-hero h1 { font-size: 48px; margin-bottom: 1rem; }
.exp-hero em { font-style: italic; }

/* JOURNEY */
.exp-journey { padding: 100px 20px; text-align: center; }
.exp-journey__grid { display: flex; justify-content: center; align-items: center; gap: 40px; flex-wrap: wrap; }
.exp-journey__col-left, .exp-journey__col-right { flex: 1 1 200px; }
.exp-journey__center { flex: 0 1 250px; }
.exp-journey__circle img { border-radius: 50%; width: 250px; height: 250px; object-fit: cover; }
.journey-step h3 { font-size: 20px; margin-bottom: 0.5rem; }

/* QUOTE */
.exp-quote { text-align: center; font-size: 28px; font-style: italic; 
  /* margin: 80px 0; */
 }

/* FEATURES */
.exp-features { padding: 100px 20px; text-align: center; }
.exp-features__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-top: 40px; }
.exp-feature h3 { margin-top: 15px; font-size: 20px; }
.exp-feature__icon { font-size: 40px; }

/* INSTAGRAM */
.insta-section { padding: 80px 20px; text-align: center; }
.insta-grid { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; }
.insta-grid img { width: 180px; height: 180px; object-fit: cover; }

/* NEWSLETTER */
.newsletter-section { padding: 80px 20px; text-align: center; background: #fdf5e6; }
.newsletter-form input { padding: 10px; width: 250px; max-width: 100%; margin-right: 10px; }
.newsletter-form button { padding: 10px 20px; background: #000000; color: #fff; border: none; cursor: pointer; }



/* ===============================
   SINGLE BRIDAL STORY PAGE
   =============================== */

.single-story{
padding:120px 20px;
background:#f9f7f4;
font-family: "Playfair Display", serif;
}

.story-full{
max-width:900px;
margin:auto;
text-align:center;
}

/* Title */
.story-title{
font-size:56px;
font-weight:500;
letter-spacing:1px;
margin-bottom:10px;
color:#1a1a1a;
}

/* Location */
.story-location{
font-size:16px;
font-style:italic;
color:#9a8f82;
margin-bottom:40px;
letter-spacing:1px;
}

/* Image */
.story-image{
margin-bottom:50px;
}

.story-image img{
width:100%;
height:auto;
border-radius:4px;
box-shadow:0 20px 50px rgba(0,0,0,0.08);
}

/* Story text */
.story-content{
font-family:"Georgia", serif;
font-size:18px;
line-height:1.9;
color:#333;
text-align:left;
max-width:720px;
margin:auto;
}

/* Paragraph spacing */
.story-content p{
margin-bottom:26px;
}

/* Drop cap effect */
.story-content p:first-of-type:first-letter{
font-size:64px;
float:left;
line-height:0.9;
padding-right:10px;
font-family:"Playfair Display", serif;
color:#c5b7a2;
}

/* Decorative divider */
.story-content:before{
content:"";
display:block;
width:80px;
height:1px;
background:#d6cec2;
margin:40px auto;
}

/* ===============================
   BACK TO STORIES BUTTON
   =============================== */

.story-back{
margin-top:60px;
text-align:center;
}

.story-back a{
display:inline-block;
padding:14px 28px;
border:1px solid #1a1a1a;
text-decoration:none;
font-size:14px;
letter-spacing:1px;
color:#1a1a1a;
transition:all .3s ease;
}

.story-back a:hover{
background:#1a1a1a;
color:#fff;
}

/* ===============================
   RESPONSIVE
   =============================== */

@media (max-width:768px){

.story-title{
font-size:36px;
}

.story-content{
font-size:16px;
}

.story-content p:first-of-type:first-letter{
font-size:48px;
}

}























/* 
 * ─────────────────────────────────────────────────────────────────
 *  FOOTER CSS  —  paste into your style.css (or child theme)
 * ─────────────────────────────────────────────────────────────────
 *
 * Design tokens (already defined in your main style.css):
 *   --color-footer-bg : #1e1a10   (very dark olive-brown)
 *   --color-white     : #ffffff
 *   --color-gold      : #b8975a
 *   --color-gold-light: #d4b87a
 *   --font-serif      : 'Cormorant Garamond', Georgia, serif
 *   --font-sans       : 'Jost', sans-serif
 *
 * ───────────────────────────────────────────────────────────────── */

/* // ── Newsletter Section ─────────────────────────────────────────── // */
.newsletter-section {
    background : #f5f0e4;
    padding    : 5.5rem 5vw;
    text-align : center;
}
.newsletter-section__inner {
    max-width : 560px;
    margin    : 0 auto;
}
.newsletter-section__eyebrow {
    display        : block;
    font-family    : var(--font-sans);
    font-size      : 0.65rem;
    font-weight    : 500;
    letter-spacing : 0.3em;
    text-transform : uppercase;
    color          : var(--color-gold);
    margin-bottom  : 0.9rem;
}
.newsletter-section__title {
    font-family   : var(--font-serif);
    font-size     : clamp(1.9rem, 3vw, 2.8rem);
    font-weight   : 300;
    color         : #2c2416;
    margin-bottom : 0.8rem;
    line-height   : 1.2;
}
.newsletter-section__sub {
    font-family   : var(--font-sans);
    font-size     : 0.85rem;
    color         : #6b5c42;
    line-height   : 1.75;
    margin-bottom : 2rem;
}
.newsletter-form {
    display        : flex;
    border         : 1px solid #d9d0bb;
    background     : #fff;
    overflow       : hidden;
    max-width      : 420px;
    margin         : 0 auto;
}
.newsletter-form__input {
    flex       : 1;
    padding    : 0.85rem 1.2rem;
    border     : none;
    outline    : none;
    font-size  : 0.83rem;
    color      : #4a3f2f;
    background : transparent;
}
.newsletter-form__input::placeholder { color: #9e8f78; }
.newsletter-form__btn {
    padding        : 0.85rem 1.6rem;
    background     : #2c2416;
    color          : #fff;
    border         : none;
    font-family    : var(--font-sans);
    font-size      : 0.68rem;
    font-weight    : 500;
    letter-spacing : 0.18em;
    text-transform : uppercase;
    cursor         : pointer;
    transition     : background 0.25s ease;
    flex-shrink    : 0;
}
.newsletter-form__btn:hover { background: #b8975a; }

/* // ── Site Footer ────────────────────────────────────────────────── // */
.site-footer {
    background : #262a1e;          
    color      : rgba(255,255,255,0.5);
    font-family: var(--font-sans);
}
.site-footer__inner {
    max-width : 1280px;
    margin    : 0 auto;
    padding   : 5rem 5vw 2.5rem;
}

/* // Brand block — centered */
.footer__brand-block {
    text-align    : center;
    margin-bottom : 4rem;
}
.footer__brand-name {
    display        : block;
    font-family    : var(--font-serif);
    font-size      : 2.4rem;
    font-weight    : 300;
    letter-spacing : 0.12em;
    color          : rgba(255,255,255,0.88);
    margin-bottom  : 0.4rem;
}
.footer__brand-block .custom-logo {
    max-height    : 48px;
    width         : auto;
    margin        : 0 auto 0.5rem;
    filter        : brightness(0) invert(1) opacity(0.85);
}
.footer__brand-tagline {
    font-size      : 0.72rem;
    letter-spacing : 0.2em;
    text-transform : uppercase;
    color          : rgba(255,255,255,0.35);
    margin         : 0;
}

/* // 5-column nav grid */
.footer__nav-grid {
    display               : grid;
    grid-template-columns : repeat(5, 1fr);
    gap                   : 1rem 2rem;
    margin-bottom         : 4rem;
}
.footer__col-title {
    font-family    : var(--font-sans);
    font-size      : 0.62rem;
    font-weight    : 500;
    letter-spacing : 0.28em;
    text-transform : uppercase;
    color          : rgba(255,255,255,0.55);
    margin-bottom  : 1.4rem;
}
.footer__col-links {
    list-style : none;
    padding    : 0;
    margin     : 0;
    display    : flex;
    flex-direction : column;
    gap        : 0.75rem;
}
.footer__col-links li a,
.footer__col-links a {
    font-size      : 0.82rem;
    font-weight    : 300;
    color          : rgba(255,255,255,0.42);
    text-decoration: none;
    transition     : color 0.2s ease;
    display        : block;
}
.footer__col-links li a:hover,
.footer__col-links a:hover {
    color: rgba(255,255,255,0.82);
}

/* // Divider */
.footer__divider {
    border-top    : 1px solid rgba(255,255,255,0.08);
    margin-bottom : 2rem;
}

/* // Bottom bar — 3-col layout */
.footer__bottom {
    display         : grid;
    grid-template-columns: 1fr auto 1fr;
    align-items     : center;
    gap             : 1rem;
}
.footer__copyright {
    font-size : 0.75rem;
    color     : rgba(255,255,255,0.28);
    margin    : 0;
    white-space: nowrap;
}
.footer__social {
    display    : flex;
    align-items: center;
    gap        : 2rem;
    justify-content: center;
}
.footer__social-link {
    font-size      : 0.62rem;
    font-weight    : 500;
    letter-spacing : 0.22em;
    text-transform : uppercase;
    color          : rgba(255,255,255,0.4);
    text-decoration: none;
    transition     : color 0.2s ease;
}
.footer__social-link:hover { color: rgba(255,255,255,0.85); }
.footer__legal {
    display         : flex;
    align-items     : center;
    gap             : 1.5rem;
    justify-content : flex-end;
}
.footer__legal-link {
    font-size      : 0.75rem;
    color          : rgba(255,255,255,0.28);
    text-decoration: none;
    transition     : color 0.2s ease;
    white-space    : nowrap;
}
.footer__legal-link:hover { color: rgba(255,255,255,0.7); }

/* // ── Responsive ─────────────────────────────────────────────────── // */
@media (max-width: 1024px) {
    .footer__nav-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem 2rem;
    }
}
@media (max-width: 768px) {
    .footer__nav-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem 1.5rem;
    }
    .footer__bottom {
        grid-template-columns : 1fr;
        text-align            : center;
        gap                   : 1.2rem;
    }
    .footer__legal { justify-content: center; }
    .footer__copyright { text-align: center; }
}
@media (max-width: 480px) {
    .footer__nav-grid { grid-template-columns: 1fr 1fr; }
    .footer__social   { gap: 1.2rem; }
}

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