/* ============================================================
   L.F. Pease Awning & Sunroom — Shared Stylesheet
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green: #1a5c2a;
  --green-dark: #0f3d1a;
  --green-deep: #0a2e13;
  --green-light: #e8f5eb;
  --yellow: #e8c840;
  --yellow-dark: #d4b430;
  --yellow-light: #fdf8e8;
  --yellow-glow: rgba(232,200,64,0.15);
  --dark: #1a1a1a;
  --text: #444;
  --muted: #777;
  --light: #f7f9f7;
  --white: #fff;
  --border: #dde5dd;
  --warm: #faf9f5;
  --radius: 10px;
  --max-w: 1200px;
}

html { scroll-behavior: smooth; }
body { font-family: 'Open Sans', sans-serif; color: var(--text); background: var(--white); }

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--green-deep); color: rgba(255,255,255,0.7);
  font-size: 12px; padding: 8px 24px;
}
.top-bar-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
}
.top-bar strong { color: var(--yellow); }
.top-bar a { color: var(--yellow); text-decoration: none; font-weight: 600; }
.top-bar a:hover { text-decoration: underline; }
.top-bar-right { display: flex; gap: 20px; align-items: center; }

/* ===== NAV ===== */
.nav {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,0.98);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; position: relative;
}
.nav-brand {
  display: flex; align-items: center; gap: 14px;
  text-decoration: none; color: var(--dark);
}
.nav-brand-logo { height: 52px; }
.nav-links { display: flex; gap: 6px; align-items: center; }
.nav-links a {
  text-decoration: none; font-size: 13.5px; font-weight: 600; color: var(--text);
  padding: 8px 14px; border-radius: 6px; transition: all 0.2s;
}
.nav-links a:hover { color: var(--green); background: var(--green-light); }
.nav-phone {
  font-size: 13.5px; font-weight: 700; color: var(--green) !important;
}
.nav-cta {
  background: var(--green) !important; color: white !important;
  padding: 10px 22px !important; border-radius: 6px !important;
  box-shadow: 0 2px 8px rgba(26,92,42,0.25);
}
.nav-cta:hover { background: var(--green-dark) !important; }

/* Hamburger button */
.nav-hamburger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; background: none; border: none; cursor: pointer;
  padding: 8px; border-radius: 6px; transition: background 0.2s;
  z-index: 2;
}
.nav-hamburger:hover { background: var(--green-light); }
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--dark); border-radius: 2px;
  transition: all 0.3s;
}
.nav.nav-open .nav-hamburger span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav.nav-open .nav-hamburger span:nth-child(2) { opacity: 0; }
.nav.nav-open .nav-hamburger span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 30px; border-radius: 8px; font-family: inherit;
  font-size: 15px; font-weight: 700; text-decoration: none;
  cursor: pointer; border: none; transition: all 0.25s;
}
.btn-yellow {
  background: var(--yellow); color: var(--green-deep);
  box-shadow: 0 4px 16px rgba(232,200,64,0.35);
}
.btn-yellow:hover {
  background: var(--yellow-dark); transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(232,200,64,0.45);
}
.btn-white-outline {
  background: rgba(255,255,255,0.1); color: white;
  border: 1.5px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(4px);
}
.btn-white-outline:hover { border-color: white; background: rgba(255,255,255,0.15); }
.btn-green {
  background: var(--green); color: white;
  box-shadow: 0 4px 16px rgba(26,92,42,0.3);
}
.btn-green:hover { background: var(--green-dark); transform: translateY(-2px); }
.btn-outline-green {
  background: transparent; color: var(--green); border: 2px solid var(--green);
}
.btn-outline-green:hover { background: var(--green-light); }

/* ===== HOMEPAGE HERO ===== */
.hero {
  position: relative; min-height: 600px;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('hero.jpg') center/cover no-repeat;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(10,46,19,0.45) 0%,
    rgba(10,46,19,0.28) 35%,
    rgba(10,46,19,0.08) 65%,
    rgba(10,46,19,0.0) 100%
  );
}
.hero-inner {
  position: relative; z-index: 1;
  max-width: var(--max-w); margin: 0 auto; padding: 120px 24px 80px;
  width: 100%;
}
.hero-content { max-width: 560px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 18px; border-radius: 24px;
  background: rgba(232,200,64,0.15); color: var(--yellow);
  font-size: 12px; font-weight: 700; margin-bottom: 24px;
  border: 1px solid rgba(232,200,64,0.3);
  text-transform: uppercase; letter-spacing: 0.8px;
}
.hero h1 {
  font-family: 'Playfair Display', serif; font-size: 52px; font-weight: 800;
  line-height: 1.1; margin-bottom: 20px; color: white; letter-spacing: -0.5px;
}
.hero h1 em { font-style: normal; color: var(--yellow); }
.hero p {
  font-size: 17px; color: rgba(255,255,255,0.95); max-width: 480px;
  margin-bottom: 36px; line-height: 1.7;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--white); border-bottom: 1px solid var(--border);
  padding: 24px;
}
.trust-bar-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: 40px; flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 12px; }
.trust-icon {
  width: 44px; height: 44px; border-radius: 10px; display: flex;
  align-items: center; justify-content: center; font-size: 20px;
  background: var(--green-light); flex-shrink: 0; border: 1px solid var(--border);
  color: var(--green);
}
.trust-text { font-size: 13px; font-weight: 700; color: var(--dark); line-height: 1.3; }
.trust-text span { display: block; font-weight: 400; color: var(--muted); font-size: 11px; margin-top: 1px; }
.trust-divider { width: 1px; height: 32px; background: var(--border); }

