:root {
  --bg: #FEF3E2;
  --fg: #2D1B0E;
  --primary: #E07B39;
  --secondary: #FDE8D0;
  --accent: #E07B39;
  --muted: #8B6914;
  --radius: 16px;
  --heading-font: 'Playfair Display', Georgia, serif;
  --body-font: 'Source Sans 3', system-ui, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--body-font);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.site-shell { min-height: 100vh; }
.site-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 5vw;
  background: color-mix(in srgb, var(--bg) 82%, white 18%);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid color-mix(in srgb, var(--fg) 10%, transparent);
}
.brand {
  font-family: var(--heading-font);
  font-size: 1.35rem;
  font-weight: 600;
}
.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.95rem;
  color: var(--muted);
}
.nav-links a {
  transition: opacity 160ms ease;
}
.nav-links a:hover {
  opacity: 0.72;
}
.hero {
  min-height: 72vh;
  display: flex;
  align-items: center;
  padding: 6rem 5vw;
  background-size: cover;
  background-position: center;
}
.hero-copy {
  max-width: 48rem;
  color: var(--fg);
}
.hero-with-image .hero-copy {
  color: #ffffff;
}
.hero-with-image .eyebrow,
.hero-with-image .lede {
  color: rgba(255, 255, 255, 0.82);
}
.hero-with-image .btn-secondary {
  border-color: rgba(255, 255, 255, 0.9);
  color: #ffffff;
}
.eyebrow {
  margin: 0 0 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
  color: var(--muted);
}
.hero h1,
.section h2 {
  margin: 0 0 1rem;
  font-family: var(--heading-font);
  line-height: 1.05;
}
.hero h1 { font-size: clamp(3rem, 8vw, 5.6rem); }
.section h2 { font-size: clamp(2rem, 5vw, 3rem); }
.lede {
  margin: 0;
  max-width: 42rem;
  font-size: 1.08rem;
}
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0.8rem 1.2rem;
  border-radius: max(12px, var(--radius));
  border: 1px solid color-mix(in srgb, var(--fg) 10%, transparent);
}
.btn-primary {
  background: var(--primary);
  color: #ffffff;
  border-color: transparent;
}
.btn-secondary {
  background: transparent;
}
.section {
  padding: 4.5rem 5vw;
}
.section-shell {
  margin: 0 auto;
}
.section-shell-wide {
  max-width: 72rem;
}
.section-shell-narrow {
  max-width: 42rem;
}
.section-shell-centered {
  text-align: center;
}
.section-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}
.about-image {
  width: 100%;
  max-width: 32rem;
  border-radius: max(24px, var(--radius));
  object-fit: cover;
}
.gallery,
.card-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  margin-top: 1.75rem;
}
.testimonial-grid {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.services-grid {
  justify-content: center;
}
.services-grid-one {
  max-width: 22rem;
  margin-left: auto;
  margin-right: auto;
}
.services-grid-two {
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}
.services-grid-three {
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
}
.gallery-card,
.card {
  overflow: hidden;
  background: color-mix(in srgb, var(--secondary) 88%, white 12%);
  border: 1px solid color-mix(in srgb, var(--fg) 10%, transparent);
  border-radius: max(22px, var(--radius));
  height: 100%;
}
.gallery-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.gallery-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4 / 3;
  background: color-mix(in srgb, var(--secondary) 80%, white 20%);
  color: var(--muted);
}
.gallery-copy,
.card,
.contact-form {
  padding: 1.2rem;
}
.card-grid > .card,
.card-grid > .quote-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.gallery-copy h3,
.card h3 {
  margin: 0 0 0.35rem;
  font-family: var(--heading-font);
  font-size: 1.2rem;
}
.skill-list {
  margin-top: 1.5rem;
  display: grid;
  gap: 0.8rem;
}
.skill-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.2rem;
  border-radius: max(16px, var(--radius));
  background: color-mix(in srgb, var(--secondary) 88%, white 12%);
}
.quote {
  margin: 0 0 1rem;
  font-size: 1.05rem;
}
.quote-author {
  margin: 0;
  font-weight: 600;
}
.quote-role,
.site-footer {
  color: var(--muted);
}
.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
  justify-content: center;
}
.social-link {
  padding: 0.75rem 1rem;
  border-radius: max(16px, var(--radius));
  border: 1px solid color-mix(in srgb, var(--fg) 10%, transparent);
  background: color-mix(in srgb, var(--bg) 86%, white 14%);
}
.social-row-compact {
  margin-top: 0;
}
.social-link-featured {
  box-shadow: 0 10px 24px color-mix(in srgb, var(--fg) 6%, transparent);
}
.contact-form {
  display: grid;
  gap: 0.8rem;
  max-width: 36rem;
  margin-top: 1.5rem;
  background: color-mix(in srgb, var(--secondary) 88%, white 12%);
  border-radius: max(22px, var(--radius));
}
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.contact-subtitle {
  margin: 0 auto 2rem;
  max-width: 36rem;
  color: var(--muted);
}
.contact-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.1rem;
  border-radius: max(18px, var(--radius));
  border: 1px solid color-mix(in srgb, var(--fg) 10%, transparent);
  background: color-mix(in srgb, var(--bg) 86%, white 14%);
  box-shadow: 0 10px 24px color-mix(in srgb, var(--fg) 6%, transparent);
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid color-mix(in srgb, var(--fg) 10%, transparent);
  border-radius: max(14px, var(--radius));
  padding: 0.9rem 1rem;
  font: inherit;
  background: var(--bg);
  color: var(--fg);
}
.site-footer {
  padding: 2rem 5vw 3rem;
  font-size: 0.92rem;
}
@media (min-width: 900px) {
  .section-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  }
  .testimonial-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 720px) {
  .section {
    padding: 3.5rem 1.25rem;
  }
}
@media (max-width: 900px) {
  .site-nav {
    align-items: stretch;
    flex-direction: column;
    padding: 1rem 1rem 1.1rem;
  }
  .brand {
    font-size: 1.15rem;
  }
  .nav-links {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem;
    font-size: 0.9rem;
  }
  .nav-links a {
    display: flex;
    min-height: 2.6rem;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 0.6rem;
    border-radius: max(14px, var(--radius));
    border: 1px solid color-mix(in srgb, var(--fg) 8%, transparent);
    background: color-mix(in srgb, var(--bg) 88%, white 12%);
  }
  .hero {
    min-height: 60vh;
    padding-top: 4.5rem;
  }
}