/* ===== Bulldog Mowing — stylesheet ===== */

:root {
  --green-900: #0f2e1c;
  --green-800: #14401f;
  --green-700: #1c5a2a;
  --green-600: #257a37;
  --green-500: #2f9645;
  --green-100: #eaf6ec;
  --maroon-700: #7a1f2b;
  --maroon-600: #9c2735;
  --gold-500: #e8a93a;
  --ink-900: #15201a;
  --ink-700: #3a4a3f;
  --ink-500: #6b7a70;
  --paper-000: #ffffff;
  --paper-050: #f7faf6;
  --paper-100: #eef3ec;
  --line: #e0e8e0;

  --shadow-sm: 0 2px 8px rgba(15, 46, 28, 0.08);
  --shadow-md: 0 10px 30px rgba(15, 46, 28, 0.12);
  --shadow-lg: 0 20px 50px rgba(15, 46, 28, 0.18);

  --radius: 16px;
  --radius-sm: 10px;

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink-900);
  background: var(--paper-000);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-display); margin: 0; line-height: 1.1; }
p { margin: 0; }
section { position: relative; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-700);
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--gold-500);
  display: inline-block;
}

.section-head {
  max-width: 640px;
  margin-bottom: 48px;
}
.section-head h2 {
  font-size: clamp(28px, 4vw, 42px);
  margin-top: 10px;
  color: var(--green-900);
}
.section-head p {
  margin-top: 14px;
  font-size: 17px;
  color: var(--ink-700);
  line-height: 1.6;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold-500);
  color: var(--green-900);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.55);
  color: #fff;
}
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: #fff; }
.btn-dark {
  background: var(--green-900);
  color: #fff;
}
.btn-dark:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); background: var(--green-800); }
.btn-block { width: 100%; }

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  padding: 10px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 21px;
  color: #fff;
  transition: color 0.3s ease;
}
.site-header.scrolled .brand { color: var(--green-900); }
.brand-mark {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--green-700);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}
.brand small {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.75;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav-links a {
  font-size: 14.5px;
  font-weight: 600;
  color: #fff;
  transition: color 0.3s ease, opacity 0.2s ease;
  opacity: 0.92;
}
.nav-links a:hover { opacity: 1; color: var(--gold-500); }
.site-header.scrolled .nav-links a { color: var(--ink-900); opacity: 0.85; }
.site-header.scrolled .nav-links a:hover { color: var(--green-700); opacity: 1; }

.header-actions { display: flex; align-items: center; gap: 14px; }
.phone-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14.5px;
  color: #fff;
  white-space: nowrap;
  transition: color 0.3s ease;
}
.site-header.scrolled .phone-pill { color: var(--green-900); }

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border-radius: 10px;
  border: none;
  background: rgba(255,255,255,0.15);
  color: #fff;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.site-header.scrolled .nav-toggle { background: var(--paper-100); color: var(--green-900); }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 90px;
  overflow: hidden;
  background: var(--green-900);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("images/bulldog6.jpg");
  background-size: cover;
  background-position: center 60%;
  transform: scale(1.05);
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,28,17,0.78) 0%, rgba(10,28,17,0.55) 38%, rgba(10,28,17,0.88) 100%);
}
.hero .container {
  position: relative;
  z-index: 2;
}
.hero-content { max-width: 720px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  padding: 9px 18px 9px 10px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  backdrop-filter: blur(6px);
}
.hero-badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold-500);
}
.hero h1 {
  color: #fff;
  font-size: clamp(40px, 6.4vw, 74px);
  margin-top: 22px;
  letter-spacing: -0.01em;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-500);
}
.hero-sub {
  color: rgba(255,255,255,0.88);
  font-size: 18.5px;
  line-height: 1.65;
  margin-top: 20px;
  max-width: 560px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
}
.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 56px;
  flex-wrap: wrap;
}
.hero-stat .num {
  font-family: var(--font-display);
  font-size: 30px;
  color: #fff;
  font-weight: 700;
}
.hero-stat .num span { color: var(--gold-500); }
.hero-stat .label {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
  max-width: 140px;
}

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.75);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.scroll-cue .line {
  width: 1px; height: 34px;
  background: linear-gradient(180deg, rgba(255,255,255,0.9), transparent);
  animation: cue 1.8s ease-in-out infinite;
}
@keyframes cue {
  0% { transform: scaleY(0.3); opacity: 0.4; transform-origin: top; }
  50% { transform: scaleY(1); opacity: 1; transform-origin: top; }
  100% { transform: scaleY(0.3); opacity: 0.4; transform-origin: top; }
}

