/* ============================================================
   OSBOURNE HURST — Global Stylesheet
   Black · Red · Grey | Luxury Pastoral Brand
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600&family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,700;1,400&display=swap');

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --black:      #0a0a0a;
  --black-soft: #111111;
  --black-card: #161616;
  --black-mid:  #1f1f1f;
  --red:        #b91c1c;
  --red-light:  #dc2626;
  --red-dim:    #7f1d1d;
  --grey-dark:  #333333;
  --grey-mid:   #666666;
  --grey-light: #999999;
  --white:      #f5f4f0;
  --white-soft: #e8e6e0;
  --gold:       #c9a84c;

  --font-head:  'Cormorant Garamond', Georgia, serif;
  --font-body:  'Montserrat', sans-serif;
  --font-accent:'Playfair Display', Georgia, serif;

  --radius:     4px;
  --transition: 0.35s ease;
  --max-width:  1180px;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Utility ───────────────────────────────────────────────── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section    { padding: 100px 0; }
.section-sm { padding: 60px 0; }
.text-red   { color: var(--red-light); }
.text-gold  { color: var(--gold); }
.text-grey  { color: var(--grey-light); }
.serif      { font-family: var(--font-head); }

/* Red divider line */
.rule { width: 60px; height: 2px; background: var(--red); margin: 18px 0 28px; }
.rule-center { margin: 18px auto 28px; }

/* Section label */
.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red-light);
}

/* ── NAV ───────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(185,28,28,0.2);
  transition: padding var(--transition);
}
.nav-logo {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--white);
}
.nav-logo span { color: var(--red-light); }
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey-light);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-size: 11px !important;
  letter-spacing: 0.2em !important;
  transition: background var(--transition) !important;
}
.nav-cta:hover { background: var(--red-light) !important; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

/* ── HERO ──────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 75% 50%, rgba(185,28,28,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 15% 80%, rgba(185,28,28,0.05) 0%, transparent 60%),
    var(--black);
}
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.hero-tagline-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}
.hero-tagline-row .line { flex: 1; height: 1px; background: var(--red-dim); }
.hero-subhead {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--grey-mid);
}
.hero-name {
  font-family: var(--font-head);
  font-size: clamp(52px, 7vw, 90px);
  font-weight: 600;
  line-height: 1.0;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.hero-name em {
  font-style: italic;
  font-weight: 300;
  color: var(--white-soft);
}
.hero-name .accent { color: var(--red-light); }
.hero-credentials {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey-mid);
  margin-bottom: 28px;
}
.hero-statement {
  font-family: var(--font-head);
  font-size: clamp(18px, 2vw, 22px);
  font-style: italic;
  font-weight: 300;
  color: var(--white-soft);
  line-height: 1.5;
  margin-bottom: 40px;
  border-left: 2px solid var(--red);
  padding-left: 20px;
}
.hero-mission {
  display: flex;
  gap: 24px;
  margin-bottom: 48px;
}
.mission-pill {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-light);
  padding: 8px 16px;
  border: 1px solid var(--grey-dark);
  border-radius: 100px;
  transition: all var(--transition);
}
.mission-pill:hover { border-color: var(--red); color: var(--white); }
.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: var(--white);
  padding: 16px 32px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 2px solid var(--red);
  transition: all var(--transition);
  cursor: pointer;
}
.btn-primary:hover { background: transparent; color: var(--red-light); }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  padding: 16px 32px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 2px solid var(--grey-dark);
  transition: all var(--transition);
  cursor: pointer;
}
.btn-outline:hover { border-color: var(--white); }

/* Photo placeholder */
.hero-photo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
.photo-placeholder {
  width: 420px;
  height: 520px;
  max-width: 100%;
  background: var(--black-card);
  border: 1px solid var(--grey-dark);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: relative;
  overflow: hidden;
}
.photo-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(185,28,28,0.06) 0%, transparent 60%);
}
.photo-placeholder::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), transparent);
}
.photo-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--black-mid);
  border: 2px dashed var(--grey-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--grey-mid);
}
.photo-placeholder p {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--grey-mid);
  text-transform: uppercase;
}

