/* ============================================================
   GARAGE DOOR WAREHOUSE — SEO Demo Site
   Shared stylesheet
   ============================================================ */

:root {
  --bg: #121212;
  --bg-elevated: #1a1a1a;
  --bg-deeper: #0a0a0a;
  --gold: #92815C;
  --gold-bright: #a89270;
  --gold-soft: rgba(146, 129, 92, 0.18);
  --grey: #94959B;
  --text: #f4f1ea;
  --text-dim: #b8b5ad;
  --text-faint: #6d6b65;
  --border: rgba(146, 129, 92, 0.18);
  --border-soft: rgba(255, 255, 255, 0.05);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

/* ============================================================
   SEO DEMO BADGE — bottom right so it doesn't cover the nav
   ============================================================ */
.seo-badge {
  position: fixed;
  bottom: 20px; right: 20px;
  z-index: 1000;
  background: rgba(146, 129, 92, 0.95);
  color: #121212;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 12px 32px rgba(0,0,0,0.5);
  transition: all 0.3s ease;
  border: none;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.seo-badge:hover { background: var(--gold-bright); transform: translateY(-2px); }

.seo-panel {
  position: fixed;
  bottom: 70px; right: 20px;
  z-index: 999;
  background: #1a1a1a;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px 26px;
  max-width: 360px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
  font-size: 13px;
  display: none;
}
.seo-panel.open { display: block; }
.seo-panel h4 {
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  margin-bottom: 14px;
  font-weight: 500;
}
.seo-panel ul { list-style: none; }
.seo-panel li {
  padding: 6px 0;
  padding-left: 22px;
  position: relative;
  color: var(--text-dim);
  line-height: 1.5;
}
.seo-panel li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 600;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
nav.main-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 5vw;
  background: rgba(18, 18, 18, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.logo-mark {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  object-fit: contain;
  display: block;
}
.logo span { color: var(--gold); font-style: italic; }

/* Footer logo a bit larger */
.footer-brand .logo { font-size: 28px; }
.footer-brand .logo-mark { width: 44px; height: 44px; }

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav-links a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.04em;
  transition: color 0.2s;
  position: relative;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: -6px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
}

.cta-button {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  font-family: inherit;
  white-space: nowrap;
}
.cta-button:hover { background: var(--gold); color: var(--bg); transform: translateY(-1px); }
.cta-button .arrow { font-size: 14px; transition: transform 0.3s; }
.cta-button:hover .arrow { transform: rotate(45deg); }

.cta-button.solid { background: var(--gold); color: var(--bg); }
.cta-button.solid:hover { background: var(--gold-bright); }

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 102;
  position: relative;
  width: 44px;
  height: 44px;
}
.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text);
  margin: 5px auto;
  transition: 0.35s cubic-bezier(0.4, 0.0, 0.2, 1);
  transform-origin: center;
}
.mobile-menu-btn.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
  background: var(--gold);
}
.mobile-menu-btn.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.mobile-menu-btn.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
  background: var(--gold);
}

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100vh;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 101;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.01em;
  position: relative;
  transition: color 0.2s;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease, color 0.2s;
}
.mobile-menu.open a {
  opacity: 1;
  transform: translateY(0);
}
.mobile-menu.open a:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.open a:nth-child(2) { transition-delay: 0.18s; }
.mobile-menu.open a:nth-child(3) { transition-delay: 0.26s; }
.mobile-menu.open a:nth-child(4) { transition-delay: 0.34s; }
.mobile-menu.open a:nth-child(5) { transition-delay: 0.42s; }
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu a.active { color: var(--gold); font-style: italic; }
.mobile-menu .cta-button {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  margin-top: 12px;
}
.mobile-menu .mobile-contact {
  margin-top: 24px;
  text-align: center;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  color: var(--text-dim);
  font-style: normal;
}
.mobile-menu .mobile-contact a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}

body.menu-open { overflow: hidden; }

/* ============================================================
   SECTION PRIMITIVES
   ============================================================ */
section { padding: 100px 5vw; position: relative; }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.section-eyebrow .line { width: 32px; height: 1px; background: var(--gold); }

.section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  color: var(--text);
  max-width: 720px;
}
.section-heading em { font-style: italic; color: var(--gold); }