/* ===== SECTIONS ===== */
.section { padding: 80px 24px; }
.section-alt { background: var(--light); }
.section-warm { background: var(--warm); }
.section-inner { max-width: var(--max-w); margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-label {
  display: inline-block; font-size: 12px; font-weight: 700;
  color: var(--green); text-transform: uppercase; letter-spacing: 1.5px;
  margin-bottom: 12px;
}
.section-header h2 {
  font-family: 'Playfair Display', serif; font-size: 38px;
  color: var(--dark); margin-bottom: 14px; letter-spacing: -0.3px;
}
.section-header p { font-size: 16px; color: var(--muted); max-width: 560px; margin: 0 auto; line-height: 1.6; }

/* ===== PAGE HERO — Gradient variant (gallery, about, products, contact, etc.) ===== */
.page-hero {
  background: linear-gradient(160deg, var(--green-deep), var(--green), #2a7a3a);
  color: white; padding: 100px 24px 60px; text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0; opacity: 0.3;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(232,200,64,0.2), transparent);
}
.page-hero-inner { position: relative; z-index: 1; max-width: var(--max-w); margin: 0 auto; }
.page-hero .breadcrumb {
  font-size: 13px; color: rgba(255,255,255,0.6); margin-bottom: 16px;
}
.page-hero .breadcrumb a { color: rgba(255,255,255,0.6); text-decoration: none; }
.page-hero .breadcrumb a:hover { color: var(--yellow); }
.page-hero h1 {
  font-family: 'Playfair Display', serif; font-size: 48px; font-weight: 800;
  margin-bottom: 16px; letter-spacing: -0.5px;
}
.page-hero p { font-size: 17px; opacity: 0.85; max-width: 560px; margin: 0 auto; line-height: 1.7; }

/* ===== PAGE HERO — Photo variant (product detail pages) ===== */
.page-hero.page-hero--photo {
  background: none; text-align: left; padding: 0;
  min-height: 420px; display: flex; align-items: center;
}
.page-hero.page-hero--photo::before { display: none; }
.page-hero--photo .page-hero-bg {
  position: absolute; inset: 0;
  background: url('hero.jpg') center/cover no-repeat;
}
.page-hero--photo .page-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.35) 40%,
    rgba(0,0,0,0.10) 70%,
    transparent 100%
  );
}
.page-hero--photo .page-hero-inner {
  padding: 100px 24px 70px; width: 100%;
}
.page-hero--photo .page-hero-content { max-width: 560px; }
.page-hero--photo h1 {
  line-height: 1.1; margin-bottom: 18px; color: white;
}
.page-hero--photo h1 em { font-style: normal; color: var(--yellow); }
.page-hero--photo p {
  opacity: 1; color: rgba(255,255,255,0.8); max-width: 480px;
  margin: 0 0 32px; line-height: 1.7;
}
.page-hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===== BACK BAR (product detail pages) ===== */
.back-bar {
  background: var(--green-deep); padding: 10px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.back-bar-inner {
  max-width: var(--max-w); margin: 0 auto;
}
.back-bar a {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--yellow); text-decoration: none;
  font-size: 13px; font-weight: 700;
  transition: all 0.2s;
}
.back-bar a:hover { color: white; gap: 10px; }
.back-bar a::before {
  content: '\2190'; font-size: 16px;
}

/* Breadcrumb (product detail pages) */
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 20px; font-size: 13px;
}
.breadcrumb a { color: rgba(255,255,255,0.6); text-decoration: none; }
.breadcrumb a:hover { color: var(--yellow); }
.breadcrumb span { color: rgba(255,255,255,0.4); }
.breadcrumb .current { color: var(--yellow); font-weight: 600; }

