/* =====================================================================
   Edinburgh Laminate Flooring - Design System
   Premium home-improvement brand. Warm woods, soft shadows, rounded cards.
   ===================================================================== */

:root {
  /* Brand palette */
  --walnut: #5A3B26;
  --walnut-dark: #432a1a;
  --walnut-deep: #2f1d12;
  --burnt-orange: #C8742A;
  --burnt-orange-dark: #a85c1d;
  --oak: #F5F1EC;
  --oak-deep: #ece4d8;
  --charcoal: #333333;
  --charcoal-soft: #5b5b5b;
  --white: #ffffff;
  --line: #e7ddd0;

  /* Typography */
  --font-head: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Shape & depth */
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 4px 14px rgba(74, 48, 28, 0.08);
  --shadow: 0 14px 40px rgba(74, 48, 28, 0.12);
  --shadow-lg: 0 30px 70px rgba(47, 29, 18, 0.20);

  /* Layout */
  --maxw: 1200px;
  --gutter: clamp(18px, 4vw, 48px);
  --topbar-h: 40px;
  --nav-h: 76px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--oak);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
:focus-visible { outline: 3px solid var(--burnt-orange); outline-offset: 2px; border-radius: 4px; }

/* ---------- Wood texture utility (SVG plank pattern) ---------- */
.wood-grain {
  background-color: var(--walnut);
  background-image:
    repeating-linear-gradient(90deg, rgba(0,0,0,.10) 0 2px, transparent 2px 140px),
    repeating-linear-gradient(0deg, rgba(255,255,255,.04) 0 1px, transparent 1px 26px),
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(0,0,0,.18));
}

.herringbone {
  background-color: var(--walnut);
  background-image:
    linear-gradient(135deg, rgba(255,255,255,.06) 25%, transparent 25%, transparent 50%, rgba(255,255,255,.06) 50%, rgba(255,255,255,.06) 75%, transparent 75%),
    linear-gradient(45deg, rgba(0,0,0,.12) 25%, transparent 25%, transparent 50%, rgba(0,0,0,.12) 50%, rgba(0,0,0,.12) 75%, transparent 75%);
  background-size: 64px 64px;
}

/* ---------- Typography helpers ---------- */
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.12; color: var(--walnut); letter-spacing: -0.01em; }
.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--burnt-orange);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before { content: ""; width: 20px; height: 20px; display: inline-block; flex: none; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C8742A' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 12l4-4 4 4-4 4z'/%3E%3Cpath d='M13 12l4-4 4 4-4 4z'/%3E%3C/svg%3E") center / contain no-repeat; }
.section-title { font-size: clamp(1.9rem, 4vw, 3rem); margin: 14px 0 16px; }
.lead { font-size: 1.12rem; color: var(--charcoal-soft); max-width: 60ch; }

/* ---------- Layout primitives ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding: clamp(56px, 9vw, 110px) 0; }
.section--tight { padding: clamp(40px, 6vw, 72px) 0; }
.bg-oak { background: var(--oak); }
.bg-oak-deep { background: var(--oak-deep); }
.bg-white { background: var(--white); }
.center { text-align: center; }
.center .lead { margin-inline: auto; }
.grid { display: grid; gap: clamp(18px, 3vw, 30px); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px 26px; border-radius: 999px; font-weight: 600; font-size: 0.98rem;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
  white-space: nowrap; border: 2px solid transparent;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--burnt-orange); color: #fff; box-shadow: 0 10px 24px rgba(200,116,42,.35); }
.btn--primary:hover { background: var(--burnt-orange-dark); transform: translateY(-2px); box-shadow: 0 16px 30px rgba(200,116,42,.42); }
.btn--dark { background: var(--walnut); color: #fff; }
.btn--dark:hover { background: var(--walnut-dark); transform: translateY(-2px); }
.btn--ghost { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.55); backdrop-filter: blur(4px); }
.btn--ghost:hover { background: #fff; color: var(--walnut); border-color: #fff; transform: translateY(-2px); }
.btn--outline { background: transparent; color: var(--walnut); border-color: var(--walnut); }
.btn--outline:hover { background: var(--walnut); color: #fff; transform: translateY(-2px); }
.btn--sm { padding: 10px 18px; font-size: 0.88rem; }
.btn--block { width: 100%; }

/* =====================================================================
   HEADER
   ===================================================================== */
.topbar {
  background: var(--walnut-deep); color: rgba(255,255,255,.85);
  font-size: 0.84rem; height: var(--topbar-h); display: flex; align-items: center;
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.topbar-info { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.topbar-info span { display: inline-flex; align-items: center; gap: 7px; }
.topbar-info svg { width: 15px; height: 15px; color: var(--burnt-orange); }
.topbar-social { display: flex; gap: 14px; }
.topbar-social a { opacity: .85; transition: opacity .2s; }
.topbar-social a:hover { opacity: 1; }
.topbar-social svg { width: 16px; height: 16px; }

.siteheader {
  position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s var(--ease);
}
.siteheader.scrolled { box-shadow: var(--shadow-sm); }
.nav { height: var(--nav-h); display: flex; align-items: center; justify-content: space-between; gap: 20px; }

.brand { display: flex; align-items: center; gap: 13px; }
.brand-mark { width: 44px; height: 44px; flex: none; border-radius: 12px; box-shadow: var(--shadow-sm); }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text b { font-family: var(--font-head); font-size: 1.18rem; color: var(--walnut); font-weight: 700; }
.brand-text small { font-size: 0.66rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--burnt-orange); font-weight: 600; }

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  padding: 10px 14px; border-radius: 999px; font-weight: 500; font-size: 0.95rem; color: var(--charcoal);
  transition: color .2s, background .2s; position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--walnut); background: var(--oak); }
