:root {
  --ink: #1b1b18;
  --paper: #fbfbf8;
  --paper-2: #f1f1eb;
  --green: #00a859;
  --green-dark: #02824a;
  --red: #ed3237;
  --line: rgba(27, 27, 24, 0.14);
  --line-light: rgba(251, 251, 248, 0.22);
  --serif: "Fraunces", serif;
  --sans: "Work Sans", sans-serif;
  --mono: "JetBrains Mono", monospace;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img,
svg {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
}
.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 640px) {
  .wrap {
    padding: 0 20px;
  }
}
h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.eyebrow {
  font-family: var(--mono);
  font-size: 13.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-dark);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--red);
}
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

/* NAV */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s ease;
}
header.scrolled {
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.06);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 104px;
  gap: 20px;
  transition: height 0.3s ease;
}
header.scrolled .nav {
  height: 68px;
}
.logo-link {
  display: flex;
  align-items: center;
}
.logo-img {
  height: 76px;
  width: auto;
  transition: height 0.3s ease;
}
header.scrolled .logo-img {
  height: 44px;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
nav ul a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
  white-space: nowrap;
}
nav ul a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--red);
  transition: width 0.25s ease;
}
nav ul a:hover::after {
  width: 100%;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}
.phone-link {
  font-family: var(--mono);
  font-size: 14px;
  text-decoration: none;
  display: none;
}
.btn {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.01em;
  padding: 11px 20px;
  border-radius: 3px;
  border: 1px solid var(--green);
  background: var(--green);
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
  display: inline-block;
}
.btn:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover {
  background: var(--ink);
  color: #fff;
}
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}
@media (min-width: 860px) {
  .phone-link {
    display: inline;
  }
}
@media (max-width: 980px) {
  nav ul {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
}
.mobile-menu {
  display: none;
  border-top: 1px solid var(--line);
  background: var(--paper);
}
.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  padding: 18px 20px;
  gap: 16px;
}
.mobile-menu a {
  text-decoration: none;
  color: var(--ink);
}
.mobile-menu .mono {
  font-family: var(--mono);
}