/* ── ABOUT STRIP ───────────────────────────────────────────── */
.about-strip {
  background: var(--black-soft);
  border-top: 1px solid rgba(185,28,28,0.15);
  border-bottom: 1px solid rgba(185,28,28,0.15);
  padding: 70px 0;
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: center;
}
.about-stats {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.stat-item { border-left: 2px solid var(--red); padding-left: 20px; }
.stat-number {
  font-family: var(--font-head);
  font-size: 52px;
  font-weight: 600;
  line-height: 1;
  color: var(--white);
}
.stat-number span { color: var(--red-light); }
.stat-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-light);
  margin-top: 4px;
}
.about-text h2 {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 24px;
}
.about-text p {
  font-size: 15px;
  color: var(--grey-light);
  line-height: 1.9;
  margin-bottom: 16px;
}
.credentials-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.cred-badge {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey-light);
  border: 1px solid var(--grey-dark);
  padding: 6px 14px;
  border-radius: 100px;
}

/* ── SERVICE DOORS ─────────────────────────────────────────── */
.services-section { background: var(--black); }
.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 600;
  line-height: 1.1;
}
.section-header p {
  font-size: 15px;
  color: var(--grey-light);
  max-width: 560px;
  margin: 20px auto 0;
}

.doors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--grey-dark);
  border: 2px solid var(--grey-dark);
  border-radius: 8px;
  overflow: hidden;
}
.door-card {
  background: var(--black-card);
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: pointer;
}
.door-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.door-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top left, rgba(185,28,28,0.07) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.door-card:hover { background: var(--black-mid); transform: translateY(-3px); }
.door-card:hover::before { transform: scaleX(1); }
.door-card:hover::after { opacity: 1; }

.door-number {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--red);
}
.door-icon {
  font-size: 32px;
  line-height: 1;
}
.door-title {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--white);
}
.door-desc {
  font-size: 13px;
  color: var(--grey-light);
  line-height: 1.7;
  flex: 1;
}
.door-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey-mid);
  transition: color var(--transition);
  margin-top: 8px;
}
.door-card:hover .door-link { color: var(--red-light); }
.door-link::after { content: '→'; }

/* Wide door (spans 2 cols) */
.door-wide { grid-column: span 2; }

/* ── TESTIMONIALS ──────────────────────────────────────────── */
.testimonials-section {
  background: var(--black-soft);
  border-top: 1px solid rgba(185,28,28,0.1);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--black-card);
  border: 1px solid var(--black-mid);
  border-radius: 6px;
  padding: 36px;
  position: relative;
  transition: border-color var(--transition);
}
.testimonial-card:hover { border-color: var(--red-dim); }
.quote-mark {
  font-family: var(--font-head);
  font-size: 80px;
  line-height: 0.5;
  color: var(--red-dim);
  margin-bottom: 20px;
  display: block;
}
.testimonial-card p {
  font-size: 14px;
  color: var(--grey-light);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 24px;
}
.testimonial-author {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
}
.testimonial-title {
  font-size: 11px;
  color: var(--grey-mid);
  margin-top: 4px;
}

/* ── PRICING ───────────────────────────────────────────────── */
.pricing-section { background: var(--black); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--grey-dark);
  border: 2px solid var(--grey-dark);
  border-radius: 8px;
  overflow: hidden;
}
.price-card {
  background: var(--black-card);
  padding: 44px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background var(--transition);
}
.price-card.featured {
  background: var(--black-mid);
  position: relative;
}
.price-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  background: var(--red);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--white);
  padding: 4px 16px;
  border-radius: 0 0 6px 6px;
}
.price-card:hover { background: var(--black-mid); }
.price-tier {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red-light);
}
.price-duration {
  font-size: 12px;
  color: var(--grey-mid);
}
.price-amount {
  font-family: var(--font-head);
  font-size: 44px;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
}
.price-amount span { font-size: 18px; color: var(--grey-mid); vertical-align: super; }
.price-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
  flex: 1;
}
.price-features li {
  font-size: 13px;
  color: var(--grey-light);
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.price-features li::before { content: '✓'; color: var(--red-light); font-size: 11px; margin-top: 3px; }
.price-cta {
  display: block;
  text-align: center;
  padding: 12px;
  border: 1px solid var(--grey-dark);
  border-radius: var(--radius);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey-light);
  margin-top: 20px;
  transition: all var(--transition);
}
.price-cta:hover, .price-card.featured .price-cta {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

/* ── CONTACT ───────────────────────────────────────────────── */
.contact-section { background: var(--black-soft); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}
.contact-info h2 {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 16px;
}
.contact-info p { font-size: 15px; color: var(--grey-light); line-height: 1.8; }
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--black-mid);
  border: 1px solid var(--grey-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.contact-item-text .label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-mid);
}
.contact-item-text .value {
  font-size: 14px;
  color: var(--white);
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-mid);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--black-mid);
  border: 1px solid var(--grey-dark);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  padding: 14px 16px;
  outline: none;
  transition: border-color var(--transition);
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--red); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: var(--black-card); }
.form-submit {
  background: var(--red);
  color: var(--white);
  border: 2px solid var(--red);
  padding: 16px 32px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  align-self: flex-start;
}
.form-submit:hover { background: transparent; color: var(--red-light); }

