:root {
  --cream: #faf5ec;
  --paper: #f1ead7;
  --paper-dark: #e6dec5;
  --ink: #1d2a23;
  --ink-soft: #3a4a3f;
  --muted: #6b6f63;
  --sage: #6b7c5f;
  --sage-dark: #4f5e45;
  --clay: #b86c47;
  --clay-dark: #9a563a;
  --tan: #cf9e5d;
  --rule: #d8d2c2;
  --white: #ffffff;
  --max: 1240px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  font-size: 17px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--ink); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--clay); }

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-weight: 400;
  font-style: normal;
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2.4rem, 6vw, 5rem); font-weight: 300; }
h2 { font-size: clamp(2rem, 4.5vw, 3.4rem); font-weight: 300; }
h3 { font-size: clamp(1.4rem, 2.2vw, 1.85rem); font-weight: 400; }
p { margin: 0 0 1em; color: var(--ink-soft); max-width: 62ch; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--clay);
  margin-bottom: 1rem;
}
.eyebrow.sage { color: var(--sage-dark); }
.divider {
  width: 48px; height: 1px;
  background: var(--ink);
  margin: 1rem 0 1.5rem;
}
.divider.center { margin-left: auto; margin-right: auto; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.95rem 1.8rem;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  font-family: inherit;
}
.btn-ink { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.btn-ink:hover { background: var(--clay); border-color: var(--clay); color: var(--cream); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--cream); }
.btn-light { background: var(--cream); color: var(--ink); border-color: var(--cream); }
.btn-light:hover { background: transparent; color: var(--cream); border-color: var(--cream); }

/* Top utility bar */
.utility {
  background: var(--ink);
  color: var(--cream);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}
.utility .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.utility a { color: var(--cream); }
.utility a:hover { color: var(--tan); }
.utility-info { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.utility-info span { display: inline-flex; align-items: center; gap: 0.45rem; }
.utility-social { display: flex; gap: 0.85rem; align-items: center; }
.utility-social a { font-size: 0.9rem; color: var(--cream); }
.utility-social a:hover { color: var(--tan); }

/* Header — centered logo */
.site-header {
  background: var(--cream);
  border-bottom: 1px solid var(--rule);
}
.site-header .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  padding-top: 1.75rem;
  padding-bottom: 1.25rem;
  position: relative;
}
.brand {
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand img { height: 170px; width: auto; }

.phone-primary {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 400;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.phone-primary i { font-size: 0.85em; color: var(--clay); }
.phone-primary:hover { color: var(--clay); }

.primary-nav {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--cream);
}
.primary-nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding-top: 0.95rem;
  padding-bottom: 0.95rem;
  flex-wrap: wrap;
}
.nav-links {
  display: flex;
  gap: 2.2rem;
  flex-wrap: wrap;
}
.nav-links a {
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  position: relative;
}
.nav-links a:hover,
.nav-links a.active { color: var(--ink); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -8px;
  height: 1px;
  background: var(--clay);
}
.primary-nav .phone-primary {
  font-size: 1.2rem;
  letter-spacing: 0.04em;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--ink);
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: inherit;
  color: var(--ink);
  align-self: center;
}

.nav-toggle {
  position: absolute;
  top: 1rem;
  right: var(--gutter);
}

@media (max-width: 800px) {
  .site-header .container {
    gap: 0.5rem;
    padding-top: 1.1rem; padding-bottom: 1rem;
  }
  .brand img { height: 110px; }
  .phone-primary { font-size: 1.3rem; }
  .nav-toggle { display: inline-block; }
  .primary-nav { display: none; }
  .primary-nav.open { display: block; }
  .primary-nav .container { flex-direction: column; gap: 0; padding: 0; align-items: stretch; }
  .nav-links { flex-direction: column; gap: 0; width: 100%; }
  .nav-links a { padding: 1rem var(--gutter); border-bottom: 1px solid var(--rule); width: 100%; text-align: center; }
  .nav-links a.active::after { display: none; }
  .primary-nav .phone-primary { padding: 1.1rem var(--gutter); border-bottom: 1px solid var(--rule); justify-content: center; font-size: 1.4rem; }
}

