/* ============================================
   TimberCraft Sheds — Stylesheet
   ============================================
   TABLE OF CONTENTS:
   1. Variables (Colours & Fonts)
   2. Reset & Base
   3. Navigation
   4. Hero Section
   5. Buttons
   6. Section Shared Styles
   7. Products Section
   8. Why Us Section
   9. Process Section
   10. Testimonials Section
   11. CTA Banner
   12. Footer
   13. Animations
   14. Responsive (Mobile & Tablet)
   ============================================ */


/* ── 1. VARIABLES ── */
:root {
  --forest:      #1a2e1a;   /* Dark green — nav, dark sections */
  --bark:        #3d2b1f;   /* Dark brown — price text */
  --cedar:       #8b5e3c;   /* Mid brown — accents, borders */
  --straw:       #e8d5a3;   /* Warm cream — highlights on dark */
  --cream:       #f9f4ec;   /* Page background */
  --white:       #ffffff;
  --text:        #1a1a1a;   /* Body text */
  --muted:       #6b6b6b;   /* Secondary text */
  --accent:      #c4502a;   /* Orange-red — CTAs, badges */
  --accent-dark: #a8401f;   /* Darker accent for AA small text on light bg */
  --red:         #a83232;   /* Deep red — "premium" tag */
  --green:       #2d5a27;   /* Mid green — "Popular" badge */
  --light-green: #e8f0e7;
}


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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

/* Global keyboard focus indicator (WCAG 2.4.7) */
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
  border-radius: 2px;
}
/* Inputs get their own focus treatment already; keep it visible */
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 1px;
}

/* Skip-to-content link — visible only when focused (WCAG 2.4.1) */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--forest);
  color: var(--straw);
  padding: 0.75rem 1.25rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  z-index: 200;
  border-radius: 4px;
  transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}


/* ── 3. NAVIGATION ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 5%;
  background: rgba(26,46,26,0.96);
  backdrop-filter: blur(8px);
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--straw);
  letter-spacing: -0.5px;
}
.nav-logo span { color: var(--accent); }

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  color: rgba(232,213,163,0.8);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--straw); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  background: var(--accent);
  color: var(--white);
  border: none;
  padding: 0 1.4rem;
  min-height: 44px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  border-radius: 2px;
}
.nav-cta:hover { background: #a63e20; transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  width: 44px;
  height: 44px;
  padding: 10px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--straw);
  transition: all 0.3s;
}

/* Mobile Menu Overlay */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--forest);
  z-index: 99;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--straw);
  text-decoration: none;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
}
.close-btn {
  position: absolute;
  top: 1.5rem;
  right: 5%;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--straw);
  font-size: 2rem;
  line-height: 1;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}


/* ── 4. HERO ── */
.hero {
  min-height: 100vh;
  background:
    linear-gradient(to bottom right, rgba(26,46,26,0.72) 0%, rgba(61,43,31,0.55) 100%),
    url("../images/F016FF07-F77A-4DAC-94ED-97231D1F2A75.JPG") center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 5%;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--cream));
}

.hero-tag {
  display: block;
  background: var(--accent);
  width: 190px;
  height: 6px;
  margin-bottom: 2rem;
  animation: fadeUp 0.6s ease both;
}
.hero2 {
  min-height: 100vh;
  background:
    linear-gradient(to bottom right, rgba(26,46,26,0.72) 0%, rgba(61,43,31,0.55) 100%),
    url("../images/sheds/shed-foundation.jpg") center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 5%;
  position: relative;
  overflow: hidden;
}
.hero2::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--cream));
}

.hero2 h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.0;
  max-width: 700px;
  animation: fadeUp 0.7s 0.1s ease both;
}
.hero h1 em { font-style: italic; color: var(--straw); }

.hero-sub {
  margin-top: 1.5rem;
  max-width: 500px;
  color: rgba(255,255,255,0.82);
  font-size: 1.1rem;
  line-height: 1.7;
  font-weight: 300;
  animation: fadeUp 0.7s 0.2s ease both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
  animation: fadeUp 0.7s 0.3s ease both;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 4rem;
  animation: fadeUp 0.7s 0.4s ease both;
  flex-wrap: wrap;
}
.stat-item { color: var(--white); }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  color: var(--straw);
}
.stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.7;
  margin-top: 0.3rem;
}


