/* =====================================================================
   MAISON AUREL — Style Sheet (Artful Tailoring Inspired)
   Clean light background · navy footer · serif headings · gold accents
   ===================================================================== */

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  /* Colors */
  --white:        #ffffff;
  --off-white:    #f8f6f2;
  --cream:        #f2ede5;
  --light-gray:   #eeebe5;
  --mid-gray:     #c5bfb4;
  --text-dark:    #1a1814;
  --text-body:    #3d3830;
  --text-muted:   #7a7368;
  --gold:         #b89a5e;
  --gold-dark:    #8a7040;
  --gold-light:   #d4b97e;
  --navy:         #0f1624;
  --navy-mid:     #1a2540;
  --navy-light:   #243150;
  --black:        #0e0d0b;

  /* Typography */
  --font-serif:   'Bodoni Moda', Georgia, serif;
  --font-sans:    'Manrope', 'Helvetica Neue', sans-serif;

  /* Spacing */
  --section-pad:  3.5rem 0;
  --container:    1200px;

  /* Transitions */
  --ease:         cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --dur:          0.35s;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--white);
  color: var(--text-dark);
  font-family: var(--font-sans);
  font-weight: 500;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

/* Fills the full viewport width, no max-width cap — used where a section
   should stretch edge to edge like the About/Service Details photo sections. */
.container-fluid {
  width: 100%;
  margin: 0 auto;
  padding: 0 3rem;
}

/* ===== HEADER / NAVBAR ===== */
#header {
  position: sticky; top: 0; z-index: 100;
}

#navbar {
  background: var(--white);
  border-bottom: 1px solid var(--light-gray);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 3rem;
  height: 80px;
  transition: box-shadow var(--dur) var(--ease);
}
#header.scrolled #navbar {
  box-shadow: 0 2px 20px rgba(15,22,36,0.08);
}

/* Logo */
.nav-logo { display: flex; flex-direction: row; align-items: center; gap: 0.7rem; }
.nav-logo-mark { height: 40px; width: auto; display: block; }
.nav-logo-text { display: flex; flex-direction: column; gap: 2px; }
.logo-wordmark {
  font-family: var(--font-serif);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.1em;
  color: var(--navy);
  transition: color var(--dur) var(--ease);
}
.logo-wordmark:hover { color: var(--gold); }
.logo-sub {
  font-size: 0.6rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-muted);
}

/* Nav Links */
.nav-links {
  display: flex; align-items: center; gap: 0.5rem;
}
.nav-links > li { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: 0.25rem;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-body);
  padding: 0.5rem 0.9rem;
  transition: color var(--dur) var(--ease);
}
.nav-link:hover { color: var(--navy); }
.chevron { font-size: 0.8rem; transition: transform var(--dur) var(--ease); }
.has-dropdown:hover .chevron { transform: rotate(90deg); }

/* Dropdown */
.dropdown {
  position: absolute; top: calc(100% + 8px); left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--light-gray);
  box-shadow: 0 8px 30px rgba(15,22,36,0.1);
  min-width: 210px;
  opacity: 0; visibility: hidden;
  transform: translateX(-50%) translateY(-6px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease), visibility var(--dur);
}
.has-dropdown:hover .dropdown {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown li a {
  display: block;
  padding: 0.75rem 1.4rem;
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.06em;
  color: var(--text-body);
  border-bottom: 1px solid var(--light-gray);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease), padding-left var(--dur) var(--ease);
}
.dropdown li:last-child a { border-bottom: none; }
.dropdown li a:hover { background: var(--off-white); color: var(--navy); padding-left: 1.8rem; }

/* Nav CTA */
.btn-nav-cta {
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
  padding: 0.7rem 1.6rem;
  background: var(--navy);
  color: var(--white);
  border: 2px solid var(--navy);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
  white-space: nowrap;
}
.btn-nav-cta:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }

/* Mobile Toggle */
.mobile-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.mobile-toggle span { width: 22px; height: 1.5px; background: var(--navy); display: block; transition: var(--dur) var(--ease); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed; inset: 0; z-index: 999;
  background: var(--white);
  flex-direction: column; align-items: center; justify-content: center; gap: 1.5rem;
  transform: translateX(100%); transition: transform 0.5s var(--ease);
}
.mobile-menu.open { transform: none; }
.mobile-close {
  position: absolute; top: 1.5rem; right: 2rem;
  background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--text-dark);
}
.mobile-logo-mark { height: 64px; width: auto; margin-bottom: 0.8rem; }
.mobile-logo {
  font-family: var(--font-serif); font-weight: 800;
  letter-spacing: 0.1em; font-size: 1.2rem; color: var(--navy);
  margin-bottom: 1rem;
}
.mobile-nav { display: flex; flex-direction: column; gap: 1.5rem; text-align: center; }
.mobile-nav a {
  font-family: var(--font-serif); font-size: 1.7rem; font-weight: 600;
  color: var(--text-dark); transition: color var(--dur) var(--ease);
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-cta-btn { margin-top: 1rem; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  border: 2px solid var(--navy);
  cursor: pointer;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.btn-primary:hover { background: transparent; color: var(--navy); transform: translateY(-2px); }

.btn-outline {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  background: transparent;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.74rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.55);
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); transform: translateY(-2px); }

.btn-gold {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  border: 2px solid var(--gold);
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); transform: translateY(-2px); }

.btn-outline-light {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  background: transparent;
  color: rgba(255,255,255,0.85);
  font-family: var(--font-sans);
  font-size: 0.74rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.4);
  transition: all var(--dur) var(--ease);
}
.btn-outline-light:hover { border-color: rgba(255,255,255,0.9); color: var(--white); transform: translateY(-2px); }

.text-link {
  font-size: 0.76rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--navy);
  border-bottom: 1px solid var(--mid-gray);
  padding-bottom: 2px;
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease);
  display: inline-block;
}
.text-link:hover { color: var(--gold); border-color: var(--gold); }

/* ===== SECTION TYPOGRAPHY ===== */
.section-eyebrow {
  font-family: var(--font-sans); font-weight: 600;
  font-size: 0.7rem; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.75rem; display: block;
}
.section-eyebrow.light { color: var(--gold-light); }

.section-title {
  font-family: var(--font-serif); font-weight: 600;
  font-size: clamp(2rem, 4vw, 2.8rem); line-height: 1.2;
  color: var(--text-dark);
}
.section-title em { font-style: italic; }
.section-title.light { color: var(--white); }

.title-rule {
  width: 50px; height: 2px;
  background: var(--gold); margin: 1.2rem 0 1.5rem;
}
.title-rule.light { background: var(--gold-light); }

.body-text {
  font-size: 1rem; line-height: 1.85; color: var(--text-body);
  margin-bottom: 1.2rem;
}
.body-text.light { color: rgba(255,255,255,0.8); }

.feature-list { margin: 1.2rem 0 2rem; }
.feature-list li {
  font-size: 0.92rem; color: var(--text-body); padding: 0.5rem 0;
  border-bottom: 1px solid var(--light-gray);
  padding-left: 1.2rem; position: relative;
}
.feature-list li::before {
  content: '—'; position: absolute; left: 0; color: var(--gold); font-weight: 600;
}

/* ===== REVEAL ANIMATION ===== */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 92vh;
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--navy);
}

.hero-image-wrap {
  position: absolute; inset: 0;
}

.hero-bg {
  position: absolute; inset: 0;
  background-image: url('images/hero.jpg');
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
}

/* Standalone service page heroes — each gets its own photo, distinct
   from the about-split photo further down the same page. */
