:root {
  --bg: #f8f3ed;
  --bg-soft: #fdf8f3;
  --panel: rgba(255, 255, 255, 0.72);
  --text: #2f2724;
  --muted: #72655e;
  --line: rgba(102, 78, 61, 0.14);
  --accent: #d7a98b;
  --accent-2: #edd5c5;
  --accent-3: #b88263;
  --dark: #231c1a;
  --dark-soft: #342a26;
  --shadow: 0 24px 60px rgba(72, 44, 28, 0.10);
  --radius: 26px;
  --radius-sm: 18px;
  --container: min(1160px, calc(100% - 2rem));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
  margin: 0;
  font-family: "Manrope", system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(237, 213, 197, 0.6), transparent 24rem),
    linear-gradient(180deg, #fbf7f3 0%, #f6efe9 100%);
  line-height: 1.65;
}
img { max-width: 100%; height: auto; display: block; }
.container { width: var(--container); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 247, 243, 0.84);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.nav-row {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .85rem;
  text-decoration: none;
  color: var(--text);
}
.brand-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-3));
  color: white;
  font-weight: 800;
  box-shadow: var(--shadow);
}
.brand-copy strong,
.brand-copy small {
  display: block;
  line-height: 1.1;
}
.brand-copy small {
  color: var(--muted);
  margin-top: .15rem;
  font-size: .82rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.site-nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
}
.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  background: white;
  border-radius: 14px;
  font-size: 1.1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .95rem 1.3rem;
  border-radius: 999px;
  border: none;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
  color: white;
  background: linear-gradient(135deg, var(--accent-3), #c19478);
  box-shadow: var(--shadow);
}
.btn-sm { padding: .75rem 1rem; }
.btn-secondary {
  color: var(--text);
  background: rgba(255,255,255,.72);
  border: 1px solid var(--line);
  box-shadow: none;
}

.hero {
  position: relative;
  overflow: clip;
  padding: 5.5rem 0 4rem;
}
.hero-grid,
.split-grid,
.about-grid,
.contact-grid,
.footer-row,
.stats-grid {
  display: grid;
  gap: 2rem;
}
.hero-grid {
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(30px);
  pointer-events: none;
}
.glow-one {
  width: 22rem;
  height: 22rem;
  top: -6rem;
  right: -4rem;
  background: rgba(237, 213, 197, 0.75);
}
.glow-two {
  width: 18rem;
  height: 18rem;
  bottom: 1rem;
  left: -5rem;
  background: rgba(215, 169, 139, 0.18);
}

.eyebrow {
  margin: 0 0 1rem;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 800;
  color: var(--accent-3);
}
.eyebrow.light { color: #f3cbb6; }

h1, h2, h3 {
  line-height: 1.05;
  margin: 0 0 1rem;
}
h1 { font-size: clamp(2.8rem, 6vw, 5.2rem); max-width: 11ch; }
h2 { font-size: clamp(2rem, 3.8vw, 3.4rem); max-width: 16ch; }
h3 { font-size: 1.3rem; }
.lead,
.section-head p,
.copy-block p,
.about-grid p,
.contact-copy p,
.service-card p,
.hero-card-info p {
  color: var(--muted);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 1.5rem 0;
}
.hero-pills,
.contact-notes,
.check-list {
  display: flex;
  gap: .8rem;
  flex-wrap: wrap;
}
.hero-pills span,
.contact-notes div,
.check-list div {
  padding: .72rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.72);
}

