/* Emerald Strand Studio — landing styles */
:root {
  --bg: #fafbf9;
  --surface: #ffffff;
  --ink: #1a2318;
  --muted: #5c6b5a;
  --accent: #1e6f4f;
  --accent-dark: #164a34;
  --accent-soft: #e8f2ec;
  --gold: #b8956c;
  --radius: 14px;
  --shadow: 0 22px 50px rgba(26, 35, 24, 0.08);
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
  --max: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
}

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

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 251, 249, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(30, 111, 79, 0.12);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink);
  text-decoration: none;
}

.logo span {
  color: var(--accent);
}

.nav-toggle {
  display: none;
  background: var(--surface);
  border: 1px solid rgba(30, 111, 79, 0.25);
  border-radius: 10px;
  padding: 0.55rem 0.85rem;
  font: inherit;
  cursor: pointer;
  color: var(--ink);
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.75rem;
  align-items: center;
}

.nav-list a {
  color: var(--ink);
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
}

.nav-list a:hover {
  color: var(--accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 24px rgba(30, 111, 79, 0.35);
}

.btn-primary:hover {
  background: var(--accent-dark);
  text-decoration: none;
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}

.btn-outline:hover {
  background: var(--accent-soft);
  text-decoration: none;
}

/* Hero */
.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3rem 1.5rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.35rem);
  font-weight: 600;
  line-height: 1.12;
  margin: 0 0 1rem;
  color: var(--ink);
}

.hero-lede {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 34ch;
  margin: 0 0 1.75rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: center;
  font-size: 0.88rem;
  color: var(--muted);
}

.trust-row strong {
  color: var(--ink);
}

.hero-visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.hero-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 1.25rem;
  background: linear-gradient(transparent, rgba(26, 35, 24, 0.75));
  color: #fff;
  font-size: 0.9rem;
}

/* Sections shared */
.section {
  padding: 4rem 1.5rem;
}

.section.alt {
  background: var(--surface);
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  font-weight: 600;
  margin: 0 0 0.5rem;
}

.section-intro {
  color: var(--muted);
  max-width: 58ch;
  margin: 0 0 2.25rem;
}

/* Value grid */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.card {
  background: var(--surface);
  padding: 1.75rem;
  border-radius: var(--radius);
  border: 1px solid rgba(30, 111, 79, 0.12);
  box-shadow: 0 12px 32px rgba(26, 35, 24, 0.04);
}

.card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 0.5rem;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

/* Services */
.services-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.service-item {
  display: flex;
  gap: 1rem;
  padding: 1.35rem;
  border-radius: var(--radius);
  background: var(--bg);
  border: 1px solid rgba(30, 111, 79, 0.1);
}

.service-item dt {
  font-weight: 700;
  margin: 0 0 0.25rem;
}

.service-item dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.price {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--accent);
  font-weight: 600;
  flex-shrink: 0;
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.gallery figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  box-shadow: 0 8px 24px rgba(26, 35, 24, 0.06);
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery figure:hover img {
  transform: scale(1.05);
}

.gallery figcaption {
  display: none;
}

/* Testimonials */
.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

blockquote {
  margin: 0;
  padding: 1.5rem;
  background: var(--accent-soft);
  border-radius: var(--radius);
  border-left: 4px solid var(--accent);
}

blockquote p {
  margin: 0 0 1rem;
  font-style: italic;
  color: var(--ink);
}

cite {
  font-style: normal;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--muted);
}

/* Location CTA strip */
.cta-strip {
  background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 55%, #2a8f63 100%);
  color: #fff;
  padding: 3rem 1.5rem;
  text-align: center;
}

.cta-strip .section-inner {
  max-width: 640px;
}

.cta-strip h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin: 0 0 0.75rem;
}

.cta-strip p {
  margin: 0 0 1.5rem;
  opacity: 0.95;
}

.cta-strip .btn-primary {
  background: #fff;
  color: var(--accent-dark);
  box-shadow: none;
}

.cta-strip .btn-primary:hover {
  background: var(--accent-soft);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.contact-card {
  background: var(--surface);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(30, 111, 79, 0.12);
  box-shadow: var(--shadow);
}

.contact-card dl {
  margin: 0;
}

.contact-card dt {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-top: 1rem;
}

.contact-card dt:first-child {
  margin-top: 0;
}

.contact-card dd {
  margin: 0.25rem 0 0;
  font-weight: 600;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.hours-table th,
.hours-table td {
  padding: 0.5rem 0;
  text-align: left;
  border-bottom: 1px solid rgba(30, 111, 79, 0.1);
}

.hours-table th {
  color: var(--muted);
  font-weight: 500;
}

.contact-card .section-intro {
  margin-bottom: 1rem;
}

.contact-hours-title {
  margin-top: 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
}

/* Footer */
.site-footer {
  padding: 2rem 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
  border-top: 1px solid rgba(30, 111, 79, 0.1);
}

.site-footer p {
  margin: 0.35rem 0;
}

@media (max-width: 920px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 2rem;
  }

  .hero-visual {
    order: -1;
  }

  .hero-visual img {
    aspect-ratio: 16 / 11;
    max-height: 320px;
  }

  .grid-3,
  .quotes {
    grid-template-columns: 1fr;
  }

  .services-list {
    grid-template-columns: 1fr;
  }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    display: block;
  }

  .nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--surface);
    border-bottom: 1px solid rgba(30, 111, 79, 0.12);
    padding: 1rem 1.5rem;
  }

  .nav.is-open {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}