/* ── 5. BUTTONS ── */
.btn-primary {
  background: var(--accent);
  color: var(--white);
  padding: 1rem 2.2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, transform 0.15s;
  border-radius: 2px;
}
.btn-primary:hover { background: #a63e20; transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
  padding: 1rem 2.2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.2s, background 0.2s;
  border-radius: 2px;
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }


/* ── 6. SECTION SHARED STYLES ── */
.section { padding: 6rem 5%; }

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-dark);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
}

.section-sub {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 520px;
  margin-top: 0.8rem;
  line-height: 1.7;
}


/* ── 7. PRODUCTS SECTION ── */
#products { background: var(--white); }

.products-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.filter-tabs { display: flex; gap: 0.5rem; flex-wrap: wrap; }

.tab {
  padding: 0.75rem 1.2rem;
  min-height: 44px;
  border: 1.5px solid #949494;
  background: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: 100px;
  transition: all 0.2s;
  color: var(--muted);
}
.tab.active, .tab:hover {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--white);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 2rem;
}

/* Cards */
.card {
  background: var(--cream);
  overflow: hidden;
  border-radius: 4px;
  transition: transform 0.25s, box-shadow 0.25s;
  cursor: pointer;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.12); }

.card-img {
  height: 230px;
  overflow: hidden;
  position: relative;
}
.card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.card:hover .card-img img { transform: scale(1.06); }

.card-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--accent);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 2px;
}
.card-badge.green { background: var(--green); }

.card-body { padding: 1.5rem; }

.card-category {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cedar);
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.card-desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}

.card-specs {
  display: flex;
  gap: 1rem;
  margin-top: 0.8rem;
  flex-wrap: wrap;
}
.spec {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.78rem;
  color: var(--muted);
}
.spec svg { opacity: 0.5; }

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.3rem;
  padding-top: 1.2rem;
  border-top: 1px solid #e0d8cd;
}

.card-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--bark);
}
.card-price small {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--muted);
  font-family: 'DM Sans', sans-serif;
}

.card-btn {
  background: var(--forest);
  color: var(--white);
  border: none;
  padding: 0 1.4rem;
  min-height: 44px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.card-btn:hover { background: var(--accent); }


/* ── 8. FEATURES SECTION ── */
#features { background: var(--forest); }

/* ── 8b. WHY US SECTION ── */
#why { background: var(--forest); }
#why .section-label { color: var(--straw); }
#why .section-title { color: var(--white); }
#why .section-sub { color: rgba(232,213,163,0.7); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 3.5rem;
}

.feature-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 2rem;
  border-radius: 4px;
  transition: background 0.2s;
}
.feature-card:hover { background: rgba(255,255,255,0.10); }

.feature-icon {
  width: 52px; height: 52px;
  background: rgba(196,80,42,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.3rem;
  font-size: 1.5rem;
}

.feature-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--straw);
  margin-bottom: 0.6rem;
}

.feature-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}


/* ── 9. PROCESS SECTION ── */
#process { background: var(--cream); }

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0;
  margin-top: 3.5rem;
  position: relative;
}

.step {
  padding: 2.5rem 2rem;
  position: relative;
}
.step:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -12px; top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--cedar);
  opacity: 0.4;
}

.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 900;
  color: rgba(139,94,60,0.15);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.step-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.step-desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}


/* ── 10. TESTIMONIALS SECTION ── */
#testimonials { background: var(--white); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial {
  background: var(--cream);
  padding: 2rem;
  border-radius: 4px;
  border-left: 4px solid var(--cedar);
}

.stars {
  color: #f59e0b;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text);
  font-style: italic;
  margin-bottom: 1.3rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--cedar);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
}

.author-name { font-weight: 600; font-size: 0.9rem; }
.author-loc  { font-size: 0.78rem; color: var(--muted); }


/* ── 11. CTA BANNER ── */
.cta-banner {
  background:
    linear-gradient(to right, rgba(26,46,26,0.92), rgba(61,43,31,0.88)),
    url("../images/sheds/IMG_5544.JPG") center/cover no-repeat;
  padding: 5rem 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.cta-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.cta-text p { color: rgba(232,213,163,0.8); font-size: 1rem; }

.cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; }