.hero-bg-custom {
  position: absolute; inset: 0;
  background-image: url('images/alterations2.jpg');
  background-size: cover; background-position: center;
  background-repeat: no-repeat;
}
.hero-bg-alter {
  position: absolute; inset: 0;
  background-image: url('images/alterations.jpg');
  background-size: cover; background-position: center;
  background-repeat: no-repeat;
}
.hero-bg-ready {
  position: absolute; inset: 0;
  background-image: url('images/svc-ready.jpg');
  background-size: cover; background-position: center;
  background-repeat: no-repeat;
}
.hero-bg-wedding {
  position: absolute; inset: 0;
  background-image: url('images/wedding2_hero.jpg');
  background-size: cover; background-position: center 25%;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10,14,22,0.50) 0%,
    rgba(10,14,22,0.25) 45%,
    rgba(10,14,22,0.05) 100%
  );
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 600px; padding: 8rem 4rem 4rem;
}

.hero-eyebrow {
  display: block;
  font-family: var(--font-sans); font-weight: 600;
  font-size: 0.74rem; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 1.2rem;
}

.hero-title {
  font-family: var(--font-serif); font-weight: 600;
  font-size: clamp(2.8rem, 5.5vw, 4.2rem); line-height: 1.1;
  color: var(--white); margin-bottom: 1.4rem;
}
.hero-title em { font-style: italic; color: var(--gold-light); display: block; }

.hero-body {
  font-size: 0.98rem; line-height: 1.9;
  color: rgba(255,255,255,0.75); margin-bottom: 2.5rem;
  max-width: 480px;
}

.hero-actions { display: flex; gap: 1.2rem; flex-wrap: wrap; }

.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
  font-family: var(--font-sans); font-size: 0.6rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: rgba(255,255,255,0.4);
  animation: bobble 2s ease-in-out infinite;
}
.scroll-arrow {
  width: 16px; height: 16px;
  border-right: 1px solid rgba(255,255,255,0.3);
  border-bottom: 1px solid rgba(255,255,255,0.3);
  transform: rotate(45deg);
}
@keyframes bobble {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(5px); }
}

/* ===== SECTION LABEL ===== */
.section-label {
  font-family: var(--font-sans); font-weight: 600;
  font-size: 0.7rem; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.75rem; text-align: center;
  position: relative;
}
.section-label::before, .section-label::after {
  content: '';
  position: absolute; top: 50%; width: 60px; height: 1px;
  background: var(--mid-gray);
}
.section-label::before { right: calc(50% + 6rem); }
.section-label::after { left: calc(50% + 6rem); }

/* ===== SERVICE DETAIL TABS ===== */
.services-showcase {
  padding-top: 2.5rem;
}
.tabs-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  border-bottom: 1px solid var(--light-gray);
  margin-bottom: 2.25rem;
}
.tab-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 1.1rem 1.6rem;
  position: relative;
  transition: color var(--dur) var(--ease);
}
.tab-btn::after {
  content: '';
  position: absolute; left: 50%; bottom: -1px;
  width: 0; height: 2px;
  background: var(--gold);
  transform: translateX(-50%);
  transition: width var(--dur) var(--ease);
}
.tab-btn:hover { color: var(--navy); }
.tab-btn.active { color: var(--navy); }
.tab-btn.active::after { width: 60%; }

.tab-pane { display: none; }
.tab-pane.active {
  display: block;
  animation: tabFadeIn 0.5s var(--ease);
}
@keyframes tabFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}

/* ===== SPLIT SECTIONS ===== */
.about-split {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 700px;
}

/* Image and text columns stretch to equal height, so the photo always
   fills the full length of the section next to its text. */
.detail-split {
  display: flex;
  min-height: 700px;
}

.detail-split.reverse { flex-direction: row-reverse; }

.split-image-col { position: relative; overflow: hidden; }

.detail-split .split-image-col {
  flex: 0 0 50%;
  position: relative;
  overflow: hidden;
}

