/* :root {
  --ink: #2b2b2b;
  --brand: #6c5f53;
  --brand-dark: #3a2e24;
  --accent: #c9a14a;
  --paper: #fff;
  --canvas: #f3f0ed;
} */

:root{
  --base-0:#FAF8F4;   /* page background */
  --ink:#1A1A1A;      /* primary text */
  --ink-2:#333333;    /* secondary text */
  --brand:#5A345B;    /* primary accent */
  --brand-hero:#f9f4f7;
  --brand-600:#472949;/* darker hover */
  --accent:#F68E82;   /* secondary accent */
  --accent-600:#E97C70; /* darker hover */
  --metal:#E8D6A7;    /* thin rules, subtle details */
  --hero-bg:#F4EFE9;  /* hero section background */
  --surface:#FFFFFF;  /* cards, modals */
  --ring:rgba(90,52,91,.35); /* focus outline */
  --radius:14px;
  --shadow:0 8px 24px rgba(0,0,0,.06);
}


* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: Source Sans, Inter, system-ui, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--base-0);
  line-height: 1.6;
  overflow-x: hidden;
  opacity: 0;
  transition: opacity 0.5s ease-in-out; /* page fade */
}

body.fade-in {
  opacity: 1;
}
a {
  color: inherit;
  text-decoration: none;
}
.header{
  background:#fff; 
  border-bottom:1px solid rgba(0,0,0,.06);
}
/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 8%;
  background: #fff;
  border-bottom: 1px solid #eee;
}
.navbar-brand {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--brand);
  white-space: nowrap;
}
.nav-links {
  display: flex;
  gap: 1.25rem;
}
.nav-links a {
  font-weight: 600;
  position: relative;
  padding: 0.25rem 0;
  color: var(--ink);
}
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  bottom: -6px;
  background: var(--accent);
}
.nav-links a:hover {
  color: var(--brand);
}

/* NEW badge on POP Dress */
.nav-links a[href="pop-dress.html"]::after {
  content: "NEW";
  margin-left: 6px;
  background: var(--brand);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  vertical-align: middle;
  animation: popPulse 1.4s ease-in-out infinite;
}
@keyframes popPulse {
  0%,
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  50% {
    opacity: 0.7;
    transform: translateY(-1px) scale(1.06);
  }
}

/* Hamburger */
.hamburger {
  display: none;
  width: 34px;
  height: 24px;
  cursor: pointer;
  position: relative;
  background: none;
  border: none;
}
.hamburger span {
  position: absolute;
  left: 0;
  right: 0;
  height: 3px;
  background: #333;
  border-radius: 2px;
  transition: transform 0.28s ease, opacity 0.28s ease, top 0.28s ease;
}
.hamburger span:nth-child(1) {
  top: 0;
}
.hamburger span:nth-child(2) {
  top: 10.5px;
}
.hamburger span:nth-child(3) {
  top: 21px;
}
.hamburger[aria-expanded="true"] span:nth-child(1) {
  top: 10.5px;
  transform: rotate(45deg);
}
.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.hamburger[aria-expanded="true"] span:nth-child(3) {
  top: 10.5px;
  transform: rotate(-45deg);
}
@media (max-width: 900px) {
  .hamburger {
    display: block;
  }
  .nav-links {
    position: absolute;
    right: 8%;
    top: 64px;
    display: none;
    flex-direction: column;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 1rem;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.08);
  }
  .nav-links.show {
    display: flex;
  }
}

/* PARALLAX on Home */
/* .hero-wrap {
  position: relative;
  isolation: isolate;
  background: var(--canvas);
}
.parallax {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
  perspective: 800px;
}
.layer {
  position: absolute;
  inset: -10vh -10vw;
  background-size: cover;
  background-position: center;
  will-change: transform;
  filter: saturate(0.98);
  opacity: 0;
  transition: opacity 1s ease-out;
}
body.fade-in .layer.back {
  opacity: 0.5;
  transition-delay: 0.1s;
}
body.fade-in .layer.mid {
  opacity: 0.45;
  transition-delay: 0.3s;
}
body.fade-in .layer.front {
  opacity: 0.32;
  transition-delay: 0.5s;
}
.layer.back {
  background-image: linear-gradient(180deg, #f7efe8 0%, #efe6de 100%),
    url("../img/orange-dress-manequin.png");
}
.layer.mid {
  background-image: url("https://images.unsplash.com/photo-1518548419970-58e3b4079ab2?auto=format&fit=crop&w=1600&q=80");
  mix-blend-mode: multiply;
}
.layer.front {
  background-image: url("https://images.unsplash.com/photo-1501862700950-18382cd41497?auto=format&fit=crop&w=1600&q=80");
}

@media (prefers-reduced-motion: reduce) {
  .layer {
    transform: none !important;
    transition: none !important;
  }
} */