.nav-cta { display: flex; align-items: center; gap: 12px; }

.nav-toggle { display: none; width: 46px; height: 46px; border-radius: 12px; background: var(--oak); align-items: center; justify-content: center; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--walnut); position: relative; transition: .3s; }
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; width: 22px; height: 2px; background: var(--walnut); transition: .3s; }
.nav-toggle span::before { top: -7px; } .nav-toggle span::after { top: 7px; }
.nav-toggle.open span { background: transparent; }
.nav-toggle.open span::before { top: 0; transform: rotate(45deg); }
.nav-toggle.open span::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 980px) {
  /* Slim the top info bar to just the phone so it never wraps */
  .topbar { font-size: 0.82rem; }
  .topbar .container { justify-content: center; }
  .topbar-info { gap: 0; }
  .topbar-info span:not(:first-child), .topbar-social { display: none; }

  .nav-toggle { display: flex; }
  .nav-cta { gap: 10px; }
  /* Dropdown anchored to the real bottom of the header, not a fixed offset */
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 10px;
    background: rgba(255, 252, 248, 0.80);
    backdrop-filter: saturate(180%) blur(16px);
    -webkit-backdrop-filter: saturate(180%) blur(16px);
    padding: 16px var(--gutter) 26px; box-shadow: var(--shadow); border-bottom: 1px solid var(--line);
    transform: translateY(-12px); opacity: 0; visibility: hidden;
    transition: transform .35s var(--ease), opacity .3s, visibility .35s;
    max-height: calc(100vh - var(--nav-h) - 20px); overflow-y: auto; z-index: 99;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; visibility: visible; }
  .nav-links a { padding: 15px 18px; border-radius: 12px; font-size: 1.05rem; }
  .nav-links a:hover, .nav-links a.active { background: var(--oak); color: var(--walnut); }
}

@media (max-width: 560px) {
  /* Prevent brand + CTA + burger from overflowing on small phones */
  .nav-cta .btn--primary { display: none; }
  .brand-mark { width: 38px; height: 38px; }
  .brand-text b { font-size: 1.05rem; }
  .brand-text small { font-size: 0.6rem; letter-spacing: 0.16em; }
}

/* =====================================================================
   HERO CAROUSEL
   ===================================================================== */
.hero { position: relative; }
.carousel { position: relative; height: clamp(540px, 84vh, 760px); overflow: hidden; }
.slide {
  position: absolute; inset: 0; opacity: 0; visibility: hidden;
  transition: opacity 1s var(--ease), visibility 1s; display: flex; align-items: center;
}
.slide.active { opacity: 1; visibility: visible; }
.slide-bg { position: absolute; inset: 0; z-index: 0; }
.slide-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.slide-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(47,29,18,.82) 0%, rgba(47,29,18,.55) 45%, rgba(47,29,18,.18) 100%); }
.slide.active .slide-bg { animation: slowZoom 8s ease-out forwards; }
@keyframes slowZoom { from { transform: scale(1.06); } to { transform: scale(1.16); } }

