/* ============ TRUST STRIP ============ */
.trust-strip { background: var(--white); padding: 46px 0; border-bottom: 1px solid var(--linen); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.trust-item { display: flex; align-items: center; gap: 14px; justify-content: center; text-align: left; }
.trust-item svg { width: 26px; height: 26px; color: var(--brass); flex-shrink: 0; }
.trust-item span {
  font-size: 12.5px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-soft);
  font-weight: 500;
}
@media (max-width: 900px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}


/* ============ WHY BRIDES CHOOSE US (4-pillar) ============ */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 44px; }
.why-pillar { text-align: center; }
.why-icon { display: inline-flex; }
.why-icon svg { width: 34px; height: 34px; color: var(--brass); }
.why-pillar h3 { font-size: 21px; font-weight: 400; margin: 18px 0 10px; }
.why-pillar p { font-size: 14px; color: var(--ink-soft); line-height: 1.7; max-width: 250px; margin: 0 auto; }
@media (max-width: 1100px) { .why-grid { grid-template-columns: repeat(2, 1fr); gap: 50px 40px; } }
@media (max-width: 600px) { .why-grid { grid-template-columns: 1fr; gap: 40px; } }


/* ============ EMAIL CAPTURE (homepage "Style Notes") ============ */
.email-capture .capture-inner { max-width: 600px; margin: 0 auto; text-align: center; }
.email-capture h2 { font-size: clamp(30px, 3.6vw, 44px); font-weight: 400; margin-bottom: 16px; }
.email-capture p { font-size: 16px; color: var(--terracotta-rose); margin-bottom: 30px; }
.capture-form { position: relative; display: flex; gap: 12px; max-width: 480px; margin: 0 auto; }
.capture-form input[type="email"] {
  flex: 1; border: none; border-bottom: 1px solid var(--border-light); background: transparent;
  font-family: var(--font-body); font-size: 15px; color: var(--espresso); padding: 13px 2px;
  transition: border-color var(--transition-normal);
}
.capture-form input[type="email"]::placeholder { color: var(--placeholder); }
.capture-form input[type="email"]:focus { outline: none; border-color: var(--terracotta-rose); }
.capture-form button {
  background: var(--espresso); color: var(--white); padding: 14px 34px; border-radius: 2px;
  font-size: 11.5px; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 500;
  transition: background var(--transition-normal), transform var(--transition-normal); white-space: nowrap;
}
.capture-form button:hover:not(:disabled) { background: var(--terracotta-rose); transform: translateY(-2px); }
.capture-form button:disabled { opacity: 0.7; cursor: not-allowed; }
.capture-status { position: absolute; top: calc(100% + 10px); left: 0; right: 0; font-size: 13px; display: none; }
.capture-status.show { display: block; }
.capture-status.success { color: var(--success); }
.capture-status.error { color: var(--error); }
@media (max-width: 600px) {
  .capture-form { flex-direction: column; }
  .capture-status { position: static; margin-top: 12px; }
}


/* ============ SECTION GENERAL ============ */
section { padding: 130px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 68px; }
.section-head h2 { font-size: clamp(32px, 4vw, 50px); font-weight: 400; margin-bottom: 18px; }
.section-head p { font-size: 16px; color: var(--terracotta-rose); font-weight: 300; }
.bg-linen { background: var(--linen); }
.bg-white { background: var(--white); }
.bg-parchment { background: var(--parchment); }


/* ============ COLLECTION GRID (catalog style) ============ */
.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.cat-card { cursor: pointer; }
.cat-card-img {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 3px;
  margin-bottom: 20px;
  background: var(--linen);
}
.cat-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s cubic-bezier(.19,1,.22,1); }
.cat-card:hover .cat-card-img img { transform: scale(1.07); }
.cat-card-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(51,37,30,0.16) 100%);
  opacity: 0; transition: opacity 0.4s ease;
}
.cat-card:hover .cat-card-img::after { opacity: 1; }
.cat-card-meta { display: flex; align-items: baseline; justify-content: space-between; }
.cat-card h3 { font-size: 22px; font-weight: 400; }
.cat-card .cat-arrow {
  font-size: 16px; color: var(--brass); opacity: 0; transform: translateX(-6px);
  transition: all 0.35s ease;
}
.cat-card:hover .cat-arrow { opacity: 1; transform: translateX(0); }
.cat-card-sub { font-size: 12.5px; color: var(--terracotta-rose); margin-top: 4px; letter-spacing: 0.03em; }

@media (max-width: 1100px) { .collection-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .collection-grid { grid-template-columns: 1fr; } }

.section-cta-row { text-align: center; margin-top: 56px; }

/* Lead-time note near CTAs (shared: homepage + collection pages) */
.leadtime-note {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--terracotta-rose); margin-top: 22px;
}
.leadtime-note svg { width: 16px; height: 16px; color: var(--brass); flex-shrink: 0; }
.leadtime-note.centered { justify-content: center; }