/* ===== PRODUCTS GRID ===== */
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.product-card {
  background: var(--white); border-radius: 12px; overflow: hidden;
  border: 1px solid var(--border); transition: all 0.3s; position: relative;
}
.product-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.1); border-color: transparent; }
.product-img {
  height: 210px; background-size: cover; background-position: center;
  position: relative; overflow: hidden;
}
.product-img::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.25), transparent 50%);
}
.product-img-retractable { background-image: url('hero.jpg'); }
.product-img-stationary { background-image: url('stationary.jpg'); }
.product-img-pergola { background-image: url('pergola.jpg'); }
.product-img-sunroom { background-image: url('sunroom-interior.jpg'); }
.product-img-hurricane { background-image: url('hurricane-fabrice.jpg'); }
.product-img-screens { background-image: url('screen-verralfarms3.jpg'); }
.product-img-shade-sails { background-image: url('gallery-out/shade-sails-norwichtechhighschooshadesail.jpg'); }
.product-img-curtains { background-image: url('gallery-out/curtains-maxirollcurtain1.jpg'); }
.product-img-window-awnings { background-image: url('gallery-out/window-awnings-easternmaxi.jpg'); }
.product-img-entrance { background-image: url('gallery-out/entrance-barrelentrance2.jpg'); }
.product-img-storefront { background-image: url('gallery-out/storefront-000-0090.jpg'); }
.product-img-residential-window { background-image: url('gallery-out/residential-window-windowawningpic.jpg'); }
.product-img-poolside { background-image: url('gallery-out/poolside-self-standing-hip-canopy.jpg'); }
.product-img-stairwell { background-image: url('gallery-out/stairwell-awning-steps.jpg'); }
.product-img-restaurant { background-image: url('gallery-out/restaurant-aldos.jpg'); }
.product-img-door-awnings { background-image: url('gallery-out/door-awnings-williamwrightshedawning2.jpg'); }
.product-img-vestibules { background-image: url('gallery-out/vestibules-vestibulecoastguardhouse2.jpg'); }
.product-img-placeholder {
  background: linear-gradient(135deg, var(--green-light) 0%, #d4e8d4 100%);
  display: flex; align-items: center; justify-content: center;
}
.product-img-placeholder::after {
  content: 'Photo Coming Soon';
  position: absolute; z-index: 1;
  font-size: 14px; font-weight: 700; color: var(--green);
  background: rgba(255,255,255,0.85); padding: 8px 18px; border-radius: 6px;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.product-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--green); color: white; padding: 4px 10px;
  border-radius: 4px; font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.5px; z-index: 1;
}
.product-badge-yellow { background: var(--yellow); color: var(--green-deep); }
.product-body { padding: 20px 20px 22px; }
.product-body h3 { font-size: 17px; color: var(--dark); margin-bottom: 8px; font-weight: 700; }
.product-body p { font-size: 13px; line-height: 1.65; color: var(--muted); margin-bottom: 16px; }
.product-card { cursor: pointer; }
.product-link {
  font-size: 13px; font-weight: 700; color: var(--green);
  text-decoration: none; display: inline-flex; align-items: center; gap: 6px;
  transition: gap 0.2s;
}
.product-link::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
}
.product-link:hover { gap: 10px; }
.product-link::after { content: '\2192'; font-size: 15px; }

/* ===== INTRO SPLIT (product detail pages) ===== */
.intro-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.intro-img {
  width: 100%; border-radius: 12px; overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
}
.intro-img img { width: 100%; height: 400px; object-fit: cover; display: block; }
.intro-text h2 {
  font-family: 'Playfair Display', serif; font-size: 34px;
  color: var(--dark); margin-bottom: 18px; letter-spacing: -0.3px;
}
.intro-text p {
  font-size: 15px; color: var(--text); line-height: 1.8; margin-bottom: 16px;
}
.intro-text .highlight { font-weight: 700; color: var(--green); }

/* ===== FEATURES GRID ===== */
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.feature-card {
  background: var(--white); padding: 32px 24px; border-radius: 12px;
  border: 1px solid var(--border); transition: all 0.3s; text-align: center;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.06); }
.feature-icon {
  width: 60px; height: 60px; border-radius: 14px; margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
  background: var(--green-light); font-size: 26px;
  border: 1px solid rgba(26,92,42,0.12);
}
.feature-card h4 { font-size: 16px; color: var(--dark); margin-bottom: 10px; }
.feature-card p { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* ===== HOW IT WORKS (steps) ===== */
.steps-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  counter-reset: step;
}
.step-card {
  text-align: center; padding: 32px 20px; position: relative;
  counter-increment: step;
}
.step-number {
  width: 48px; height: 48px; border-radius: 50%; margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
  background: var(--green); color: white;
  font-size: 18px; font-weight: 800;
  box-shadow: 0 4px 16px rgba(26,92,42,0.3);
}
.step-card h4 { font-size: 15px; color: var(--dark); margin-bottom: 8px; }
.step-card p { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ===== TECH SPLIT ===== */
.tech-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.tech-list { list-style: none; }
.tech-list li {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px 0; border-bottom: 1px solid var(--border);
}
.tech-list li:last-child { border-bottom: none; }
.tech-check {
  width: 28px; height: 28px; border-radius: 8px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--green-light); color: var(--green);
  font-size: 14px; font-weight: 700; margin-top: 2px;
}
.tech-list h5 { font-size: 14px; color: var(--dark); margin-bottom: 4px; }
.tech-list p { font-size: 13px; color: var(--muted); line-height: 1.55; }