.slide-content { position: relative; z-index: 2; color: #fff; max-width: 640px; }
.slide-content .eyebrow { color: #f0c79a; }
.slide-content .eyebrow::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f0c79a' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 12l4-4 4 4-4 4z'/%3E%3Cpath d='M13 12l4-4 4 4-4 4z'/%3E%3C/svg%3E"); }
.slide-content h1, .slide-content h2 { color: #fff; font-size: clamp(2.1rem, 5.2vw, 3.7rem); margin: 16px 0 18px; text-shadow: 0 4px 24px rgba(0,0,0,.35); }
.slide-content p { font-size: 1.18rem; color: rgba(255,255,255,.92); max-width: 50ch; margin-bottom: 30px; }
.slide-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.slide.active .slide-content > * { animation: riseIn .8s var(--ease) both; }
.slide.active .slide-content > *:nth-child(2) { animation-delay: .1s; }
.slide.active .slide-content > *:nth-child(3) { animation-delay: .2s; }
.slide.active .slide-content > *:nth-child(4) { animation-delay: .3s; }
@keyframes riseIn { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: translateY(0); } }

.carousel-arrows { position: absolute; z-index: 5; bottom: 30px; right: var(--gutter); display: flex; gap: 12px; }
.carousel-arrows button {
  width: 52px; height: 52px; border-radius: 50%; background: rgba(255,255,255,.16); color: #fff;
  border: 1.5px solid rgba(255,255,255,.5); display: grid; place-items: center; backdrop-filter: blur(6px); transition: .25s;
}
.carousel-arrows button:hover { background: #fff; color: var(--walnut); }
.carousel-arrows svg { width: 20px; height: 20px; }
.carousel-dots { position: absolute; z-index: 5; bottom: 30px; left: var(--gutter); display: flex; gap: 10px; }
.carousel-dots button { width: 12px; height: 12px; border-radius: 50%; background: rgba(255,255,255,.4); transition: .3s; }
.carousel-dots button.active { background: var(--burnt-orange); width: 34px; border-radius: 999px; }

/* ---------- Trust strip ---------- */
.trust-strip { background: var(--walnut); color: #fff; }
.trust-strip .container { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 24px; padding-block: 26px; }
.trust-item { display: flex; align-items: center; gap: 13px; }
.trust-item svg { width: 26px; height: 26px; color: var(--burnt-orange); flex: none; }
.trust-item b { display: block; font-family: var(--font-head); font-size: 1.05rem; }
.trust-item span { font-size: 0.84rem; color: rgba(255,255,255,.7); }

/* =====================================================================
   SERVICES
   ===================================================================== */
.services-grid { grid-template-columns: repeat(3, 1fr); margin-top: 50px; }
@media (max-width: 880px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; } }
.service-card {
  background: #fff; border-radius: var(--radius); padding: 34px 30px; box-shadow: var(--shadow-sm);
  border: 1px solid var(--line); transition: transform .35s var(--ease), box-shadow .35s var(--ease); position: relative; overflow: hidden;
}
.service-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--burnt-orange), var(--walnut)); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease); }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { width: 62px; height: 62px; border-radius: 16px; display: grid; place-items: center; background: linear-gradient(145deg, var(--oak), var(--oak-deep)); color: var(--burnt-orange); margin-bottom: 20px; }
.service-icon svg { width: 30px; height: 30px; }
.service-card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.service-card p { color: var(--charcoal-soft); font-size: 0.97rem; }

/* =====================================================================
   WHY CHOOSE US (split)
   ===================================================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }
.split-media { position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 440px; box-shadow: var(--shadow); }
.split-media .floor-scene { position: absolute; inset: 0; }
.split-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.split-badge {
  position: absolute; bottom: 24px; left: 24px; background: #fff; border-radius: var(--radius); padding: 20px 24px;
  box-shadow: var(--shadow); display: flex; align-items: center; gap: 16px;
}
.split-badge .num { font-family: var(--font-head); font-size: 2.4rem; color: var(--burnt-orange); line-height: 1; }
.split-badge small { color: var(--charcoal-soft); font-size: 0.86rem; }
.reasons { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 24px; margin-top: 28px; }
@media (max-width: 480px) { .reasons { grid-template-columns: 1fr; } }
.reason { display: flex; gap: 13px; align-items: flex-start; }
.reason .tick { width: 30px; height: 30px; border-radius: 50%; background: var(--walnut); color: #fff; display: grid; place-items: center; flex: none; }
.reason .tick svg { width: 16px; height: 16px; }
.reason b { display: block; color: var(--walnut); font-size: 1.02rem; }
.reason span { font-size: 0.9rem; color: var(--charcoal-soft); }

/* =====================================================================
   PRODUCT CARDS
   ===================================================================== */