/* ============ ATELIER SHOWCASE (replaces old swatch grid) ============ */
.atelier-showcase { overflow: hidden; }

/* --- Editorial intro block: image left, content right --- */
.showcase-intro {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  margin-bottom: 120px;
}
.showcase-intro-img { position: relative; border-radius: 6px; overflow: hidden; box-shadow: var(--shadow-deep); }
.showcase-intro-img img {
  width: 100%; height: auto; aspect-ratio: 4/5; object-fit: cover;
  transition: transform 1.2s cubic-bezier(.2,.8,.2,1);
}
.showcase-intro-img:hover img { transform: scale(1.06); }
.showcase-badge {
  position: absolute; bottom: 26px; left: 26px;
  background: rgba(255,255,255,0.94); backdrop-filter: blur(6px);
  padding: 12px 22px; border-radius: 30px;
  font-family: var(--font-display); font-style: italic; font-size: 14px; color: var(--terracotta-rose);
  display: flex; align-items: center; gap: 8px;
}
.showcase-badge svg { width: 14px; height: 14px; color: var(--brass); }

.showcase-content .eyebrow { margin-bottom: 16px; }
.showcase-content h2 { font-size: clamp(32px, 4vw, 50px); line-height: 1.14; margin-bottom: 24px; }
.showcase-content p { font-size: 16.5px; color: var(--ink-soft); max-width: 460px; margin-bottom: 32px; }
.showcase-cta {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--espresso);
  font-weight: 500; padding-bottom: 6px; border-bottom: 1px solid var(--espresso);
  transition: gap 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.showcase-cta:hover { gap: 16px; color: var(--terracotta-rose); border-color: var(--terracotta-rose); }
.showcase-cta svg { width: 15px; height: 15px; transition: transform 0.3s ease; }
.showcase-cta:hover svg { transform: translateX(3px); }

@media (max-width: 900px) {
  .showcase-intro { grid-template-columns: 1fr; gap: 40px; margin-bottom: 80px; }
}

/* --- Filterable atelier gallery --- */
.gallery-block { margin-bottom: 110px; }
.gallery-filters {
  display: flex; justify-content: center; align-items: center; flex-wrap: wrap;
  gap: 8px 34px; margin-bottom: 52px;
}
.gallery-filter {
  font-size: 12.5px; letter-spacing: 0.18em; text-transform: uppercase;
  color: #A8988B; padding: 6px 2px; position: relative;
  transition: color 0.3s ease;
}
.gallery-filter::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 1px; width: 0%;
  background: var(--terracotta-rose); transition: width 0.35s ease;
}
.gallery-filter:hover { color: var(--ink-soft); }
.gallery-filter.active { color: var(--espresso); font-weight: 500; }
.gallery-filter.active::after { width: 100%; }

.gallery-masonry { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery-item {
  position: relative; display: block; aspect-ratio: 4 / 5;
  overflow: hidden; border-radius: 4px;
  opacity: 1; transform: scale(1); transition: opacity 0.45s ease, transform 0.45s ease;
}
.gallery-item.is-hidden { display: none; }
.gallery-item.is-fading { opacity: 0; transform: scale(0.96); }
.gallery-item img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.9s cubic-bezier(.2,.8,.2,1);
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item .gallery-caption {
  position: absolute; inset: 0; display: flex; align-items: flex-end;
  padding: 20px; color: var(--white);
  background: linear-gradient(180deg, transparent 55%, rgba(28,20,16,0.66) 100%);
  opacity: 0; transition: opacity 0.4s ease;
}
.gallery-item:hover .gallery-caption { opacity: 1; }
.gallery-caption span {
  font-family: var(--font-display); font-style: italic; font-size: 17px;
}

@media (max-width: 900px) { .gallery-masonry { grid-template-columns: repeat(2, 1fr); gap: 14px; } }
@media (max-width: 540px) { .gallery-masonry { grid-template-columns: 1fr; } .gallery-filters { gap: 6px 20px; } }

/* --- Editorial quote --- */
.atelier-quote {
  text-align: center; max-width: 780px; margin: 0 auto; padding: 0 20px;
}
.atelier-quote svg { width: 32px; height: 32px; color: var(--brass); margin-bottom: 24px; opacity: 0.7; }
.atelier-quote p {
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: clamp(22px, 2.6vw, 30px); line-height: 1.5; color: var(--espresso);
}
.atelier-quote .quote-sig { margin-top: 22px; font-family: var(--font-body); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--terracotta-rose); font-style: normal; }