.detail-split .split-text-col {
  flex: 1;
  min-width: 0;
}

.split-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 0.8s var(--ease);
}
.split-image-col:hover .split-img { transform: scale(1.03); }

/* Split image fills — real Artful Tailoring photos */
.split-img-about {
  background-image: url('images/about_new.jpg?v=2');
  background-size: cover; background-position: center 18%;
}

.split-img-custom {
  background-image: url('images/custom.jpg?v=2');
  background-size: cover; background-position: center top;
}

.split-img-alter {
  background-image: url('images/alterations.jpg?v=2');
  background-size: cover; background-position: center;
}

.split-img-ready {
  background-image: url('images/readytowear.jpg');
  background-size: cover; background-position: center 25%;
}

.split-img-wedding-tab {
  background-image: url('images/wedding2.jpg?v=2');
  background-size: cover; background-position: center;
}

.split-img-contact {
  background-image: url('images/about_new2.jpg');
  background-size: cover; background-position: center;
}

/* Standalone service pages use their own photo, distinct from the
   matching tab on the main landing page. */
.split-img-custom-page {
  background-image: url('images/svc-custom.jpg');
  background-size: cover; background-position: center;
}

.split-img-alter-page {
  background-image: url('images/svc-alter.jpg');
  background-size: cover; background-position: center;
}

.split-img-ready-page {
  background-image: url('images/readytowear.jpg');
  background-size: cover; background-position: center 25%;
}

/* Ready-to-Wear's lapel photo is more landscape than the other info-section
   photos, so its text column gets larger type to fill the space evenly. */
.about-split:has(.split-img-ready-page) .section-eyebrow { font-size: 0.88rem; }
.about-split:has(.split-img-ready-page) .section-title { font-size: clamp(2.53rem, 5.06vw, 3.52rem); }
.about-split:has(.split-img-ready-page) .body-text { font-size: 1.23rem; line-height: 1.9; }
.about-split:has(.split-img-ready-page) .feature-list li { font-size: 1.12rem; padding: 0.7rem 0 0.7rem 1.2rem; }

.split-img-wedding-page {
  background-image: url('images/svc-wedding.jpg');
  background-size: cover; background-position: center;
}

.split-text-col {
  display: flex; flex-direction: column; justify-content: center;
  padding: 5rem 5rem;
  background: var(--off-white);
}

.about-actions {
  display: flex; align-items: center; gap: 2rem; margin-top: 0.5rem;
}

/* ===== STATS BAND ===== */
.stats-band {
  background: var(--navy);
  padding: 3.5rem 0;
}
.stats-inner {
  display: flex; align-items: center; justify-content: space-between;
}
.stat-item { text-align: center; flex: 1; }
.stat-num {
  font-family: var(--font-serif); font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 600; color: var(--gold); line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-lbl {
  font-family: var(--font-sans); font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.stat-divider { width: 1px; height: 60px; background: rgba(255,255,255,0.12); }

/* ===== WEDDINGS SECTION ===== */
.weddings-section {
  position: relative; min-height: 70vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  text-align: center;
}
.weddings-bg {
  position: absolute; inset: 0;
  background-image: url('images/wedding.jpg');
  background-size: cover; background-position: center;
}
.weddings-overlay { position: absolute; inset: 0; background: rgba(10,14,22,0.65); }
.weddings-content {
  position: relative; z-index: 1;
  padding: 5rem 2rem; max-width: 700px;
}
.weddings-actions { display: flex; gap: 1.2rem; justify-content: center; flex-wrap: wrap; margin-top: 2.5rem; }

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 4rem 0;
  background: var(--cream);
}
.testimonials-inner {
  text-align: center; max-width: 760px; margin: 0 auto 3rem;
  padding: 0 2rem;
}
.quote-icon {
  font-family: var(--font-serif); font-size: 6rem; line-height: 0.7;
  color: var(--gold); opacity: 0.4; margin-bottom: 1.5rem; display: block;
}
.testimonial-quote {
  font-family: var(--font-serif); font-size: clamp(1.3rem, 2.6vw, 1.7rem);
  font-weight: 600; font-style: italic;
  color: var(--text-dark); line-height: 1.6; margin-bottom: 1.5rem;
}
.testimonial-author {
  font-family: var(--font-sans); font-size: 0.76rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 0.8rem;
}
.testimonial-stars { color: var(--gold); font-size: 1rem; letter-spacing: 0.1em; }

.testimonials-more {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5px; background: var(--mid-gray);
}
.testimonial-mini {
  background: var(--white); padding: 2.5rem;
  transition: background var(--dur) var(--ease);
}
.testimonial-mini:hover { background: var(--off-white); }
.testimonial-mini p {
  font-family: var(--font-serif); font-style: italic;
  font-size: 1.02rem; line-height: 1.7; color: var(--text-body);
  margin-bottom: 1rem;
}
.testimonial-mini span {
  font-family: var(--font-sans); font-size: 0.71rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted);
}

