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

:root {
  --rose: #9B2D4C;
  --rose-deep: #6E1F38;
  --rose-light: #FBEEF1;
  --rose-mid: #C97D93;
  --gold: #A87C2E;
  --gold-light: #F8F1E0;
  --cream: #FBF8F4;
  --ink: #211314;
  --ink-soft: #4A3236;
  --ink-muted: #87707A;
  --border: rgba(155,45,76,0.13);
  --white: #FFFFFF;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* NAV (shared with homepage) */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(251,247,242,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 0.5px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw; height: 64px;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 600;
  color: var(--rose); letter-spacing: 0.02em;
  text-decoration: none;
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  text-decoration: none; font-size: 14px; font-weight: 400;
  color: var(--ink-soft); letter-spacing: 0.03em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--rose); }
.nav-cta {
  background: var(--rose); color: white;
  border: none; padding: 10px 22px;
  font-family: 'DM Sans', sans-serif; font-size: 14px;
  border-radius: 3px; cursor: pointer; text-decoration: none;
  transition: background 0.2s, transform 0.1s;
}
.nav-cta:hover { background: var(--rose-deep); }
.nav-cta:active { transform: scale(0.98); }

.nav-burger {
  display: none; background: none; border: none; cursor: pointer;
  width: 40px; height: 40px; align-items: center; justify-content: center;
  border-radius: 6px; flex-shrink: 0;
}
.nav-burger svg { width: 24px; height: 24px; stroke: var(--rose); fill: none; stroke-width: 2; stroke-linecap: round; }
.nav-burger:active { background: var(--rose-light); }

.mobile-menu {
  position: fixed; top: 0; right: -300px; width: 280px; height: 100vh;
  background: white; z-index: 200; padding: 90px 1.5rem 2rem;
  display: flex; flex-direction: column; gap: 0.25rem;
  box-shadow: -10px 0 40px rgba(0,0,0,0.15);
  transition: right 0.3s ease;
}
.mobile-menu.open { right: 0; }
.mobile-menu a {
  text-decoration: none; color: var(--ink-soft); font-size: 16px; font-weight: 500;
  padding: 14px 8px; border-bottom: 1px solid var(--border);
}
.mobile-menu a:active { color: var(--rose); }
.mobile-menu-book {
  background: var(--rose); color: white !important;
  text-align: center; border-radius: 4px; border-bottom: none !important;
  padding: 14px !important; margin-bottom: 0.5rem;
}
.mobile-menu-call {
  margin-top: 1.5rem; background: var(--rose-light); color: var(--rose) !important;
  text-align: center; border-radius: 4px; border-bottom: none !important;
  padding: 14px !important; font-weight: 600 !important;
}
.mobile-menu-backdrop {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.4);
  z-index: 199; opacity: 0; transition: opacity 0.3s ease;
}
.mobile-menu-backdrop.open { display: block; opacity: 1; }

/* BREADCRUMB */
.breadcrumb {
  padding: 88px 8vw 0; font-size: 13px; color: var(--ink-muted);
  display: flex; align-items: center; gap: 8px;
}
.breadcrumb a { color: var(--ink-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--rose); }
.breadcrumb .sep { color: var(--rose-mid); }
.breadcrumb .current { color: var(--rose); font-weight: 500; }