/* ── 12. FOOTER ── */
footer {
  background: #111;
  color: rgba(255,255,255,0.55);
  padding: 4rem 5% 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .nav-logo {
  display: block;
  margin-bottom: 1rem;
}

.footer-desc {
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 260px;
}

.footer-col h4 {
  font-family: 'Playfair Display', serif;
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  margin-bottom: 1.2rem;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--straw); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
}
.footer-bottom a { color: rgba(255,255,255,0.4); text-decoration: none; }
.footer-bottom a:hover { color: var(--straw); }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ── 14. PLATFORM PAGE ── */

.alert-banner {
  background: var(--accent);
  color: var(--white);
  text-align: center;
  padding: 2rem 5%;
  margin-top: 5.5rem;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.alert-banner a { color: var(--white); text-decoration: underline; }
.alert-banner strong { font-weight: 700; }

.page-hero {
  background:
    linear-gradient(to bottom right, rgba(26,46,26,0.90) 0%, rgba(61,43,31,0.80) 100%),
    url("../images/sheds/IMG_4731.JPG") center/cover no-repeat;
  min-height: 52vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10rem 5% 5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 100px;
  background: linear-gradient(to bottom, transparent, var(--cream));
}
.page-hero .section-label { color: var(--straw); }
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 900;
  color: var(--white);
  max-width: 700px;
  line-height: 1.1;
  margin-top: 0.5rem;
}
.page-hero h1 em { font-style: italic; color: var(--straw); }
.page-hero p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  max-width: 520px;
  line-height: 1.7;
  margin-top: 1.2rem;
  font-weight: 300;
}

.intro-section {
  padding: 5rem 5%;
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.intro-text .section-title { margin-bottom: 1.2rem; }
.intro-text p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.checklist {
  margin-top: 1.5rem;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text);
}
.checklist li::before {
  content: '✓';
  background: var(--green);
  color: var(--white);
  width: 22px; height: 22px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.intro-visual {
  background: var(--forest);
  border-radius: 4px;
  padding: 3rem 2.5rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.intro-visual::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(196,80,42,0.15);
}
.intro-visual h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--straw);
  margin-bottom: 1.5rem;
}

.rule-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.rule-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.rule-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(234,199,124,0.25);
  border-radius: 6px;
  color: var(--straw);
}
.rule-icon svg { width: 22px; height: 22px; }
.rule-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 900;
  color: rgba(196,80,42,0.5);
  line-height: 1;
  min-width: 40px;
}
.rule-text strong {
  display: block;
  color: var(--straw);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}
.rule-text span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

.options-section {
  padding: 6rem 5%;
  background: var(--white);
}
.options-header {
  max-width: 600px;
  margin-bottom: 4rem;
}
.options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(440px, 1fr));
  gap: 2.5rem;
}

.option-card {
  background: var(--cream);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.option-card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(0,0,0,0.10); }

.option-card-top {
  background: var(--forest);
  padding: 2rem 2rem 1.5rem;
  position: relative;
}
.option-icon {
  font-size: 2.5rem;
  margin-bottom: 0.8rem;
  display: block;
}
.option-card-top h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--straw);
  margin-bottom: 0.3rem;
}
.option-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: 2px;
  margin-top: 0.5rem;
}
.tag-popular { background: var(--accent); color: var(--white); }
.tag-premium { background: var(--red); color: var(--white); }
.tag-budget  { background: var(--green); color: var(--white); }