/* HERO */
.hero {
  background: var(--paper-2);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 40px;
  padding: 76px 0 60px;
}
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    padding: 48px 0 40px;
    gap: 30px;
  }
}
.hero-tag {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 22px;
}
h1.headline {
  font-size: clamp(36px, 5.4vw, 60px);
  line-height: 1.04;
  color: var(--ink);
  margin-bottom: 22px;
}
.hero-sub {
  font-size: 17px;
  max-width: 46ch;
  color: #4a4941;
  margin-bottom: 32px;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-callout {
  font-family: var(--mono);
  font-size: 13px;
  color: #4a4941;
  margin-top: 28px;
}
.hero-art {
  position: relative;
}
.dims {
  font-family: var(--mono);
  font-size: 11px;
  fill: var(--green-dark);
  letter-spacing: 0.03em;
}
.dim-line {
  stroke: var(--green-dark);
  stroke-width: 1;
}
.elev-stroke {
  fill: none;
  stroke: var(--ink);
  stroke-width: 1.6;
  stroke-linecap: square;
  stroke-linejoin: miter;
}
.elev-stroke-thin {
  fill: none;
  stroke: var(--ink);
  stroke-width: 1;
}
.glass-fill {
  fill: var(--green);
  opacity: 0.1;
}

.draw-svg path,
.draw-svg line,
.draw-svg rect,
.draw-svg polyline {
  stroke-dasharray: 1600;
  stroke-dashoffset: 1600;
  transition: stroke-dashoffset 1.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.draw-svg.in-view path,
.draw-svg.in-view line,
.draw-svg.in-view rect,
.draw-svg.in-view polyline {
  stroke-dashoffset: 0;
}
.draw-svg rect.glass-fill {
  transition: opacity 1.2s ease 0.6s;
  opacity: 0;
}
.draw-svg.in-view rect.glass-fill {
  opacity: 0.1;
}
@media (prefers-reduced-motion: reduce) {
  .draw-svg path,
  .draw-svg line,
  .draw-svg rect,
  .draw-svg polyline {
    transition: none;
    stroke-dashoffset: 0;
  }
  .draw-svg rect.glass-fill {
    transition: none;
    opacity: 0.1;
  }
  .reveal {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: none;
}

/* DYNAMIC SECTIONS */
.dyn-section {
  padding: 88px 0;
  border-bottom: 1px solid var(--line);
}
.dyn-section.alt {
  background: var(--paper-2);
}
.section-head {
  max-width: 64ch;
  margin-bottom: 40px;
}
.section-head h2 {
  font-size: clamp(27px, 3.5vw, 36px);
  margin-bottom: 12px;
}
.section-intro {
  color: #4a4941;
  font-size: 15.5px;
}
.text-body p {
  color: #4a4941;
  margin-bottom: 16px;
  font-size: 15.5px;
  max-width: 70ch;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (max-width: 900px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 620px) {
  .card-grid {
    grid-template-columns: 1fr;
  }
}
.p-card {
  background: var(--paper);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
}
.p-card-img {
  margin: -30px -26px 20px;
  overflow: hidden;
  height: 170px;
}
.p-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}
.p-card h3 {
  font-size: 19px;
  margin-bottom: 10px;
}
.p-card p {
  font-size: 14.5px;
  color: #4a4941;
  flex-grow: 1;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 760px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
.gallery-item {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 4/3;
  background: var(--paper-2);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.gallery-item:hover img {
  transform: scale(1.05);
}
.gallery-item .caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px 12px;
  font-size: 12.5px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
  color: #fff;
}
.empty-note {
  color: #8a887d;
  font-size: 14px;
  font-style: italic;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (max-width: 900px) {
  .review-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 620px) {
  .review-grid {
    grid-template-columns: 1fr;
  }
}

.social-links {
  display: flex;
  gap: 14px;
  margin-top: 24px;
}
.social-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}
.social-links a:hover {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}
.social-links svg {
  width: 18px;
  height: 18px;
}
.google-rating {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--green-dark);
  margin-bottom: 8px;
}
.review-stars {
  color: var(--red);
  font-size: 13px;
  margin-bottom: 6px;
  letter-spacing: 1px;
}
.see-more-reviews {
  margin-top: 28px;
}

.review {
  background: var(--paper);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.review-mark {
  font-family: var(--serif);
  font-size: 38px;
  color: var(--red);
  line-height: 1;
}
.review p.quote {
  font-size: 15px;
  color: #33322c;
}
.review-who {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-top: auto;
}

/* CONTACT */
.contact {
  padding: 96px 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
@media (max-width: 860px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.contact h2 {
  font-size: clamp(28px, 3.6vw, 38px);
  margin-bottom: 18px;
}
.contact p.lead {
  color: #4a4941;
  font-size: 15.5px;
  margin-bottom: 32px;
  max-width: 50ch;
}
.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.contact-list .k {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-dark);
  width: 110px;
  flex-shrink: 0;
  padding-top: 2px;
}
.contact-list .v {
  font-size: 15.5px;
}
.contact-list a {
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}
.contact-list a:hover {
  border-color: var(--red);
}
.contact-card {
  background: var(--paper-2);
  border: 1px solid var(--line);
  padding: 36px;
}
.contact-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}
.contact-card p {
  font-size: 14px;
  color: #4a4941;
  margin-bottom: 22px;
}
.contact-card .btn {
  width: 100%;
  text-align: center;
}
.contact-card .btn-ghost {
  margin-top: 12px;
}

footer {
  border-top: 1px solid var(--line);
  padding: 32px 0;
}
.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: #8a887d;
}
.footer-logo {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--ink);
}

/* LIGHTBOX */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(20, 20, 17, 0.92);
  z-index: 200;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 40px;
}
.lightbox.open {
  display: flex;
}
.lightbox img {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: 4px;
}
.lightbox-caption {
  color: #edebe3;
  font-size: 14px;
  margin-top: 16px;
  text-align: center;
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 26px;
  background: none;
  border: none;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
  line-height: 1;
}
.map-wrap {
  position: relative;
  margin-top: 28px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 4/3;
  max-width: 420px;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(1) contrast(1.1) brightness(1.1);
}
.map-tint {
  position: absolute;
  inset: 0;
  background: var(--green);
  mix-blend-mode: color;
  opacity: 0.35;
  pointer-events: none;
}
.gallery-group {
  margin-bottom: 68px;
}
.gallery-group:last-child {
  margin-bottom: 0;
}
.gallery-group-heading {
  font-family: var(--mono);
  font-size: 13.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.gallery-group-heading::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--red);
  flex-shrink: 0;
}