/* CATEGORY HERO */
.cat-hero {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: 3.5rem; align-items: center;
  padding: 2.5rem 7vw 4rem;
  max-width: 1400px; margin: 0 auto;
}
.cat-hero-eyebrow {
  font-size: 12px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.25rem; display: flex; align-items: center; gap: 10px;
}
.cat-hero-eyebrow::before { content: ''; display: block; width: 32px; height: 1px; background: var(--gold); }
.cat-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4vw, 3.8rem); font-weight: 300; line-height: 1.1;
  color: var(--ink); margin-bottom: 1.25rem; letter-spacing: -0.01em;
}
.cat-hero-title em { font-style: italic; color: var(--rose); }
.cat-hero-desc { font-size: 16px; color: var(--ink-muted); max-width: 440px; margin-bottom: 2rem; line-height: 1.8; }
.cat-hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  background: var(--rose); color: white; padding: 14px 32px; border: none; border-radius: 3px;
  font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 500; cursor: pointer;
  text-decoration: none; display: inline-block; transition: background 0.2s, transform 0.1s; letter-spacing: 0.02em;
}
.btn-primary:hover { background: var(--rose-deep); }
.btn-primary:active { transform: scale(0.98); }
.btn-outline {
  background: transparent; color: var(--rose); padding: 13px 28px; border: 1px solid var(--rose-mid);
  border-radius: 3px; font-family: 'DM Sans', sans-serif; font-size: 15px; cursor: pointer;
  text-decoration: none; display: inline-block; transition: all 0.2s;
}
.btn-outline:hover { background: var(--rose-light); }

.cat-hero-visual {
  position: relative; border-radius: 8px;
  aspect-ratio: 4/4.7; max-height: 560px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 24px 60px -10px rgba(110,31,56,0.28);
}
.cat-hero-visual img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; display: block; border-radius: 8px; }
.cat-hero-badge {
  position: absolute; bottom: 20px; left: 20px; background: white; border-radius: 6px;
  padding: 14px 18px; box-shadow: 0 10px 28px rgba(0,0,0,0.16); font-size: 13px; max-width: 170px; z-index: 3;
}
.cat-hero-badge strong { display: block; color: var(--rose); font-size: 15px; margin-bottom: 2px; }

/* PRICE STRIP */
.price-strip {
  background: var(--rose); color: white; padding: 1.25rem 8vw;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.price-strip-item { display: flex; align-items: baseline; gap: 8px; font-size: 14px; }
.price-strip-item strong { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 600; }

/* DESIGN DETAILS SECTION */
section { padding: 5rem 8vw; }
.section-eyebrow { font-size: 11px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.9rem, 3.2vw, 2.8rem); font-weight: 300; line-height: 1.18; color: var(--ink); margin-bottom: 1rem; }
.section-title em { font-style: italic; color: var(--rose); }
.section-sub { font-size: 15px; color: var(--ink-muted); max-width: 520px; line-height: 1.8; }

.details-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.detail-list { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 1rem; }
.detail-item { display: flex; gap: 1rem; align-items: flex-start; }
.detail-icon {
  width: 38px; height: 38px; background: var(--rose-light); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.detail-icon svg { width: 17px; height: 17px; stroke: var(--rose); fill: none; stroke-width: 1.6; }
.detail-item-text strong { display: block; font-size: 15px; color: var(--ink); margin-bottom: 2px; }
.detail-item-text span { font-size: 14px; color: var(--ink-muted); }

.swatches { display: flex; gap: 10px; margin-top: 1.5rem; flex-wrap: wrap; }
.swatch { width: 40px; height: 40px; border-radius: 50%; border: 2px solid white; box-shadow: 0 0 0 1px var(--border); }

/* STYLE GALLERY (variants of this category) */
.style-gallery { background: white; }
.style-gallery-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 2.5rem; flex-wrap: wrap; gap: 1rem; }
.style-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.style-card { border-radius: 6px; overflow: hidden; border: 0.5px solid var(--border); transition: transform 0.25s, box-shadow 0.25s; }
.style-card:hover { transform: translateY(-4px); box-shadow: 0 14px 32px rgba(155,45,76,0.16); }
.style-img { aspect-ratio: 3/4; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.style-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.3s ease; }
.style-card:hover .style-img img { transform: scale(1.06); }
.style-card-body { padding: 1rem 1.1rem; background: var(--cream); }
.style-card-name { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 600; color: var(--ink); margin-bottom: 2px; }
.style-card-desc { font-size: 13px; color: var(--ink-muted); }

