:root {
  --bg: #fff8f4;
  --surface: #ffffff;
  --surface-soft: #fff2ea;
  --text: #241a17;
  --muted: #665550;
  --brand: #be5f45;
  --brand-deep: #9d4732;
  --accent: #2b6a6a;
  --line: #ecd8cc;
  --shadow: 0 18px 40px rgba(83, 36, 23, 0.14);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --header-h: 84px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(1400px 700px at 85% -10%, #ffe6d8 0%, transparent 60%),
    radial-gradient(1000px 600px at -10% 40%, #ffeede 0%, transparent 55%),
    var(--bg);
  line-height: 1.6;
}

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

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

h1,
h2,
h3 {
  margin: 0 0 0.6rem;
  font-family: "Fraunces", serif;
  line-height: 1.1;
  letter-spacing: 0.01em;
}

p {
  margin: 0;
}

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

section {
  scroll-margin-top: 96px;
}

.container {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

.bg-orb {
  position: fixed;
  z-index: -1;
  border-radius: 999px;
  filter: blur(14px);
  opacity: 0.5;
  pointer-events: none;
}

.bg-orb-a {
  width: 260px;
  height: 260px;
  background: #ffd3bf;
  top: 14%;
  left: -100px;
}

.bg-orb-b {
  width: 320px;
  height: 320px;
  background: #d9f0ee;
  bottom: 6%;
  right: -120px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header-h);
  backdrop-filter: blur(14px);
  background: rgba(255, 248, 244, 0.88);
  border-bottom: 1px solid rgba(236, 216, 204, 0.9);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.logo {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
}

.logo-main {
  font-family: "Fraunces", serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--brand-deep);
}

.logo-sub {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

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

.site-nav a {
  font-size: 0.95rem;
  font-weight: 600;
  color: #3f312d;
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: var(--brand-deep);
}

.nav-cta {
  margin-left: 10px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  padding: 10px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #3a2d2a;
  margin: 7px 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
  color: #fff;
  box-shadow: 0 10px 24px rgba(157, 71, 50, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 12px 26px rgba(157, 71, 50, 0.35);
}

.btn-outline {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.78);
  color: #3f302b;
}

.btn-outline:hover {
  background: #fff3eb;
}

.hero {
  padding: 4.2rem 0 3.8rem;
}

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

.eyebrow {
  margin-bottom: 0.9rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero h1 {
  font-size: clamp(2rem, 4.3vw, 3.8rem);
  max-width: 16ch;
}

.hero-lead {
  margin-top: 0.95rem;
  max-width: 58ch;
  color: var(--muted);
}

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

.hero-stats {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.hero-stats li {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.85rem 0.9rem;
}

.stat-title {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #7f645a;
}

.stat-value {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.95rem;
  font-weight: 700;
}

.hero-media {
  position: relative;
}

.hero-media img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.floating-note {
  position: absolute;
  right: -14px;
  bottom: -16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-md);
  padding: 0.9rem 1rem;
  box-shadow: 0 10px 24px rgba(71, 37, 26, 0.14);
}

.floating-note p {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7b5f56;
}

.floating-note strong {
  font-size: 1rem;
  color: var(--brand-deep);
}

.services,
.gallery,
.about,
.reviews,
.contact {
  padding: 4.2rem 0;
}

.section-head {
  margin-bottom: 1.7rem;
}

.section-head h2 {
  font-size: clamp(1.7rem, 3.1vw, 2.8rem);
  max-width: 20ch;
}

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

.service-card {
  overflow: hidden;
  border-radius: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 10px 26px rgba(87, 36, 23, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 30px rgba(87, 36, 23, 0.14);
}

.service-card img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.service-copy {
  padding: 1rem 1.05rem 1.15rem;
}

.service-copy h3 {
  font-size: 1.38rem;
  margin-bottom: 0.5rem;
}

.service-copy p {
  color: var(--muted);
}

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

.gallery-grid figure {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
}

.gallery-grid img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.05);
}

.gallery-grid figure:nth-child(1) {
  grid-column: span 4;
  grid-row: span 2;
}

.gallery-grid figure:nth-child(2) {
  grid-column: span 4;
}

.gallery-grid figure:nth-child(3) {
  grid-column: span 4;
}

.gallery-grid figure:nth-child(4) {
  grid-column: span 3;
}

.gallery-grid figure:nth-child(5) {
  grid-column: span 3;
}

.gallery-grid figure:nth-child(6) {
  grid-column: span 6;
}

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

.about-media img {
  border-radius: 22px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.about-copy h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.6rem);
  max-width: 19ch;
}

.about-copy p {
  margin-top: 0.8rem;
  color: var(--muted);
}

.check-list {
  margin-top: 1rem;
  display: grid;
  gap: 0.55rem;
}

.check-list li {
  position: relative;
  padding-left: 1.5rem;
  font-weight: 600;
  color: #3e2f2b;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), #db8f6b);
}

.reviews {
  background: linear-gradient(180deg, transparent 0%, rgba(255, 237, 224, 0.5) 100%);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.review-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1rem 1rem 1.1rem;
  box-shadow: 0 8px 22px rgba(75, 33, 23, 0.08);
}

.review-score {
  margin-bottom: 0.45rem;
  font-family: "Fraunces", serif;
  font-size: 1.45rem;
  color: var(--brand-deep);
}

.review-card p:last-child {
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.contact-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
  padding: 1.3rem;
  box-shadow: 0 8px 22px rgba(71, 32, 21, 0.08);
}

.contact-card h2 {
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  margin-bottom: 0.8rem;
}

.contact-list {
  display: grid;
  gap: 0.5rem;
}

.contact-list li {
  color: #4a3a35;
}

.contact-list a {
  color: var(--brand-deep);
  font-weight: 700;
}

.contact-actions {
  margin-top: 1.1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.map-wrap {
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid var(--line);
  min-height: 340px;
  box-shadow: 0 8px 22px rgba(71, 32, 21, 0.08);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  min-height: 340px;
}

.sticky-call {
  display: none;
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 14px;
  z-index: 45;
  width: min(92vw, 480px);
  border-radius: 999px;
  text-align: center;
  padding: 0.95rem 1rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
  box-shadow: 0 14px 28px rgba(113, 46, 31, 0.36);
}

.site-footer {
  padding: 1.4rem 0 1.8rem;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.58);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: #6d5953;
}

.photo-credit {
  opacity: 0.9;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

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

  .site-nav {
    position: absolute;
    top: calc(var(--header-h) - 2px);
    right: 4vw;
    width: min(90vw, 360px);
    display: grid;
    gap: 2px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 14px 28px rgba(58, 26, 17, 0.16);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.22s ease, transform 0.22s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 0.68rem 0.66rem;
    border-radius: 10px;
  }

  .site-nav a:hover {
    background: #fff1e6;
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 4px;
  }

  .hero {
    padding-top: 2.8rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: 1fr 1fr;
  }

  .hero-media {
    order: -1;
  }

  .service-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-grid,
  .review-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .map-wrap,
  .map-wrap iframe {
    min-height: 300px;
  }

  .gallery-grid figure {
    grid-column: span 6 !important;
    grid-row: auto;
  }
}

@media (max-width: 680px) {
  .hero-stats {
    grid-template-columns: 1fr;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid figure {
    grid-column: span 1 !important;
  }

  .footer-inner {
    font-size: 0.82rem;
  }

  .sticky-call {
    display: block;
  }
}
