@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=DM+Sans:wght@400;500;600;700&display=swap');

:root {
  --maroon: #7e1010;
  --maroon-dark: #4f0808;
  --maroon-soft: #a64a46;
  --cream: #fbf7f2;
  --beige: #efe5da;
  --sand: #e5d1bf;
  --paper: #fffdfb;
  --ink: #211919;
  --muted: #716666;
  --line: rgba(79, 8, 8, 0.14);
  --white: #ffffff;
  --success: #155f42;
  --shadow: 0 18px 55px rgba(75, 22, 20, 0.10);
  --shadow-sm: 0 10px 32px rgba(75, 22, 20, 0.08);
  --radius-lg: 30px;
  --radius-md: 20px;
  --radius-sm: 12px;
  --container: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; max-width: 100%; overflow-x: hidden; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: 'DM Sans', sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
::selection { background: rgba(126, 16, 16, 0.16); }

.skip-link {
  position: fixed;
  left: 14px;
  top: -60px;
  z-index: 2000;
  padding: 10px 16px;
  background: var(--maroon);
  color: #fff;
  border-radius: 0 0 8px 8px;
}
.skip-link:focus { top: 0; }

.container { width: var(--container); margin-inline: auto; }
.section { padding: 100px 0; }
.section-sm { padding: 72px 0; }
.section-cream { background: var(--cream); }
.section-maroon { background: var(--maroon-dark); color: white; }
.section-heading { max-width: 690px; margin-bottom: 42px; }
.section-heading.center { margin-inline: auto; text-align: center; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--maroon);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
  font-size: 0.75rem;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: currentColor;
}
.section-maroon .eyebrow, .footer .eyebrow { color: #f7d8cf; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(3.25rem, 7vw, 6.5rem); font-weight: 600; }
h2 { font-size: clamp(2.45rem, 4.7vw, 4.35rem); font-weight: 600; }
h3 { font-size: clamp(1.55rem, 2.2vw, 2rem); font-weight: 600; }
.lead { font-size: clamp(1.05rem, 1.5vw, 1.22rem); color: var(--muted); }
.section-maroon .lead { color: rgba(255,255,255,.72); }

.announcement {
  background: var(--maroon-dark);
  color: rgba(255,255,255,.88);
  font-size: .82rem;
  letter-spacing: .04em;
}
.announcement-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
}
.announcement-dot { width: 4px; height: 4px; border-radius: 50%; background: #e6b5aa; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,253,251,.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .25s ease, border-color .25s ease;
}
.site-header.scrolled { box-shadow: 0 8px 30px rgba(70,20,18,.08); border-color: var(--line); }
.navbar {
  min-height: 82px;
  display: grid;
  grid-template-columns: 210px 1fr auto;
  align-items: center;
  gap: 24px;
}
.brand-logo img { width: 158px; height: auto; }
.nav-links { display: flex; align-items: center; justify-content: center; gap: 30px; }
.nav-links a { position: relative; font-size: .93rem; font-weight: 600; color: #4e4444; }
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 1px;
  background: var(--maroon);
  transition: right .25s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { right: 0; }
.nav-actions { display: flex; gap: 10px; align-items: center; }
.social-icon {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--maroon);
  transition: .25s ease;
}
.social-icon:hover { background: var(--maroon); color: white; transform: translateY(-2px); }
.social-icon svg { width: 17px; height: 17px; fill: currentColor; }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: white;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  color: var(--maroon);
}
.menu-toggle span, .menu-toggle::before, .menu-toggle::after {
  content: '';
  display: block;
  width: 19px;
  height: 1.5px;
  background: currentColor;
  transition: .25s ease;
}
.menu-toggle span { margin: 4px 0; }

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: .92rem;
  transition: transform .22s ease, background .22s ease, color .22s ease, border-color .22s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--maroon); color: white; }