.option-card-body { padding: 2rem; }
.option-card-body > p {
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.option-card-body .option-note {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 0;
}
.option-card-body .option-note strong { color: var(--text); }

.option-pros, .option-cons {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.option-pros li, .option-cons li {
  font-size: 0.87rem;
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}
.option-pros li { color: var(--text); }
.option-cons li { color: var(--muted); }
.option-pros li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }
.option-cons li::before { content: '✗'; color: var(--accent); font-weight: 700; flex-shrink: 0; }

.option-divider {
  height: 1px;
  background: #e0d8cd;
  margin: 1.2rem 0;
}

.compare-section { padding: 6rem 5%; background: var(--cream); }
.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 3rem;
  font-size: 0.92rem;
}
.compare-table th {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 1.2rem 1.5rem;
  text-align: left;
  border-bottom: 2px solid var(--cedar);
}
.compare-table th:first-child { color: var(--muted); }
.compare-table th:nth-child(2) { background: rgba(26,46,26,0.05); color: var(--forest); }
.compare-table th:nth-child(3) { color: var(--bark); }
.compare-table th:nth-child(4) { color: var(--cedar); }
.compare-table td {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #e0d8cd;
  color: var(--text);
  vertical-align: middle;
}
.compare-table td:nth-child(2) { background: rgba(26,46,26,0.03); }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table .cell-yes  { color: var(--green); font-weight: 700; }
.compare-table .cell-no   { color: var(--accent); }
.compare-table .cell-mid  { color: var(--cedar); }
.compare-table .row-label { font-weight: 600; color: var(--text); }

.tips-section {
  padding: 6rem 5%;
  background: var(--forest);
  position: relative;
}
.tips-section .section-label { color: var(--straw); }
.tips-section .section-title { color: var(--white); }

.tips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
  max-width: 1300px;
}

/* Staggered entrance for each card */
.tip-card:nth-child(1) { animation-delay: 0.05s; }
.tip-card:nth-child(2) { animation-delay: 0.15s; }
.tip-card:nth-child(3) { animation-delay: 0.25s; }
.tip-card:nth-child(4) { animation-delay: 0.35s; }
.tip-card:nth-child(5) { animation-delay: 0.45s; }
.tip-card:nth-child(6) { animation-delay: 0.55s; }

.tip-card.visible {
  animation: tipFadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes tipFadeUp {
  0%   { opacity: 0; transform: translateY(32px) scale(0.98); }
  100% { opacity: 1; transform: translateY(0)    scale(1); }
}

.tip-card {
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 2.5rem 2rem 2rem;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.4s ease;
}

/* Large watermark number in top-right — subtle float loop */
.tip-card::after {
  content: attr(data-num);
  position: absolute;
  top: -1rem;
  right: 0.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 7rem;
  font-weight: 900;
  color: rgba(196,80,42,0.10);
  line-height: 1;
  pointer-events: none;
  transition: color 0.4s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  animation: tipNumFloat 6s ease-in-out infinite;
}

@keyframes tipNumFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-4px); }
}

/* Accent top bar that draws in on hover */
.tip-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), rgba(232,213,163,0.6));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.tip-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.06);
  border-color: rgba(232,213,163,0.25);
  box-shadow: 0 20px 40px -18px rgba(0,0,0,0.5);
}
.tip-card:hover::before { transform: scaleX(1); }
.tip-card:hover::after {
  color: rgba(196,80,42,0.22);
  transform: translateY(-8px) rotate(-2deg);
  animation-play-state: paused;
}

.tip-card:hover h4 { color: var(--white); }

.tip-num {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 1rem;
  display: inline-block;
  position: relative;
  z-index: 1;
}
.tip-num::before {
  content: 'Tip ';
  color: rgba(232,213,163,0.5);
}

.tip-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--straw);
  margin-bottom: 0.8rem;
  font-weight: 700;
  line-height: 1.3;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.tip-card p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  position: relative;
  z-index: 1;
}

@media (max-width: 900px) {
  .tips-grid { grid-template-columns: repeat(2, 1fr); }
  .tip-card { padding: 2rem 1.75rem 1.75rem; }
  .tip-card::after { font-size: 5.5rem; }
}
@media (max-width: 560px) {
  .tips-grid { grid-template-columns: 1fr; }
}

.platform-cta {
  background:
    linear-gradient(to right, rgba(26,46,26,0.95), rgba(61,43,31,0.90)),
    url("../images/sheds/IMG_4731.JPG") center/cover;
  padding: 5rem 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}
.platform-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--white);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.platform-cta p { color: rgba(232,213,163,0.8); font-size: 1rem; }
.platform-cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; }


