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

:root {
  --forest: #1F3B2C;
  --forest-deep: #14281C;
  --forest-light: #2E5941;
  --moss: #4C7A5D;
  --moss-light: #E7EFE7;
  --terracotta: #C1652F;
  --terracotta-dark: #A2531F;
  --cream: #FAF7F1;
  --white: #FFFFFF;
  --charcoal: #23281F;
  --text-secondary: #5B6259;
  --text-muted: #8A9088;
  --border: #E4E0D6;
  --gold: #D9A441;
}

html { scroll-behavior: smooth; overflow-x: hidden; max-width: 100%; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--charcoal);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100%;
  overflow-wrap: break-word;
  word-break: break-word;
}

/* Prevent long unbroken text (emails, URLs) from forcing grid/flex tracks
   wider than the viewport, which is what causes horizontal scroll on mobile */
* { min-width: 0; }
img, svg, iframe { max-width: 100%; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: 'Fraunces', serif;
  color: var(--forest-deep);
  line-height: 1.15;
}

.section-wrap { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section.tight { padding: 56px 0; }
.section.alt { background: var(--cream); }
.section.dark { background: var(--forest); color: rgba(255,255,255,0.9); }
.section.dark h2, .section.dark h3 { color: var(--white); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--terracotta-dark);
  margin-bottom: 12px;
}
.eyebrow svg { width: 16px; height: 16px; }

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 600;
  margin-bottom: 16px;
}
.section-title em { font-style: italic; color: var(--terracotta); }

.section-sub {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 620px;
  margin-bottom: 40px;
}