.section-sub {
  color: var(--text-dim);
  font-size: 17px;
  max-width: 580px;
  margin-bottom: 60px;
  line-height: 1.7;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  padding: 140px 5vw 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: 20%;
  right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(146,129,92,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.hero-eyebrow .line { width: 32px; height: 1px; background: var(--gold); }

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
  color: var(--text);
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

.hero p.lede {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-dim);
  max-width: 500px;
  margin-bottom: 36px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Hero visual is a slot — any child (img or placeholder) fills it.
   To use a real image: replace the .img-placeholder with
   <img src="..." alt="..."> — nothing else changes. */
.hero-visual {
  position: relative;
  height: 540px;
  border-radius: 4px;
  overflow: hidden;
}
.hero-visual > .img-placeholder,
.hero-visual > img,
.hero-visual > picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.hero-visual > img { object-fit: cover; }
/* When the placeholder is inside the hero, sit its caption in the UPPER half
   so it doesn't clash with the 24/7 overlay sitting in the lower half */
.hero-visual > .img-placeholder {
  justify-content: flex-start;
  padding-top: 28%;
}
.hero-visual-overlay {
  position: absolute;
  bottom: 0; left: 0;
  padding: 40px;
  z-index: 2;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.7) 100%);
  width: 100%;
}
.hero-visual-overlay .stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
}
.hero-visual-overlay .stat-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 6px;
}

/* ============================================================
   PAGE HEADERS (for non-home pages)
   ============================================================ */
.page-header {
  padding: 160px 5vw 80px;
  position: relative;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.page-header::before {
  content: "";
  position: absolute;
  top: -50%; right: -20%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(146,129,92,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.page-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
  max-width: 900px;
}
.page-header h1 em { font-style: italic; color: var(--gold); }
.page-header p {
  font-size: 18px;
  color: var(--text-dim);
  max-width: 640px;
  line-height: 1.7;
  margin-bottom: 32px;
}
.breadcrumbs {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--text-faint);
  margin-bottom: 28px;
  text-transform: uppercase;
}
.breadcrumbs a { color: var(--text-dim); text-decoration: none; transition: color 0.2s; }
.breadcrumbs a:hover { color: var(--gold); }
.breadcrumbs .sep { color: var(--gold); margin: 0 10px; }

/* ============================================================
   ABOUT BAND
   ============================================================ */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  background: #0e0e0e;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
/* About visual uses slot wrappers — any child (img or placeholder) fills the slot.
   To use a real image: replace the .img-placeholder div inside a slot with
   <img src="..." alt="..."> — no other markup or class changes needed. */
.about-visual {
  position: relative;
  height: 480px;
}
.about-slot {
  position: absolute;
  border-radius: 2px;
  overflow: hidden;
}
.about-slot.main {
  top: 0; left: 0;
  width: 70%; height: 75%;
}
.about-slot.accent {
  bottom: 0; right: 0;
  width: 45%; height: 50%;
}
/* Any child of a slot — img, placeholder, picture, etc. — fills it */
.about-slot > * {
  width: 100%;
  height: 100%;
  display: block;
}
.about-slot > img {
  object-fit: cover;
}
.about-text { padding: 20px 0; }
.about-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.1;
  margin-bottom: 24px;
}
.about-text h2 em { font-style: italic; color: var(--gold); }
.about-text p {
  color: var(--text-dim);
  margin-bottom: 18px;
  font-size: 16px;
  line-height: 1.75;
}

/* ============================================================
   IMAGE PLACEHOLDERS — visual cue showing where photos go
   ============================================================ */
.img-placeholder {
  background:
    linear-gradient(135deg, rgba(146,129,92,0.08) 0%, rgba(146,129,92,0.03) 100%),
    repeating-linear-gradient(
      45deg,
      transparent 0,
      transparent 10px,
      rgba(146,129,92,0.04) 10px,
      rgba(146,129,92,0.04) 11px
    );
  border: 1px dashed rgba(146,129,92,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  color: rgba(146,129,92,0.7);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 20px;
}
.img-placeholder::before {
  content: "";
  width: 38px;
  height: 38px;
  border: 1.5px solid rgba(146,129,92,0.6);
  border-radius: 4px;
  background:
    linear-gradient(135deg, transparent 45%, rgba(146,129,92,0.5) 45%, rgba(146,129,92,0.5) 55%, transparent 55%);
  position: relative;
  margin-bottom: 6px;
}
.img-placeholder::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% - 21px));
  width: 7px;
  height: 7px;
  background: rgba(146,129,92,0.7);
  border-radius: 50%;
}
.img-placeholder .ph-label {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: 13px;
  font-weight: 400;
  color: rgba(146,129,92,0.85);
  margin-top: 2px;
}

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.service-card {
  background: var(--bg);
  transition: background 0.4s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}