/* ── 16. GALLERY PAGE ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 3rem;
}
.gallery-link {
  display: block;
  position: absolute;
  inset: 0;
  text-decoration: none;
  z-index: 2;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 4/3;
  cursor: pointer;
  z-index: 1;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.gallery-item:hover {
  transform: scale(1.08);
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
  z-index: 10;
}
/* Carousel slides */
.carousel-slides {
  position: absolute;
  inset: 0;
}
.carousel-slide {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.carousel-slide.active {
  opacity: 1;
}
/* Prev / Next arrows */
.carousel-prev,
.carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.55);
  color: #fff;
  border: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s ease, background 0.2s;
  z-index: 6;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-prev { left: 8px; }
.carousel-next { right: 8px; }
.gallery-item:hover .carousel-prev,
.gallery-item:hover .carousel-next,
.carousel-prev:focus-visible,
.carousel-next:focus-visible {
  opacity: 1;
}
.carousel-prev:hover,
.carousel-next:hover {
  background: rgba(0,0,0,0.7);
}
/* Dot indicators */
.carousel-dots {
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 2px;
  z-index: 6;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover .carousel-dots,
.carousel-dots:focus-within {
  opacity: 1;
}
.carousel-dot {
  width: 20px; height: 20px;
  background: transparent;
  cursor: pointer;
  border: none;
  padding: 0;
  position: relative;
}
.carousel-dot::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.55);
  transition: background 0.2s, width 0.2s, height 0.2s;
}
.carousel-dot.active::before {
  background: #fff;
  width: 8px; height: 8px;
}
/* View Details label */
.gallery-view-btn {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.65));
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 2rem 1rem 0.6rem;
  text-align: center;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  z-index: 5;
}
.gallery-item:hover .gallery-view-btn {
  opacity: 1;
}
@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

