:root {
  --terracotta: #c45c3a;
  --terracotta-dark: #9d4428;
  --sage: #5f7d62;
  --sage-soft: #8aa58c;
  --cream: #f6f0e6;
  --cream-dark: #efe4d4;
  --ink: #2a2118;
  --ink-soft: #5c5146;
  --paper: #fdfbf7;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(42, 33, 24, 0.12);
  --radius: 22px;
  --header: 84px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Outfit", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

h1,
h2,
h3 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.6em;
}

p {
  margin: 0 0 1em;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

section[id] {
  scroll-margin-top: calc(var(--header) + 8px);
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -40px;
  background: var(--ink);
  color: var(--white);
  padding: 8px 12px;
  z-index: 1000;
}

.skip-link:focus {
  top: 16px;
}

.eyebrow {
  display: inline-block;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--terracotta);
  margin-bottom: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header);
  display: flex;
  align-items: center;
  background: rgba(253, 251, 247, 0.72);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(253, 251, 247, 0.96);
  border-bottom-color: rgba(42, 33, 24, 0.08);
  box-shadow: 0 8px 24px rgba(42, 33, 24, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.45rem;
  font-weight: 700;
}

.brand-mark {
  width: 46px;
  height: 46px;
  object-fit: cover;
  border-radius: 50%;
  background: var(--cream);
  flex-shrink: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-list {
  display: flex;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list a {
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
}

.nav-list a.is-active,
.nav-list a:hover {
  color: var(--ink);
}

.nav-list a.is-active::after,
.nav-list a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--terracotta);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 10px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 0;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.btn-primary,
.btn-nav {
  background: var(--terracotta);
  color: var(--white);
}

.btn-primary:hover,
.btn-nav:hover {
  background: var(--terracotta-dark);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--header));
  display: grid;
  place-items: end start;
  color: var(--white);
  overflow: hidden;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background: linear-gradient(180deg, rgba(42, 33, 24, 0.15) 0%, rgba(42, 33, 24, 0.72) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 80px 0 90px;
  max-width: 760px;
  margin-left: max(20px, calc((100% - 1160px) / 2));
}

.hero h1 {
  font-size: clamp(2.6rem, 6vw, 5rem);
  max-width: 12ch;
}

.lead {
  font-size: 1.15rem;
  max-width: 42ch;
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.stats {
  background: var(--cream);
  padding: 28px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
}

.stats strong {
  display: block;
  font-family: "Fraunces", Georgia, serif;
  font-size: 2rem;
  color: var(--terracotta);
}

.about,
.services,
.contact {
  padding: 96px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.about-photo img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
  min-height: 460px;
}

.about-copy h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.checklist {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.checklist li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--sage);
}

.gallery {
  padding: 0 0 24px;
}

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

.gallery-grid img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 18px;
}

.section-intro {
  max-width: 640px;
  margin-bottom: 42px;
}

.section-intro h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.service-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.service-body {
  padding: 24px;
}

.contact {
  background: linear-gradient(180deg, var(--paper) 0%, var(--cream) 100%);
  padding-bottom: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  padding-bottom: 64px;
}

.contact-list {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 18px;
}

.contact-list span {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 4px;
}

.contact-list a:hover {
  color: var(--terracotta);
}

address,
.contact-list p {
  font-style: normal;
  margin: 0;
}

.contact-form {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 600;
  font-size: 0.92rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(42, 33, 24, 0.12);
  border-radius: 14px;
  padding: 12px 14px;
  font: inherit;
  background: var(--paper);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--sage-soft);
  border-color: transparent;
}

.form-status {
  min-height: 1.4em;
  margin: 0;
  font-weight: 500;
}

.form-status.is-success {
  color: var(--sage);
}

.form-status.is-error {
  color: var(--terracotta-dark);
}

.map-wrap {
  height: 360px;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.86);
  padding: 64px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;
  gap: 36px;
  padding-bottom: 36px;
}

.site-footer h2 {
  font-size: 1.1rem;
  color: var(--white);
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li {
  margin-bottom: 8px;
}

.site-footer a:hover {
  color: var(--cream);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 18px;
  font-size: 0.92rem;
}

body.nav-open {
  overflow: hidden;
}

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

  .site-nav {
    position: fixed;
    inset: var(--header) 0 0 0;
    z-index: 60;
    background: var(--paper);
    flex-direction: column;
    justify-content: flex-start;
    padding: 32px 24px;
    transform: translateX(100%);
    transition: transform 0.25s ease;
  }

  .site-nav.is-open {
    transform: none;
  }

  .nav-list {
    flex-direction: column;
    width: 100%;
    gap: 18px;
  }

  .stats-grid,
  .about-grid,
  .gallery-grid,
  .service-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    margin-left: 20px;
    padding-right: 20px;
  }

  .about-photo img,
  .gallery-grid img,
  .service-card img {
    min-height: 0;
    height: 240px;
  }
}