/* ===== Trust strip ===== */
.trust-strip {
  background: var(--green-900);
  border-top: 1px solid rgba(255,255,255,0.08);
  position: relative;
  z-index: 3;
}
.trust-strip .container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 40px;
  align-items: center;
  justify-content: space-between;
  padding-top: 22px;
  padding-bottom: 22px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 600;
}
.trust-item svg { flex-shrink: 0; color: var(--gold-500); }

/* ===== Why Us ===== */
.why {
  padding: 110px 0 100px;
  background: var(--paper-050);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.why-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.why-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: var(--green-100);
  color: var(--green-700);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.why-card h3 {
  font-size: 20px;
  color: var(--green-900);
  margin-bottom: 12px;
}
.why-card p {
  color: var(--ink-700);
  font-size: 15.5px;
  line-height: 1.65;
}

/* ===== Services ===== */
.services {
  padding: 110px 0;
  background: var(--paper-000);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 24px;
  color: #fff;
  box-shadow: var(--shadow-sm);
  isolation: isolate;
}
.service-card::before {
  content: "";
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
  z-index: -2;
}
.service-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,46,28,0.15) 0%, rgba(10,20,14,0.92) 88%);
  z-index: -1;
}
.service-card:hover::before { transform: scale(1.08); }
.service-card.mowing::before { background-image: url("images/bulldog2.jpg"); }
.service-card.edging::before { background-image: url("images/bulldog1.jpg"); }
.service-card.landscaping::before { background-image: url("images/bulldog3.jpg"); }
.service-card.mulching::before { background-image: url("images/bulldog4.jpg"); }
.service-tag {
  align-self: flex-start;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(232,169,58,0.95);
  color: var(--green-900);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: auto;
}
.service-card h3 {
  font-size: 23px;
  margin-bottom: 8px;
}
.service-card p {
  font-size: 14.5px;
  color: rgba(255,255,255,0.85);
  line-height: 1.55;
}
.service-new {
  position: absolute;
  top: 18px; right: 18px;
  background: var(--maroon-600);
  color: #fff;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 5px 10px;
  border-radius: 999px;
  z-index: 2;
}

/* ===== Before / After ===== */
.before-after { margin-top: 68px; }
.ba-head {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 30px;
}
.ba-head h3 {
  font-size: clamp(22px, 3vw, 28px);
  color: var(--green-900);
  margin-top: 10px;
}
.ba-head p {
  margin-top: 12px;
  font-size: 15.5px;
  color: var(--ink-700);
  line-height: 1.6;
}
.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.ba-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 4 / 5;
  border: 1px solid var(--line);
}
.ba-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ba-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.ba-tag.before { background: var(--maroon-600); }
.ba-tag.after { background: var(--green-700); }

@media (max-width: 520px) {
  .ba-grid { grid-template-columns: 1fr; }
}

/* ===== Gallery ===== */
.gallery {
  padding: 110px 0;
  background: var(--paper-050);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 190px;
  gap: 18px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item .cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 14px 16px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(0deg, rgba(0,0,0,0.65), transparent);
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.3s ease;
}
.gallery-item:hover .cap { opacity: 1; transform: translateY(0); }
.gallery-item.big { grid-column: span 2; grid-row: span 2; }