/* ===== CONFIGURATOR ===== */
.configurator-section {
  padding: 80px 24px 90px;
  background: linear-gradient(180deg, var(--light) 0%, #dde8dd 100%);
}
.configurator-wrapper { max-width: var(--max-w); margin: 0 auto; }
.configurator-frame {
  width: 100%; aspect-ratio: 16 / 10; border: none;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08), 0 12px 48px rgba(0,0,0,0.12);
  background: #fff;
}
.configurator-placeholder {
  width: 100%; aspect-ratio: 16 / 10;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08), 0 12px 48px rgba(0,0,0,0.12);
  background: linear-gradient(135deg, #f8faf8 0%, #e8f0e8 50%, #f0f5f0 100%);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: box-shadow 0.3s, transform 0.2s;
  position: relative;
  overflow: hidden;
}
.configurator-placeholder:hover {
  box-shadow: 0 6px 28px rgba(0,0,0,0.12), 0 16px 56px rgba(0,0,0,0.16);
  transform: translateY(-2px);
}
.configurator-placeholder-content {
  display: flex; flex-direction: column; align-items: center;
  gap: 12px; color: var(--primary, #2ea3f2); text-align: center; padding: 24px;
}
.configurator-placeholder-title {
  font-size: 22px; font-weight: 700; color: var(--dark, #1a1a1a);
}
.configurator-placeholder-sub {
  font-size: 15px; color: var(--muted, #666); max-width: 420px; line-height: 1.5;
}
.configurator-note {
  text-align: center; margin-top: 20px; font-size: 13px; color: var(--muted);
}
.configurator-note strong { color: var(--dark); }

/* ===== TESTIMONIALS ===== */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial-card {
  background: var(--white); padding: 28px 24px; border-radius: 12px;
  border: 1px solid var(--border); position: relative;
}
.testimonial-card::before {
  content: '\201C'; position: absolute; top: 16px; right: 20px;
  font-family: 'Playfair Display', serif; font-size: 52px;
  color: var(--green); opacity: 0.12; line-height: 1;
}
.testimonial-stars { color: var(--yellow); font-size: 15px; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-card p {
  font-size: 14px; line-height: 1.75; color: var(--text); margin-bottom: 18px;
  font-style: italic;
}
.testimonial-author { font-size: 13px; font-weight: 700; color: var(--dark); }
.testimonial-author span { font-weight: 400; color: var(--muted); }

/* ===== WHY PEASE ===== */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.why-card {
  text-align: center; padding: 32px 20px; border-radius: 12px;
  background: var(--white); border: 1px solid var(--border);
  transition: all 0.3s;
}
.why-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.06); }
.why-icon {
  width: 56px; height: 56px; border-radius: 14px; margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  background: var(--green-light);
  font-size: 24px; border: 1px solid rgba(26,92,42,0.12);
}
.why-card h4 { font-size: 15px; color: var(--dark); margin-bottom: 8px; }
.why-card p { font-size: 13px; color: var(--muted); line-height: 1.55; }

/* ===== ABOUT — Story ===== */
.story-container { max-width: 820px; margin: 0 auto; text-align: center; }
.story-year {
  display: inline-block; font-family: 'Playfair Display', serif;
  font-size: 56px; font-weight: 800; color: var(--green);
  letter-spacing: -1px; margin-bottom: 8px;
  background: linear-gradient(135deg, var(--green), #2a7a3a);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.story-title {
  font-family: 'Playfair Display', serif; font-size: 40px; font-weight: 800;
  color: var(--dark); margin-bottom: 12px; letter-spacing: -0.5px;
}
.story-subtitle {
  font-family: 'Lora', serif; font-size: 18px; color: var(--muted);
  font-style: italic; margin-bottom: 48px; line-height: 1.6;
}
.story-divider {
  width: 60px; height: 3px; background: var(--yellow);
  border-radius: 2px; margin: 0 auto 48px;
}
.story-chapter { margin-bottom: 48px; text-align: left; }
.story-chapter-label {
  font-size: 11px; font-weight: 700; color: var(--green);
  text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px;
}
.story-chapter h3 {
  font-family: 'Playfair Display', serif; font-size: 26px;
  color: var(--dark); margin-bottom: 14px; letter-spacing: -0.3px;
}
.story-chapter p {
  font-family: 'Lora', serif; font-size: 16px; line-height: 1.9;
  color: var(--text); margin-bottom: 14px;
}
.story-chapter p:last-child { margin-bottom: 0; }
.story-chapter .accent { font-weight: 600; color: var(--green); }
.story-quote {
  text-align: center; padding: 40px 32px; margin: 48px 0;
  background: var(--green-light); border-radius: 16px;
  border: 1px solid rgba(26,92,42,0.1);
}
.story-quote p {
  font-family: 'Playfair Display', serif; font-size: 22px;
  font-weight: 600; color: var(--green); line-height: 1.5;
  font-style: italic; margin: 0;
}
.story-quote .quote-attr {
  font-family: 'Open Sans', sans-serif; font-size: 13px;
  color: var(--muted); font-style: normal; font-weight: 600;
  margin-top: 14px; display: block;
}

/* ===== ABOUT — Services ===== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card {
  background: var(--white); border-radius: 12px; overflow: hidden;
  border: 1px solid var(--border); transition: all 0.3s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.08); }
.service-card-img {
  height: 180px; background-size: cover; background-position: center;
}
.service-card-body { padding: 20px; }
.service-card-body h4 { font-size: 16px; color: var(--dark); margin-bottom: 8px; }
.service-card-body p { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* ===== ABOUT — Values ===== */
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.value-card {
  text-align: center; padding: 32px 20px; border-radius: 12px;
  background: var(--white); border: 1px solid var(--border);
  transition: all 0.3s;
}
.value-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.06); }
.value-icon {
  width: 56px; height: 56px; border-radius: 14px; margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  background: var(--green-light);
  font-size: 24px; border: 1px solid rgba(26,92,42,0.12);
}
.value-card h4 { font-size: 15px; color: var(--dark); margin-bottom: 8px; }
.value-card p { font-size: 13px; color: var(--muted); line-height: 1.55; }

/* ===== GALLERY — Category filter ===== */
.category-filter {
  position: sticky; top: 72px; z-index: 900;
  background: var(--white); border-bottom: 1px solid var(--border);
  padding: 0 24px;
}
.category-filter-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; flex-wrap: wrap; gap: 6px;
  padding: 12px 0;
}
.cat-btn {
  padding: 8px 18px; border-radius: 20px; border: 1.5px solid var(--border);
  background: var(--white); color: var(--text); font-size: 13px; font-weight: 600;
  cursor: pointer; white-space: nowrap; transition: all 0.2s; font-family: inherit;
  text-decoration: none;
}
.cat-btn:hover, .cat-btn.active {
  background: var(--green); color: white; border-color: var(--green);
}