/* HERO */
/* .hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 6rem 8% 4rem;
} */
 .hero {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: center;
  height: 90vh;
  background-image: url('../img/hero-index.png');
  background-size: cover;
  background-position: center;
  text-align: left;
  font-size: 2em;
  padding: 4rem 5% 4rem;
}
.hero-text {
  max-width: 560px;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.8s ease-out 0.3s, opacity 0.8s ease-out 0.3s;
}

.section--hero{ 
  background: var(--hero-bg); 
}
.section--surface{ 
  background: var(--surface); box-shadow: var(--shadow); border-radius: var(--radius); 
}
.rule{ 
  height:2px; background: var(--metal); opacity:.7; 
}
body.fade-in .hero-text {
  transform: translateY(0);
  opacity: 1;
}
.hero-buttons {
  display: inline-block;
  font-size: 1rem;
  margin-top: 0.75rem;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.8s ease-out 0.5s, opacity 0.8s ease-out 0.5s;
}
body.fade-in .hero-buttons {
  transform: translateY(0);
  opacity: 1;
}
h1 {
  font-family: "Playfair Display", serif;
  color: var(--brand);
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.hero-text h1 {
  color: var(--brand-hero);
}
h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  color: var(--brand);
  margin-bottom: 0.4em;
}
.hero-text h2 {
  font-family: "Playfair Display", serif;
  color: var(--brand-hero);
  font-size: clamp(1.2rem, 2vw, 2.5rem);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.btn {
  display: inline-block;
  padding: 0.8rem 1.2rem;
  border-radius: var(--radius);
  font-weight: 600;
  border: 1px solid transparent;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .06);
}
.btn:focus-visible {
  outline: 3px solid var(--ring);
  outline-offset: 2px;
}
.btn + .btn {
  margin-left: 0.75rem;
}
.btn-primary{
  background: var(--brand);
  color: #fff;
}
.btn-primary:hover {
  background: var(--brand-600);
}
.hero-buttons.btn-primary {
  margin-right: 6rem;
}
.btn-accent {
  background: var(--accent);
  color: var(--ink);
}
.btn-accent:hover {
background: var(--accent-600);
}
.btn--ghost{
  background: transparent;
  color: var(--brand);
  border-color: var(--brand);
}
.btn--ghost:hover{
  background: rgba(90,52,91,.08);
}

/* Subtle CTA / tag */
.badge{
  background: var(--metal);
  color: var(--ink);
  border-radius: 999px;
  padding:.35rem .7rem;
  font-weight:600;
}
/* .hero-figure {
  max-height: 520px;
  width: auto;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
} */