/* PROCESS MINI */
.process-mini { background: var(--cream); }
.process-mini-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2.5rem; }
.process-mini-step { text-align: center; }
.process-mini-num {
  width: 56px; height: 56px; background: white; border: 1.5px solid var(--rose); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem;
  font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 600; color: var(--rose);
}
.process-mini-title { font-weight: 500; font-size: 14px; color: var(--ink); margin-bottom: 0.4rem; }
.process-mini-desc { font-size: 13px; color: var(--ink-muted); line-height: 1.6; }

/* FAQ */
.faq-list { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.75rem; max-width: 700px; }
.faq-item { border: 0.5px solid var(--border); border-radius: 4px; background: white; overflow: hidden; }
.faq-question {
  padding: 1.1rem 1.4rem; cursor: pointer; display: flex; justify-content: space-between;
  align-items: center; font-size: 15px; font-weight: 500; color: var(--ink);
}
.faq-question svg { width: 16px; height: 16px; stroke: var(--rose); fill: none; stroke-width: 1.8; transition: transform 0.25s; flex-shrink: 0; }
.faq-item.open .faq-question svg { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-answer-inner { padding: 0 1.4rem 1.1rem; font-size: 14px; color: var(--ink-muted); line-height: 1.7; }
.faq-item.open .faq-answer { max-height: 200px; }

/* ENQUIRY FORM SECTION */
.enquiry { background: var(--rose); }
.enquiry-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 3.5rem; align-items: flex-start; }
.enquiry-content .section-eyebrow { color: rgba(255,255,255,0.65); }
.enquiry-content .section-title { color: white; }
.enquiry-content .section-title em { color: var(--gold-light); }
.enquiry-content .section-sub { color: rgba(255,255,255,0.75); max-width: 100%; }
.enquiry-points { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.1rem; }
.enquiry-point { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: rgba(255,255,255,0.85); }
.enquiry-point svg { width: 16px; height: 16px; stroke: var(--gold-light); fill: none; stroke-width: 2; flex-shrink: 0; margin-top: 3px; }

.form-card { background: white; border-radius: 6px; padding: 2.25rem; }
.form-title { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 600; color: var(--ink); margin-bottom: 0.25rem; }
.form-sub { font-size: 14px; color: var(--ink-muted); margin-bottom: 1.75rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-label { font-size: 12px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-soft); display: block; margin-bottom: 6px; }
.form-control {
  width: 100%; padding: 11px 14px; border: 1px solid rgba(155,45,76,0.22); border-radius: 3px;
  background: var(--cream); font-family: 'DM Sans', sans-serif; font-size: 15px; color: var(--ink);
  outline: none; transition: border-color 0.2s;
}
.form-control:focus { border-color: var(--rose); }
.form-control::placeholder { color: var(--ink-muted); }
select.form-control {
  appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239B2D4C' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px;
}
textarea.form-control { resize: vertical; min-height: 90px; }
.form-submit {
  width: 100%; padding: 15px; background: var(--rose); color: white; border: none; border-radius: 3px;
  cursor: pointer; font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 500;
  letter-spacing: 0.04em; transition: background 0.2s, transform 0.1s; margin-top: 0.5rem;
}
.form-submit:hover { background: var(--rose-deep); }
.form-submit:active { transform: scale(0.99); }
.form-note { font-size: 12px; color: var(--ink-muted); text-align: center; margin-top: 0.75rem; }
.success-msg {
  background: #EFF7EE; border: 1px solid #BDE0B9; border-radius: 4px; padding: 1rem 1.25rem;
  color: #2D6B28; font-size: 14px; display: none; margin-top: 1rem; text-align: center;
}