/* ===== GALLERY — Grid & Items ===== */
.gallery-section { padding: 60px 24px; }
.gallery-section:nth-child(even) { background: var(--light); }
.gallery-section-inner { max-width: var(--max-w); margin: 0 auto; }
.gallery-section-header { margin-bottom: 32px; }
.gallery-section-header .section-label { margin-bottom: 8px; }
.gallery-section-header h3 {
  font-family: 'Playfair Display', serif; font-size: 28px;
  color: var(--dark); letter-spacing: -0.2px;
}
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.gallery-item {
  border-radius: 10px; overflow: hidden; cursor: pointer;
  position: relative; aspect-ratio: 4/3;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease; display: block;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.2), transparent 40%);
  opacity: 0; transition: opacity 0.3s;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-placeholder {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 24px;
  background: var(--light);
  border-radius: 16px;
  border: 2px dashed #ccc;
  color: #888;
  font-size: 1.05rem;
}
.gallery-placeholder svg {
  display: block;
  margin: 0 auto 12px;
  opacity: 0.35;
}

/* ===== LIGHTBOX ===== */
.lightbox-overlay {
  display: none; position: fixed; inset: 0; z-index: 10000;
  background: rgba(0,0,0,0.9); align-items: center; justify-content: center;
  padding: 40px;
}
.lightbox-overlay.active { display: flex; }
.lightbox-overlay img {
  max-width: 100%; max-height: 90vh; border-radius: 8px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
}
.lightbox-close {
  position: absolute; top: 20px; right: 24px;
  background: none; border: none; color: white; font-size: 36px;
  cursor: pointer; line-height: 1; padding: 8px;
}
.lightbox-close:hover { color: var(--yellow); }

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  align-items: start;
}
.contact-info { padding: 0; }
.contact-info h2 {
  font-family: 'Playfair Display', serif; font-size: 32px;
  color: var(--dark); margin-bottom: 8px;
}
.contact-info > p {
  font-size: 15px; color: var(--muted); line-height: 1.7; margin-bottom: 32px;
}
.contact-detail {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px 0; border-bottom: 1px solid var(--border);
}
.contact-detail:last-child { border-bottom: none; }
.contact-detail-icon {
  width: 44px; height: 44px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--green-light); font-size: 20px;
  border: 1px solid rgba(26,92,42,0.12);
}
.contact-detail h4 { font-size: 14px; color: var(--dark); margin-bottom: 4px; }
.contact-detail p { font-size: 14px; color: var(--muted); line-height: 1.6; }
.contact-detail a { color: var(--green); text-decoration: none; font-weight: 600; }
.contact-detail a:hover { text-decoration: underline; }
.contact-socials {
  display: flex; gap: 12px; margin-top: 24px;
}
.contact-social-link {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 18px; border-radius: 8px; font-size: 13px; font-weight: 600;
  color: var(--text); background: var(--light); border: 1px solid var(--border);
  text-decoration: none; transition: all 0.2s;
}
.contact-social-link:hover { border-color: var(--green); color: var(--green); }
.contact-form-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 16px; padding: 32px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.contact-form-card h3 {
  font-family: 'Playfair Display', serif; font-size: 24px;
  color: var(--dark); margin-bottom: 6px;
}
.contact-form-card > p {
  font-size: 14px; color: var(--muted); margin-bottom: 24px;
}
.contact-map {
  width: 100%; height: 280px; border: none; border-radius: 12px;
  margin-top: 48px;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  padding: 80px 24px; text-align: center;
  background: linear-gradient(160deg, var(--green-deep), var(--green), #2a7a3a);
  color: white; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0; opacity: 0.3;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(232,200,64,0.2), transparent);
}
.cta-inner { position: relative; z-index: 1; }
.cta-banner h2 {
  font-family: 'Playfair Display', serif; font-size: 38px;
  margin-bottom: 14px; letter-spacing: -0.3px;
}
.cta-banner p { font-size: 17px; opacity: 0.8; margin-bottom: 36px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== FOOTER ===== */
.footer {
  background: var(--green-deep); color: rgba(255,255,255,0.6); padding: 56px 24px 32px;
}
.footer-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 40px;
}
.footer h4 {
  color: var(--yellow); font-size: 12px; margin-bottom: 18px;
  text-transform: uppercase; letter-spacing: 1px;
}
.footer p { font-size: 13px; line-height: 1.8; color: rgba(255,255,255,0.5); }
.footer a {
  font-size: 13px; line-height: 2; color: rgba(255,255,255,0.55);
  text-decoration: none; display: block; transition: color 0.15s;
}
.footer a:hover { color: var(--yellow); }
.footer-brand p { margin-bottom: 10px; }
.footer-brand-name {
  font-size: 16px; font-weight: 700; color: white; margin-bottom: 12px;
  display: flex; align-items: center; gap: 10px;
}
.footer-brand-name::before {
  content: ''; display: inline-block; width: 3px; height: 18px;
  background: var(--yellow); border-radius: 2px;
}
.footer-links { display: flex; flex-direction: column; }
.footer-bottom {
  max-width: var(--max-w); margin: 32px auto 0; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: rgba(255,255,255,0.35);
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 12px; line-height: 1; }