/* ===== Story / About ===== */
.story {
  padding: 110px 0;
  background: var(--green-900);
  color: #fff;
  overflow: hidden;
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.story-media { position: relative; }
.story-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  width: 100%;
}
.story-badge {
  position: absolute;
  bottom: -26px; left: -26px;
  background: var(--gold-500);
  color: var(--green-900);
  padding: 18px 22px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  max-width: 210px;
}
.story-badge .num { font-family: var(--font-display); font-size: 26px; font-weight: 700; }
.story-badge .txt { font-size: 12.5px; font-weight: 700; line-height: 1.4; margin-top: 2px; }

.story .eyebrow { color: var(--gold-500); }
.story .eyebrow::before { background: #fff; }
.story h2 {
  font-size: clamp(28px, 4vw, 40px);
  margin-top: 12px;
}
.story-text {
  margin-top: 20px;
  font-size: 16.5px;
  line-height: 1.75;
  color: rgba(255,255,255,0.85);
}
.story-text + .story-text { margin-top: 14px; }
.story-signoff {
  margin-top: 26px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.story-signoff .name { font-weight: 700; font-family: var(--font-display); font-size: 18px; }
.story-signoff .role { font-size: 13px; color: rgba(255,255,255,0.65); }

/* ===== Reviews ===== */
.reviews {
  padding: 110px 0;
  background: var(--paper-000);
}
.reviews-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 44px;
}
.rating-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--green-100);
  padding: 16px 22px;
  border-radius: var(--radius-sm);
}
.rating-badge .score {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 700;
  color: var(--green-900);
}
.rating-badge .stars { color: var(--gold-500); font-size: 15px; letter-spacing: 2px; }
.rating-badge .count { font-size: 12.5px; color: var(--ink-700); margin-top: 2px; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.review-card {
  background: var(--paper-050);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.review-stars { color: var(--gold-500); font-size: 14px; letter-spacing: 2px; }
.review-card p.quote {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-900);
}
.review-who {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}
.review-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--green-700);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}
.review-who .who-name { font-weight: 700; font-size: 14px; color: var(--green-900); }
.review-who .who-meta { font-size: 12px; color: var(--ink-500); }

/* ===== Service area ===== */
.area {
  padding: 100px 0;
  background: var(--paper-050);
}
.area-wrap {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 56px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
  box-shadow: var(--shadow-sm);
}
.area-towns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 26px;
}
.town-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--green-100);
  color: var(--green-800);
  font-weight: 700;
  font-size: 14.5px;
}
.town-chip svg { color: var(--maroon-600); }
.area-note {
  margin-top: 22px;
  font-size: 14.5px;
  color: var(--ink-700);
  line-height: 1.6;
}
.area-map {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background: var(--green-900);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}
.area-map iframe { width: 100%; height: 100%; display: block; }

/* ===== Contact ===== */
.contact {
  padding: 110px 0 120px;
  background: var(--green-900);
  color: #fff;
  position: relative;
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
}
.contact .eyebrow { color: var(--gold-500); }
.contact .eyebrow::before { background: #fff; }
.contact h2 { color: #fff; font-size: clamp(28px, 4vw, 40px); margin-top: 12px; }
.contact-text {
  margin-top: 18px;
  color: rgba(255,255,255,0.82);
  font-size: 16px;
  line-height: 1.7;
  max-width: 440px;
}
.contact-methods { margin-top: 32px; display: flex; flex-direction: column; gap: 18px; }
.contact-method {
  display: flex;
  align-items: center;
  gap: 14px;
}
.contact-method .icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-500);
  flex-shrink: 0;
}
.contact-method .big { font-weight: 700; font-size: 17px; }
.contact-method .small { font-size: 13px; color: rgba(255,255,255,0.65); }

