/* Pristine Landscaping */

:root {
  --forest: #1F3325;
  --forest-deep: #172619;
  --sage: #909A7A;
  --sage-bright: #A6AF74;
  --cream: #F5F2E8;
  --white: #FFFFFF;
  --serif: "Fraunces", ui-serif, "New York", Georgia, "Times New Roman", serif;
  --sans: "Geist", system-ui, -apple-system, "Segoe UI", sans-serif;
  --gutter: 24px;
  --radius: 10px;
}

@font-face {
  font-family: "Geist";
  src: url("/assets/fonts/GeistVF.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Fraunces";
  src: url("/assets/fonts/FrauncesVF.woff2") format("woff2");
  font-weight: 400 700;
  font-display: swap;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--forest);
  color: var(--white);
  font-family: var(--sans);
  font-size: 21px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

/* 12-column Swiss grid */
.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--gutter);
  width: min(1200px, 100%);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

a { color: inherit; text-decoration: none; }

img { max-width: 100%; height: auto; display: block; }

/* Header */
.site-header {
  padding: 20px 0;
}
.site-header .grid { align-items: center; }
.brand {
  grid-column: 1 / 7;
  display: flex;
  align-items: flex-end;
  gap: 12px;
}
.mark { width: 31px; height: 40px; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name {
  font-family: var(--serif);
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
}
.brand-sub {
  font-size: 0.73rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 500;
}
.site-nav {
  grid-column: 7 / 13;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 28px;
  font-weight: 500;
  font-size: 17px;
}
.site-nav a { color: var(--sage); transition: color 120ms ease; }
.site-nav a:hover { color: var(--white); }
.menu-btn {
  display: none;
  background: none;
  border: 1.5px solid rgba(166, 175, 116, 0.45);
  border-radius: 999px;
  padding: 8px 20px;
  font: inherit;
  font-size: 17px;
  font-weight: 500;
  color: var(--white);
  cursor: pointer;
}

/* Hero */
.hero { padding: 72px 0 56px; }
.hero-copy { grid-column: 1 / 13; }
.hero-shot { margin-top: 40px; }
.hero-shot:nth-of-type(1) { grid-column: 1 / 5; }
.hero-shot:nth-of-type(2) { grid-column: 5 / 9; }
.hero-shot:nth-of-type(3) { grid-column: 9 / 13; }
.hero-shot img {
  border-radius: var(--radius);
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
h1 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 4rem;
  line-height: 1;
  letter-spacing: 0.005em;
  text-wrap: balance;
}
.hero-sub {
  margin-top: 20px;
  color: var(--sage-bright);
  max-width: 35ch;
}
.hero-actions { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 14px; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 15px 28px;
  border-radius: var(--radius);
  font: inherit;
  font-size: 17px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 120ms ease, background 120ms ease, color 120ms ease;
}
.btn:active { transform: scale(0.98); }
.btn-primary { background: var(--cream); color: var(--forest-deep); }
.btn-primary:hover { background: var(--white); }
.btn-ghost { border-color: rgba(166, 175, 116, 0.45); color: var(--sage-bright); }
.btn-ghost:hover { border-color: var(--sage-bright); color: var(--white); }

/* Sections */
section { padding: 56px 0; }
.section-title {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 700;
  letter-spacing: 0.005em;
  grid-column: 1 / 13;
  margin-bottom: 8px;
}

/* Services */
.service-list {
  grid-column: 1 / 13;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.service-list li {
  border: 1px solid rgba(166, 175, 116, 0.25);
  border-radius: var(--radius);
  font-weight: 500;
  transition: border-color 120ms ease, background 120ms ease;
}
.service-list li:hover {
  border-color: var(--sage-bright);
  background: rgba(143, 153, 122, 0.12);
}
.service-list a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  color: var(--cream);
}
.s-icon {
  width: 22px;
  height: 22px;
  flex: none;
  fill: var(--sage-bright);
}

/* Standard statement */
.standard { padding-bottom: 24px; }
.standard-copy {
  grid-column: 1 / 9;
  color: var(--sage-bright);
  max-width: 60ch;
}

/* Quote panel */
.quote-panel {
  grid-column: 1 / 13;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--forest-deep);
  border-radius: var(--radius);
  overflow: hidden;
}
.quote-photo { min-height: 100%; }
.quote-photo img { width: 100%; height: 100%; object-fit: cover; }
.quote-body { padding: 44px 48px; }
.quote-body .section-title { grid-column: auto; margin-bottom: 0; }
.quote-body > p { color: var(--sage-bright); margin-top: 10px; max-width: 46ch; }
.quote-form {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 18px;
}
.quote-form label {
  color: var(--sage);
  font-weight: 600;
  font-size: 17px;
  margin-top: 4px;
}
.quote-form input[type="text"],
.quote-form input[type="tel"] {
  background: rgba(245, 242, 232, 0.06);
  border: 1.5px solid rgba(166, 175, 116, 0.35);
  border-radius: var(--radius);
  height: 54px;
  padding: 0 16px;
  font: inherit;
  color: var(--white);
  width: 100%;
  transition: border-color 150ms ease;
}
.quote-form input:focus {
  outline: none;
  border-color: var(--sage-bright);
}
.service-picks {
  margin-top: 8px;
}
.pick-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
}
.picks-label {
  color: var(--sage);
  font-weight: 600;
  font-size: 17px;
  margin-bottom: 6px;
}
.check {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  padding: 0 22px;
  border: 1.5px solid rgba(166, 175, 116, 0.45);
  border-radius: 999px;
  color: var(--white);
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  cursor: pointer;
  transition: background 120ms ease, border-color 120ms ease, color 120ms ease;
}
.check:hover { border-color: var(--sage-bright); }
.check input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.check:has(input:checked) {
  background: #8F997A;
  border-color: #8F997A;
  color: var(--forest-deep);
}
.check:has(input:focus-visible) {
  outline: 2px solid var(--sage-bright);
  outline-offset: 2px;
}
.quote-form .btn { margin-top: 24px; align-self: flex-start; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; }
.form-status { min-height: 1.4em; color: var(--sage-bright); font-weight: 500; margin-top: 8px; }
.form-status.ok { color: var(--sage-bright); }
.form-status.err { color: #E8B47C; }

/* Area */
.area-copy { grid-column: 1 / 10; color: var(--sage-bright); }
.area-copy strong { color: var(--white); }

/* FAQ */
.faq-list { grid-column: 1 / 13; display: flex; flex-direction: column; }
.faq-list details { border-bottom: 1px solid rgba(166, 175, 116, 0.2); }
.faq-list summary {
  cursor: pointer;
  padding: 18px 0;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; color: var(--sage-bright); font-weight: 400; }
.faq-list details[open] summary::after { content: "\2212"; }
.faq-list details p { padding: 0 0 18px; color: var(--sage-bright); max-width: 60ch; }
.faq-list details a { color: var(--white); text-decoration: underline; text-underline-offset: 3px; }

/* Footer */
.site-footer {
  padding: 48px 0 64px;
}
.site-footer .grid { align-items: end; }
.footer-brand { grid-column: 1 / 7; display: flex; align-items: flex-end; gap: 12px; }
.footer-contact {
  grid-column: 7 / 13;
  font-style: normal;
  font-size: 17px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.4;
  align-items: flex-end;
  color: var(--sage-bright);
}
.footer-contact a:hover { color: var(--white); }
.footer-links {
  grid-column: 1 / 13;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 24px;
  margin-top: 32px;
  font-size: 15px;
  line-height: 1.4;
  color: var(--sage-bright);
}
.footer-links a:hover { color: var(--white); }


/* About */
.about { padding: 64px 0 80px; }
@media (min-width: 701px) {
  .about .grid { gap: 48px; }
}
.about-photo { grid-column: 1 / 7; }
.about-photo img { border-radius: var(--radius); width: 100%; }
.about-copy {
  grid-column: 7 / 13;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about-copy .section-title { grid-column: auto; margin-bottom: 0; }
.about-copy p { max-width: 75ch; color: var(--white); }
.about-copy .hero-actions { margin-top: 12px; }

/* Gallery CTA panel */
.cta-panel {
  grid-template-columns: 2fr 1fr;
  align-items: center;
  padding: 44px 48px;
}
.cta-copy .section-title { grid-column: auto; margin-bottom: 0; }
.cta-copy p { color: var(--sage-bright); margin-top: 8px; max-width: 75ch; }
.cta-action {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

/* Gallery */
.gallery-grid { padding-top: 24px; }
.gallery-grid .grid { row-gap: var(--gutter); }
.tile {
  grid-column: span 4;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--forest-deep);
}
.tile img, .tile svg, .tile video { width: 100%; height: 100%; object-fit: cover; display: block; }
.page-title-wrap { padding: 64px 0 8px; }
.page-title-wrap p { grid-column: 1 / 9; color: var(--sage-bright); margin-top: 8px; }

/* Responsive */
@media (max-width: 900px) {
  .service-list { grid-template-columns: repeat(2, 1fr); }
  .quote-panel { grid-template-columns: 1fr; }
  .quote-photo { display: none; }
  .tile { grid-column: span 6; }
}

@media (max-width: 700px) {
  .hero { padding: 48px 0 40px; }
  h1 { font-size: 2.6rem; line-height: 1.05; }
  .hero-copy { grid-column: 1 / 13; }
  .hero-shot:nth-of-type(1), .hero-shot:nth-of-type(2), .hero-shot:nth-of-type(3) { grid-column: 1 / 13; margin-top: 0; }
  .hero-shot:nth-of-type(1) { margin-top: 28px; }
  .hero-shot img { aspect-ratio: 4 / 3; }
  .hero-actions .btn { flex: 1 1 100%; text-align: center; }
  section { padding: 40px 0; }
  .service-list { grid-template-columns: 1fr; }
  .quote-body { padding: 28px 24px; }
  .cta-panel { grid-template-columns: 1fr; padding: 28px 24px; }
  .cta-action { justify-content: flex-start; margin-top: 16px; }
  .faq-list { grid-column: 1 / 13; }
  .footer-brand, .footer-contact { grid-column: 1 / 13; }
  .footer-contact { align-items: flex-start; margin-top: 20px; }
  .site-nav { gap: 16px; }
  .site-nav a { display: none; }
  .menu-btn { display: inline-block; }
  .brand { grid-column: 1 / 7; }
  .site-nav { grid-column: 7 / 13; }
  .about-photo, .about-copy { grid-column: 1 / 13; }
  .about-copy { margin-top: 24px; }

  .tile { grid-column: span 12; aspect-ratio: 4 / 3; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn { transition: none; }
}

/* PhotoSwipe lightbox */
.pswp { --pswp-bg: #121D14; }
.pswp-item { display: block; cursor: zoom-in; }
.tile .pswp-item { height: 100%; }

/* Bottom sheet (menu + call-or-text) */
.sheet-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(18, 29, 20, 0.8);
  z-index: 90;
  opacity: 0;
  transition: opacity 200ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.sheet {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: calc(12px + env(safe-area-inset-bottom));
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--forest-deep);
  border: 1px solid rgba(166, 175, 116, 0.25);
  border-radius: var(--radius);
  padding: 16px;
  z-index: 91;
  transform: translateY(calc(100% + 24px));
  will-change: transform;
  transition: transform 200ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.sheet-backdrop.is-open { opacity: 1; transition-duration: 260ms; }
.sheet-backdrop.is-open .sheet { transform: translateY(0); transition-duration: 260ms; }
@media (prefers-reduced-motion: reduce) {
  .sheet-backdrop, .sheet { transition: none; }
}
.sheet .btn { text-align: center; }
.sheet-row { display: flex; gap: 10px; }
.sheet-row .btn { flex: 1; }
.sheet-number {
  text-align: center;
  color: var(--sage);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  padding: 4px 0 2px;
}
.sheet-cancel {
  background: none;
  border: 0;
  font: inherit;
  font-size: 17px;
  font-weight: 500;
  color: var(--sage);
  padding: 12px;
  cursor: pointer;
}