/* ===== LEGAL PAGES ===== */
.legal-content {
  max-width: 780px; margin: 0 auto;
}
.legal-content h2 {
  font-family: 'Playfair Display', serif; font-size: 24px;
  color: var(--dark); margin: 40px 0 14px; letter-spacing: -0.2px;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p {
  font-size: 15px; color: var(--text); line-height: 1.8; margin-bottom: 16px;
}
.legal-content ul {
  margin: 0 0 16px 24px; font-size: 15px; color: var(--text); line-height: 1.8;
}
.legal-content a { color: var(--green); }

/* ===== QUOTE MODAL ===== */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 10000;
  background: rgba(0,0,0,0.55); backdrop-filter: blur(4px);
  align-items: center; justify-content: center; padding: 24px;
}
.modal-overlay.active { display: flex; }
.modal {
  background: var(--white); border-radius: 16px; width: 100%; max-width: 520px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.25); position: relative;
  max-height: 90vh; overflow-y: auto;
}
.modal-header {
  padding: 28px 32px 0; text-align: center;
}
.modal-header h2 {
  font-family: 'Playfair Display', serif; font-size: 28px;
  color: var(--dark); margin-bottom: 6px;
}
.modal-header p { font-size: 14px; color: var(--muted); line-height: 1.5; }
.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px; border-radius: 50%; border: none;
  background: var(--light); color: var(--muted); font-size: 20px;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.modal-close:hover { background: #eee; color: var(--dark); }
.modal-form { padding: 24px 32px 32px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block; font-size: 13px; font-weight: 600; color: var(--dark);
  margin-bottom: 6px;
}
.form-group label .required { color: #d44; margin-left: 2px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--border);
  border-radius: 8px; font-family: inherit; font-size: 14px;
  color: var(--dark); background: var(--white); transition: border-color 0.2s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(26,92,42,0.1);
}
.form-group textarea { resize: vertical; min-height: 80px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-row-3 { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 12px; }
.form-submit {
  width: 100%; padding: 14px; border: none; border-radius: 8px;
  background: var(--green); color: white; font-family: inherit;
  font-size: 15px; font-weight: 700; cursor: pointer;
  transition: all 0.25s; margin-top: 8px;
  box-shadow: 0 4px 16px rgba(26,92,42,0.3);
}
.form-submit:hover { background: var(--green-dark); transform: translateY(-1px); }
.form-success {
  text-align: center; padding: 48px 32px;
}
.form-success-icon {
  width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 20px;
  background: var(--green-light); display: flex; align-items: center;
  justify-content: center; font-size: 32px; color: var(--green);
}
.form-success h3 {
  font-family: 'Playfair Display', serif; font-size: 24px;
  color: var(--dark); margin-bottom: 10px;
}
.form-success p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ===== SECTION BACKGROUND ALIASES ===== */
.bg-light { background: var(--light); }
.bg-warm { background: var(--warm); }

/* ===== FEATURE GRID (alias for features-grid used on some pages) ===== */
.feature-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}

/* ===== HIGHLIGHT LIST ===== */
.highlight-list {
  list-style: none; margin: 0 0 24px; padding: 0;
}
.highlight-list li {
  position: relative; padding: 6px 0 6px 24px;
  font-size: 14px; color: var(--text); line-height: 1.7;
}
.highlight-list li::before {
  content: '\2713'; position: absolute; left: 0; top: 6px;
  color: var(--green); font-weight: 700; font-size: 14px;
}

/* ===== COMPARISON SECTION (motorized-screens) ===== */
.comparison-section {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.comparison-card {
  padding: 32px; border-radius: 12px; border: 1px solid var(--border);
  background: var(--white); position: relative;
}
.comparison-card.premium {
  border-color: var(--green); border-width: 2px;
  box-shadow: 0 4px 24px rgba(26,92,42,0.1);
}
.comparison-card.other {
  background: var(--light); border-color: var(--border);
}
.comparison-card h4 {
  font-family: 'Playfair Display', serif; font-size: 20px;
  color: var(--dark); margin-bottom: 12px;
}
.comparison-card p {
  font-size: 14px; color: var(--text); line-height: 1.7; margin-bottom: 12px;
}
.comparison-card .tag {
  display: inline-block; padding: 4px 12px; border-radius: 4px;
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.5px; margin-top: 8px;
}
.comparison-card.premium .tag {
  background: var(--green); color: white;
}
.comparison-card.other .tag {
  background: var(--border); color: var(--muted);
}

/* ===== BENEFITS SPLIT ===== */
.benefits-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.benefits-text h2 {
  font-family: 'Playfair Display', serif; font-size: 34px;
  color: var(--dark); margin-bottom: 18px; letter-spacing: -0.3px;
}
.benefits-text p {
  font-size: 15px; color: var(--text); line-height: 1.8; margin-bottom: 16px;
}
.benefits-img {
  width: 100%; height: 400px; border-radius: 12px; overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
}
.benefits-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.benefits-text .highlight { font-weight: 700; color: var(--green); }
.benefits-list {
  list-style: none; margin: 20px 0 0; padding: 0;
}
.benefits-list li {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 14px 0; border-bottom: 1px solid var(--border);
  font-size: 14px; color: var(--text); line-height: 1.7;
}
.benefits-list li:last-child { border-bottom: none; }
.benefits-list li strong { color: var(--dark); }
.benefits-list h5 { font-size: 14px; color: var(--dark); margin-bottom: 4px; }
.benefits-list li > div p { font-size: 13px; color: var(--muted); line-height: 1.55; }
.benefits-check {
  width: 28px; height: 28px; border-radius: 8px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--green-light); color: var(--green);
  font-size: 14px; font-weight: 700; margin-top: 2px;
}

/* ===== OPTIONS GRID (sunrooms, pergolas) ===== */
.options-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.option-card {
  background: var(--white); border-radius: 12px; overflow: hidden;
  border: 1px solid var(--border); transition: all 0.3s; position: relative;
}
.option-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.1); border-color: transparent;
}
.option-card-img {
  height: 220px; background-size: cover; background-position: center;
  position: relative; overflow: hidden;
}
.option-card-body { padding: 24px; }
.option-card-body h3 {
  font-size: 18px; color: var(--dark); margin-bottom: 10px; font-weight: 700;
}
.option-card-body p {
  font-size: 13px; line-height: 1.65; color: var(--muted); margin-bottom: 16px;
}
.option-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--green); color: white; padding: 4px 10px;
  border-radius: 4px; font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.5px; z-index: 1;
}
.option-badge-yellow { background: var(--yellow); color: var(--green-deep); }