.service-card:hover { background: #181818; }
/* Card image slot — replace the child placeholder with <img> directly */
.service-card .card-image {
  height: 200px;
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid var(--border);
}
.service-card .card-image > .img-placeholder {
  height: 100%;
  border: none;
  border-radius: 0;
}
.service-card .card-image > img,
.service-card .card-image > picture {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.service-card-body {
  padding: 36px 36px 40px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-number {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--gold);
  margin-bottom: 18px;
  letter-spacing: 0.05em;
}
.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 26px;
  margin-bottom: 14px;
  color: var(--text);
  line-height: 1.2;
}
.service-card p {
  color: var(--text-dim);
  font-size: 14.5px;
  line-height: 1.7;
  margin-bottom: 22px;
  flex: 1;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  align-self: flex-start;
}
.service-link::after { content: "→"; transition: transform 0.3s; }
.service-card:hover .service-link::after { transform: translateX(4px); }

/* ============================================================
   SERVICE AREA STRIP
   ============================================================ */
.service-area {
  background: #0e0e0e;
  text-align: center;
  padding: 60px 5vw;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.service-area .label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.service-area .places {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 2.4vw, 2rem);
  color: var(--text);
  line-height: 1.4;
}
.service-area .places span { color: var(--gold); font-style: italic; }
.service-area .places .sep { color: var(--border); margin: 0 18px; font-style: normal; }

/* ============================================================
   GARAGE DOORS — Designs Grid
   ============================================================ */
.designs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}
.design-card {
  background: #181614;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.4s ease, border-color 0.4s ease;
}
.design-card:hover { transform: translateY(-4px); border-color: var(--gold); }
/* Design card image slot — replace child with <img> directly */
.design-card .card-image {
  height: 280px;
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid var(--border);
}
.design-card .card-image > .img-placeholder {
  height: 100%;
  border: none;
  border-radius: 0;
}
.design-card .card-image > img,
.design-card .card-image > picture {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.design-info {
  padding: 28px 30px;
}
.design-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 24px;
  margin-bottom: 10px;
  color: var(--text);
}
.design-info p {
  color: var(--text-dim);
  font-size: 14.5px;
  line-height: 1.7;
}

/* ============================================================
   COLOUR PALETTE
   ============================================================ */
.colours-section {
  background: #0e0e0e;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.colours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 18px;
  margin-top: 20px;
}
.colour-swatch {
  text-align: center;
}
.colour-chip {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  transition: transform 0.3s;
}
.colour-swatch:hover .colour-chip { transform: scale(1.04); }
.colour-name {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 880px; margin-top: 40px; }
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 26px 0;
  cursor: pointer;
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px;
  color: var(--text);
  font-weight: 500;
  gap: 24px;
}
.faq-toggle {
  width: 24px; height: 24px;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 22px;
  line-height: 1;
  transition: transform 0.3s;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-a {
  color: var(--text-dim);
  font-size: 15.5px;
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.3s ease;
}
.faq-item.open .faq-a {
  max-height: 400px;
  padding-top: 18px;
}

/* ============================================================
   AMPLIMESH — feature grid
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
}
.feature-card {
  padding: 36px 30px;
  background: #181614;
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: border-color 0.3s, transform 0.3s;
}
.feature-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.feature-icon {
  width: 56px; height: 56px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 22px;
  background: rgba(146, 129, 92, 0.06);
  transition: background 0.3s ease, transform 0.3s ease;
}
.feature-card:hover .feature-icon {
  background: rgba(146, 129, 92, 0.14);
  transform: scale(1.05);
}
.feature-icon svg {
  width: 26px;
  height: 26px;
  display: block;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
/* If you replace with an Amplimesh-supplied SVG that uses fill, this keeps it on-brand */
.feature-icon svg [fill]:not([fill="none"]) { fill: var(--gold); }
.feature-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--text);
}
.feature-card p {
  color: var(--text-dim);
  font-size: 14.5px;
  line-height: 1.7;
}