/* ── 17. SHED DETAIL PAGE ── */
.detail-wrap {
  padding: 10rem 5% 6rem;
  max-width: 1200px;
  margin: 0 auto;
}
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-top: 2rem;
}
.detail-images .main-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 10px;
}
.thumb-strip {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}
.thumb-strip .thumb-btn {
  flex: 1;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  border-radius: 6px;
  overflow: hidden;
  min-height: 44px;
}
.thumb-strip .thumb-btn img {
  display: block;
  width: 100%;
  height: 80px;
  object-fit: cover;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.thumb-strip .thumb-btn:hover img,
.thumb-strip .thumb-btn.active img {
  opacity: 1;
}
.thumb-strip .thumb-btn.active {
  outline: 2px solid var(--cedar);
}
.detail-info .breadcrumb {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 1rem;
}
.detail-info .breadcrumb a { color: var(--cedar); text-decoration: none; }
.category-tag {
  display: inline-block;
  background: var(--straw);
  color: var(--bark);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
.detail-info h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  color: var(--bark);
  margin-bottom: 1rem;
  line-height: 1.15;
}
.detail-info .desc {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.specs-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.specs-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text);
}
.specs-list li::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--cedar);
  flex-shrink: 0;
}
.price-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem 1.2rem;
  background: var(--cream);
  border-radius: 8px;
  border-left: 3px solid var(--cedar);
}
.price-row .price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--bark);
}
.price-row .price-note {
  font-size: 0.8rem;
  color: var(--muted);
}
.detail-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.detail-actions .btn-primary {
  background: var(--forest);
  color: #fff;
  border: none;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
}
.detail-actions .btn-primary:hover { background: var(--cedar); }
.detail-actions .btn-outline {
  background: transparent;
  color: var(--forest);
  border: 2px solid var(--forest);
  padding: 0.85rem 2rem;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
}
.detail-actions .btn-outline:hover { background: var(--forest); color: #fff; }
@media (max-width: 768px) {
  .detail-grid { grid-template-columns: 1fr; gap: 2rem; }
  .detail-info h1 { font-size: 1.8rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

/* ── 15. RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .step::after { display: none; }
  .intro-section { grid-template-columns: 1fr; gap: 3rem; }
  .compare-table { font-size: 0.82rem; }
  .compare-table th, .compare-table td { padding: 0.8rem; }
}

@media (max-width: 600px) {
  .hero-stats { gap: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-banner { text-align: center; justify-content: center; }
  .products-header { flex-direction: column; align-items: flex-start; }
  .step::after { display: none; }
  .compare-table { display: block; overflow-x: auto; }
  .platform-cta { text-align: center; justify-content: center; }
}


/* ================================================================
   PLATFORM.HTML — DEPTH & MODERNIZATION
   Scoped overrides. All classes below are used only on platform.html.
   ================================================================ */

/* ---- Hero2: vignette + text depth ---------------------------- */
.hero2 {
  background:
    radial-gradient(ellipse at 30% 40%, rgba(0,0,0,0) 0%, rgba(0,0,0,0.35) 90%),
    linear-gradient(135deg, rgba(78,93,58,0.78) 0%, rgba(61,43,31,0.60) 100%),
    url("../images/sheds/shed-foundation.jpg") center/cover no-repeat;
}
.hero2 h1 {
  text-shadow: 0 4px 30px rgba(0,0,0,0.35);
}
.hero2 p {
  color: rgba(255,255,255,0.88);
  max-width: 560px;
  margin-top: 1.25rem;
  font-size: 1.1rem;
  line-height: 1.7;
  font-weight: 300;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero2 .section-label {
  color: var(--straw);
  letter-spacing: 0.18em;
}

/* ---- Intro section: soft radial ambient background ---------- */
.intro-section {
  background:
    radial-gradient(circle at 85% 15%, rgba(196,80,42,0.06), transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(78,93,58,0.08), transparent 50%),
    var(--cream);
  position: relative;
  padding: 7rem 5%;
}

/* ---- Golden Rules card: glass effect, layered shadow -------- */
.intro-visual {
  background:
    linear-gradient(155deg, #5e6e47 0%, #4e5d3a 55%, #3a4a28 100%);
  border-radius: 16px;
  padding: 3.5rem 3rem;
  border: 1px solid rgba(232,213,163,0.08);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.06) inset,
    0 30px 60px -20px rgba(40,50,25,0.45),
    0 10px 30px -12px rgba(0,0,0,0.25);
}
.intro-visual::before {
  top: -80px; right: -80px;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(196,80,42,0.28), rgba(196,80,42,0) 70%);
  filter: blur(4px);
}
.intro-visual::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,213,163,0.10), rgba(232,213,163,0) 70%);
  pointer-events: none;
}
.intro-visual h3 {
  font-size: 1.7rem;
  letter-spacing: -0.01em;
  margin-bottom: 2rem;
  position: relative;
}
.intro-visual h3::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  margin-top: 0.9rem;
  background: linear-gradient(90deg, var(--accent), rgba(232,213,163,0));
}

/* ---- Options section: cleaner backdrop ---------------------- */
.options-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(78,93,58,0.06), transparent 60%),
    var(--white);
  padding: 7rem 5%;
}

/* ---- Option cards: full modern treatment -------------------- */
.options-grid { gap: 2rem; }

.option-card {
  background: linear-gradient(180deg, #ffffff 0%, #fbf6ec 100%);
  border: 1px solid rgba(139,94,60,0.12);
  border-radius: 18px;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.9) inset,
    0 2px 4px rgba(26,46,26,0.04),
    0 12px 24px -12px rgba(26,46,26,0.10);
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.3s ease;
  position: relative;
}
.option-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 1px;
  background: linear-gradient(160deg, rgba(232,213,163,0.6), rgba(232,213,163,0) 40%, rgba(196,80,42,0) 60%, rgba(196,80,42,0.3));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.option-card:hover {
  transform: translateY(-8px);
  border-color: rgba(139,94,60,0.2);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.9) inset,
    0 4px 8px rgba(26,46,26,0.05),
    0 30px 60px -20px rgba(26,46,26,0.22);
}
.option-card:hover::before { opacity: 1; }

.option-card-top {
  background:
    linear-gradient(135deg, #5a6e42 0%, #4e5d3a 50%, #3a4a28 100%);
  padding: 2.25rem 2rem 1.75rem;
  position: relative;
  overflow: hidden;
}
.option-card-top::after {
  content: '';
  position: absolute;
  top: -40%; right: -20%;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,80,42,0.22), rgba(196,80,42,0) 70%);
  pointer-events: none;
}

