/*
Theme Name: Little Blind Shop
Theme URI: https://littleblindshop.co.uk
Author: The Little Blind Shop
Author URI: https://littleblindshop.co.uk
Description: Custom theme for The Little Blind Shop - bespoke made-to-measure blinds.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: little-blind-shop
Tags: ecommerce, woocommerce, custom, responsive
*/

/* =============================================
   CSS CUSTOM PROPERTIES
   ============================================= */
:root {
  --cream: #FAF7F2;
  --warm-white: #FFFDF9;
  --charcoal: #1E1C19;
  --mid: #5C5750;
  --light: #9A9088;
  --accent: #8B6F47;
  --accent-light: #C9A97A;
  --accent-pale: #F5EDE0;
  --green: #3B5E3E;
  --green-light: #E8F0E8;
  --border: #E8E2D9;
  --shadow: rgba(30,28,25,0.08);
  --radius: 8px;
  --radius-lg: 16px;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--warm-white);
  color: var(--charcoal);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--charcoal);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); }
h3 { font-size: 1.3rem; }
p { line-height: 1.7; color: var(--mid); }

/* =============================================
   UTILITY CLASSES
   ============================================= */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 6rem 0; }
.section--cream { background: var(--cream); }
.section--dark { background: var(--charcoal); }
.section--accent { background: var(--accent-pale); }
.text-center { text-align: center; }

.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.8rem;
  font-weight: 500;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 1rem;
}
.section-sub {
  color: var(--mid);
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}
.section-header { margin-bottom: 4rem; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover {
  background: #7a5f3a;
  transform: translateY(-2px);
  color: #fff;
}
.btn-secondary {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--border);
}
.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
}

/* =============================================
   NAVIGATION
   ============================================= */
#site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,253,249,0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 2rem;
}
.site-logo {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--charcoal);
  white-space: nowrap;
}
.site-logo span { color: var(--accent); }
.site-logo img { max-height: 44px; width: auto; }

#primary-nav ul {
  display: flex;
  gap: 2rem;
  align-items: center;
}
#primary-nav a {
  color: var(--mid);
  font-size: 0.9rem;
  font-weight: 400;
  transition: color 0.2s;
  padding: 0.25rem 0;
}
#primary-nav a:hover, #primary-nav .current-menu-item > a { color: var(--accent); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: var(--mid);
}
.header-phone a { color: var(--accent); font-weight: 500; }
.header-phone svg { flex-shrink: 0; }
.header-cart { position: relative; color: var(--charcoal); font-size: 0.88rem; font-weight: 500; }
.header-cart .cart-count {
  position: absolute;
  top: -8px;
  right: -10px;
  background: var(--accent);
  color: #fff;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  font-size: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  transition: all 0.3s;
  border-radius: 2px;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  background: var(--cream);
  min-height: 90vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  overflow: hidden;
}
.hero-content { padding: 5rem 3rem 5rem 5rem; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent-pale);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 0.35rem 0.9rem;
  border-radius: 20px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.hero-title em { font-style: italic; color: var(--accent); }
.hero-subtitle {
  font-size: 1.05rem;
  color: var(--mid);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 420px;
  font-weight: 300;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }

.hero-trust {
  display: flex;
  gap: 2rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.trust-item { display: flex; flex-direction: column; }
.trust-number {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--charcoal);
}
.trust-label { font-size: 0.78rem; color: var(--light); margin-top: 2px; }

.hero-visual {
  height: 90vh;
  background: linear-gradient(160deg, #D4C4A8 0%, #B8A07A 40%, #8B6F47 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}
.hero-review-tag {
  position: absolute;
  bottom: 3rem;
  left: 2rem;
  background: rgba(255,253,249,0.92);
  backdrop-filter: blur(8px);
  padding: 1.2rem 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.6);
}
.hero-review-tag .label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--mid); }
.hero-review-tag .quote { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 600; color: var(--charcoal); margin-top: 0.2rem; }
.hero-review-tag .stars { color: var(--accent-light); font-size: 0.85rem; letter-spacing: 2px; margin-top: 0.2rem; }

/* =============================================
   PRODUCTS / SHOP
   ============================================= */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.product-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px var(--shadow);
}
.product-card.featured { border-color: var(--accent); border-width: 2px; }
.product-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.product-card:hover .product-card-image img { transform: scale(1.04); }
.product-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 500;
  padding: 0.3rem 0.7rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.product-card-body { padding: 1.5rem; }