/* ===== STYLES GRID (stationary-awnings) ===== */
.styles-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.style-card {
  background: var(--white); border-radius: 12px; overflow: hidden;
  border: 1px solid var(--border); transition: all 0.3s;
}
.style-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.1); border-color: transparent;
}
.style-card-img {
  height: 200px; background-size: cover; background-position: center;
  position: relative; overflow: hidden;
}
.style-card-body { padding: 20px; }
.style-card-body h3 {
  font-size: 17px; color: var(--dark); margin-bottom: 8px; font-weight: 700;
}
.style-card-body p {
  font-size: 13px; line-height: 1.65; color: var(--muted);
}

/* ===== PLACEHOLDER HERO & IMAGE ===== */
.placeholder-hero {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green) 50%, #2a7a3a 100%);
}
.placeholder-img {
  background: linear-gradient(135deg, var(--green-light) 0%, #d4e8d4 100%);
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px; min-height: 300px; position: relative;
}
.placeholder-img::after {
  content: 'Photo Coming Soon';
  font-size: 14px; font-weight: 700; color: var(--green);
  background: rgba(255,255,255,0.85); padding: 8px 18px; border-radius: 6px;
}

/* ===== TIMELINE (seasonal-service) ===== */
.timeline {
  position: relative; padding-left: 40px; max-width: 720px; margin: 0 auto;
}
.timeline::before {
  content: ''; position: absolute; left: 15px; top: 0; bottom: 0;
  width: 2px; background: var(--border);
}
.timeline-item {
  position: relative; padding-bottom: 40px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
  position: absolute; left: -40px; top: 0;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--green); color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800;
  box-shadow: 0 2px 8px rgba(26,92,42,0.3);
}
.timeline-content {}
.timeline-month {
  font-size: 12px; font-weight: 700; color: var(--green);
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px;
}
.timeline-content h4 {
  font-size: 16px; color: var(--dark); margin-bottom: 6px;
}
.timeline-content p {
  font-size: 14px; color: var(--muted); line-height: 1.65;
}

