:root {
  --ink: #1c2633;
  --muted: #6f6a64;
  --paper: #f7f3ed;
  --white: #ffffff;
  --line: #ddd4ca;
  --rust: #b85f3c;
  --rust-dark: #8f4129;
  --sage: #dfe7dc;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 243, 237, .92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px clamp(18px, 4vw, 60px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .78rem;
}
.brand img { width: 44px; height: 44px; object-fit: contain; }
nav { display: flex; gap: 10px; }
nav a {
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .68rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  background: rgba(255,255,255,.45);
}
nav a:hover { border-color: var(--rust); color: var(--rust-dark); }

.section-wrap {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}
.hero {
  min-height: calc(100vh - 74px);
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  align-items: center;
  gap: clamp(34px, 6vw, 84px);
  padding: 54px 0 70px;
}
.hero-copy { max-width: 540px; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--rust-dark);
  text-transform: uppercase;
  letter-spacing: .24em;
  font-size: .76rem;
  font-weight: 700;
}
h1, h2, h3 {
  font-family: Fraunces, Georgia, serif;
  line-height: 1.05;
  margin: 0;
  color: var(--ink);
}
h1 { font-size: clamp(3rem, 7vw, 6.9rem); letter-spacing: -.055em; }
h2 { font-size: clamp(2.1rem, 4vw, 4.2rem); letter-spacing: -.04em; }
h3 { font-size: 1.45rem; }
.lead {
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  color: var(--muted);
  max-width: 560px;
}
.actions { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin-top: 28px; }
.button {
  display: inline-flex;
  text-decoration: none;
  background: var(--ink);
  color: #fff;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 14px 30px rgba(28,38,51,.18);
}
.button:hover { background: var(--rust-dark); }
.promo { color: var(--rust-dark); font-weight: 700; }
.hero-image {
  background: var(--white);
  padding: 18px;
  border: 1px solid var(--line);
  box-shadow: 0 20px 70px rgba(28,38,51,.12);
}
.hero-image img { width: 100%; height: min(680px, 68vh); object-fit: cover; object-position: center; }

.intro { padding: 92px 0; border-top: 1px solid var(--line); }
.section-heading { max-width: 760px; margin-bottom: 36px; }
.centered { text-align: center; margin-inline: auto; }
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; font-size: 1.08rem; color: var(--muted); }
.intro-grid p { margin: 0; }

.story { padding: 20px 0 96px; }
.story-card {
  background: var(--white);
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(28px, 5vw, 68px);
  padding: clamp(18px, 4vw, 42px);
  box-shadow: 0 20px 70px rgba(28,38,51,.08);
}
.story-photo img { height: 100%; min-height: 640px; object-fit: cover; }
.story-copy { align-self: center; }
.story-copy p { color: var(--muted); margin: 0 0 15px; }
.story-copy .final-line { color: var(--ink); font-weight: 700; }

.services { padding: 92px 0; border-top: 1px solid var(--line); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 28px;
  min-height: 260px;
}
.service-card.highlight { background: var(--sage); }
.service-card p { color: var(--muted); }
.price { font-weight: 800; color: var(--rust-dark) !important; margin: 12px 0 8px; }
.discount { text-align: center; margin-top: 26px; color: var(--muted); }
.discount strong { color: var(--rust-dark); }

.area {
  padding: 76px clamp(20px, 5vw, 64px);
  background: var(--ink);
  color: #fff;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 40px;
  align-items: center;
}
.area h2, .area p { color: #fff; }
.area .eyebrow { color: #e7b196; }
.area > p { margin: 0; font-size: 1.08rem; opacity: .9; }

.gallery { padding: 94px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.gallery img { width: 100%; height: 460px; object-fit: cover; border: 14px solid var(--white); box-shadow: 0 18px 50px rgba(28,38,51,.09); }

.contact { text-align: center; padding: 90px 0 100px; border-top: 1px solid var(--line); }
.contact p:not(.eyebrow) { color: var(--muted); font-size: 1.1rem; }
.email-link {
  display: inline-block;
  margin-top: 8px;
  font-size: clamp(1.2rem, 3vw, 2.2rem);
  font-family: Fraunces, Georgia, serif;
  font-weight: 700;
  text-decoration-thickness: 2px;
  text-underline-offset: 8px;
  color: var(--rust-dark);
}

.footer {
  text-align: center;
  padding: 44px 18px 54px;
  background: var(--white);
  border-top: 1px solid var(--line);
}
.footer img { width: 86px; margin: 0 auto 12px; }
.footer p { margin: 0; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.footer span { display: block; color: var(--muted); font-size: .9rem; margin-top: 4px; }

@media (max-width: 900px) {
  .site-header { align-items: flex-start; gap: 14px; }
  nav { flex-wrap: wrap; justify-content: flex-end; }
  .hero, .story-card, .area { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 38px; }
  .hero-image img { height: 420px; }
  .intro-grid, .gallery { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .story-photo img { min-height: 480px; width: 100%; }
}
@media (max-width: 580px) {
  .site-header { position: static; display: block; text-align: center; }
  .brand { justify-content: center; margin-bottom: 12px; }
  nav { justify-content: center; }
  nav a { font-size: .62rem; padding: 7px 10px; }
  .section-wrap { width: min(100% - 24px, 1120px); }
  .hero-image { padding: 10px; }
  .hero-image img { height: 330px; }
  .service-grid { grid-template-columns: 1fr; }
  .gallery img { height: 330px; }
  .story-card { padding: 14px; }
  .story-photo img { min-height: 360px; }
}