.product-card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}
.product-card-desc { font-size: 0.88rem; color: var(--mid); line-height: 1.6; margin-bottom: 1.2rem; }
.product-card-from { font-size: 0.75rem; color: var(--light); text-transform: uppercase; letter-spacing: 0.05em; }
.product-card-price {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--charcoal);
}
.product-card-price span { font-size: 0.85rem; font-weight: 400; color: var(--light); font-family: var(--font-body); }
.product-card-cta {
  display: block;
  text-align: center;
  background: var(--accent-pale);
  color: var(--accent);
  padding: 0.75rem;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 0.9rem;
  margin-top: 1.2rem;
  transition: background 0.2s, color 0.2s;
}
.product-card-cta:hover { background: var(--accent); color: #fff; }

/* WooCommerce product overrides */
.woocommerce ul.products { margin: 0 !important; }
.woocommerce ul.products li.product {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 0 !important;
  transition: transform 0.25s, box-shadow 0.25s;
}
.woocommerce ul.products li.product:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px var(--shadow);
}
.woocommerce ul.products li.product a img { margin: 0; }
.woocommerce ul.products li.product h2.woocommerce-loop-product__title {
  font-family: var(--font-heading) !important;
  font-size: 1.2rem !important;
  padding: 1.5rem 1.5rem 0.5rem !important;
}
.woocommerce ul.products li.product .price {
  font-family: var(--font-heading);
  font-size: 1.4rem !important;
  color: var(--charcoal) !important;
  padding: 0 1.5rem !important;
}
.woocommerce ul.products li.product .button {
  background: var(--accent) !important;
  color: #fff !important;
  border-radius: var(--radius) !important;
  font-family: var(--font-body) !important;
  margin: 1rem 1.5rem 1.5rem !important;
  padding: 0.7rem 1.5rem !important;
  font-size: 0.88rem !important;
}
.woocommerce ul.products li.product .button:hover { background: #7a5f3a !important; }

/* =============================================
   FEATURES / WHY US
   ============================================= */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.feature-item { text-align: center; padding: 2rem 1.5rem; }
.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--accent-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 1.5rem;
}
.feature-icon svg { width: 26px; height: 26px; color: var(--accent); }
.feature-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}
.feature-desc { font-size: 0.85rem; color: var(--mid); line-height: 1.65; }

/* =============================================
   HOW IT WORKS - STEPS
   ============================================= */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 3rem;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 2rem;
  left: 12%;
  right: 12%;
  height: 2px;
  background: var(--border);
}
.step-item { text-align: center; padding: 0 1.5rem; }
.step-number {
  width: 64px;
  height: 64px;
  background: var(--warm-white);
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
  position: relative;
  z-index: 1;
}
.step-title { font-weight: 500; font-size: 0.95rem; color: var(--charcoal); margin-bottom: 0.4rem; }
.step-desc { font-size: 0.82rem; color: var(--mid); line-height: 1.6; }

/* =============================================
   REVIEWS
   ============================================= */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.review-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
}
.review-stars { color: var(--accent-light); font-size: 1rem; letter-spacing: 2px; margin-bottom: 1rem; }
.review-text {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 1.2rem;
  font-style: italic;
}
.review-author { font-size: 0.82rem; color: rgba(255,255,255,0.4); font-weight: 500; }

/* =============================================
   FREE SAMPLES SECTION
   ============================================= */
.samples-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.samples-swatches { display: flex; gap: 0.8rem; flex-wrap: wrap; margin-top: 1.5rem; }
.swatch {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 3px solid var(--warm-white);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.swatch:hover { transform: scale(1.15); box-shadow: 0 4px 16px rgba(0,0,0,0.2); }
.samples-note { font-size: 0.8rem; color: var(--mid); margin-top: 1rem; }

/* =============================================
   CONTACT / LOCATION STRIP
   ============================================= */
.contact-strip {
  background: var(--charcoal);
  padding: 3rem 0;
  color: rgba(255,255,255,0.7);
}
.contact-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.contact-item { display: flex; align-items: center; gap: 0.8rem; font-size: 0.9rem; }
.contact-item a { color: var(--accent-light); font-weight: 500; }
.contact-item svg { color: var(--accent-light); width: 18px; height: 18px; flex-shrink: 0; }

/* =============================================
   STICKY BAR
   ============================================= */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--accent);
  color: #fff;
  padding: 0.9rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  font-size: 0.88rem;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.sticky-bar.is-visible { transform: translateY(0); }