/* ===== BLOG ===== */
.blog { padding: var(--section-pad); }
.section-header-row {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 1.75rem;
}
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }

.blog-card { cursor: pointer; }
.blog-img {
  aspect-ratio: 3/2; margin-bottom: 1.4rem;
  overflow: hidden; position: relative;
}
.blog-img::before {
  content: ''; position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 0.7s var(--ease);
}
.blog-card:hover .blog-img::before { transform: scale(1.05); }

/* Blog images — real Artful Tailoring photos */
.blog-img-1::before { background-image: url('images/shirts.jpg'); background-size: cover; background-position: center; }
.blog-img-2::before { background-image: url('images/blog2.jpg'); background-size: cover; background-position: center; }
.blog-img-3::before { background-image: url('images/blog3.jpg'); background-size: cover; background-position: center; }
.blog-img-4::before { background-image: url('images/about_new3.jpg'); background-size: cover; background-position: center top; }
.blog-img-5::before { background-image: url('images/about_new4.jpg'); background-size: cover; background-position: center top; }
.blog-img-6::before { background-image: url('images/about_new5.jpg'); background-size: cover; background-position: center top; }

/* ===== BLOG INDEX / ARTICLE PAGES ===== */
.blog-index-hero { background: var(--off-white); padding: 6.5rem 0 3rem; }
.blog-post-hero { background: var(--off-white); padding: 6.5rem 0 2.5rem; }
.blog-post-hero .text-link, .blog-index-hero .text-link { margin-bottom: 1.5rem; display: inline-block; }
.blog-post-hero .section-title, .blog-index-hero .section-title { max-width: 760px; }
.blog-post-body { padding: 0 0 5rem; }
.blog-post-image {
  width: 100%; aspect-ratio: 16/9; margin-bottom: 2.5rem;
  background-size: cover; background-position: center;
}
.blog-post-content { max-width: 720px; margin: 0 auto; }
.blog-post-content .body-text { font-size: 1.02rem; }
.blog-post-content h2 {
  font-family: var(--font-serif); font-size: 1.4rem; font-weight: 600;
  color: var(--text-dark); margin: 2rem 0 1rem;
}
.blog-post-content .feature-list { margin: 0.5rem 0 1.5rem; }
.blog-index-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; padding: 0 0 5rem; }