/* ===== LOCATION CAPTION ===== */
.location-caption {
  font-size: 12px; color: var(--muted); font-style: italic;
  text-align: right; margin-top: 8px;
}

/* ===== PAGE HERO BADGE ===== */
.page-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px; border-radius: 20px;
  background: rgba(232,200,64,0.15); color: var(--yellow);
  font-size: 11px; font-weight: 700; margin-bottom: 16px;
  border: 1px solid rgba(232,200,64,0.3);
  text-transform: uppercase; letter-spacing: 0.8px;
}

/* ===== COMPARE SPLIT (sunrooms 3-season vs 4-season) ===== */
.compare-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.compare-list { list-style: none; }
.compare-list li {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px 0; border-bottom: 1px solid var(--border);
}
.compare-list li:last-child { border-bottom: none; }
.compare-check {
  width: 28px; height: 28px; border-radius: 8px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--green-light); color: var(--green);
  font-size: 14px; font-weight: 700; margin-top: 2px;
}
.compare-list h5 { font-size: 14px; color: var(--dark); margin-bottom: 4px; }
.compare-list p { font-size: 13px; color: var(--muted); line-height: 1.55; }

/* ===== ALREADY-SPLIT (pergolas retrofit section) ===== */
.already-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}

/* ===== SERVICE ICON (seasonal-service) ===== */
.service-icon {
  width: 56px; height: 56px; border-radius: 14px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--green-light); font-size: 24px;
  border: 1px solid rgba(26,92,42,0.12);
}
/* Service card with icon layout (seasonal-service) */
.service-card:has(.service-icon) {
  display: flex; gap: 16px; align-items: flex-start; padding: 24px;
}
.service-card:has(.service-icon) h4 {
  font-size: 15px; color: var(--dark); margin-bottom: 6px;
}
.service-card:has(.service-icon) p {
  font-size: 13px; color: var(--muted); line-height: 1.65;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  /* Nav — hamburger & mobile menu */
  .nav-hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute; top: 72px; left: 0; right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 12px 24px 20px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    gap: 0;
  }
  .nav.nav-open .nav-links { display: flex; }
  .nav.nav-open .nav-links a {
    display: flex !important;
    padding: 12px 14px;
    border-radius: 8px;
    width: 100%;
  }
  .nav.nav-open .nav-links .nav-cta {
    margin-top: 8px; justify-content: center;
  }

  /* Grids */
  .products-grid, .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .features-grid, .feature-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .intro-split, .tech-split, .benefits-split, .already-split, .compare-split { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
  .comparison-section { grid-template-columns: 1fr; }
  .options-grid, .styles-grid { grid-template-columns: 1fr 1fr; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr 1fr; }

  /* Page hero */
  .page-hero h1 { font-size: 36px; }
  .page-hero--photo { min-height: 360px; }

  /* Homepage hero */
  .hero h1 { font-size: 38px; }
  .hero { min-height: 480px; }

  /* About */
  .story-year { font-size: 44px; }
  .story-title { font-size: 32px; }
  .story-chapter h3 { font-size: 22px; }

  /* Misc */
  .top-bar { display: none; }
  .trust-divider { display: none; }
  .category-filter { top: 72px; }
}

@media (max-width: 600px) {
  .products-grid, .testimonials-grid, .why-grid { grid-template-columns: 1fr; }
  .services-grid, .values-grid { grid-template-columns: 1fr; }
  .features-grid, .feature-grid, .steps-grid, .gallery-grid { grid-template-columns: 1fr; }
  .options-grid, .styles-grid, .comparison-section { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .trust-bar-inner { flex-direction: column; gap: 16px; }
  .hero h1 { font-size: 30px; }
  .hero p { font-size: 15px; }
  .hero-inner { padding: 100px 24px 60px; }
  .page-hero { padding: 80px 24px 48px; }
  .page-hero h1 { font-size: 30px; }
  .page-hero--photo .page-hero-inner { padding: 80px 24px 50px; }
  .page-hero--photo h1 { font-size: 28px; }
  .page-hero--photo p { font-size: 15px; }
  .section { padding: 60px 24px; }
  .gallery-section { padding: 40px 24px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .form-row, .form-row-3 { grid-template-columns: 1fr; }
  .modal-header h2 { font-size: 24px; }
  .modal-form { padding: 20px 20px 28px; }
  .modal-header { padding: 24px 20px 0; }
}