/* ============ SPLIT SECTIONS (Consultation / Story) ============ */
.split-section { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 90px; }
.split-section.reverse .split-img { order: 2; }
.split-section.reverse .split-copy { order: 1; }
.split-img { position: relative; border-radius: 3px; overflow: hidden; }
.split-img img { width: 100%; height: auto; aspect-ratio: 4/5; object-fit: cover; }
.split-img .tag-pill {
  position: absolute; bottom: 26px; left: 26px;
  background: rgba(255,255,255,0.94); backdrop-filter: blur(4px);
  padding: 11px 20px; border-radius: 30px;
  font-family: var(--font-display); font-style: italic; font-size: 14px; color: var(--terracotta-rose);
}
.split-copy h2 { font-size: clamp(30px, 3.6vw, 44px); margin-bottom: 22px; line-height: 1.15; }
.split-copy p { font-size: 16px; color: var(--ink-soft); margin-bottom: 22px; max-width: 480px; }
.split-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 30px; }
.split-list li {
  display: flex; align-items: flex-start; gap: 12px; font-size: 14.5px; color: var(--ink-soft); list-style: none;
}
.split-list svg { width: 18px; height: 18px; color: var(--brass); flex-shrink: 0; margin-top: 2px; }
.sig { font-family: var(--font-display); font-style: italic; font-size: 23px; color: var(--terracotta-rose); margin-top: 18px; }

@media (max-width: 900px) {
  .split-section, .split-section.reverse { grid-template-columns: 1fr; gap: 44px; }
  .split-section.reverse .split-img, .split-section.reverse .split-copy { order: unset; }
}


/* ============ REVIEWS STRIP (compact) ============ */
.reviews-strip { padding: 64px 0; }
.reviews-inner { display: flex; align-items: center; gap: 56px; }
.reviews-rating { flex: 0 0 auto; text-align: center; padding-right: 56px; border-right: 1px solid var(--linen); }
.reviews-rating-link { display: block; transition: opacity var(--transition-normal); }
.reviews-rating-link:hover { opacity: 0.75; }
.reviews-rating .stars { color: var(--brass); font-size: 15px; letter-spacing: 2px; margin-bottom: 8px; }
.reviews-rating .rating-num { font-family: var(--font-display); font-size: 42px; color: var(--espresso); line-height: 1; }
.reviews-rating .rating-num span { font-size: 18px; color: var(--terracotta-rose); }
.reviews-rating .rating-sub { font-size: 12px; letter-spacing: 0.04em; color: var(--terracotta-rose); margin-top: 8px; white-space: nowrap; }
.reviews-rating .rating-cta { font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--brass); margin-top: 10px; font-weight: 500; }
.reviews-quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; flex: 1; }
.quote-chip { font-size: 14px; color: var(--ink-soft); line-height: 1.6; }
.quote-chip p { font-style: italic; font-family: var(--font-display); font-size: 17px; color: var(--espresso); margin-bottom: 8px; }
.quote-chip .quote-attrib { font-size: 11.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--terracotta-rose); }
@media (max-width: 900px) {
  .reviews-inner { flex-direction: column; gap: 30px; }
  .reviews-rating { border-right: none; border-bottom: 1px solid var(--linen); padding-right: 0; padding-bottom: 26px; }
  .reviews-quotes { grid-template-columns: 1fr; text-align: center; }
}


/* ============ CTA BANNER (photo bg) ============ */
.cta-photo-banner { position: relative; padding: 0; overflow: hidden; }
.cta-photo-banner .cta-bg { position: relative; min-height: 480px; display: flex; align-items: center; }
.cta-photo-banner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cta-photo-banner .scrim { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(20,15,12,0.62) 0%, rgba(20,15,12,0.34) 55%, rgba(20,15,12,0.1) 100%); }
.cta-photo-banner .cta-content { position: relative; z-index: 2; max-width: 580px; padding: 60px 0; }
.cta-photo-banner .eyebrow { color: var(--champagne); }
.cta-photo-banner h2 { color: var(--white); font-size: clamp(30px, 3.8vw, 46px); margin-bottom: 18px; }
.cta-photo-banner p { color: var(--text-cream); font-size: 16px; margin-bottom: 30px; max-width: 440px; }
.cta-photo-banner .cta-buttons { display: flex; gap: 16px; flex-wrap: wrap; }


/* ============ JOURNAL (light) ============ */
.journal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; }
.journal-card {
  background: var(--white); border: 1px solid var(--linen); border-radius: 4px; overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.journal-card:hover { transform: translateY(-8px); box-shadow: 0 22px 44px rgba(51,37,30,0.1); }
.journal-card .thumb { height: 230px; overflow: hidden; }
.journal-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.journal-card:hover .thumb img { transform: scale(1.06); }
.journal-body { padding: 28px 26px 32px; }
.journal-meta { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brass); margin-bottom: 12px; }
.journal-card h3 { font-size: 22px; color: var(--espresso); font-weight: 400; margin-bottom: 12px; line-height: 1.28; }
.journal-card p { font-size: 14px; color: #8A7E74; margin-bottom: 18px; }
.read-more { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--terracotta-rose); display: inline-flex; align-items: center; gap: 8px; transition: gap 0.3s ease; }
.journal-card:hover .read-more { gap: 14px; }
@media (max-width: 900px) { .journal-grid { grid-template-columns: 1fr; } }