.centered { text-align: center; }
.centered .section-sub { margin-left: auto; margin-right: auto; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 8px;
  transition: background 0.15s, transform 0.15s, color 0.15s;
  border: 1.5px solid transparent;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-primary { background: var(--terracotta); color: var(--white); }
.btn-primary:hover { background: var(--terracotta-dark); transform: translateY(-1px); }
.btn-outline { background: transparent; border-color: rgba(255,255,255,0.4); color: var(--white); }
.btn-outline:hover { background: rgba(255,255,255,0.1); }
.btn-outline-dark { background: transparent; border-color: var(--border); color: var(--forest-deep); }
.btn-outline-dark:hover { background: var(--moss-light); }
.btn-block { width: 100%; justify-content: center; }

/* ===== HEADER ===== */
header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-mark {
  width: 40px; height: 40px;
  background: var(--forest);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-mark svg { width: 22px; height: 22px; }
.logo-word { font-family: 'Fraunces', serif; font-size: 21px; font-weight: 600; color: var(--forest-deep); line-height: 1.1; }
.logo-word span { color: var(--terracotta); font-style: italic; }
.logo-tagline { font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }

nav ul { display: flex; gap: 4px; align-items: center; }
nav ul li a {
  font-size: 15px; font-weight: 500; color: var(--charcoal);
  padding: 8px 14px; border-radius: 6px; transition: background 0.15s, color 0.15s;
}
nav ul li a:hover, nav ul li.active a { background: var(--moss-light); color: var(--forest); }

.header-cta { display: flex; align-items: center; gap: 14px; }
.header-phone { display: flex; flex-direction: column; align-items: flex-end; }
.header-phone .label { font-size: 11px; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
.header-phone a { font-family: 'Fraunces', serif; font-size: 19px; font-weight: 600; color: var(--forest-deep); }

.nav-toggle { display: none; background: none; border: none; font-size: 20px; color: var(--forest-deep); cursor: pointer; padding: 4px; }

/* ===== HERO ===== */
.hero {
  position: relative;
  background: linear-gradient(160deg, var(--forest-deep) 0%, var(--forest) 55%, var(--forest-light) 100%);
  color: var(--white);
  overflow: hidden;
}
.hero-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 80px 24px 96px;
  position: relative;
  z-index: 2;
}
.hero-texture {
  position: absolute; inset: 0; z-index: 1;
  background-image: radial-gradient(circle at 82% 20%, rgba(255,255,255,0.06) 0%, transparent 45%),
                     radial-gradient(circle at 10% 90%, rgba(193,101,47,0.18) 0%, transparent 45%);
}
.hero h1 { color: var(--white); font-size: clamp(40px, 6vw, 66px); font-weight: 600; max-width: 720px; margin-bottom: 18px; }
.hero h1 em { color: #F0B27E; font-style: italic; }
.hero-sub { font-size: 18px; color: rgba(255,255,255,0.78); max-width: 520px; margin-bottom: 36px; }
.hero-cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 44px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 22px 32px; }
.hero-badge { display: flex; align-items: center; gap: 9px; font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.85); }
.hero-badge svg { width: 18px; height: 18px; color: #F0B27E; flex-shrink: 0; }

.page-hero {
  background: linear-gradient(160deg, var(--forest-deep) 0%, var(--forest) 100%);
  color: var(--white);
  padding: 64px 24px;
  text-align: center;
}
.page-hero h1 { color: var(--white); font-size: clamp(34px, 5vw, 50px); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 16px; max-width: 560px; margin: 0 auto; }
.breadcrumb { font-size: 13px; color: rgba(255,255,255,0.6); margin-bottom: 14px; }
.breadcrumb a { color: #F0B27E; }

/* ===== TRUST STRIP ===== */
.trust-strip {
  background: var(--cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-strip .section-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 32px 24px;
}
.trust-stat { text-align: center; }
.trust-stat .num { font-family: 'Fraunces', serif; font-size: 30px; font-weight: 600; color: var(--forest); }
.trust-stat .label { font-size: 13px; color: var(--text-secondary); font-weight: 500; }

/* ===== CARDS / GRIDS ===== */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 30px 26px;
}
.service-card .icon-badge {
  width: 52px; height: 52px;
  background: var(--moss-light);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.service-card .icon-badge svg { width: 26px; height: 26px; color: var(--forest); }
.service-card h3 { font-size: 20px; margin-bottom: 8px; }
.service-card p { font-size: 14.5px; color: var(--text-secondary); margin-bottom: 14px; }
.service-card .link { font-size: 14px; font-weight: 600; color: var(--terracotta); display: inline-flex; align-items: center; gap: 6px; }
.service-card ul { margin-top: 10px; }
.service-card ul li { font-size: 14px; color: var(--text-secondary); display: flex; align-items: flex-start; gap: 8px; margin-bottom: 7px; }
.service-card ul li svg { width: 15px; height: 15px; color: var(--moss); flex-shrink: 0; margin-top: 2px; }

.value-card { text-align: center; padding: 8px; }
.value-card .icon-badge {
  width: 56px; height: 56px;
  background: var(--forest);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.value-card .icon-badge svg { width: 26px; height: 26px; color: var(--white); }
.value-card h3 { font-size: 18px; margin-bottom: 8px; }
.value-card p { font-size: 14.5px; color: var(--text-secondary); }

/* ===== SERVICE AREA / MAP WIDGET ===== */
.area-widget {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
}
.area-map { position: relative; min-height: 380px; background: var(--moss-light); }
.area-map iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; filter: saturate(0.9); }
.area-pin-badge {
  position: absolute; top: 16px; left: 16px;
  background: var(--white);
  padding: 8px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  color: var(--forest-deep);
  display: flex; align-items: center; gap: 6px;
  box-shadow: 0 2px 10px rgba(20,40,28,0.15);
}
.area-pin-badge svg { width: 14px; height: 14px; color: var(--terracotta); }
.area-info { padding: 40px; }
.area-info h3 { font-size: 24px; margin-bottom: 10px; }
.area-info p { font-size: 14.5px; color: var(--text-secondary); margin-bottom: 22px; }
.area-cities { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 16px; margin-bottom: 26px; }
.area-city { display: flex; align-items: center; gap: 8px; font-size: 14.5px; font-weight: 500; color: var(--charcoal); }
.area-city svg { width: 16px; height: 16px; color: var(--moss); flex-shrink: 0; }
.area-note { font-size: 13px; color: var(--text-muted); border-top: 1px solid var(--border); padding-top: 16px; }

/* ===== TESTIMONIALS ===== */
.review-card { background: var(--cream); border: 1px solid var(--border); border-radius: 14px; padding: 26px; }
.stars { color: var(--gold); font-size: 15px; letter-spacing: 2px; margin-bottom: 12px; }
.review-card p.quote { font-size: 14.5px; color: var(--charcoal); line-height: 1.65; margin-bottom: 20px; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--forest); color: var(--white); display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: 13px; flex-shrink: 0; }
.reviewer-name { font-size: 14px; font-weight: 600; }
.reviewer-loc { font-size: 12.5px; color: var(--text-muted); }

/* ===== GALLERY ===== */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery-tile {
  aspect-ratio: 4/3;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  display: flex; align-items: flex-end;
  background: linear-gradient(150deg, var(--moss) 0%, var(--forest) 100%);
}
.gallery-tile.alt { background: linear-gradient(150deg, var(--terracotta) 0%, var(--terracotta-dark) 100%); }
.gallery-tile .watermark { position: absolute; inset: 0; width: 100%; height: 100%; }
.gallery-tile .watermark svg { width: 100%; height: 100%; color: white; }
.gallery-caption {
  position: relative; z-index: 2;
  width: 100%;
  padding: 16px;
  background: linear-gradient(0deg, rgba(0,0,0,0.55) 0%, transparent 100%);
  color: white;
  font-size: 14px;
  font-weight: 600;
}
.gallery-caption span { display: block; font-size: 12px; font-weight: 400; opacity: 0.8; margin-top: 2px; }

/* ===== TEAM (ABOUT) ===== */
.team-card { text-align: center; }
.team-photo {
  width: 100%; aspect-ratio: 1/1; border-radius: 14px;
  background: linear-gradient(150deg, var(--moss) 0%, var(--forest) 100%);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  overflow: hidden;
}
.team-photo svg { width: 44px; height: 44px; color: rgba(255,255,255,0.7); }
.team-card h3 { font-size: 17px; margin-bottom: 4px; }
.team-card .role { font-size: 13px; color: var(--terracotta-dark); font-weight: 600; margin-bottom: 8px; }
.team-card p { font-size: 13.5px; color: var(--text-secondary); }

/* ===== CTA BAND ===== */
.cta-band {
  background: linear-gradient(135deg, var(--forest-deep) 0%, var(--forest) 100%);
  color: var(--white);
  text-align: center;
  padding: 72px 24px;
}
.cta-band h2 { color: var(--white); font-size: clamp(28px, 4.5vw, 42px); margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,0.75); font-size: 16px; margin-bottom: 30px; }
.cta-band .btn-row { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ===== FORM (CONTACT) ===== */
.form-card { background: var(--white); border: 1px solid var(--border); border-radius: 16px; padding: 36px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--forest-deep); }
.form-group input, .form-group select, .form-group textarea {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 14.5px;
  font-family: inherit;
  color: var(--charcoal);
  background: var(--cream);
}
.form-group textarea { min-height: 110px; resize: vertical; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: 2px solid var(--moss); outline-offset: 1px; background: var(--white); }

.info-card { background: var(--forest); color: white; border-radius: 16px; padding: 36px; }
.info-card h3 { color: white; font-size: 20px; margin-bottom: 20px; }
.info-row { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.info-row svg { width: 20px; height: 20px; color: #F0B27E; flex-shrink: 0; margin-top: 2px; }
.info-row .label { font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(255,255,255,0.55); margin-bottom: 3px; }
.info-row .value { font-size: 15px; font-weight: 500; }
.hours-table { width: 100%; margin-top: 6px; }
.hours-table tr td { padding: 4px 0; font-size: 14px; color: rgba(255,255,255,0.85); }
.hours-table tr td:last-child { text-align: right; font-weight: 600; }

/* ===== FOOTER ===== */
footer { background: var(--forest-deep); color: rgba(255,255,255,0.7); padding: 56px 24px 28px; }
.footer-inner { max-width: 1140px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 40px; }
.footer-brand .logo-word { color: var(--white); }
.footer-brand p { font-size: 14px; margin: 14px 0 18px; max-width: 280px; color: rgba(255,255,255,0.6); }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; }
.footer-social svg { width: 16px; height: 16px; color: white; }
.footer-col h4 { color: white; font-size: 14px; font-weight: 600; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.06em; font-family: 'Inter', sans-serif; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.65); }
.footer-col ul li a:hover { color: white; }
.footer-bottom { max-width: 1140px; margin: 0 auto; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 12.5px; color: rgba(255,255,255,0.45); }
.footer-bottom a { color: rgba(255,255,255,0.6); }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .area-widget { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .trust-strip .section-wrap { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--border); padding: 8px 24px 16px; }
  nav.open { display: block; }
  nav ul { flex-direction: column; align-items: stretch; gap: 2px; }
  nav ul li a { display: block; padding: 10px 12px; }
  .nav-toggle { display: block; }
  .header-phone .label { font-size: 9px; }
  .grid-3, .grid-4, .grid-2, .gallery-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-cta-row .btn { width: 100%; justify-content: center; }
}

/* Header logo image (replaces text mark) */
.header-logo-img { height: 52px; width: auto; display: block; }
@media (max-width: 640px) {
  .header-logo-img { height: 42px; }
}

/* Footer Google review button (replaces social icons) */
.footer-google-btn {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 14px; padding: 10px 16px;
  border: 1px solid rgba(255,255,255,0.25); border-radius: 8px;
  color: white; font-size: 13px; font-weight: 600; text-decoration: none;
}

/* Review quote truncation */
.quote.clamped {
  display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical;
  overflow: hidden;
}
.review-more-btn {
  background: none; border: none; color: var(--terracotta); font-weight: 600;
  font-size: 13px; cursor: pointer; padding: 0; margin: -6px 0 18px; display: inline-block;
}

/* ===== MOBILE FIXES ===== */
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: center;
}
.hero-logo-card {
  background: var(--white); border-radius: 16px; padding: 32px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25); display: flex;
  align-items: center; justify-content: center;
}
.contact-grid { align-items: flex-start; grid-template-columns: 1.3fr 1fr; }

@media (max-width: 720px) {
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-inner { padding: 48px 20px 56px; text-align: left; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero-logo-card { padding: 20px; }
  .section { padding: 56px 0; }
  .section.tight { padding: 40px 0; }
  .page-hero { padding: 44px 20px; }
  .info-card { padding: 24px; }
  .trust-strip .section-wrap { padding: 24px 20px; }
}

@media (max-width: 480px) {
  .hero h1 { margin-bottom: 14px; }
  .hero-badges { gap: 14px 20px; }
  .trust-stat .num { font-size: 22px; }
}

/* ===== MOBILE POLISH: hero badges + header CTA ===== */
@media (max-width: 720px) {
  .hero-badges {
    display: grid; grid-template-columns: 1fr 1fr; gap: 14px 16px;
  }
  .hero-badge { font-size: 13px; }
  .hero-badge svg { flex-shrink: 0; }

  .header-cta {
    width: 100%; justify-content: space-between;
    margin-top: 10px; padding-top: 12px; border-top: 1px solid var(--border);
  }
  .header-phone { align-items: flex-start; }
}

@media (max-width: 420px) {
  .hero-badges { grid-template-columns: 1fr; }
}