/* HERO */
.hero {
  position: relative;
  min-height: 78vh;
  background: var(--ink) center/cover no-repeat;
  color: var(--cream);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(15, 22, 17, 0.65) 100%);
}
.hero .container {
  position: relative;
  z-index: 1;
  padding-top: 6rem;
  padding-bottom: 4rem;
  width: 100%;
}
.hero h1 {
  color: var(--cream);
  max-width: 16ch;
  font-weight: 300;
  text-shadow: 0 2px 24px rgba(0,0,0,0.35);
}
.hero h1 em {
  font-style: italic;
  color: var(--tan);
  font-weight: 300;
}
.hero p {
  color: rgba(250, 245, 236, 0.92);
  max-width: 540px;
  margin-bottom: 2rem;
  font-size: 1.08rem;
  text-shadow: 0 1px 10px rgba(0,0,0,0.25);
}
.hero .eyebrow {
  color: var(--tan);
}
.hero-actions { display: flex; gap: 0.85rem; flex-wrap: wrap; }
.hero-meta {
  position: absolute;
  bottom: 2rem;
  right: var(--gutter);
  font-size: 0.76rem;
  color: rgba(250, 245, 236, 0.75);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  z-index: 1;
  text-align: right;
  font-style: italic;
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  text-transform: none;
  letter-spacing: 0.01em;
  font-size: 0.85rem;
}

/* Page banner (inner pages) */
.page-hero {
  position: relative;
  min-height: 320px;
  background: var(--ink) center/cover no-repeat;
  color: var(--cream);
  display: flex;
  align-items: center;
  padding: 5rem 0 4rem;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,22,17,0.55), rgba(15,22,17,0.7));
}
.page-hero .container { position: relative; z-index: 1; text-align: center; }
.page-hero h1 { color: var(--cream); font-weight: 300; }
.page-hero .crumb { color: rgba(250,245,236,0.85); letter-spacing: 0.14em; text-transform: uppercase; font-size: 0.72rem; }
.page-hero .crumb a { color: rgba(250,245,236,0.85); }
.page-hero .crumb a:hover { color: var(--tan); }
.page-hero .sep { color: var(--tan); margin: 0 0.55rem; }

/* Sections */
section { padding: clamp(4rem, 9vw, 8rem) 0; }
section.paper { background: var(--paper); }
section.paper-dark { background: var(--paper-dark); }
section.ink { background: var(--ink); color: var(--cream); }
section.ink h1, section.ink h2, section.ink h3 { color: var(--cream); }
section.ink p { color: rgba(250, 245, 236, 0.85); }
section.ink .eyebrow { color: var(--tan); }
section.ink a { color: var(--tan); }

.section-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4rem;
}
.section-intro p { margin-left: auto; margin-right: auto; color: var(--ink-soft); }