.btn-primary:hover { background: var(--maroon-dark); }
.btn-outline { border-color: rgba(126,16,16,.3); color: var(--maroon); background: transparent; }
.btn-outline:hover { border-color: var(--maroon); background: rgba(126,16,16,.04); }
.btn-light { background: white; color: var(--maroon-dark); }
.btn-ghost-light { border-color: rgba(255,255,255,.35); color: white; }
.btn-ghost-light:hover { background: rgba(255,255,255,.10); }
.btn svg { width: 18px; height: 18px; }

.hero {
  min-height: calc(100vh - 120px);
  display: flex;
  align-items: center;
  position: relative;
  background:
    radial-gradient(circle at 12% 22%, rgba(173,94,83,.10), transparent 30%),
    linear-gradient(180deg, #fffdfb 0%, #fbf6f0 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  width: 450px;
  height: 450px;
  border: 1px solid rgba(126,16,16,.11);
  border-radius: 50%;
  left: -250px;
  bottom: -190px;
}
.hero-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  align-items: center;
  gap: clamp(42px, 6vw, 90px);
  padding: 68px 0 76px;
}
.hero-copy { position: relative; z-index: 2; }
.hero-copy h1 { margin-bottom: 24px; max-width: 690px; }
.hero-copy h1 em { color: var(--maroon); font-style: italic; font-weight: 500; }
.hero-copy .lead { max-width: 590px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 34px 0 36px; }
.hero-trust { display: flex; align-items: center; gap: 14px; font-size: .92rem; color: #514747; }
.trust-mark {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--maroon);
  color: white;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 1.25rem;
}
.hero-visual { position: relative; min-height: 650px; }
.hero-frame {
  position: absolute;
  inset: 18px 0 38px 58px;
  border-radius: 220px 220px 30px 30px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--beige);
}
.hero-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; }
.hero-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(56,15,15,.16));
}
.hero-badge {
  position: absolute;
  left: 0;
  bottom: 92px;
  z-index: 2;
  width: 168px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--maroon-dark);
  color: white;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 22px;
  box-shadow: 0 16px 40px rgba(79,8,8,.25);
}
.hero-badge strong { display: block; font: 700 2.15rem/1 'Cormorant Garamond', serif; }
.hero-badge span { font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; line-height: 1.3; }
.hero-mark {
  position: absolute;
  right: -44px;
  top: 36px;
  width: 96px;
  opacity: .09;
}
.category-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: white;
}
.category-strip-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 19px 0;
  overflow: auto;
  scrollbar-width: none;
}
.category-strip-inner::-webkit-scrollbar { display: none; }
.category-strip a { white-space: nowrap; font-size: .83rem; text-transform: uppercase; letter-spacing: .12em; color: #574b4b; }
.category-strip a:hover { color: var(--maroon); }

.collection-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 22px;
}
.collection-card {
  grid-column: span 4;
  position: relative;
  overflow: hidden;
  min-height: 440px;
  border-radius: var(--radius-md);
  background: var(--beige);
  isolation: isolate;
}
.collection-card:nth-child(1), .collection-card:nth-child(6) { grid-column: span 6; }
.collection-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; z-index: -2; }
.collection-card::after { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(22,10,10,.02) 35%, rgba(42,8,8,.79) 100%); }
.collection-card:hover img { transform: scale(1.045); }
.collection-content { position: absolute; left: 26px; right: 26px; bottom: 24px; color: white; }
.collection-content h3 { margin-bottom: 4px; }
.collection-content p { margin: 0 0 14px; color: rgba(255,255,255,.76); font-size: .88rem; max-width: 380px; }
.text-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: .86rem; }
.text-link span { transition: transform .2s; }
.text-link:hover span { transform: translateX(4px); }

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(46px, 7vw, 100px);
  align-items: center;
}
.story-visual { position: relative; padding: 0 0 70px 60px; }
.story-main { height: 610px; width: 84%; border-radius: 28px; overflow: hidden; box-shadow: var(--shadow); }
.story-main img { width: 100%; height: 100%; object-fit: cover; }
.story-inset {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 46%;
  height: 260px;
  border: 8px solid var(--paper);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.story-inset img { width: 100%; height: 100%; object-fit: cover; }
.story-copy .lead { margin-bottom: 18px; }
.story-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 34px; }
.stat { border-top: 1px solid var(--line); padding-top: 18px; }
.stat strong { display: block; font: 600 2rem/1 'Cormorant Garamond',serif; color: var(--maroon); }
.stat span { display: block; margin-top: 8px; color: var(--muted); font-size: .78rem; line-height: 1.35; }