/* ===== GALLERY CAROUSEL ===== */
.gallery-section { padding: var(--section-pad); background: var(--cream); }
.gallery-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 1.75rem;
}
.gallery-carousel-wrap { position: relative; }
.gallery-carousel {
  display: flex; gap: 1.2rem;
  overflow-x: auto; scroll-snap-type: x mandatory;
  padding-bottom: 0.5rem;
  scrollbar-width: none;
}
.gallery-carousel::-webkit-scrollbar { display: none; }
.gallery-item {
  flex: 0 0 280px; aspect-ratio: 3/4;
  scroll-snap-align: start;
  background-size: cover; background-position: center;
  position: relative; overflow: hidden;
}
.gallery-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--white); border: 1px solid var(--mid-gray);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 1.1rem; color: var(--navy);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
  z-index: 2;
}
.gallery-nav:hover { background: var(--navy); color: var(--white); }
.gallery-nav-prev { left: -22px; }
.gallery-nav-next { right: -22px; }
@media (max-width: 900px) {
  .gallery-item { flex-basis: 200px; }
  .gallery-nav { display: none; }
}

/* Overlay on blog imgs */
.blog-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(10,14,20,0.2) 100%);
  z-index: 1;
}

.blog-tag {
  display: inline-block;
  font-family: var(--font-sans); font-size: 0.64rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); border: 1px solid var(--gold-light);
  padding: 0.25rem 0.7rem; margin-bottom: 0.8rem;
}
.blog-meta h3 {
  font-family: var(--font-serif); font-size: 1.15rem; font-weight: 600;
  color: var(--text-dark); margin-bottom: 0.7rem; line-height: 1.3;
  transition: color var(--dur) var(--ease);
}
.blog-meta h3 a:hover { color: var(--gold); }
.blog-meta p {
  font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1rem;
}

/* ===== PRESS ===== */
.press-section {
  padding: 2.75rem 0;
  background: var(--cream);
  border-top: 1px solid var(--light-gray);
  border-bottom: 1px solid var(--light-gray);
}
.press-grid {
  display: flex; flex-wrap: wrap;
  justify-content: center; align-items: center;
  gap: 2.5rem 4.5rem;
}
.press-item { text-align: center; }
.press-name {
  font-family: var(--font-serif); font-style: italic;
  font-size: 1.28rem; color: var(--text-dark);
}
.press-desc {
  font-family: var(--font-sans); font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--text-muted); margin-top: 0.3rem;
}

/* ===== SERVICE DETAIL PAGE ===== */

/* Ready-to-Wear's panoramic photo needs a shorter frame so cover-fit
   shows more of the rack instead of cropping in tight on one jacket. */
.detail-split:has(.split-img-ready) { min-height: 480px; }

.process-section { padding: 3.5rem 0 4rem; background: var(--cream); }

.process-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.process-step {
  flex: 1 1 0;
  max-width: 240px;
  text-align: center;
  padding: 0 1.2rem;
}
.process-num {
  width: 76px; height: 76px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-size: 1.65rem; font-style: italic;
  color: var(--gold);
  margin: 0 auto 1.3rem;
  background: var(--white);
}
.process-step h3 {
  font-family: var(--font-serif); font-size: 1.05rem; font-weight: 600;
  color: var(--text-dark); margin-bottom: 0.5rem;
}
.process-step p {
  font-size: 0.86rem; color: var(--text-muted); line-height: 1.65;
}
/* Ready-to-Wear's step process is scaled up 20% to match its enlarged
   info-section text above it. */
.process-section-ready .process-num {
  width: 91px; height: 91px;
  font-size: 1.98rem;
  margin: 0 auto 1.8rem;
}
.process-section-ready .process-step h3 { font-size: 1.26rem; margin-bottom: 0.8rem; }
.process-section-ready .process-step p { font-size: 1.03rem; }
.process-section-ready .section-label { font-size: 0.84rem; margin-bottom: 2.5rem; }
.process-section-ready .process-step { padding: 0 2rem; max-width: 280px; }
.process-section-ready .process-connector { flex: 0 1 100px; margin-top: 36px; }

.process-connector {
  flex: 0 1 60px;
  height: 1px;
  background: var(--mid-gray);
  margin-top: 30px;
}

@media (max-width: 900px) {
  .process-steps { flex-direction: column; align-items: center; gap: 2.5rem; }
  .process-connector { display: none; }
}