.hero-card,
.service-card,
.gallery-card,
.contact-form,
.stats-grid > div {
  background: var(--panel);
  border: 1px solid rgba(255,255,255,.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.hero-card {
  border-radius: var(--radius);
  overflow: hidden;
}
.hero-card img {
  width: 100%;
  height: 240px; max-height: 34vh;
  object-fit: cover;
}
.hero-card-info {
  padding: 1.4rem 1.5rem 1.6rem;
}

.stats-band { padding: 0 0 1.2rem; }
.stats-grid { grid-template-columns: repeat(3, 1fr); }
.stats-grid > div {
  padding: 1.2rem 1.25rem;
  border-radius: var(--radius-sm);
}
.stats-grid strong,
.stats-grid span {
  display: block;
}
.stats-grid span {
  color: var(--muted);
  margin-top: .35rem;
}

.section { padding: 5rem 0; }
.section-soft {
  background:
    linear-gradient(180deg, rgba(255,255,255,.35), rgba(255,255,255,.4)),
    linear-gradient(180deg, #faf4ee, #f6eee7);
}
.section-dark {
  background: linear-gradient(180deg, var(--dark) 0%, var(--dark-soft) 100%);
  color: white;
}
.section-dark p { color: rgba(255,255,255,.78); }

.section-head {
  max-width: 760px;
  margin-bottom: 2rem;
}

.card-grid.three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.service-card {
  border-radius: var(--radius);
  padding: 1.5rem;
}
.icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 1.55rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, rgba(215,169,139,.35), rgba(237,213,197,.8));
}

.split-grid {
  grid-template-columns: .95fr 1.05fr;
  align-items: center;
}
.photo-stack {
  position: relative;
  min-height: 360px;
}
.photo-stack img {
  position: absolute;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
  border: 8px solid rgba(255,255,255,.62);
}
.stack-a {
  width: 76%;
  height: 190px;
  top: 0;
  left: 0;
}
.stack-b {
  width: 58%;
  height: 150px;
  right: 0;
  bottom: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.35fr .8fr .8fr;
  gap: 1.25rem;
}
.gallery-card {
  border-radius: var(--radius);
  overflow: hidden;
}
.gallery-card img {
  width: 100%;
  height: 100%;
  min-height: 160px;
  object-fit: cover;
}
.gallery-card.large img { min-height: 180px; }
.gallery-card figcaption {
  padding: 1rem 1.15rem 1.2rem;
  color: var(--muted);
  background: rgba(255,255,255,.76);
}

.about-grid,
.contact-grid,
.footer-row {
  grid-template-columns: 1fr 1fr;
  align-items: start;
}
.contact-form {
  padding: 1.4rem;
  border-radius: var(--radius);
}
.contact-form label {
  display: block;
  font-weight: 700;
  margin-bottom: 1rem;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: .45rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: .95rem 1rem;
  font: inherit;
  background: rgba(255,255,255,.92);
}
.form-message {
  margin: .9rem 0 0;
  color: var(--muted);
  min-height: 1.4rem;
}

.site-footer {
  padding: 1.5rem 0 2rem;
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,.4);
}
.footer-row { gap: 1rem; }
.credits { text-align: right; color: var(--muted); }

@media (max-width: 980px) {
  .hero-grid,
  .split-grid,
  .about-grid,
  .contact-grid,
  .footer-row,
  .card-grid.three,
  .stats-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .photo-stack {
    min-height: auto;
    display: grid;
    gap: 1rem;
  }
  .photo-stack img {
    position: static;
    width: 100%;
    height: 190px;
    border-width: 0;
  }

  .gallery-card.large img,
  .gallery-card img,
  .hero-card img {
    min-height: 160px;
    height: 150px;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 1rem;
    width: min(320px, calc(100% - 2rem));
    padding: 1rem;
    border-radius: 22px;
    background: rgba(255,250,246,.97);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    align-items: stretch;
  }
  .site-nav.open { display: flex; }
  .nav-toggle { display: inline-grid; place-items: center; }
}

@media (max-width: 640px) {
  .hero { padding-top: 4.5rem; }
  .nav-row { min-height: 74px; }
  .brand-copy small { display: none; }
  h1 { font-size: 2.7rem; }
}


/* image scale fix */
.hero-visual {
  max-width: 520px;
  justify-self: end;
}

.hero-card {
  max-width: 520px;
  margin-left: auto;
}

.hero-card img {
  aspect-ratio: 16 / 10;
}

.photo-stack {
  max-width: 560px;
}

.gallery-grid {
  align-items: start;
}

.gallery-card.large {
  max-width: 640px;
}

.gallery-card img {
  aspect-ratio: 4 / 3;
}

.gallery-card.large img {
  aspect-ratio: 16 / 10;
}

figcaption {
  font-size: 0.95rem;
}

@media (max-width: 980px) {
  .hero-visual,
  .hero-card,
  .photo-stack,
  .gallery-card.large {
    max-width: 100%;
  }

  .hero-card img {
    height: 220px;
    max-height: none;
  }

  .photo-stack img {
    height: 180px;
  }

  .gallery-card.large img,
  .gallery-card img {
    min-height: 180px;
    height: 180px;
  }
}

@media (max-width: 640px) {
  .hero-card img {
    height: 200px;
  }

  .photo-stack img,
  .gallery-card.large img,
  .gallery-card img {
    height: 160px;
    min-height: 160px;
  }
}


.form-message a {
  color: inherit;
}