.editorial-banner {
  position: relative;
  min-height: 610px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--maroon-dark);
  color: white;
  display: grid;
  grid-template-columns: .88fr 1.12fr;
}
.editorial-copy { padding: clamp(42px, 7vw, 82px); display: flex; flex-direction: column; justify-content: center; }
.editorial-copy p { color: rgba(255,255,255,.72); }
.editorial-collage { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 8px; }
.editorial-collage img { width: 100%; height: 100%; object-fit: cover; min-height: 290px; }
.editorial-collage img:first-child { border-radius: 0 0 0 120px; }
.editorial-collage img:last-child { border-radius: 0 28px 28px 0; }

.benefit-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.benefit-card {
  padding: 28px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: .25s ease;
}
.benefit-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); border-color: rgba(126,16,16,.22); }
.benefit-icon { width: 50px; height: 50px; border-radius: 50%; display: grid; place-items: center; background: rgba(126,16,16,.08); color: var(--maroon); margin-bottom: 22px; }
.benefit-icon svg { width: 22px; height: 22px; }
.benefit-card h3 { font-size: 1.45rem; margin-bottom: 10px; }
.benefit-card p { margin: 0; color: var(--muted); font-size: .9rem; }

.branch-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.branch-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 30px;
  position: relative;
  overflow: hidden;
}
.branch-card::after {
  content: attr(data-number);
  position: absolute;
  top: -26px;
  right: -8px;
  font: 600 8rem/1 'Cormorant Garamond',serif;
  color: rgba(126,16,16,.045);
}
.branch-pin { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; background: var(--maroon); color: white; margin-bottom: 28px; position: relative; z-index: 1; }
.branch-card h3 { margin-bottom: 8px; }
.branch-card p { color: var(--muted); min-height: 76px; position: relative; z-index: 1; }
.branch-actions { display: flex; flex-wrap: wrap; gap: 10px; }