.sticky-bar .btn { padding: 0.4rem 1.2rem; font-size: 0.85rem; background: rgba(255,255,255,0.2); color: #fff; border: none; }
.sticky-bar .btn:hover { background: rgba(255,255,255,0.35); transform: none; color: #fff; }
.sticky-close { cursor: pointer; opacity: 0.6; font-size: 1.2rem; line-height: 1; background: none; border: none; color: #fff; padding: 0 0 0 0.5rem; }

/* =============================================
   FOOTER
   ============================================= */
#site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.5);
}
.footer-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem 3rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer-brand .site-logo { color: #FAF7F2; font-size: 1.2rem; display: block; margin-bottom: 1rem; }
.footer-brand .site-logo span { color: var(--accent-light); }
.footer-brand p { font-size: 0.82rem; line-height: 1.7; max-width: 240px; }
.footer-address { font-size: 0.8rem; margin-top: 1rem; color: rgba(255,255,255,0.35); }
.footer-col h4 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  margin-bottom: 1.2rem;
  font-family: var(--font-body);
}
.footer-col ul li { margin-bottom: 0.65rem; }
.footer-col ul li a { font-size: 0.83rem; color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--accent-light); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { color: rgba(255,255,255,0.3); }
.footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* =============================================
   PAGE TEMPLATES
   ============================================= */
/* Page Hero */
.page-hero {
  background: var(--cream);
  padding: 5rem 0 4rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.page-hero h1 { margin-bottom: 1rem; }
.page-hero p { max-width: 540px; margin: 0 auto; font-size: 1.05rem; }

/* Contact page */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.contact-info h3 { font-family: var(--font-heading); font-size: 1.3rem; margin-bottom: 1rem; }
.contact-info-item { display: flex; gap: 1rem; margin-bottom: 1.5rem; align-items: flex-start; }
.contact-info-item svg { width: 20px; height: 20px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.contact-info-item .label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--light); margin-bottom: 0.2rem; }
.contact-info-item .value { font-size: 0.95rem; color: var(--charcoal); font-weight: 500; }

/* Contact form styles (works with CF7 or WPForms) */
.contact-form-wrap input[type="text"],
.contact-form-wrap input[type="email"],
.contact-form-wrap input[type="tel"],
.contact-form-wrap textarea,
.contact-form-wrap select,
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--charcoal);
  background: var(--warm-white);
  transition: border-color 0.2s;
  margin-bottom: 1rem;
}
.contact-form-wrap input:focus,
.contact-form-wrap textarea:focus,
.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.wpcf7-form input[type="submit"],
.contact-form-wrap button[type="submit"] {
  background: var(--accent);
  color: #fff;
  padding: 0.85rem 2rem;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}
.wpcf7-form input[type="submit"]:hover { background: #7a5f3a; }
.form-label { font-size: 0.82rem; font-weight: 500; color: var(--charcoal); margin-bottom: 0.3rem; display: block; }
.form-row { margin-bottom: 1rem; }

/* =============================================
   WOOCOMMERCE GENERAL
   ============================================= */
.woocommerce-page .woocommerce { max-width: 1200px; margin: 0 auto; padding: 4rem 2rem; }
.woocommerce .single-product .product { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.woocommerce .single-product h1.product_title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--charcoal);
  margin-bottom: 1rem;
}
.woocommerce .single-product .price { font-family: var(--font-heading); font-size: 2rem; color: var(--charcoal) !important; }
.woocommerce .single-product .button {
  background: var(--accent) !important;
  color: #fff !important;
  border-radius: var(--radius) !important;
  font-family: var(--font-body) !important;
  font-size: 0.95rem !important;
  padding: 0.85rem 2rem !important;
}
.woocommerce .single-product .button:hover { background: #7a5f3a !important; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-content { padding: 3rem 1.5rem; }
  .products-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid::before { display: none; }
  .reviews-grid { grid-template-columns: 1fr; }
  .samples-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 1.5rem 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  #primary-nav { display: none; }
  #primary-nav.is-open { display: block; position: absolute; top: 68px; left: 0; right: 0; background: var(--warm-white); border-bottom: 1px solid var(--border); padding: 1rem 2rem; }
  #primary-nav.is-open ul { flex-direction: column; gap: 1rem; }
  .menu-toggle { display: flex; }
  .header-phone { display: none; }
  .hero-trust { gap: 1rem; }
  .section { padding: 4rem 0; }
}

@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .container { padding: 0 1.25rem; }
}
