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

:root {
  --header-height: 76px;
  --red: #B91C1C;
  --red-dark: #991B1B;
  --red-deep: #7F1D1D;
  --gold: #B8860B;
  --gold-light: #D4A843;
  --gold-muted: #C9A96E;
  --bg-warm: #FAF9F6;
  --bg-cream: #F5F2ED;
  --bg-warm-alt: #F0ECE4;
  --text-primary: #1A1A1A;
  --text-secondary: #4A4541;
  --text-tertiary: #7A756E;
  --text-light: #9A958E;
  --white: #FFFFFF;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.07);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.10);
  --radius: 10px;
  --radius-lg: 16px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-primary);
  background: var(--bg-warm);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

body.mobile-nav-open {
  overflow: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(184, 134, 11, 0.45);
  outline-offset: 3px;
}

section[id] {
  scroll-margin-top: calc(var(--header-height) + 20px);
}

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

/* ========================================
   TYPOGRAPHY
   ======================================== */
h1, h2, h3, h4 { line-height: 1.2; font-weight: 700; }

h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); letter-spacing: -0.02em; font-weight: 800; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); letter-spacing: -0.015em; }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); font-weight: 600; }

.section-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-subline {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(185, 28, 28, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.8);
}

.btn-outline {
  background: transparent;
  color: var(--red);
  border-color: var(--red);
}
.btn-outline:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-dark {
  background: var(--text-primary);
  color: var(--white);
  border-color: var(--text-primary);
}
.btn-dark:hover {
  background: #333;
  transform: translateY(-1px);
}

.btn-white {
  background: var(--white);
  color: var(--red);
  border-color: var(--white);
  font-weight: 700;
}
.btn-white:hover {
  background: #F5F5F5;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ========================================
   HEADER
   ======================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 249, 246, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: var(--header-height);
}

.header-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 12px;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text-primary);
}

.header-logo-img {
  height: 48px;
  width: auto;
  max-width: min(220px, 32vw);
  border-radius: 4px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
  position: relative;
}
.header-nav a:hover { color: var(--red); }
.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: var(--transition);
}
.header-nav a:hover::after { width: 100%; }

.header-phone {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.header-phone svg { width: 16px; height: 16px; color: var(--red); }

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  margin: 5px 0;
  transition: var(--transition);
}

/* ========================================
   HERO
   ======================================== */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  background: linear-gradient(165deg, #2D1B0E 0%, #1A1210 50%, #0F0A07 100%);
  overflow: hidden;
  padding-top: var(--header-height);
}

.hero-media,
.hero-bg-photo,
.hero-bg-video,
.hero::before,
.hero-pattern {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: 0;
  overflow: hidden;
}

.hero-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0.48;
  filter: saturate(0.95) contrast(0.96) brightness(0.78);
  background: #140d0a;
}

.hero-bg-video[hidden] {
  display: none;
}

.hero-bg-photo {
  background: url('assets/images/shop/hero-storefront.jpg') center center / cover no-repeat;
  opacity: 0.18;
  transform: scale(1.02);
}

.hero::before {
  content: '';
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(15, 10, 7, 0.36) 0%, rgba(15, 10, 7, 0.52) 100%),
    radial-gradient(ellipse at 20% 50%, rgba(185, 28, 28, 0.14) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(184, 134, 11, 0.10) 0%, transparent 50%);
}

.hero-pattern {
  z-index: 1;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L60 30L30 60L0 30Z' fill='none' stroke='white' stroke-width='0.5'/%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px 24px;
  width: 100%;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.hero-eyebrow .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold-light);
}

.hero h1 {
  color: var(--white);
  max-width: 720px;
  margin-bottom: 20px;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold-light);
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,0.65);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  flex-wrap: wrap;
}

.hero-trust .separator {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,0.15);
}