.option-icon {
  font-size: 1.75rem;
  width: 60px;
  height: 60px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(232,213,163,0.22);
  border-radius: 14px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 8px 20px -10px rgba(0,0,0,0.45);
  position: relative;
  z-index: 1;
}

.option-card-top h3 {
  font-size: 1.6rem;
  position: relative;
  z-index: 1;
}

.option-tag {
  border-radius: 999px;
  padding: 0.3rem 0.85rem;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  box-shadow: 0 6px 14px -6px rgba(0,0,0,0.35);
  position: relative;
  z-index: 1;
}

.option-card-body { padding: 2.25rem 2rem 2.25rem; }
.option-divider {
  background: linear-gradient(90deg, transparent, rgba(139,94,60,0.18), transparent);
  height: 1px;
}
.option-pros li::before,
.option-cons li::before {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px; height: 18px;
  border-radius: 50%;
  font-size: 0.7rem;
}
.option-pros li::before { background: rgba(45,90,39,0.12); color: var(--green); }
.option-cons li::before { background: rgba(196,80,42,0.12); color: var(--accent); }

/* ---- Compare section: wrap table in a card ------------------ */
.compare-section {
  padding: 7rem 5%;
  background:
    radial-gradient(circle at 0% 100%, rgba(78,93,58,0.07), transparent 50%),
    var(--cream);
}
.compare-section > div:last-child {
  margin-top: 3rem;
  background: var(--white);
  border-radius: 18px;
  padding: 1.25rem 1.75rem;
  border: 1px solid rgba(139,94,60,0.10);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.9) inset,
    0 30px 60px -25px rgba(78,93,58,0.22),
    0 8px 20px -12px rgba(78,93,58,0.12);
  overflow: hidden;
}
.compare-table { margin-top: 0; }
.compare-table th {
  padding: 1.4rem 1.5rem;
  border-bottom: 1px solid rgba(139,94,60,0.15);
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}
.compare-table th:nth-child(2) {
  background: linear-gradient(180deg, rgba(78,93,58,0.12), rgba(78,93,58,0.03));
  color: #4e5d3a;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.compare-table td {
  padding: 1.1rem 1.5rem;
  border-bottom: 1px solid rgba(139,94,60,0.08);
  transition: background 0.25s ease;
}
.compare-table td:nth-child(2) {
  background: rgba(78,93,58,0.05);
}
.compare-table tbody tr:hover td {
  background: rgba(232,213,163,0.15);
}
.compare-table tbody tr:hover td:nth-child(2) {
  background: rgba(78,93,58,0.10);
}
.compare-table .row-label {
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.01em;
}
.compare-table .cell-yes,
.compare-table .cell-no,
.compare-table .cell-mid {
  font-weight: 600;
}

/* ---- Tips section: olive/moss background ------------------- */
.tips-section {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(94,110,71,0.35), transparent 60%),
    linear-gradient(175deg, #5e6e47 0%, #4e5d3a 60%, #3a4a28 100%);
}

/* ---- Platform CTA: fix path + richer gradient + glow -------- */
.platform-cta {
  background:
    radial-gradient(ellipse at 80% 50%, rgba(196,80,42,0.22), transparent 55%),
    linear-gradient(110deg, rgba(58,74,40,0.96) 0%, rgba(94,110,71,0.88) 60%, rgba(139,94,60,0.75) 100%),
    url("../images/sheds/IMG_4731.JPG") center/cover;
  padding: 6rem 5%;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(232,213,163,0.08);
}
.platform-cta::before {
  content: '';
  position: absolute;
  top: -100px; left: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,213,163,0.10), rgba(232,213,163,0) 70%);
  pointer-events: none;
}
.platform-cta > div { position: relative; z-index: 1; }

/* ---- Responsive tweaks ------------------------------------- */
@media (max-width: 900px) {
  .intro-visual { padding: 2.5rem 2rem; }
  .intro-section { padding: 5rem 5%; }
  .options-section,
  .compare-section { padding: 5rem 5%; }
  .compare-section > div:last-child { padding: 0.5rem; }
  .compare-table th, .compare-table td { padding: 0.9rem 1rem; }
}