/* ── FOOTER ────────────────────────────────────────────────── */
footer {
  background: var(--black);
  border-top: 1px solid var(--grey-dark);
  padding: 60px 0 30px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .nav-logo { font-size: 26px; margin-bottom: 16px; }
.footer-brand p {
  font-size: 13px;
  color: var(--grey-mid);
  line-height: 1.8;
  max-width: 280px;
  margin-bottom: 24px;
}
.social-links { display: flex; gap: 12px; }
.social-link {
  width: 36px;
  height: 36px;
  border: 1px solid var(--grey-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--grey-mid);
  transition: all var(--transition);
}
.social-link:hover { border-color: var(--red); color: var(--white); background: var(--red-dim); }
.footer-col h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  font-size: 13px;
  color: var(--grey-mid);
  margin-bottom: 10px;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid var(--black-mid);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--grey-dark);
}

/* ── SERVICE PAGE HERO ─────────────────────────────────────── */
.page-hero {
  min-height: 55vh;
  display: flex;
  align-items: flex-end;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 100% at 60% 0%, rgba(185,28,28,0.1) 0%, transparent 60%),
    var(--black);
}
.page-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 60px 24px 80px;
}
.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey-mid);
  margin-bottom: 32px;
}
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: var(--grey-dark); }
.page-title {
  font-family: var(--font-head);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 600;
  line-height: 1.05;
  max-width: 700px;
}

/* Service page content */
.service-content {
  background: var(--black);
  padding: 80px 0;
}
.service-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 80px;
  align-items: start;
}
.service-main h2 {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 20px;
  margin-top: 48px;
}
.service-main h2:first-child { margin-top: 0; }
.service-main p {
  font-size: 15px;
  color: var(--grey-light);
  line-height: 1.9;
  margin-bottom: 16px;
}
.service-main ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
.service-main ul li {
  font-size: 14px;
  color: var(--grey-light);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.service-main ul li::before {
  content: '—';
  color: var(--red);
  flex-shrink: 0;
}
.service-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.sidebar-box {
  background: var(--black-card);
  border: 1px solid var(--black-mid);
  border-top: 3px solid var(--red);
  border-radius: var(--radius);
  padding: 32px;
}
.sidebar-box h3 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 16px;
}
.sidebar-box p {
  font-size: 13px;
  color: var(--grey-light);
  line-height: 1.8;
  margin-bottom: 20px;
}
.sidebar-box .btn-primary { width: 100%; justify-content: center; font-size: 11px; }

/* ── ANIMATIONS ─────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.fade-up { animation: fadeUp 0.8s ease forwards; }
.fade-up-2 { animation: fadeUp 0.8s ease 0.15s forwards; opacity: 0; }
.fade-up-3 { animation: fadeUp 0.8s ease 0.3s forwards; opacity: 0; }
.fade-up-4 { animation: fadeUp 0.8s ease 0.45s forwards; opacity: 0; }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .doors-grid { grid-template-columns: repeat(2, 1fr); }
  .door-wide  { grid-column: span 1; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  nav { padding: 16px 20px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: var(--black);
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 99;
  }
  .nav-links.open a { font-size: 20px; }

  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-photo-wrap { order: -1; }
  .photo-placeholder { width: 280px; height: 340px; }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .doors-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .service-grid { grid-template-columns: 1fr; }
}