.contact-form {
  background: #fff;
  border-radius: var(--radius);
  padding: 38px;
  box-shadow: var(--shadow-lg);
  color: var(--ink-900);
}
.contact-form h3 {
  font-size: 21px;
  color: var(--green-900);
  margin-bottom: 6px;
}
.contact-form .sub {
  font-size: 14px;
  color: var(--ink-500);
  margin-bottom: 24px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 7px;
  color: var(--ink-700);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 14px;
  border-radius: 10px;
  border: 1.5px solid var(--line);
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--ink-900);
  background: var(--paper-050);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--green-600);
  background: #fff;
}
.field textarea { resize: vertical; min-height: 90px; }
.form-note {
  font-size: 12.5px;
  color: var(--ink-500);
  margin-top: 14px;
  text-align: center;
}

/* ===== Footer ===== */
.site-footer {
  background: #0a1a10;
  color: rgba(255,255,255,0.7);
  padding: 56px 0 28px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .brand { color: #fff; }
.footer-tag {
  margin-top: 12px;
  font-size: 14px;
  max-width: 280px;
  line-height: 1.6;
}
.footer-links { display: flex; gap: 60px; flex-wrap: wrap; }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.footer-col a, .footer-col span {
  display: block;
  font-size: 14.5px;
  margin-bottom: 11px;
  color: rgba(255,255,255,0.82);
  transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--gold-500); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 26px;
  font-size: 13px;
}

/* ===== Reveal animation ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ===== QR handoff modal ===== */
.qr-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(10, 26, 16, 0.72);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.qr-overlay.show { opacity: 1; pointer-events: auto; }
.qr-modal {
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  padding: 40px;
  max-width: 420px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  text-align: center;
  box-shadow: var(--shadow-lg);
  transform: translateY(16px) scale(0.98);
  transition: transform 0.25s ease;
}
.qr-overlay.show .qr-modal { transform: translateY(0) scale(1); }
.qr-modal h3 {
  font-size: 24px;
  color: var(--green-900);
  margin-top: 10px;
}
.qr-sub {
  font-size: 14.5px;
  color: var(--ink-700);
  line-height: 1.6;
  margin-top: 12px;
}
.qr-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 10px;
  border: none;
  background: var(--paper-100);
  color: var(--ink-700);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.qr-code {
  margin: 24px auto 6px;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
}
.qr-code img, .qr-code canvas, .qr-code table { border-radius: 4px; }
.qr-alt { margin-top: 26px; text-align: left; }
.qr-alt-label {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.qr-message {
  white-space: pre-wrap;
  word-break: break-word;
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.6;
  background: var(--paper-050);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: var(--ink-900);
  margin: 0 0 12px;
  max-height: 140px;
  overflow-y: auto;
}

/* ===== Toast ===== */
.toast {
  position: fixed;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--green-900);
  color: #fff;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  z-index: 400;
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ===== Mobile ===== */
@media (max-width: 980px) {
  .why-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 160px; }
  .story-grid { grid-template-columns: 1fr; }
  .story-media { max-width: 440px; margin: 0 auto; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .area-wrap { grid-template-columns: 1fr; padding: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .header-actions .phone-pill span.txt { display: none; }
  .header-actions .btn-primary { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; }
  .gallery-item.big { grid-column: span 2; grid-row: span 1; }
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-head { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 26px; }
  .area-wrap { padding: 28px; border-radius: 18px; }
  .contact-form { padding: 26px; }
  .footer-top { flex-direction: column; }
  .footer-links { gap: 36px; }
}

/* ===== Mobile nav drawer ===== */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--green-900);
  display: flex;
  flex-direction: column;
  padding: 100px 32px 40px;
  transform: translateX(100%);
  transition: transform 0.35s ease;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a {
  color: #fff;
  font-family: var(--font-display);
  font-size: 28px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mobile-nav .btn { margin-top: 30px; }
.mobile-close {
  position: absolute;
  top: 26px; right: 24px;
  width: 42px; height: 42px;
  border-radius: 10px;
  border: none;
  background: rgba(255,255,255,0.12);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}