.enquiry-wrap {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(30px, 6vw, 80px);
  align-items: start;
}
.enquiry-intro { position: sticky; top: 130px; }
.enquiry-intro-card {
  margin-top: 34px;
  padding: 26px;
  background: var(--maroon-dark);
  color: white;
  border-radius: var(--radius-md);
}
.enquiry-intro-card a { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.enquiry-intro-card a:last-child { border-bottom: 0; }
.enquiry-form {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 48px);
  box-shadow: var(--shadow-sm);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: .83rem; font-weight: 700; color: #4b4141; }
.form-control {
  width: 100%;
  min-height: 52px;
  padding: 13px 15px;
  background: var(--cream);
  color: var(--ink);
  border: 1px solid transparent;
  border-radius: 12px;
  outline: none;
  transition: .2s ease;
}
textarea.form-control { min-height: 130px; resize: vertical; }
.form-control:focus { background: white; border-color: rgba(126,16,16,.5); box-shadow: 0 0 0 4px rgba(126,16,16,.08); }
.checkbox-row { display: grid; grid-template-columns: 20px 1fr; gap: 11px; align-items: start; margin-top: 4px; }
.checkbox-row input { width: 18px; height: 18px; margin: 3px 0 0; accent-color: var(--maroon); }
.checkbox-row label { font-size: .79rem; line-height: 1.55; color: var(--muted); }
.checkbox-row a { color: var(--maroon); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.form-footer { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 25px; }
.form-note { font-size: .76rem; color: var(--muted); margin: 0; }
.form-status { display: none; margin-top: 16px; padding: 12px 14px; border-radius: 10px; background: rgba(21,95,66,.08); color: var(--success); font-size: .85rem; }
.form-status.show { display: block; }
.honeypot { position: absolute !important; left: -9999px !important; opacity: 0 !important; }

.social-section {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 60px;
  align-items: center;
}
.social-copy .social-buttons { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.social-gallery { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; }
.social-gallery figure { margin: 0; overflow: hidden; border-radius: 18px; min-height: 250px; }
.social-gallery figure:nth-child(2) { transform: translateY(28px); }
.social-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.social-gallery figure:hover img { transform: scale(1.04); }

.cta-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: clamp(46px, 7vw, 80px);
  background: var(--maroon);
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}
.cta-panel::after { content: ''; position: absolute; width: 320px; height: 320px; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; right: -90px; top: -150px; }
.cta-panel h2 { max-width: 620px; margin-bottom: 12px; }
.cta-panel p { color: rgba(255,255,255,.72); max-width: 620px; margin: 0; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 10px; position: relative; z-index: 1; }

.page-hero {
  padding: 92px 0 78px;
  background:
    radial-gradient(circle at 75% 20%, rgba(126,16,16,.09), transparent 28%),
    var(--cream);
  border-bottom: 1px solid var(--line);
}
.page-hero-inner { max-width: 840px; }
.page-hero h1 { font-size: clamp(3.2rem, 6vw, 5.7rem); margin-bottom: 18px; }
.breadcrumbs { display: flex; gap: 9px; align-items: center; font-size: .82rem; color: var(--muted); margin-bottom: 26px; }
.breadcrumbs a { color: var(--maroon); font-weight: 700; }

.legal-layout { display: grid; grid-template-columns: 260px 1fr; gap: 60px; align-items: start; }
.legal-nav { position: sticky; top: 125px; border: 1px solid var(--line); border-radius: 18px; padding: 22px; background: var(--cream); }
.legal-nav strong { display: block; margin-bottom: 12px; }
.legal-nav a { display: block; padding: 8px 0; font-size: .82rem; color: var(--muted); }
.legal-nav a:hover { color: var(--maroon); }
.legal-content { max-width: 800px; }
.legal-content section { scroll-margin-top: 120px; margin-bottom: 42px; }
.legal-content h2 { font-size: 2rem; margin-bottom: 12px; }
.legal-content h3 { font-size: 1.4rem; }
.legal-content p, .legal-content li { color: #5f5555; }
.legal-content ul { padding-left: 22px; }
.legal-callout { padding: 22px 24px; border-left: 3px solid var(--maroon); background: var(--cream); border-radius: 0 14px 14px 0; margin: 24px 0; }

.footer { background: var(--maroon-dark); color: white; padding: 72px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.25fr .75fr .85fr 1fr; gap: 46px; padding-bottom: 48px; }
.footer-logo { width: 180px; margin-bottom: 20px; }
.footer p { color: rgba(255,255,255,.62); font-size: .86rem; max-width: 330px; }
.footer h4 { margin: 0 0 18px; font-size: .82rem; letter-spacing: .13em; text-transform: uppercase; color: rgba(255,255,255,.92); }
.footer-links { display: grid; gap: 11px; }
.footer-links a { color: rgba(255,255,255,.64); font-size: .84rem; }
.footer-links a:hover { color: white; }
.footer-social { display: flex; gap: 10px; margin-top: 22px; }
.footer .social-icon { border-color: rgba(255,255,255,.17); color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.10); padding-top: 22px; display: flex; justify-content: space-between; gap: 20px; color: rgba(255,255,255,.48); font-size: .76rem; }
.footer-legal { display: flex; gap: 18px; }

.mobile-dock {
  position: fixed;
  display: none;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 950;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 35px rgba(40,15,15,.2);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 7px;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
}
.mobile-dock a { min-height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; gap: 8px; font-size: .86rem; font-weight: 700; }
.mobile-dock .call { background: var(--cream); color: var(--maroon); }
.mobile-dock .whatsapp { background: var(--maroon); color: white; }

.cookie-notice {
  position: fixed;
  z-index: 1200;
  left: 18px;
  bottom: 18px;
  width: min(440px, calc(100% - 36px));
  padding: 18px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(48,15,15,.2);
  display: none;
}
.cookie-notice.show { display: block; }
.cookie-notice p { margin: 0 0 14px; font-size: .78rem; color: var(--muted); }
.cookie-actions { display: flex; gap: 8px; }
.cookie-actions button { min-height: 38px; padding: 0 14px; border-radius: 999px; border: 1px solid var(--line); background: white; color: var(--ink); font-weight: 700; font-size: .76rem; }
.cookie-actions .accept { background: var(--maroon); color: white; border-color: var(--maroon); }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1080px) {
  .navbar { grid-template-columns: 180px 1fr auto; }
  .nav-links { gap: 18px; }
  .nav-actions .social-icon { display: none; }
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .hero-visual { min-height: 570px; }
  .hero-frame { left: 30px; }
  .benefit-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  :root { --container: min(100% - 30px, 720px); }
  .announcement-inner { min-height: 42px; font-size: .72rem; gap: 8px; }
  .navbar { min-height: 72px; grid-template-columns: 1fr auto; }
  .brand-logo img { width: 138px; }
  .nav-links {
    position: fixed;
    inset: 114px 0 0;
    background: var(--paper);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 42px 28px;
    gap: 24px;
    transform: translateX(100%);
    transition: transform .28s ease;
    z-index: 999;
  }
  .nav-links.open { transform: none; }
  .nav-links a { font: 600 2rem/1.2 'Cormorant Garamond',serif; }
  .nav-actions { display: none; }
  .menu-toggle { display: inline-flex; flex-direction: column; }
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; padding: 56px 0 68px; }
  .hero-copy { text-align: center; }
  .hero-copy .lead, .hero-copy h1 { margin-left: auto; margin-right: auto; }
  .hero-actions, .hero-trust { justify-content: center; }
  .hero-visual { min-height: 590px; max-width: 620px; width: 100%; margin-inline: auto; }
  .hero-frame { inset: 18px 18px 40px 52px; }
  .hero-badge { left: 0; bottom: 78px; }
  .collection-card, .collection-card:nth-child(1), .collection-card:nth-child(6) { grid-column: span 6; }
  .story-grid, .editorial-banner, .enquiry-wrap, .social-section { grid-template-columns: 1fr; }
  .story-copy { order: -1; }
  .story-visual { max-width: 650px; }
  .editorial-copy { padding: 54px 38px; }
  .branch-grid { grid-template-columns: 1fr; }
  .branch-card p { min-height: auto; }
  .enquiry-intro { position: static; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-nav { display: none; }
  .mobile-dock { display: grid; }
  .footer { padding-bottom: 98px; }
  .cookie-notice { bottom: 86px; }
}

@media (max-width: 620px) {
  .section { padding: 74px 0; }
  .section-sm { padding: 58px 0; }
  h1 { font-size: clamp(3.05rem, 15vw, 4.3rem); }
  h2 { font-size: clamp(2.45rem, 12vw, 3.35rem); }
  .hero-grid { padding-top: 46px; }
  .hero-actions .btn { flex: 1; min-width: 150px; }
  .hero-visual { min-height: 480px; }
  .hero-frame { inset: 18px 10px 34px 36px; border-radius: 150px 150px 24px 24px; }
  .hero-badge { width: 128px; bottom: 56px; padding: 14px; }
  .hero-badge strong { font-size: 1.8rem; }
  .hero-badge span { font-size: .62rem; }
  .collection-grid { gap: 14px; }
  .collection-card, .collection-card:nth-child(1), .collection-card:nth-child(6) { grid-column: 1 / -1; min-height: 410px; }
  .story-visual { padding-left: 24px; padding-bottom: 48px; }
  .story-main { width: 90%; height: 470px; }
  .story-inset { height: 190px; width: 48%; border-width: 5px; }
  .story-stats { grid-template-columns: 1fr; }
  .stat { display: grid; grid-template-columns: 85px 1fr; align-items: center; gap: 10px; }
  .stat span { margin-top: 0; }
  .editorial-collage { grid-template-columns: 1fr; }
  .editorial-collage img { min-height: 280px; }
  .editorial-collage img:first-child, .editorial-collage img:last-child { border-radius: 16px; }
  .benefit-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: auto; }
  .form-footer { align-items: stretch; flex-direction: column; }
  .form-footer .btn { width: 100%; }
  .social-gallery { gap: 7px; }
  .social-gallery figure { min-height: 180px; border-radius: 12px; }
  .cta-panel { align-items: flex-start; flex-direction: column; }
  .cta-actions { width: 100%; }
  .cta-actions .btn { flex: 1; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-bottom { flex-direction: column; }
  .footer-legal { flex-wrap: wrap; }
  .page-hero { padding: 68px 0 58px; }
}

/* ===== Final polish pass: social icons, legal emphasis and responsive refinement ===== */
:where(a, button, input, select, textarea):focus-visible {
  outline: 3px solid rgba(126,16,16,.28);
  outline-offset: 3px;
}
.icon { width: 1.1em; height: 1.1em; flex: 0 0 auto; }

.social-icon {
  overflow: hidden;
  background: rgba(255,255,255,.78);
  box-shadow: 0 5px 18px rgba(79,8,8,.05);
}
.social-icon svg { width: 18px; height: 18px; }
.social-icon.instagram svg { fill: none; stroke: currentColor; }
.social-icon.facebook svg { fill: currentColor; stroke: none; }
.social-icon.instagram:hover {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg,#833ab4 0%,#fd1d1d 55%,#fcb045 100%);
}
.social-icon.facebook:hover {
  color: #fff;
  border-color: #1877f2;
  background: #1877f2;
}
.footer .social-icon { background: rgba(255,255,255,.045); box-shadow: none; }
.footer .social-icon.instagram:hover { background: linear-gradient(135deg,#833ab4 0%,#fd1d1d 55%,#fcb045 100%); }
.footer .social-icon.facebook:hover { background: #1877f2; }

.mobile-menu-actions { display: none; }
.footer-links a:has(.icon), .enquiry-intro-card a { align-items: center; }
.footer-links a .icon { width: 15px; height: 15px; margin-right: 7px; vertical-align: -2px; }

.hero-frame img { object-position: center 18%; }
.collection-card { box-shadow: 0 10px 34px rgba(63,18,17,.08); }
.collection-card img { filter: saturate(.92) contrast(1.02); }
.collection-card:nth-child(6) img { object-position: center 52%; }
.collection-card::after { background: linear-gradient(180deg, rgba(22,10,10,.02) 28%, rgba(42,8,8,.88) 100%); }
.collection-content { text-shadow: 0 2px 18px rgba(0,0,0,.24); }
.story-main img { object-position: center 35%; }
.story-inset img { object-position: center 22%; }
.editorial-collage img:first-child { object-position: center 25%; }
.editorial-collage img:last-child { object-position: center 22%; }
.social-gallery img { object-position: center 20%; }

.branch-card { transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.branch-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); border-color: rgba(126,16,16,.24); }
.branch-pin .icon { width: 22px; height: 22px; }
.branch-actions .btn { position: relative; z-index: 2; }

.contact-channel-icon {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: #fff;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.15);
}
.contact-channel-icon .icon { width: 18px; height: 18px; }
.enquiry-intro-card a { transition: opacity .2s ease, transform .2s ease; }
.enquiry-intro-card a:hover { opacity: 1; transform: translateX(3px); }

.checkbox-row {
  margin-top: 8px;
  padding: 16px;
  border: 1px solid rgba(126,16,16,.15);
  border-radius: 14px;
  background: linear-gradient(135deg,rgba(126,16,16,.045),rgba(126,16,16,.018));
}
.checkbox-row input { width: 20px; height: 20px; }
.checkbox-row label { color: #554949; font-size: .82rem; }
.legal-inline {
  display: inline;
  color: var(--maroon) !important;
  font-weight: 800 !important;
  text-decoration: none !important;
  border-bottom: 2px solid rgba(126,16,16,.42);
  background: rgba(126,16,16,.065);
  padding: 1px 4px;
  border-radius: 5px;
  transition: background .18s ease, color .18s ease;
}
.legal-inline:hover { color: #fff !important; background: var(--maroon); border-bottom-color: var(--maroon); }

.btn-instagram {
  background: linear-gradient(135deg,#833ab4 0%,#fd1d1d 58%,#fcb045 100%);
  color: #fff;
  box-shadow: 0 10px 25px rgba(206,39,83,.18);
}
.btn-instagram:hover { background: linear-gradient(135deg,#71329b 0%,#df1818 58%,#e99a38 100%); }
.btn-facebook { border-color: rgba(24,119,242,.38); color: #1464cc; background: #fff; }
.btn-facebook:hover { color: #fff; border-color: #1877f2; background: #1877f2; }

.contact-hero-grid {
  width: var(--container);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(34px,7vw,90px);
  align-items: center;
}
.contact-hero-copy { max-width: 710px; }
.contact-hero-visual {
  position: relative;
  min-height: 430px;
  border-radius: 180px 180px 24px 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--beige);
}
.contact-hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,transparent 55%,rgba(49,8,8,.28));
}
.contact-hero-visual img { width: 100%; height: 100%; min-height: 430px; object-fit: cover; object-position: center 21%; }
.contact-hero-card {
  position: absolute;
  z-index: 2;
  left: 22px;
  bottom: 22px;
  display: grid;
  padding: 16px 20px;
  color: #fff;
  background: rgba(79,8,8,.86);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 14px;
  backdrop-filter: blur(12px);
}
.contact-hero-card strong { font: 600 1.7rem/1 'Cormorant Garamond',serif; }
.contact-hero-card small { margin-top: 4px; font-size: .7rem; text-transform: uppercase; letter-spacing: .12em; }

.legal-switcher {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  box-shadow: 0 8px 24px rgba(79,8,8,.05);
}
.legal-switcher a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--maroon);
  font-size: .83rem;
  font-weight: 800;
}
.legal-switcher a.active, .legal-switcher a[aria-current='page'] { background: var(--maroon); color: #fff; }
.legal-nav a { border-left: 2px solid transparent; padding-left: 10px; transition: .2s ease; }
.legal-nav a:hover, .legal-nav a.active { color: var(--maroon); border-left-color: var(--maroon); background: rgba(126,16,16,.04); }
.legal-content section { padding-bottom: 12px; border-bottom: 1px solid rgba(126,16,16,.09); }
.legal-content section:last-child { border-bottom: 0; }
.legal-content h2 { color: var(--maroon-dark); }

.footer-legal { align-items: center; }
.legal-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid rgba(255,255,255,.23);
  border-radius: 999px;
  color: rgba(255,255,255,.9);
  font-weight: 700;
  transition: .2s ease;
}
.legal-pill:hover, .legal-pill.active { background: #fff; color: var(--maroon-dark); border-color: #fff; }
.mobile-dock .icon { width: 19px; height: 19px; }

@media (max-width:1080px) {
  .contact-hero-grid { grid-template-columns: 1fr 400px; gap: 40px; }
  .contact-hero-visual, .contact-hero-visual img { min-height: 390px; }
}

@media (max-width:860px) {
  .site-header { backdrop-filter: none; }
  .announcement-inner { min-height: 34px; white-space: nowrap; overflow: hidden; }
  .nav-links { inset: 106px 0 0; min-height: calc(100dvh - 106px); overflow-y: auto; padding: 34px 24px 112px; background: var(--paper); }
  .nav-links > a { width: 100%; padding-bottom: 13px; border-bottom: 1px solid var(--line); }
  .nav-links > a::after { display: none; }
  .nav-links > a.active { color: var(--maroon); }
  .mobile-menu-actions { display: grid; width: 100%; gap: 18px; margin-top: 2px; }
  .mobile-menu-socials { display: flex; gap: 10px; }
  .mobile-menu-socials .social-icon { width: 46px; height: 46px; }
  .mobile-menu-socials .instagram { color:#fff; border-color:transparent; background:linear-gradient(135deg,#833ab4 0%,#fd1d1d 55%,#fcb045 100%); }
  .mobile-menu-socials .facebook { color:#fff; border-color:#1877f2; background:#1877f2; }
  .mobile-menu-cta { width: 100%; color:#fff !important; font:700 .92rem/1 'DM Sans',sans-serif !important; }
  .mobile-menu-cta .icon { color:#fff; }
  .menu-toggle[aria-expanded='true'] span { opacity: 0; }
  .menu-toggle[aria-expanded='true']::before { transform: translateY(5.5px) rotate(45deg); }
  .menu-toggle[aria-expanded='true']::after { transform: translateY(-5.5px) rotate(-45deg); }
  .contact-hero-grid { grid-template-columns: 1fr; }
  .contact-hero-copy { text-align: center; margin-inline: auto; }
  .contact-hero-copy .breadcrumbs { justify-content: center; }
  .contact-hero-copy .eyebrow { justify-content: center; }
  .contact-hero-visual { width: min(560px,100%); margin-inline: auto; min-height: 500px; }
  .contact-hero-visual img { min-height: 500px; }
  .social-gallery figure:nth-child(2) { transform: none; }
  .legal-switcher { margin-inline: auto; }
  .page-hero-inner { text-align: center; margin-inline: auto; }
  .page-hero-inner .breadcrumbs, .page-hero-inner .eyebrow { justify-content: center; }
}

@media (max-width:620px) {
  :root { --container: min(100% - 26px, 560px); }
  .announcement-inner { font-size: .66rem; gap: 7px; }
  .announcement-hide-mobile { display: none; }
  .navbar { min-height: 68px; }
  .brand-logo img { width: 126px; }
  .nav-links { inset: 102px 0 0; min-height: calc(100dvh - 102px); }
  .nav-links a { font-size: 1.75rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; min-width: 0; }
  .hero-trust { align-items: flex-start; text-align: left; }
  .hero-frame img { object-position: center 15%; }
  .collection-card, .collection-card:nth-child(1), .collection-card:nth-child(6) { min-height: 390px; }
  .collection-content { left: 20px; right: 20px; bottom: 20px; }
  .story-main img { object-position: center 30%; }
  .branch-card { padding: 24px; }
  .branch-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .branch-actions .btn { padding-inline: 12px; }
  .enquiry-form { border-radius: 22px; padding: 22px 18px; }
  .checkbox-row { grid-template-columns: 22px 1fr; padding: 14px 12px; }
  .social-gallery { grid-template-columns: 1fr 1fr; }
  .social-gallery figure { min-height: 230px; }
  .social-gallery figure:last-child { grid-column: 1 / -1; min-height: 290px; }
  .social-buttons { display: grid !important; }
  .social-buttons .btn { width: 100%; }
  .cta-actions { display: grid; grid-template-columns: 1fr; }
  .cta-actions .btn { width: 100%; }
  .contact-hero-visual, .contact-hero-visual img { min-height: 430px; }
  .contact-hero-visual { border-radius: 130px 130px 20px 20px; }
  .legal-switcher { display: grid; grid-template-columns: 1fr 1fr; width: 100%; border-radius: 18px; }
  .legal-switcher a { padding-inline: 10px; border-radius: 13px; }
  .footer-bottom { align-items: flex-start; }
  .footer-legal { width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
  .legal-pill { text-align: center; padding: 7px 10px; line-height: 1.2; }
  .cookie-notice { left: 12px; width: calc(100% - 24px); padding: 15px; }
}

@media (max-width:390px) {
  h1 { font-size: clamp(2.9rem,14.5vw,3.5rem); }
  h2 { font-size: clamp(2.25rem,11.8vw,2.9rem); }
  .hero-visual { min-height: 440px; }
  .collection-card, .collection-card:nth-child(1), .collection-card:nth-child(6) { min-height: 360px; }
  .story-main { height: 430px; }
  .contact-hero-visual, .contact-hero-visual img { min-height: 390px; }
  .branch-actions { grid-template-columns: 1fr; }
  .footer-legal { grid-template-columns: 1fr; }
}


@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; transform: none; }
}