/* Amplimesh product cards */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.product-card {
  background: linear-gradient(180deg, #1a1814 0%, #121110 100%);
  border: 1px solid var(--border);
  border-radius: 4px;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.product-card:hover { transform: translateY(-4px); border-color: var(--gold); }
/* Product card image slot — replace child with <img> directly */
.product-card .card-image {
  height: 160px;
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid var(--border);
}
.product-card .card-image > .img-placeholder {
  height: 100%;
  border: none;
  border-radius: 0;
}
.product-card .card-image > img,
.product-card .card-image > picture {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.product-card-body {
  padding: 28px 24px 32px;
  flex: 1;
}
.product-card .num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--gold);
  font-size: 14px;
  margin-bottom: 18px;
}
.product-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 22px;
  margin-bottom: 14px;
  color: var(--text);
}
.product-card p {
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.65;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, #1f1d18 0%, #2a2620 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
  padding: 100px 5vw;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  top: -50%; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 600px;
  background: radial-gradient(ellipse, rgba(146,129,92,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.cta-banner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.1;
  margin-bottom: 22px;
  position: relative;
}
.cta-banner h2 em { font-style: italic; color: var(--gold); }
.cta-banner p {
  color: var(--text-dim);
  font-size: 17px;
  margin-bottom: 36px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.cta-banner-buttons {
  display: inline-flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.contact-form {
  background: #181614;
  border: 1px solid var(--border);
  padding: 44px;
  border-radius: 4px;
}
.contact-form h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 28px;
  margin-bottom: 28px;
}
.form-row { margin-bottom: 18px; }
.form-row input, .form-row select, .form-row textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  color: var(--text);
  font-family: inherit;
  font-size: 14.5px;
  outline: none;
  transition: border-color 0.3s;
}
.form-row input::placeholder, .form-row textarea::placeholder { color: #6d6b65; }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { border-bottom-color: var(--gold); }
.form-row select { -webkit-appearance: none; appearance: none; cursor: pointer; }
.form-row select option { background: #1a1a1a; }
.form-row textarea { resize: vertical; min-height: 90px; }
.form-submit {
  background: var(--gold);
  color: var(--bg);
  border: none;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 10px;
  transition: background 0.2s;
  font-family: inherit;
}
.form-submit:hover { background: var(--gold-bright); }

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}
.contact-info-list .big {
  color: var(--gold);
  text-decoration: none;
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
}
.contact-info-list .reg {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 14px;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: #0a0a0a;
  padding: 80px 5vw 30px;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 50px;
}
.footer-brand .logo { margin-bottom: 16px; display: inline-flex; }
.footer-brand p { color: var(--text-dim); font-size: 14px; max-width: 280px; line-height: 1.7; margin-bottom: 18px; }
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  text-decoration: none;
  font-size: 13px;
  transition: all 0.2s;
}
.footer-social a:hover { background: var(--gold); color: var(--bg); border-color: var(--gold); }
footer h4 {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  font-weight: 500;
}
footer ul { list-style: none; }
footer li { margin-bottom: 11px; }
footer a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
footer a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  color: var(--text-faint);
  font-size: 12px;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom .nap { color: var(--text-dim); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .mobile-menu-btn { display: block; }
  .hero { grid-template-columns: 1fr; padding: 110px 5vw 60px; }
  .hero-visual { height: 360px; }
  .about { grid-template-columns: 1fr; gap: 50px; padding: 70px 5vw; }
  .about-visual { height: 360px; }
  .services-grid { grid-template-columns: 1fr; }
  .designs-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .contact { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .seo-badge { font-size: 10px; padding: 8px 12px; bottom: 14px; right: 14px; }
  .seo-panel { max-width: calc(100vw - 28px); right: 14px; bottom: 60px; }
  section { padding: 70px 5vw; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .colours-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   ANIMATION
   ============================================================ */
@keyframes rise {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.anim { animation: rise 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) both; }
.anim-1 { animation-delay: 0.05s; }
.anim-2 { animation-delay: 0.15s; }
.anim-3 { animation-delay: 0.25s; }
.anim-4 { animation-delay: 0.35s; }
.anim-5 { animation-delay: 0.45s; }