/* Sections */
.section.pop-feature {
  padding: 3rem 8%;
}
.pop-feature-inner {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 3rem;
  align-items: center;
}
.pop-feature-text h2 {
  font-family: "Playfair Display", serif;
  margin-bottom: 0.5rem;
  color: var(--brand);
}
.pop-points {
  margin: 0.75rem 0 0;
  padding-left: 1.2rem;
  line-height: 1.8;
}
.pop-feature-image img {
  width: 100%;
  display: block;
  border-radius: 12px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
  object-fit: cover;
  max-height: 420px;
}
@media (max-width: 900px) {
  .pop-feature-inner {
    grid-template-columns: 1fr;
  }
  .pop-feature-image img {
    max-height: 360px;
  }
}
.featured-gallery {
  margin-top: 3rem;
}
.how-we-work {
  padding: 3rem 8%;
}
.hww-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: center;
}
.how-we-work h2 {
  font-family: "Playfair Display", serif;
  margin-bottom: 0.5rem;
  color: var(--brand);
}
.how-we-work.steps {
  margin: 1rem 0 1.25rem;
  padding-left: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem 0.75rem;
}
/* .hww-steps li {
  display: flex;
  align-items: center;
  gap: 0.5rem; */
}
.hww-num {
  width: 28px;
  height: 28px;
  line-height: 28px;
  border-radius: 50%;
  text-align: center;
  font-weight: 700;
  background: var(--canvas);
  border: 1px solid #eee;
  color: var(--brand);
  flex-shrink: 0;
}
.hww-cta {
  margin-top: 0.5rem;
}
/* .hww-card {
  position: relative;
  background: linear-gradient(180deg, #fff, #faf6f1);
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 2rem;
  min-height: 220px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}
.hww-line {
  position: absolute;
  top: 50px;
  left: 24px;
  right: 24px;
  height: 4px;
  background: #eee; */
}
/* .hww-dot {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-right: 10px;
  margin-top: 22px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
}
.hww-note {
  margin-top: 1rem;
  color: #555;
  font-size: 0.95rem;
} */
@media (max-width: 900px) {
  .hww-inner {
    grid-template-columns: 1fr;
  }
  .hww-steps {
    grid-template-columns: 1fr;
  }
}

/* Page hero (used on subpages) */
.page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  color: var(--brand);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}
.page-hero h1 {
  color: var(--brand-hero);
  position: relative;
  z-index: 1;
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 5vw, 3rem);
  transform: translateY(15px);
  opacity: 0;
  transition: transform 0.8s ease-out 0.2s, opacity 0.8s ease-out 0.2s;
}
body.fade-in .page-hero h1 {
  transform: translateY(0);
  opacity: 1;
}

/* Generic content */
.intro {
  text-align: center;
  padding: 3rem 2rem;
  font-size: 1.15rem;
}
.intro em {
  font-family: "Playfair Display", serif;
  font-style: italic;
}
.process-section {
  text-align: center;
  padding: 3rem 2rem;
  font-size: 1.15rem;
}
.featured-works {
  text-align: center;
  padding: 2rem;
}
.featured-works h2 {
  font-family: "Playfair Display", serif;
  margin-bottom: 0.5rem;
  color: var(--brand);
}
.featured-gallery {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.card {
  max-width: 210px;
  border: 1px solid rgba(90,52,91,.12);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}
.card img {
  width: 100%;
  border-radius: 10px;
}
.card p {
  margin-top: 0.6rem;
  font-weight: 700;
}
.how-it-works {
  text-align: center;
  padding: 3rem 1rem;
}
.how-it-works h2 {
  font-family: "Playfair Display", serif;
  margin-bottom: 0.5rem;
  color: var(--brand);
}
.how-it-works h3 {
  font-size: 1rem;
  margin-bottom: 3rem;
}
.steps {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
}
.step img {
  width: 40px;
  margin-bottom: 0.5rem;
}
.footer-note {
  text-align: center;
  font-size: 0.95rem;
  color: #555;
  padding: 2.25rem 1rem;
}
.footer-note a {
  text-decoration: underline;
}

/* Gallery grid (gallery.html) */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  padding: 3rem 8%;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img {
  transform: scale(1.08);
}
.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: 0.75rem;
  font-size: 0.95rem;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-caption {
  opacity: 1;
}

/* POP Dress 3-image strip */
.image-strip {
  padding: 2rem 28% 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
.image-strip .gallery-item {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}
.image-strip .gallery-item img {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover;
}
.image-strip .gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  padding: 0.6rem;
  font-size: 0.95rem;
  text-align: center;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.image-strip .gallery-item:hover .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 900px) {
  .image-strip {
    grid-template-columns: 1fr 1fr;
  }
  .image-strip .gallery-item img {
    height: 220px;
  }
}
@media (max-width: 560px) {
  .image-strip {
    grid-template-columns: 1fr;
    padding: 0.75rem 6% 0;
  }
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.show {
  opacity: 1;
  pointer-events: all;
}
.lightbox img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  color: #fff;
  font-size: 2rem;
  background: rgba(0, 0, 0, 0.4);
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  cursor: pointer;
  user-select: none;
}
.lightbox-close {
  top: 20px;
  right: 30px;
}
.lightbox-prev {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.lightbox-next {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.2);
}
.lightbox-label {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  font-size: 0.9rem;
  max-width: 90%;
  text-align: center;
  text-decoration: none;
  transition: opacity 0.35s ease, background 0.3s ease;
  opacity: 0;
  pointer-events: none;
}
.lightbox-label.visible {
  opacity: 1;
  pointer-events: auto;
}
.lightbox-label:hover {
  background: rgba(0, 0, 0, 0.75);
}

/* Balloon loader */
.lightbox-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.balloon {
  width: 30px;
  height: 40px;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  position: relative;
  animation: float 1.5s ease-in-out infinite;
  transition: background 0.6s ease;
}
.balloon::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 2px;
  height: 12px;
  background: #555;
  transform: translateX(-50%);
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-10px) rotate(2deg);
  }
}