.product-grid { grid-template-columns: repeat(3, 1fr); margin-top: 48px; }
@media (max-width: 960px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .product-grid { grid-template-columns: 1fr; } }
.product-card {
  background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
  border: 1px solid var(--line); display: flex; flex-direction: column; transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.product-thumb { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.product-thumb .floor-scene { position: absolute; inset: 0; transition: transform .6s var(--ease); }
.product-card:hover .product-thumb .floor-scene { transform: scale(1.07); }
.product-tag { position: absolute; top: 14px; left: 14px; background: rgba(47,29,18,.85); color: #fff; font-size: 0.74rem; font-weight: 600; padding: 6px 12px; border-radius: 999px; letter-spacing: .04em; }
.product-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.product-body h3 { font-size: 1.22rem; margin-bottom: 6px; }
.product-meta { display: flex; flex-wrap: wrap; gap: 8px; margin: 12px 0 18px; }
.spec-pill { font-size: 0.76rem; background: var(--oak); color: var(--walnut); padding: 5px 11px; border-radius: 999px; font-weight: 600; border: 1px solid var(--line); }
.product-actions { margin-top: auto; display: flex; flex-direction: column; gap: 9px; }
.product-actions .row { display: flex; gap: 9px; }
.product-actions .row .btn { flex: 1; }

/* =====================================================================
   CATEGORY CARDS
   ===================================================================== */
.category-grid { grid-template-columns: repeat(3, 1fr); margin-top: 48px; }
@media (max-width: 960px) { .category-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .category-grid { grid-template-columns: 1fr; } }
.category-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 320px; display: flex; flex-direction: column; justify-content: flex-end;
  box-shadow: var(--shadow-sm); color: #fff; transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.category-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.category-card .floor-scene { position: absolute; inset: 0; z-index: 0; transition: transform .7s var(--ease); }
.category-card:hover .floor-scene { transform: scale(1.08); }
.category-card::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, transparent 30%, rgba(47,29,18,.88)); }
.category-body { position: relative; z-index: 2; padding: 28px 26px; }
.category-body h3 { color: #fff; font-size: 1.45rem; margin-bottom: 6px; }
.category-body p { color: rgba(255,255,255,.85); font-size: 0.92rem; margin-bottom: 14px; }
.category-count { position: absolute; top: 18px; right: 18px; z-index: 2; background: rgba(255,255,255,.92); color: var(--walnut); font-weight: 700; font-size: 0.78rem; padding: 7px 13px; border-radius: 999px; }
.category-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: #fff; }
.category-link svg { width: 16px; height: 16px; transition: transform .3s; }
.category-card:hover .category-link svg { transform: translateX(5px); }

/* =====================================================================
   FLOOR SCENES (CSS-rendered wood floors used in place of photos)
   ===================================================================== */
.floor-scene { background: var(--walnut); position: relative; overflow: hidden; }
.floor-scene::before {
  content: ""; position: absolute; inset: -10%;
  background-image:
    repeating-linear-gradient(90deg, rgba(0,0,0,.16) 0 1px, transparent 1px 132px),
    repeating-linear-gradient(0deg, rgba(255,255,255,.05) 0 1px, transparent 1px 30px);
}
.floor-scene::after { content: ""; position: absolute; inset: 0; background: radial-gradient(120% 100% at 50% 0%, rgba(255,255,255,.14), transparent 60%), linear-gradient(180deg, rgba(255,255,255,.05), rgba(0,0,0,.22)); }
/* tone variants */
.fs-oak     { background: linear-gradient(160deg, #cda978, #b78a52); }
.fs-lightoak{ background: linear-gradient(160deg, #e3c79a, #cba972); }
.fs-grey    { background: linear-gradient(160deg, #9a9690, #767069); }
.fs-dark    { background: linear-gradient(160deg, #4f3a2a, #33231a); }
.fs-walnut  { background: linear-gradient(160deg, #7a5436, #4d3320); }
.fs-natural { background: linear-gradient(160deg, #c79a64, #9c6f3e); }
.fs-ash     { background: linear-gradient(160deg, #cfc3b0, #ab9b84); }
.fs-honey   { background: linear-gradient(160deg, #d99f54, #b5772f); }
/* herringbone scene */
.fs-herringbone::before {
  background-image:
    repeating-linear-gradient(45deg, rgba(0,0,0,.18) 0 1px, transparent 1px 34px),
    repeating-linear-gradient(-45deg, rgba(0,0,0,.18) 0 1px, transparent 1px 34px),
    repeating-linear-gradient(45deg, rgba(255,255,255,.06) 0 17px, transparent 17px 34px);
  inset: -20%;
}
.floor-scene .scene-label { position: absolute; z-index: 3; left: 18px; bottom: 16px; color: rgba(255,255,255,.92); font-size: 0.8rem; letter-spacing: .05em; display: flex; align-items: center; gap: 8px; }
.floor-scene .scene-label svg { width: 16px; height: 16px; }

/* =====================================================================
   CTA BAND
   ===================================================================== */
.cta-band { position: relative; overflow: hidden; color: #fff; }
.cta-band .bg { position: absolute; inset: 0; z-index: 0; background: linear-gradient(120deg, var(--walnut) 0%, var(--burnt-orange-dark) 100%); }
.cta-band .bg::after { content: ""; position: absolute; inset: 0; opacity: .25; background-image: repeating-linear-gradient(90deg, rgba(0,0,0,.18) 0 2px, transparent 2px 150px), repeating-linear-gradient(0deg, rgba(255,255,255,.06) 0 1px, transparent 1px 28px); }
.cta-band .container { position: relative; z-index: 2; text-align: center; padding-block: clamp(54px, 8vw, 92px); }
.cta-band h2 { color: #fff; font-size: clamp(2rem, 4.6vw, 3.1rem); }
.cta-band p { color: rgba(255,255,255,.9); font-size: 1.15rem; max-width: 56ch; margin: 16px auto 30px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* =====================================================================
   FOOTER
   ===================================================================== */
.footer { background: var(--walnut-deep); color: rgba(255,255,255,.72); padding-top: clamp(50px, 7vw, 80px); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 40px; }
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.footer h4 { color: #fff; font-size: 1.05rem; margin-bottom: 18px; font-family: var(--font-body); letter-spacing: .03em; }
.footer .brand-text b { color: #fff; }
.footer p { font-size: 0.92rem; margin-top: 16px; max-width: 36ch; }
.footer-links a { display: block; padding: 6px 0; font-size: 0.93rem; transition: color .2s, padding .2s; }
.footer-links a:hover { color: var(--burnt-orange); padding-left: 6px; }
.footer-contact li { display: flex; gap: 11px; align-items: flex-start; padding: 6px 0; font-size: 0.93rem; }
.footer-contact svg { width: 17px; height: 17px; color: var(--burnt-orange); flex: none; margin-top: 3px; }
.footer-hours { font-size: 0.9rem; }
.footer-hours div { display: flex; justify-content: space-between; padding: 5px 0; border-bottom: 1px dashed rgba(255,255,255,.12); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 50px; padding: 24px 0; }
.footer-bottom .container { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 0.84rem; }

/* =====================================================================
   PAGE HEADER (interior pages)
   ===================================================================== */
.page-hero { position: relative; color: #fff; overflow: hidden; padding: clamp(70px, 11vw, 130px) 0 clamp(54px, 8vw, 90px); }
.page-hero .bg { position: absolute; inset: 0; z-index: 0; }
.page-hero .bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(110deg, rgba(47,29,18,.9), rgba(47,29,18,.6)); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; font-size: clamp(2.2rem, 5vw, 3.6rem); margin: 14px 0 14px; max-width: 18ch; }
.page-hero p { color: rgba(255,255,255,.9); font-size: 1.15rem; max-width: 56ch; }
.breadcrumb { display: flex; gap: 8px; font-size: 0.86rem; color: rgba(255,255,255,.75); align-items: center; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb svg { width: 13px; height: 13px; opacity: .6; }

/* =====================================================================
   PRODUCT DETAIL PAGE
   ===================================================================== */
.product-detail { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(28px, 4vw, 56px); }
@media (max-width: 900px) { .product-detail { grid-template-columns: 1fr; } }
.gallery-main { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; box-shadow: var(--shadow); cursor: zoom-in; }
.gallery-main .floor-scene { position: absolute; inset: 0; transition: transform .5s var(--ease); }
.gallery-main.zoomed .floor-scene { transform: scale(1.6); }
.gallery-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 14px; }
.gallery-thumbs button { aspect-ratio: 1; border-radius: var(--radius-sm); overflow: hidden; border: 2px solid transparent; position: relative; }
.gallery-thumbs button.active { border-color: var(--burnt-orange); }
.gallery-thumbs .floor-scene { position: absolute; inset: 0; }

.product-info h1 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 8px; }
.product-rating { display: flex; align-items: center; gap: 8px; color: var(--burnt-orange); margin-bottom: 16px; }
.product-rating .stars svg { width: 17px; height: 17px; }
.product-rating span { color: var(--charcoal-soft); font-size: 0.88rem; }
.product-price { font-family: var(--font-head); font-size: 2rem; color: var(--walnut); margin: 8px 0 6px; }
.product-price small { font-size: 0.95rem; color: var(--charcoal-soft); font-weight: 400; font-family: var(--font-body); }
.product-desc { color: var(--charcoal-soft); margin: 16px 0 22px; }
.spec-table { width: 100%; border-collapse: collapse; margin: 8px 0 26px; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.spec-table tr { border-bottom: 1px solid var(--line); }
.spec-table tr:last-child { border-bottom: none; }
.spec-table th { text-align: left; padding: 13px 18px; font-weight: 600; color: var(--walnut); width: 45%; background: var(--oak); font-size: 0.9rem; }
.spec-table td { padding: 13px 18px; color: var(--charcoal); font-size: 0.92rem; }
.product-cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
.product-cta-row .btn { flex: 1; min-width: 150px; }

/* Tabs */
.tabs { margin-top: 60px; }
.tab-nav { display: flex; gap: 6px; flex-wrap: wrap; border-bottom: 2px solid var(--line); margin-bottom: 28px; }
.tab-nav button { padding: 14px 22px; font-weight: 600; color: var(--charcoal-soft); border-bottom: 3px solid transparent; margin-bottom: -2px; transition: .25s; }
.tab-nav button.active { color: var(--walnut); border-bottom-color: var(--burnt-orange); }
.tab-panel { display: none; animation: fadeUp .4s var(--ease); }
.tab-panel.active { display: block; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.tab-panel h3 { margin: 18px 0 10px; font-size: 1.3rem; }
.tab-panel p { color: var(--charcoal-soft); margin-bottom: 12px; max-width: 75ch; }
.tab-panel ul.bullets { margin: 10px 0 16px; }
.tab-panel ul.bullets li { padding: 6px 0 6px 28px; position: relative; color: var(--charcoal-soft); }
.tab-panel ul.bullets li::before { content: ""; position: absolute; left: 0; top: 13px; width: 14px; height: 8px; border-left: 2px solid var(--burnt-orange); border-bottom: 2px solid var(--burnt-orange); transform: rotate(-45deg); }

/* =====================================================================
   ENQUIRY FORM
   ===================================================================== */
.form-card { background: #fff; border-radius: var(--radius-lg); padding: clamp(26px, 4vw, 44px); box-shadow: var(--shadow); border: 1px solid var(--line); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-weight: 600; font-size: 0.9rem; color: var(--walnut); }
.field label .req { color: var(--burnt-orange); }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: 0.96rem; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: var(--oak); color: var(--charcoal); transition: border .2s, background .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--burnt-orange); background: #fff; box-shadow: 0 0 0 4px rgba(200,116,42,.12); }
.field textarea { resize: vertical; min-height: 120px; }
.checks { display: flex; flex-direction: column; gap: 12px; margin: 4px 0 8px; }
.check { display: flex; align-items: center; gap: 12px; cursor: pointer; font-size: 0.95rem; color: var(--charcoal); }
.check input { width: 22px; height: 22px; accent-color: var(--burnt-orange); flex: none; }
.form-note { font-size: 0.84rem; color: var(--charcoal-soft); margin-top: 14px; }
.form-success { display: none; background: #eaf6ea; border: 1px solid #bfe3bf; color: #2c6b2c; padding: 16px 18px; border-radius: var(--radius-sm); margin-bottom: 18px; font-weight: 600; }
.form-success.show { display: block; animation: fadeUp .4s var(--ease); }
.selected-product-chip { display: inline-flex; align-items: center; gap: 9px; background: var(--oak); border: 1px solid var(--line); border-radius: 999px; padding: 8px 16px; font-size: 0.88rem; font-weight: 600; color: var(--walnut); margin-bottom: 6px; }
.selected-product-chip svg { width: 16px; height: 16px; color: var(--burnt-orange); }

/* =====================================================================
   GALLERY (masonry)
   ===================================================================== */
.gallery-filters { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin: 34px 0 36px; }
.gallery-filters button { padding: 10px 20px; border-radius: 999px; font-weight: 600; font-size: 0.9rem; background: #fff; color: var(--charcoal); border: 1.5px solid var(--line); transition: .25s; }
.gallery-filters button:hover { border-color: var(--burnt-orange); color: var(--walnut); }
.gallery-filters button.active { background: var(--walnut); color: #fff; border-color: var(--walnut); }
.masonry { columns: 3; column-gap: 18px; }
@media (max-width: 860px) { .masonry { columns: 2; } }
@media (max-width: 520px) { .masonry { columns: 1; } }
.masonry-item { break-inside: avoid; margin-bottom: 18px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); position: relative; transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.masonry-item:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.masonry-item .floor-scene { position: relative; }
.masonry-item .m-tall { aspect-ratio: 3/4; }
.masonry-item .m-wide { aspect-ratio: 4/3; }
.masonry-item .m-sq { aspect-ratio: 1; }
.masonry-cap { position: absolute; inset: auto 0 0 0; z-index: 3; padding: 16px; background: linear-gradient(transparent, rgba(47,29,18,.8)); color: #fff; font-size: 0.9rem; font-weight: 600; opacity: 0; transition: opacity .3s; }
.masonry-item:hover .masonry-cap { opacity: 1; }
.badge-ba { position: absolute; top: 12px; left: 12px; z-index: 3; background: var(--burnt-orange); color: #fff; font-size: 0.72rem; font-weight: 700; padding: 5px 11px; border-radius: 999px; letter-spacing: .04em; }

/* =====================================================================
   ABOUT
   ===================================================================== */
.stat-grid { grid-template-columns: repeat(4, 1fr); margin-top: 50px; }
@media (max-width: 760px) { .stat-grid { grid-template-columns: repeat(2, 1fr); } }
.stat { text-align: center; padding: 28px 18px; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.stat .num { font-family: var(--font-head); font-size: clamp(2.2rem, 4vw, 3rem); color: var(--burnt-orange); line-height: 1; }
.stat .label { color: var(--charcoal-soft); font-size: 0.92rem; margin-top: 8px; }

.value-grid { grid-template-columns: repeat(3, 1fr); margin-top: 44px; }
@media (max-width: 820px) { .value-grid { grid-template-columns: 1fr; } }
.value-card { background: #fff; border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.value-card .service-icon { margin-bottom: 16px; }
.value-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.value-card p { color: var(--charcoal-soft); font-size: 0.95rem; }

/* =====================================================================
   CONTACT
   ===================================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.25fr; gap: clamp(28px, 4vw, 54px); align-items: start; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-cards { display: grid; gap: 16px; }
.contact-card { display: flex; gap: 16px; align-items: flex-start; background: #fff; border-radius: var(--radius); padding: 22px 24px; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.contact-card .ic { width: 50px; height: 50px; border-radius: 14px; background: linear-gradient(145deg, var(--oak), var(--oak-deep)); color: var(--burnt-orange); display: grid; place-items: center; flex: none; }
.contact-card .ic svg { width: 24px; height: 24px; }
.contact-card h4 { font-family: var(--font-head); color: var(--walnut); font-size: 1.1rem; margin-bottom: 4px; }
.contact-card p, .contact-card a { color: var(--charcoal-soft); font-size: 0.95rem; }
.contact-card a:hover { color: var(--burnt-orange); }
.hours-table { width: 100%; }
.hours-table div { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px dashed var(--line); font-size: 0.95rem; }
.hours-table div:last-child { border-bottom: none; }
.hours-table .closed { color: #b14a3a; font-weight: 600; }
.hours-table .open-now { color: #2c6b2c; font-weight: 600; }
.map-embed { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); min-height: 280px; position: relative; }
.map-embed iframe { width: 100%; height: 100%; min-height: 280px; border: 0; display: block; }

/* =====================================================================
   Reveal on scroll
   ===================================================================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
.reveal[data-d="4"] { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Section heading with wood accent */
.section-head { max-width: 640px; }
.section-head.center { margin-inline: auto; }

/* Intro split for content pages */
.prose p { color: var(--charcoal-soft); margin-bottom: 16px; font-size: 1.04rem; }
.prose h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); margin: 28px 0 12px; }
.prose ul.bullets li { padding: 7px 0 7px 28px; position: relative; color: var(--charcoal-soft); }
.prose ul.bullets li::before { content: ""; position: absolute; left: 0; top: 14px; width: 14px; height: 8px; border-left: 2px solid var(--burnt-orange); border-bottom: 2px solid var(--burnt-orange); transform: rotate(-45deg); }

/* Process steps (installation services) */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 48px; }
@media (max-width: 880px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .steps { grid-template-columns: 1fr; } }
.step { background: #fff; border-radius: var(--radius); padding: 30px 24px; box-shadow: var(--shadow-sm); border: 1px solid var(--line); position: relative; }
.step::before { counter-increment: step; content: counter(step, decimal-leading-zero); font-family: var(--font-head); font-size: 2.4rem; color: var(--oak-deep); position: absolute; top: 16px; right: 20px; }
.step .step-ic { width: 52px; height: 52px; border-radius: 14px; background: var(--walnut); color: #fff; display: grid; place-items: center; margin-bottom: 16px; }
.step .step-ic svg { width: 26px; height: 26px; }
.step h3 { font-size: 1.15rem; margin-bottom: 8px; }
.step p { color: var(--charcoal-soft); font-size: 0.92rem; }

/* Pricing / info callout */
.callout { background: linear-gradient(135deg, var(--oak), var(--oak-deep)); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(26px, 4vw, 44px); }
.callout .grid { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 760px) { .callout .grid { grid-template-columns: 1fr; } }

.helper-float { position: fixed; right: 18px; bottom: 18px; z-index: 90; display: flex; flex-direction: column; gap: 10px; }
.helper-float a { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; color: #fff; box-shadow: var(--shadow); transition: transform .25s; }
.helper-float a:hover { transform: scale(1.08); }
.helper-float .call { background: var(--burnt-orange); }
.helper-float .quote { background: var(--walnut); }
.helper-float a svg { width: 24px; height: 24px; }
@media (max-width: 600px) { .helper-float { right: 12px; bottom: 12px; } .helper-float a { width: 50px; height: 50px; } }

/* =====================================================================
   LOCATIONS MARQUEE - thin auto-scrolling band of areas covered
   ===================================================================== */
.locations-strip {
  position: relative;
  background: linear-gradient(120deg, var(--walnut-deep) 0%, var(--walnut) 100%);
  color: #fff;
  overflow: hidden;
}
.locations-strip::after { /* subtle plank texture */
  content: ""; position: absolute; inset: 0; opacity: .18; pointer-events: none;
  background-image: repeating-linear-gradient(90deg, rgba(0,0,0,.22) 0 2px, transparent 2px 150px),
                    repeating-linear-gradient(0deg, rgba(255,255,255,.05) 0 1px, transparent 1px 26px);
}
.locations-inner { position: relative; z-index: 2; display: flex; align-items: stretch; }

.locations-label {
  display: inline-flex; align-items: center; gap: 9px; flex: none;
  padding: 0 22px; font-family: var(--font-body); font-weight: 700; font-size: 0.82rem;
  text-transform: uppercase; letter-spacing: 0.14em; color: #fff;
  background: var(--burnt-orange);
  box-shadow: 14px 0 22px rgba(47,29,18,.45); z-index: 3;
}
.locations-label svg { width: 16px; height: 16px; }

.locations-viewport {
  position: relative; flex: 1; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.locations-track {
  display: flex; align-items: center; width: max-content;
  padding: 13px 0; gap: 0;
  animation: loc-scroll 46s linear infinite;
  will-change: transform;
}
.locations-strip:hover .locations-track { animation-play-state: paused; }
@keyframes loc-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.loc-item {
  display: inline-flex; align-items: center; white-space: nowrap;
  font-size: 0.92rem; color: rgba(255,255,255,.9); padding: 0 22px; position: relative;
}
.loc-item::before { /* diamond separator */
  content: ""; position: absolute; left: -3px; top: 50%; width: 6px; height: 6px;
  transform: translateY(-50%) rotate(45deg); background: var(--burnt-orange); opacity: .9;
}
a.loc-item { transition: color .2s; }
a.loc-item:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--burnt-orange); text-decoration-thickness: 2px; }
a.loc-item.is-current { color: var(--burnt-orange); }
.loc-item.is-region { color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 1rem; }
.loc-item.is-region::before { width: 7px; height: 7px; background: #fff; }

@media (max-width: 600px) {
  .locations-label { padding: 0 15px; font-size: 0.72rem; letter-spacing: .1em; }
  .locations-label span { display: none; } /* keep just the pin icon */
  .loc-item { font-size: 0.86rem; padding: 0 17px; }
  .locations-track { padding: 11px 0; }
}
@media (prefers-reduced-motion: reduce) {
  .locations-track { animation: none; }
}

/* =====================================================================
   FAQ ACCORDION (native <details>) - used on service pages
   ===================================================================== */
.faq-list { max-width: 840px; margin: 44px auto 0; display: grid; gap: 14px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); overflow: hidden; transition: box-shadow .3s var(--ease); }
.faq-item[open] { box-shadow: var(--shadow); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 20px 24px; gap: 18px;
  font-family: var(--font-head); font-weight: 700; color: var(--walnut); font-size: 1.08rem;
  display: flex; align-items: center; justify-content: space-between;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: ""; flex: none; width: 11px; height: 11px; margin-top: -4px;
  border-right: 2.5px solid var(--burnt-orange); border-bottom: 2.5px solid var(--burnt-orange);
  transform: rotate(45deg); transition: transform .3s var(--ease);
}
.faq-item[open] summary::after { transform: rotate(-135deg); margin-top: 4px; }
.faq-item summary:hover { color: var(--burnt-orange); }
.faq-item .faq-a { padding: 0 24px 22px; color: var(--charcoal-soft); }
.faq-item .faq-a p { margin: 0; max-width: 72ch; }

/* =====================================================================
   CATALOGUE PHOTOS - real product images inside our card containers
   ===================================================================== */
.product-thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s var(--ease); }
.product-card:hover .product-thumb img { transform: scale(1.07); }
.category-card > img { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .7s var(--ease); }
.category-card:hover > img { transform: scale(1.08); }
.gallery-main img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s var(--ease); }
.gallery-main.zoomed img { transform: scale(1.7); }
.gallery-thumbs button img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.page-hero .bg > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }

/* Catalogue colour filter (laminate hub) */
.cat-filter { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin: 36px 0 30px; }
.cat-filter button { padding: 9px 18px; border-radius: 999px; font-weight: 600; font-size: 0.88rem; background: #fff; color: var(--charcoal); border: 1.5px solid var(--line); transition: .25s; }
.cat-filter button:hover { border-color: var(--burnt-orange); color: var(--walnut); }
.cat-filter button.active { background: var(--walnut); color: #fff; border-color: var(--walnut); }
.cat-count { color: var(--charcoal-soft); font-size: 0.92rem; text-align: center; margin-bottom: 8px; }

/* Related-category tag chips (category page bottom + product page) */
.tag-cloud { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.tag-chip { display: inline-flex; align-items: center; gap: 7px; padding: 8px 15px; border-radius: 999px; background: #fff; border: 1px solid var(--line); color: var(--walnut); font-size: 0.86rem; font-weight: 600; box-shadow: var(--shadow-sm); transition: .25s; }
.tag-chip:hover { border-color: var(--burnt-orange); color: var(--burnt-orange); transform: translateY(-2px); }
.tag-chip small { color: var(--charcoal-soft); font-weight: 500; }

/* =====================================================================
   THANK-YOU POPUP — centered confirmation modal after form submission
   ===================================================================== */
.thanks-modal {
  position: fixed; inset: 0; z-index: 1000; display: flex; align-items: center; justify-content: center;
  padding: 20px; background: rgba(47, 29, 18, .55); backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px);
  opacity: 0; visibility: hidden; transition: opacity .3s var(--ease), visibility .3s var(--ease);
}
.thanks-modal.show { opacity: 1; visibility: visible; }
.thanks-card {
  background: #fff; border-radius: var(--radius-lg); padding: 44px 36px; max-width: 440px; width: 100%;
  text-align: center; box-shadow: var(--shadow-lg);
  transform: translateY(18px) scale(.94); transition: transform .4s var(--ease);
}
.thanks-modal.show .thanks-card { transform: none; }
.thanks-icon {
  width: 78px; height: 78px; border-radius: 50%; margin: 0 auto 20px; display: grid; place-items: center;
  background: linear-gradient(145deg, var(--burnt-orange), var(--walnut)); color: #fff;
  box-shadow: 0 12px 26px rgba(200, 116, 42, .38);
}
.thanks-icon svg { width: 40px; height: 40px; }
.thanks-card.is-error .thanks-icon { background: linear-gradient(145deg, #e0563f, #a83a28); box-shadow: 0 12px 26px rgba(176, 74, 58, .38); }
.thanks-modal.show .thanks-icon { animation: thanksPop .5s var(--ease) .1s both; }
@keyframes thanksPop { 0% { transform: scale(0); } 60% { transform: scale(1.15); } 100% { transform: scale(1); } }
.thanks-card h3 { font-size: 1.7rem; margin-bottom: 12px; }
.thanks-msg { color: var(--charcoal-soft); margin-bottom: 26px; font-size: 1.02rem; line-height: 1.55; }
.thanks-close { min-width: 150px; }

/* Load-more pagination */
.load-more-wrap { text-align: center; margin-top: 38px; }
.load-more-wrap .btn { min-width: 200px; }