/* FOOTER */
footer { background: var(--ink); color: rgba(255,255,255,0.6); padding: 3rem 8vw 2rem; display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem; }
.footer-brand { display: flex; flex-direction: column; gap: 1rem; }
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 600; color: white; letter-spacing: 0.02em; }
.footer-logo span { color: var(--rose-mid); }
.footer-tagline { font-size: 13px; max-width: 220px; line-height: 1.6; }
.footer-col h4 { color: white; font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer-col ul a:hover { color: white; }
.footer-bottom { background: var(--ink); color: rgba(255,255,255,0.3); text-align: center; padding: 1rem 8vw; font-size: 12px; border-top: 0.5px solid rgba(255,255,255,0.1); }

.float-whatsapp {
  position: fixed; bottom: 22px; right: 22px; z-index: 150;
  width: 56px; height: 56px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  transition: transform 0.2s;
}
.float-whatsapp svg { width: 28px; height: 28px; }
.float-whatsapp:hover { transform: scale(1.08); }
.float-whatsapp:active { transform: scale(0.96); }

/* SIMPLE PAGE HERO (for Styles/Services/Gallery/How-It-Works pages) */
.page-hero {
  text-align: center; padding: 3rem 7vw 3.5rem; max-width: 800px; margin: 0 auto;
}
.page-hero .section-eyebrow { justify-content: center; display: flex; }
.page-hero .section-title { margin: 0 auto 1rem; }
.page-hero .section-sub { margin: 0 auto; }

/* SERVICES GRID (shared) */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5px; background: var(--border);
}
.service-card { background: white; padding: 2.5rem 2rem; position: relative; overflow: hidden; transition: background 0.3s; }
.service-card:hover { background: var(--cream); }
.service-card::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--rose); transition: width 0.4s ease; }
.service-card:hover::after { width: 100%; }
.service-icon { width: 48px; height: 48px; background: var(--rose-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; }
.service-icon svg { width: 22px; height: 22px; stroke: var(--rose); fill: none; stroke-width: 1.5; }
.service-name { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 600; color: var(--ink); margin-bottom: 0.5rem; }
.service-desc { font-size: 14px; color: var(--ink-muted); line-height: 1.7; }
.service-price { margin-top: 1rem; font-size: 13px; color: var(--rose); font-weight: 500; }
.service-card-cta {
  display: inline-block; margin-top: 1rem; font-size: 13px; font-weight: 600; color: var(--rose);
  text-decoration: none; border-bottom: 1.5px solid var(--rose-mid);
}

/* FULL PROCESS STEPS (How It Works page) */
.process-steps {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0; position: relative; margin-top: 1rem;
}
.process-steps::before { content: ''; position: absolute; top: 36px; left: 10%; right: 10%; height: 1px; background: var(--border); z-index: 0; }
.process-step { text-align: center; padding: 0 1.5rem; position: relative; z-index: 1; }
.step-num {
  width: 72px; height: 72px; background: white; border: 1.5px solid var(--rose); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem;
  font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 600; color: var(--rose);
}
.step-title { font-weight: 500; font-size: 15px; color: var(--ink); margin-bottom: 0.5rem; }
.step-desc { font-size: 13px; color: var(--ink-muted); line-height: 1.6; }

/* STYLES PAGE - CATEGORY CARDS */
.cat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.75rem; }
.cat-card {
  position: relative; border-radius: 6px; overflow: hidden; cursor: pointer; aspect-ratio: 3/4; min-height: 280px;
  border: 0.5px solid var(--border); transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cat-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(155,45,76,0.2); }
.cat-art { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background-size: cover; background-position: center; }
.cat-art img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.cat-card:hover .cat-art img { transform: scale(1.06); }
.cat-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(33,19,20,0.78) 100%); }
.cat-text { position: absolute; left: 0; right: 0; bottom: 0; padding: 1.5rem 1.25rem; color: white; z-index: 2; }
.cat-name { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 600; margin-bottom: 4px; }
.cat-count { font-size: 12px; color: rgba(255,255,255,0.75); letter-spacing: 0.04em; }
.cat-arrow {
  position: absolute; top: 1rem; right: 1rem; z-index: 2; width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,0.18); backdrop-filter: blur(4px); display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.cat-card:hover .cat-arrow { background: var(--rose); }