/* ===== CTA BAND ===== */
.cta-band {
  background: var(--off-white);
  border-top: 1px solid var(--light-gray);
  border-bottom: 1px solid var(--light-gray);
  padding: 2.75rem 0;
}
.cta-band-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}
.cta-band-title {
  font-family: var(--font-serif); font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600; font-style: italic; color: var(--text-dark);
}

/* ===== CONTACT ===== */
.contact { background: var(--white); }

.contact-details { margin-top: 1rem; }
.contact-row {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1rem 0; border-bottom: 1px solid var(--light-gray);
  font-size: 0.92rem; color: var(--text-body); line-height: 1.6;
}
.contact-icon { color: var(--gold); font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.contact-row a { transition: color var(--dur) var(--ease); }
.contact-row a:hover { color: var(--gold); }

/* ===== FOOTER ===== */
.footer { background: var(--navy); color: rgba(255,255,255,0.75); }


.footer-main { padding: 5rem 0 3rem; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer-logo-mark { height: 52px; width: auto; margin-bottom: 1rem; }
.footer-wordmark {
  font-family: var(--font-serif); font-weight: 800;
  font-size: 1.1rem; letter-spacing: 0.1em; color: var(--white); margin-bottom: 0.3rem;
}
.footer-tagline {
  font-size: 0.66rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
}
.footer-desc { font-size: 0.86rem; line-height: 1.7; color: rgba(255,255,255,0.5); margin-bottom: 1.5rem; }
.social-links { display: flex; gap: 0.8rem; }
.social-link {
  width: 34px; height: 34px; border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.05em;
  color: rgba(255,255,255,0.55);
  transition: all var(--dur) var(--ease);
}
.social-link:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }
.social-link svg { width: 16px; height: 16px; }

.footer-col { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col-title {
  font-family: var(--font-sans); font-weight: 700;
  font-size: 0.68rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--white); margin-bottom: 0.5rem;
}
.footer-col a, .footer-col address {
  font-size: 0.85rem; color: rgba(255,255,255,0.5);
  line-height: 1.8;
  transition: color var(--dur) var(--ease);
}
.footer-col a:hover { color: var(--gold-light); }
.footer-hours { font-size: 0.82rem; color: rgba(255,255,255,0.45); line-height: 1.8; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1.8rem 0;
}
.footer-bottom-inner {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.74rem; color: rgba(255,255,255,0.3); letter-spacing: 0.05em;
}
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { color: rgba(255,255,255,0.3); transition: color var(--dur) var(--ease); }
.footer-legal a:hover { color: var(--gold-light); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .cta-band-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 900px) {
  .about-split { grid-template-columns: 1fr; }
  .about-split .split-image-col { min-height: 400px; }
  .detail-split { flex-direction: column; }
  .detail-split.reverse { flex-direction: column; }
  .detail-split .split-image-col { flex: 0 0 auto; width: 100%; min-height: 320px; }
  .split-image-col { position: relative; }
  .split-img { position: absolute; }
  .stats-inner { flex-wrap: wrap; gap: 2rem; justify-content: center; }
  .stat-divider { display: none; }
  .blog-grid { grid-template-columns: 1fr; gap: 3rem; }
  .testimonials-more { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  #navbar { padding: 0 1.5rem; }
  .nav-links, .nav-cta { display: none; }
  .mobile-toggle { display: flex; }
  .mobile-menu { display: flex; }

  .hero-content { padding: 7rem 2rem 4rem; max-width: 100%; }
  .hero-title { font-size: clamp(1.9rem, 9vw, 2.8rem); }
  .hero-eyebrow { font-size: 0.6rem; letter-spacing: 0.18em; }
  .split-text-col { padding: 3.5rem 2rem; }
  .about-actions { flex-direction: column; align-items: flex-start; }
  .section-header-row { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom-inner { flex-direction: column; gap: 1rem; text-align: center; }
}