/* Decorative side element */
.hero-deco {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 134, 11, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* ========================================
   VALUE PROPOSITION STRIP
   ======================================== */
.value-strip {
  background: var(--white);
  padding: 72px 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.value-strip-header {
  text-align: center;
  margin-bottom: 48px;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.value-card {
  text-align: center;
  padding: 24px 16px;
}

.value-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, rgba(184, 134, 11, 0.08), rgba(184, 134, 11, 0.03));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.value-icon svg { width: 24px; height: 24px; color: var(--gold); }

.value-card h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ========================================
   PRODUCT RANGE
   ======================================== */
.products {
  padding: 96px 0;
  background: var(--bg-warm);
}

.products-header {
  text-align: center;
  margin-bottom: 56px;
}

.products-header h2 { margin-bottom: 12px; }

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.product-card-img {
  height: 180px;
  overflow: hidden;
  position: relative;
}

.product-card-img .img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card-body {
  padding: 24px;
  flex: 1;
}

.product-card-body h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.product-card-body p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* Category colour bars */
.product-card:nth-child(1) .img-placeholder { background: linear-gradient(135deg, #F7E8D0 0%, #EED9B7 100%); }
.product-card:nth-child(2) .img-placeholder { background: linear-gradient(135deg, #FCE4E4 0%, #F2C4C4 100%); }
.product-card:nth-child(3) .img-placeholder { background: linear-gradient(135deg, #E8F0E4 0%, #D0E0C8 100%); }
.product-card:nth-child(4) .img-placeholder { background: linear-gradient(135deg, #E4EAF0 0%, #C8D8E8 100%); }
.product-card:nth-child(5) .img-placeholder { background: linear-gradient(135deg, #EDE4F0 0%, #D8C8E8 100%); }
.product-card:nth-child(6) .img-placeholder { background: linear-gradient(135deg, #F0EDE4 0%, #E0D8C4 100%); }

/* ========================================
   MORE THAN EXPECTED — SPLIT SECTION
   ======================================== */
.discovery {
  padding: 96px 0;
  background: var(--bg-cream);
}

.discovery-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.discovery-copy h2 {
  margin-bottom: 24px;
}

.discovery-copy p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  font-size: 0.95rem;
  line-height: 1.75;
}

.discovery-copy p:last-of-type { margin-bottom: 32px; }

.discovery-quote {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  font-style: italic;
  padding-left: 20px;
  border-left: 3px solid var(--gold);
  margin: 28px 0;
}

.discovery-visual {
  position: relative;
}

.discovery-visual .visual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.visual-block {
  border-radius: var(--radius);
  overflow: hidden;
  height: 200px;
}

.visual-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.visual-block:first-child {
  grid-row: span 2;
  height: 100%;
}

.visual-block:nth-child(1) { background: #E8DDD0; }
.visual-block:nth-child(2) { background: #D0DDE8; }
.visual-block:nth-child(3) { background: #DDE8D0; }

/* ========================================
   IN-STORE SERVICES
   ======================================== */
.services {
  padding: 96px 0;
  background: var(--white);
}

.services-header {
  text-align: center;
  margin-bottom: 56px;
}

.services-header h2 { margin-bottom: 12px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.service-card {
  background: var(--bg-warm);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid transparent;
  height: 100%;
}
.service-card:hover {
  border-color: rgba(184, 134, 11, 0.15);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.service-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-icon svg { width: 26px; height: 26px; color: white; }

.service-card h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.services-note {
  text-align: center;
  font-size: 0.88rem;
  color: var(--text-tertiary);
}

/* ========================================
   LOCAL TRUST STACK
   ======================================== */
.trust {
  padding: 96px 0;
  background: var(--bg-cream);
}

.trust-header {
  text-align: center;
  margin-bottom: 16px;
}

.trust-body {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

.trust-signals {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.trust-signal {
  text-align: center;
  padding: 24px 12px;
  background: var(--white);
  border-radius: var(--radius);
  transition: var(--transition);
}
.trust-signal:hover { box-shadow: var(--shadow-sm); }

.trust-signal-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 12px;
  background: rgba(184, 134, 11, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.trust-signal-icon svg { width: 20px; height: 20px; color: var(--gold); }

.trust-signal strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.trust-signal span {
  font-size: 0.78rem;
  color: var(--text-tertiary);
  line-height: 1.5;
}

/* ========================================
   ABOUT THE STORE
   ======================================== */
.about {
  padding: 96px 0;
  background: var(--white);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 400px;
  background: #E8DDD0;
}

.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-copy h2 { margin-bottom: 20px; }

.about-copy p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  font-size: 0.95rem;
  line-height: 1.75;
}

/* ========================================
   FACEBOOK CTA
   ======================================== */
.facebook-cta {
  padding: 64px 0;
  background: var(--bg-warm-alt);
  text-align: center;
}

.facebook-cta h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  margin-bottom: 12px;
}

.facebook-cta p {
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto 28px;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ========================================
   PLAN YOUR VISIT
   ======================================== */
.visit {
  padding: 96px 0;
  background: var(--white);
}

.visit-header {
  text-align: center;
  margin-bottom: 56px;
}

.visit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.visit-card {
  background: var(--bg-warm);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  height: 100%;
}

.visit-card-icon {
  width: 44px;
  height: 44px;
  background: rgba(185, 28, 28, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.visit-card-icon svg { width: 22px; height: 22px; color: var(--red); }

.visit-card h3 {
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.visit-card p, .visit-card address {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  font-style: normal;
}

.visit-card .hours-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.visit-card .hours-row:last-child { border-bottom: none; }
.visit-card .hours-row span:first-child { color: var(--text-secondary); }
.visit-card .hours-row span:last-child { font-weight: 600; color: var(--text-primary); }

.visit-card .visit-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}

.visit-card .visit-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--red);
  transition: var(--transition);
}
.visit-card .visit-links a:hover { color: var(--red-dark); gap: 12px; }
.visit-card .visit-links a svg { width: 16px; height: 16px; }

/* ========================================
   FINAL CTA
   ======================================== */
.final-cta {
  padding: 96px 0;
  background: linear-gradient(135deg, var(--red-deep), var(--red-dark), var(--red));
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.05) 0%, transparent 60%);
}

.final-cta .container { position: relative; z-index: 2; }

.final-cta h2 {
  color: var(--white);
  margin-bottom: 16px;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.final-cta p {
  color: rgba(255,255,255,0.75);
  max-width: 500px;
  margin: 0 auto 32px;
  font-size: 1rem;
  line-height: 1.7;
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
  background: #1A1714;
  color: rgba(255,255,255,0.6);
  padding: 56px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.footer-col p, .footer-col address {
  font-size: 0.88rem;
  line-height: 1.7;
  font-style: normal;
}

.footer-col a {
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-col a:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   MOBILE NAV
   ======================================== */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  background: var(--white);
  padding: 24px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  box-shadow: var(--shadow-lg);
  max-height: calc(100vh - var(--header-height));
  overflow-y: auto;
  overscroll-behavior: contain;
  z-index: 999;
}
.mobile-nav.active { display: block; }

.mobile-nav a {
  display: block;
  padding: 12px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.mobile-nav a:last-child { border-bottom: none; }

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-signals { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  :root {
    --header-height: 72px;
  }

  .header-nav, .header-phone { display: none; }
  .mobile-toggle { display: block; }
  .header-inner { gap: 12px; }
  .header-logo-img { height: 44px; max-width: 190px; }

  .hero { min-height: auto; padding: calc(var(--header-height) + 44px) 0 72px; }
  .hero h1 { font-size: 2rem; }
  .hero-sub { font-size: 0.95rem; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .hero-trust { flex-direction: column; gap: 8px; align-items: flex-start; }
  .hero-trust .separator { display: none; }
  .hero-deco { display: none; }

  .value-grid { grid-template-columns: 1fr; gap: 16px; }
  .value-card { text-align: left; display: grid; grid-template-columns: 52px 1fr; gap: 16px; align-items: start; padding: 16px; }
  .value-icon { margin: 0; }

  .products-grid { grid-template-columns: 1fr; }
  .product-card-img { height: 140px; }

  .discovery-inner { grid-template-columns: 1fr; gap: 40px; }
  .discovery-visual { order: -1; }
  .visual-block { height: 160px; }

  .services-grid { grid-template-columns: 1fr; }

  .trust-signals { grid-template-columns: 1fr 1fr; }

  .about-inner { grid-template-columns: 1fr; gap: 32px; }
  .about-visual { height: 260px; }

  .visit-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .container { padding: 0 20px; }
  section { padding-block: 64px; }
  .value-strip, .products, .services, .trust, .about, .visit { padding: 64px 0; }
  .discovery { padding: 64px 0; }
  .facebook-cta { padding: 48px 0; }
  .final-cta { padding: 64px 0; }
}

@media (max-width: 480px) {
  :root {
    --header-height: 68px;
  }

  .trust-signals { grid-template-columns: 1fr; }
  h1 { font-size: 1.75rem; }
  .header-inner { padding: 0 16px; }
  .header-logo-img { height: 40px; max-width: 168px; }
  .mobile-nav { padding: 20px 16px; }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }

  .hero-bg-video {
    display: none;
  }

  .hero-bg-photo {
    opacity: 0.28;
  }

  .animate-on-scroll {
    opacity: 1;
    transform: none;
  }
}