.cat-arrow svg { width: 14px; height: 14px; stroke: white; fill: none; stroke-width: 2; }

/* GALLERY PAGE - FILTER TABS + GRID */
.gallery-filters { display: flex; gap: 0.6rem; flex-wrap: wrap; justify-content: center; margin: 0 0 3rem; }
.gallery-filter-btn {
  background: white; border: 1px solid var(--border); color: var(--ink-soft); font-size: 13px; font-weight: 500;
  padding: 9px 18px; border-radius: 20px; cursor: pointer; transition: all 0.2s; font-family: 'DM Sans', sans-serif;
}
.gallery-filter-btn:hover { border-color: var(--rose-mid); }
.gallery-filter-btn.active { background: var(--rose); color: white; border-color: var(--rose); }

.gallery-category-block { margin-bottom: 3.5rem; }
.gallery-category-title {
  font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 600; color: var(--ink);
  margin-bottom: 1.5rem; display: flex; align-items: center; gap: 12px;
}
.gallery-category-title .count-badge {
  font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 500; color: var(--rose);
  background: var(--rose-light); padding: 4px 12px; border-radius: 12px;
}
.gallery-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.25rem;
}
.gallery-item { border-radius: 6px; overflow: hidden; position: relative; background: var(--rose-light); aspect-ratio: 3/4; display: block; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; position: absolute; inset: 0; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-label {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 2rem 1rem 1rem;
  background: linear-gradient(transparent, rgba(33,19,20,0.88)); color: white; font-size: 14px; font-weight: 500; z-index: 2;
}
.gallery-label-sub { font-size: 11.5px; color: rgba(255,255,255,0.7); font-weight: 400; margin-top: 2px; margin-bottom: 10px; }
.gallery-cta-row { display: flex; gap: 6px; }
.gallery-whatsapp-btn {
  display: inline-flex; align-items: center; gap: 5px; padding: 7px 12px;
  background: #25D366; color: white; font-size: 11.5px; font-weight: 600;
  border-radius: 16px; text-decoration: none; letter-spacing: 0.01em; transition: transform 0.15s;
}
.gallery-whatsapp-btn:active { transform: scale(0.95); }
.gallery-whatsapp-btn svg { width: 13px; height: 13px; fill: white; }
.gallery-enquire-btn {
  display: inline-flex; align-items: center; padding: 7px 12px;
  background: rgba(255,255,255,0.92); color: var(--rose); font-size: 11.5px; font-weight: 600;
  border-radius: 16px; text-decoration: none; transition: background 0.2s, transform 0.15s;
}
.gallery-enquire-btn:hover { background: white; }
.gallery-enquire-btn:active { transform: scale(0.95); }

/* SIMPLE PAGES MOBILE */
@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 0.85rem; }
  .gallery-filters { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; margin-bottom: 2rem; }
  .gallery-category-title { font-size: 1.4rem; }
}

/* MOBILE */
@media (max-width: 768px) {
  nav { padding: 0 4vw; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .breadcrumb { padding: 80px 6vw 0; }
  .cat-hero { grid-template-columns: 1fr; padding: 2rem 6vw 3rem; gap: 2rem; }
  .cat-hero-visual { order: -1; aspect-ratio: 4/3.2; max-height: 380px; }
  section { padding: 3.5rem 6vw; }
  .details-grid { grid-template-columns: 1fr; gap: 2rem; }
  .price-strip { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .style-gallery-header { flex-direction: column; align-items: flex-start; }
  .enquiry-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  footer { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 480px) {
  .cat-hero-title { font-size: 2.2rem; }
  .cat-hero-actions { flex-direction: column; }
  .btn-primary, .btn-outline { width: 100%; text-align: center; }
}