/* "Built for the valley" stats / signal strip */
.signals {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 3rem 0;
}
.signal strong {
  display: block;
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: clamp(2.4rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.signal span {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
@media (max-width: 700px) { .signals { grid-template-columns: 1fr; gap: 2rem; padding: 2rem 0; } }

/* Two-column with image */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.split.reverse > :first-child { order: 2; }
.split img { border-radius: 2px; width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; }
.split .split-img-frame {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.split .split-img-frame::after {
  content: "";
  position: absolute;
  inset: -1px;
  border: 1px solid var(--rule);
  pointer-events: none;
}
@media (max-width: 800px) {
  .split { grid-template-columns: 1fr; gap: 2.5rem; }
  .split.reverse > :first-child { order: 0; }
  .split img, .split .split-img-frame { aspect-ratio: 4/3; }
}

ul.checks { list-style: none; padding: 0; margin: 1.5rem 0; max-width: 460px; }
ul.checks li {
  padding: 0.7rem 0;
  border-top: 1px solid var(--rule);
  display: flex;
  gap: 0.85rem;
  align-items: baseline;
  color: var(--ink);
  font-size: 0.95rem;
}
ul.checks li:last-child { border-bottom: 1px solid var(--rule); }
ul.checks li::before {
  content: "—";
  color: var(--clay);
  font-weight: 500;
}

/* Services list (homepage preview) */
.services-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
@media (max-width: 900px) { .services-list { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services-list { grid-template-columns: 1fr; } }
.service-tile {
  padding: 2.5rem 1.75rem;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  background: var(--cream);
  transition: background 0.2s;
}
.service-tile:hover { background: var(--paper); }
.services-list .service-tile:nth-child(3n) { border-right: 1px solid var(--rule); }
.services-list .service-tile:nth-last-child(-n+3) { border-bottom: 1px solid var(--rule); }
@media (max-width: 900px) {
  .services-list .service-tile:nth-child(3n) { border-right: 0; }
  .services-list .service-tile:nth-child(2n) { border-right: 1px solid var(--rule); }
  .services-list .service-tile:nth-last-child(-n+3) { border-bottom: 0; }
  .services-list .service-tile:nth-last-child(-n+2) { border-bottom: 1px solid var(--rule); }
}
@media (max-width: 600px) {
  .services-list .service-tile { border-right: 1px solid var(--rule) !important; border-bottom: 0 !important; }
  .services-list .service-tile:last-child { border-bottom: 1px solid var(--rule) !important; }
}
.service-tile h3 { color: var(--ink); margin-bottom: 0.6rem; }
.service-tile p { font-size: 0.95rem; color: var(--muted); flex: 1; }
.service-tile .num {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--clay);
  margin-bottom: 1rem;
  display: block;
}
.service-tile .more {
  margin-top: 1rem;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
  align-self: flex-start;
  font-weight: 500;
}
.service-tile .more:hover { color: var(--clay); border-color: var(--clay); }

/* Service detail rows (services page) */
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
  padding: clamp(3rem, 6vw, 5rem) 0;
  border-bottom: 1px solid var(--rule);
}
.service-row:last-child { border-bottom: 0; }
.service-row:nth-child(even) > .service-row-img { order: 2; }
.service-row .service-row-img {
  aspect-ratio: 4/5;
  overflow: hidden;
}
.service-row .service-row-img img { width: 100%; height: 100%; object-fit: cover; }
.service-row .num {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--clay);
  letter-spacing: 0.06em;
}
@media (max-width: 800px) {
  .service-row { grid-template-columns: 1fr; gap: 2rem; }
  .service-row:nth-child(even) > .service-row-img { order: 0; }
  .service-row .service-row-img { aspect-ratio: 4/3; }
}

/* Service area (towns we serve) */
.area-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
@media (max-width: 700px) { .area-grid { grid-template-columns: repeat(2, 1fr); } }
.area-cell {
  background: var(--cream);
  padding: 1.5rem 1rem;
  text-align: center;
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: 1.4rem;
  font-weight: 300;
}

/* Pull quote / testimonial */
.quote {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}
.quote blockquote {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-weight: 300;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.3;
  color: var(--ink);
  margin: 0 0 1.5rem;
  letter-spacing: -0.01em;
  font-style: italic;
}
.quote blockquote::before { content: "\201C"; color: var(--clay); margin-right: 0.1em; }
.quote blockquote::after  { content: "\201D"; color: var(--clay); margin-left: 0.1em; }
.quote cite {
  font-style: normal;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* CTA band */
.cta-band {
  text-align: center;
  background: var(--ink);
  color: var(--cream);
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.cta-band h2 { color: var(--cream); max-width: 22ch; margin-left: auto; margin-right: auto; font-weight: 300; }
.cta-band p { color: rgba(250,245,236,0.8); max-width: 56ch; margin: 1rem auto 2rem; }
.cta-band .phone-large {
  display: block;
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  color: var(--tan);
  margin: 1.5rem 0;
  font-weight: 300;
  letter-spacing: 0.01em;
}
.cta-band .phone-large:hover { color: var(--cream); }

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0.85rem;
}
.gallery-grid figure {
  margin: 0;
  overflow: hidden;
  background: var(--paper);
}
.gallery-grid figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-grid figure:hover img { transform: scale(1.04); }
.g-1 { grid-column: span 7; aspect-ratio: 4/3; }
.g-2 { grid-column: span 5; aspect-ratio: 4/5; }
.g-3 { grid-column: span 5; aspect-ratio: 4/5; }
.g-4 { grid-column: span 7; aspect-ratio: 4/3; }
.g-5 { grid-column: span 4; aspect-ratio: 1; }
.g-6 { grid-column: span 4; aspect-ratio: 1; }
.g-7 { grid-column: span 4; aspect-ratio: 1; }
.g-8 { grid-column: span 6; aspect-ratio: 4/3; }
.g-9 { grid-column: span 6; aspect-ratio: 4/3; }
@media (max-width: 800px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .g-1, .g-2, .g-3, .g-4, .g-5, .g-6, .g-7, .g-8, .g-9 { grid-column: span 1; aspect-ratio: 1; }
  .g-1, .g-4 { grid-column: span 2; aspect-ratio: 4/3; }
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 5vw, 5rem);
}
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-side h3 { font-weight: 400; }
.contact-side dl { margin: 1.5rem 0 0; }
.contact-side dt {
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.3rem;
  margin-top: 1.4rem;
}
.contact-side dt:first-of-type { margin-top: 0; }
.contact-side dd {
  margin: 0;
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: 1.2rem;
  font-weight: 300;
}
.contact-side dd a { border-bottom: 1px solid var(--rule); }
.contact-side dd a:hover { border-color: var(--clay); color: var(--clay); }

form.contact-form {
  background: var(--cream);
  padding: 2.25rem;
  border: 1px solid var(--rule);
}
form.contact-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 600px) { form.contact-form .row { grid-template-columns: 1fr; } }
form.contact-form label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
form.contact-form input,
form.contact-form select,
form.contact-form textarea {
  width: 100%;
  padding: 0.75rem 0;
  border: 0;
  border-bottom: 1px solid var(--rule);
  font: inherit;
  background: transparent;
  margin-bottom: 1.4rem;
  color: var(--ink);
  border-radius: 0;
}
form.contact-form input:focus,
form.contact-form select:focus,
form.contact-form textarea:focus {
  outline: none;
  border-bottom-color: var(--clay);
}
form.contact-form textarea { resize: vertical; min-height: 100px; }

/* Footer */
.site-footer {
  background: var(--cream);
  border-top: 1px solid var(--rule);
  padding: 4.5rem 0 1.5rem;
  font-size: 0.92rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
}
@media (max-width: 800px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-top { grid-template-columns: 1fr; gap: 2rem; } }
.site-footer h4 {
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: 0.6rem; }
.site-footer a { color: var(--ink-soft); }
.site-footer a:hover { color: var(--clay); }
.site-footer .footer-brand img { height: 60px; margin-bottom: 1rem; }
.site-footer .footer-brand p { font-family: 'Cormorant Garamond', 'Georgia', serif; font-size: 1.05rem; line-height: 1.5; max-width: 30ch; }
.site-footer .socials { display: flex; gap: 0.6rem; margin-top: 1.5rem; }
.site-footer .socials a {
  width: 36px; height: 36px;
  border: 1px solid var(--rule);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.site-footer .socials a:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.footer-bottom {
  border-top: 1px solid var(--rule);
  margin-top: 3rem;
  padding-top: 1.25rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* Floating WhatsApp */
.fab {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  background: var(--ink);
  color: var(--cream);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.18);
  z-index: 60;
  transition: transform 0.2s;
}
.fab:hover { transform: scale(1.08); color: var(--tan); }
