﻿:root {
  color-scheme: light;
  --cream: #f7f1e7;
  --sand: #e8dccb;
  --clay: #c69f76;
  --copper: #a4683d;
  --espresso: #3e2a1c;
  --forest: #1f3a2f;
  --ink: #1a1a1a;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(26, 20, 16, 0.18);
  --radius-lg: 32px;
  --radius-md: 20px;
  --radius-sm: 12px;
  --font-sans: "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: clamp(15px, 0.25vw + 11px, 17px);
}

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

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: radial-gradient(circle at top right, #fef7ed 0%, transparent 45%),
    radial-gradient(circle at 10% 40%, #e7efe9 0%, transparent 40%),
    linear-gradient(160deg, #fbf6ef 0%, #f2e6d5 55%, #efe0cf 100%);
  min-height: 100vh;
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: var(--font-serif);
  letter-spacing: -0.02em;
}

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

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

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.bg-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.18'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(14px);
  background: rgba(247, 241, 231, 0.75);
  border-bottom: 1px solid rgba(62, 42, 28, 0.08);
  z-index: 5;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 1rem;
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--cream);
  font-weight: 700;
  font-family: "Fraunces", serif;
}

.nav {
  display: flex;
  gap: 18px;
  align-items: center;
  font-size: 0.95rem;
}

.nav a:not(.btn) {
  position: relative;
  padding: 6px 2px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--copper), var(--forest));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav a:not(.btn):hover,
.nav a:not(.btn):focus-visible {
  color: var(--forest);
  transform: translateY(-1px);
}

.nav a:not(.btn):hover::after,
.nav a:not(.btn):focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  border: 1px solid rgba(62, 42, 28, 0.2);
  background: transparent;
  padding: 8px 14px;
  border-radius: 999px;
  font-family: inherit;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 14px;
  padding: 16px 4vw 20px;
  background: rgba(247, 241, 231, 0.92);
  border-top: 1px solid rgba(62, 42, 28, 0.08);
}

.mobile-nav.is-open {
  display: flex;
  animation: slideDown 0.35s ease;
}

.hero {
  position: relative;
  padding: 96px 0 72px;
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}

.hero-text h1 {
  font-size: clamp(2.4rem, 3.8vw, 3.8rem);
  line-height: 1.1;
  margin: 16px 0 18px;
}

.lead {
  font-size: 1.1rem;
  color: rgba(26, 26, 26, 0.8);
  max-width: 520px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--copper);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 26px 0 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 25px rgba(26, 20, 16, 0.18);
}

.btn[disabled],
.btn[aria-disabled="true"] {
  opacity: 0.7;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

.btn-primary {
  background: var(--forest);
  color: var(--cream);
}

.btn-secondary {
  border: 1px solid rgba(31, 58, 47, 0.4);
  color: var(--forest);
  background: transparent;
}

.btn-ghost {
  border: 1px solid rgba(62, 42, 28, 0.18);
  padding: 10px 18px;
}

.nav .btn-ghost,
.mobile-nav .btn-ghost {
  background: var(--copper);
  color: var(--cream);
  border-color: transparent;
}

.nav .btn-ghost:hover,
.nav .btn-ghost:focus-visible,
.mobile-nav .btn-ghost:hover,
.mobile-nav .btn-ghost:focus-visible {
  background: #8f5a33;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  margin-top: 10px;
}

.stat {
  font-weight: 700;
  font-size: 1.2rem;
}

.stat-label {
  display: block;
  font-size: 0.85rem;
  color: rgba(26, 26, 26, 0.6);
}

.hero-card {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.8), rgba(246, 236, 220, 0.9));
  padding: 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid rgba(62, 42, 28, 0.12);
}

.hero-card-inner {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
}

.card-title {
  font-weight: 600;
  margin-bottom: 16px;
}

.hero-card ul {
  list-style: none;
  display: grid;
  gap: 12px;
  font-size: 0.95rem;
}

.hero-card li::before {
  content: "•";
  margin-right: 8px;
  color: var(--copper);
}

.card-footer {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: rgba(26, 26, 26, 0.7);
}

.section {
  padding: 72px 0;
  position: relative;
  z-index: 2;
}

.section-alt {
  background: rgba(246, 237, 223, 0.7);
  border-top: 1px solid rgba(62, 42, 28, 0.08);
  border-bottom: 1px solid rgba(62, 42, 28, 0.08);
}

.section-header {
  margin-bottom: 32px;
  max-width: 680px;
}

.section-header h2 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  margin: 12px 0 12px;
}

.section-lead {
  color: rgba(26, 26, 26, 0.7);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}

.service-card {
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  border: 1px solid rgba(62, 42, 28, 0.08);
}

.service-card h3 {
  margin-bottom: 10px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.step {
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.step-number {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--copper);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.gallery-card {
  background: var(--white);
  padding: 18px;
  border-radius: var(--radius-md);
  display: grid;
  gap: 16px;
  box-shadow: var(--shadow);
}

.gallery-swatch {
  height: 180px;
  border-radius: var(--radius-sm);
}

.swatch-1 {
  background: linear-gradient(135deg, #b98f67, #f1dfc7);
}

.swatch-2 {
  background: linear-gradient(135deg, #193328, #5a7d66);
}

.swatch-3 {
  background: linear-gradient(135deg, #cc9a6c, #f2ede4);
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.testimonial {
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  font-style: italic;
}

.testimonial span {
  display: block;
  margin-top: 12px;
  font-style: normal;
  font-weight: 600;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease, filter 0.6s ease;
  filter: blur(8px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.reveal-item {
  opacity: 0;
  transform: translateY(18px) scale(0.98);
  transition: opacity 0.6s ease, transform 0.6s ease, filter 0.6s ease;
  filter: blur(6px);
}

.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.cta {
  padding: 72px 0 96px;
  background: linear-gradient(120deg, #1f3a2f 0%, #2b4c3d 55%, #4b6d56 100%);
  color: var(--cream);
}

.cta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  align-items: center;
}

.cta h2 {
  margin: 12px 0 16px;
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.cta-form {
  background: rgba(255, 255, 255, 0.12);
  padding: 24px;
  border-radius: var(--radius-md);
  display: grid;
  gap: 14px;
}

.cta-form input {
  padding: 12px 14px;
  border-radius: 10px;
  border: none;
  font-family: inherit;
}

.form-note {
  font-size: 0.85rem;
  opacity: 0.8;
}

.site-footer {
  padding: 40px 0 60px;
  background: #1a1511;
  color: var(--cream);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.footer-title {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  color: rgba(247, 241, 231, 0.7);
}

@media (max-width: 900px) {
  .nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .mobile-nav {
    display: none;
  }

  .site-header .container {
    gap: 12px;
  }

  .hero-card {
    padding: 22px;
  }

  .hero-card-inner {
    padding: 22px;
  }
}

@media (min-width: 2000px) {
  :root {
    font-size: 17px;
  }

  .container {
    width: min(1280px, 88vw);
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 72px 0 56px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-text h1 {
    font-size: clamp(2.1rem, 8vw, 2.8rem);
  }

  .lead {
    font-size: 1rem;
  }

  .section {
    padding: 56px 0;
  }

  .hero-stats {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
  }

  .cta {
    padding: 56px 0 72px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-item {
    transition: none;
    transform: none;
    opacity: 1;
    filter: none;
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