/* FAQ page basics */
.faq-section {
  margin-left: 10%;
  margin-top: 3rem;
}
.faq details {
  border-bottom: 1px solid #eee;
  padding: 1rem 0;
}
.faq summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  font-size: 1.05rem;
  position: relative;
  padding-right: 1.5rem;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}
details[open] summary::after {
  content: "–";
  transform: rotate(180deg);
}
.faq p {
  margin-top: 0.6rem;
  line-height: 1.7;
}
@media (min-width: 720px){
  .answer-inner.gallery { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 12px; 
  }
}


/* Contact page theme */
.page-hero {
  color: #fff;
  text-align: center;
  padding: 4rem 8%;
  margin-bottom: 3rem;
}
.honeypot {
  display: none;
}
/* Contact card */
.contact-section{
  max-width: 860px;
  margin: 0 auto 3.5rem;
  padding: 2.2rem clamp(1.2rem, 4vw, 2.4rem);
  background: linear-gradient(#fff, #fff);
  border-radius: var(--radius);
  border:1px solid #EBEEF2;
  box-shadow: var(--shadow);
  position:relative;
}

/* Champagne accent rail (matches FAQ) */
.contact-section::before{
  content:"";
  position:absolute; inset:0 auto 0 0;
  width:6px; border-radius: var(--radius) 0 0 var(--radius);
  background: var(--metal);
}

/* Optional very soft Mulberry blush */
.contact-section::after{
  content:"";
  position:absolute; right:-50px; top:-60px;
  width:220px; height:220px; border-radius:50%;
  background: radial-gradient(circle at 30% 30%, rgba(90,52,91,.10), rgba(90,52,91,.0) 70%);
  z-index:0;
}

.contact-section *{ position:relative; z-index:1; }

.contact-section h2{
  font-family:"Playfair Display", serif;
  font-weight:600;
  margin:0 0 .35rem;
  color: var(--brand);
}
.contact-section .intro{
  color: var(--muted);
  margin: 0 0 1.2rem;
  line-height:1.6;
}

/* Layout helpers */
.grid-2{
  display:grid; gap: 1rem;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 760px){
  .grid-2{ grid-template-columns: 1fr; }
}

/* Fields */
.field{ }
label{
  display:block; font-weight:600; color:var(--ink);
  margin-top: .6rem;
}
.req{ color: var(--brand); margin-left: .25rem; }

input, textarea, select{
  width:100%;
  padding: .7rem .8rem;
  margin-top:.45rem;
  border:1px solid #E3E6EA;
  border-radius:8px;
  font: 400 1rem/1.4 Inter, system-ui, sans-serif;
  background:#fff;
  transition: border-color .25s ease, box-shadow .25s ease;
}
input:hover, textarea:hover, select:hover{
  border-color:#D5DAE0;
}
input:focus, textarea:focus, select:focus{
  outline: 0;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(90,52,91,.22); /* Mulberry ring */
}

/* Textarea */
textarea{ resize:vertical; min-height: 160px; }

/* Help text */
.help{ display:block; color:var(--muted); margin-top:.45rem; font-size:.9rem; }

/* Button — primary action in Champagne for contrast */
.btn-submit{
  background: var(--metal);
  color:#1A1A1A;
  border: 1px solid var(--metal);
  padding: .85rem 1.35rem;
  font: 700 1rem/1 Inter, system-ui, sans-serif;
  border-radius: 10px;
  cursor:pointer;
  margin-top: 1.2rem;
  transition: transform .05s ease, filter .25s ease, box-shadow .25s ease;
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
}
.btn-submit:hover{ filter: brightness(.97); }
.btn-submit:active{ transform: translateY(1px); }

/* === Validation Styles === */

/* Base state for error and success messages */
.form-message {
  margin-top: .4rem;
  font-size: .9rem;
  line-height: 1.4;
}

/* Error text */
.error-text {
  color: #c0392b; /* Rich red */
}

/* Success text */
.success-text {
  color: #2e7d32; /* Deep green */
}

/* Input error state */
input.error,
textarea.error,
select.error {
  border-color: #c0392b;
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.15);
}

/* Input success state */
input.success,
textarea.success,
select.success {
  border-color: #2e7d32;
  box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.15);
}

/* Shake animation for invalid submit */
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-4px); }
  40%, 80% { transform: translateX(4px); }
}
.shake {
  animation: shake 0.4s ease;
}
.contact-quick{
  display:flex; align-items:center; gap:14px; flex-wrap:wrap;
  margin: 1rem 0 1.2rem;
}

.btn-ghost{
  background: transparent;
  color: var(--brand);
  border:1px solid var(--metal);
  padding:.55rem .9rem;
  border-radius:10px;
  font:700 .95rem/1 Inter, system-ui, sans-serif;
  cursor:pointer;
}

.socials a{
  display:inline-flex; align-items:center; justify-content:center;
  width:38px; height:38px; border-radius:8px; border:1px solid #EBEEF2;
  background:#fff;
  transition: transform .12s ease, box-shadow .2s ease;
}
.socials a:hover{ transform: translateY(-1px); box-shadow: 0 6px 16px rgba(0,0,0,.08); }
.socials svg{ width:20px; height:20px; fill:#30343a; }


.divider {
  font-family: "Playfair Display", serif;
  color: var(--brand);
  font-size: 2rem;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
}

.divider::before, .divider::after {
  flex: 1;
  content: '';
  padding: 2px;
  background-color: var(--metal);
  margin: 15px;
}
.section-divider {
  height: 3px;
  background: var(--metal);
  opacity: 0.7;
  margin: 2rem auto;
  width: 100px;
  border-radius: 999px;
}
.section-card {
  background: var(--surface);   /* white or ivory tone */
  padding: 3rem 2rem;           /* space inside the card */
  border-radius: var(--radius); /* matches your brand rounding */
  box-shadow: var(--shadow);    /* soft elevation */
  margin: 0 auto 3rem auto;     /* centers & adds spacing below */
  max-width: 1100px;            /* keeps it readable */
}

.section-card h2, 
.section-card h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  color: var(--brand); /* Mulberry headings */
  margin-top: 0;
}

.section-card p {
  color: var(--ink); /* Charcoal body text */
  line-height: 1.7;
}
.dress-story {
  text-align: center;
  margin: 4rem auto;
  max-width: 1000px;
  padding: 0 1rem;
}

.dress-story h2 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: var(--brand);
}

.dress-story .intro-text {
  font-family: Inter, sans-serif;
  font-size: 1.125rem;
  color: var(--ink);
  margin-bottom: 2rem;
}

.thumbnail-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
}

.thumbnail-gallery figure {
  margin: 0;
}

.thumbnail-gallery img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  display: block;
}

.thumbnail-gallery figcaption {
  font-size: 0.85rem;
  color: var(--ink);
  margin-top: 0.4rem;
  opacity: 0.85;
}
.about-designer-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-image img {
  max-width: 300px; /* limit size */
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin: 0 auto; /* center in mobile view */
}

.about-image figcaption {
  font-family: Inter, sans-serif;
  font-size: 0.85rem;
  color: var(--ink);
  margin-top: 0.4rem;
  text-align: center;
  opacity: 0.8;
}

@media (min-width: 768px) {
  .about-designer-content {
    flex-direction: row;
    align-items: flex-start;
  }
  .about-text {
    flex: 2; /* give text more space */
  }
  .about-image {
    flex: 1;
    text-align: center;
  }
}
