:root {
  --bg: #fbf5f2;
  --bg-2: #f5ebe5;
  --surface: rgba(255,255,255,0.68);
  --surface-strong: rgba(255,255,255,0.82);
  --text: #5f3a32;
  --muted: #8b6a61;
  --accent: #b77863;
  --accent-dark: #8f5644;
  --border: rgba(183, 120, 99, 0.18);
  --shadow: 0 20px 50px rgba(132, 92, 80, 0.15);
  --radius: 26px;
  --radius-sm: 18px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top, #fff8f4, #f7eeea 45%, #f3e6df 100%);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }
button { font: inherit; }

.site-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 10% 10%, rgba(255,255,255,0.9), transparent 20%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.5), transparent 26%),
    radial-gradient(circle at 20% 80%, rgba(255,255,255,0.4), transparent 25%),
    radial-gradient(circle at 90% 90%, rgba(255,255,255,0.35), transparent 20%);
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(251, 245, 242, 0.76);
  border-bottom: 1px solid rgba(183, 120, 99, 0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .9rem;
}

.brand img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 10px 28px rgba(143, 86, 68, .14);
}

.brand strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  line-height: 1;
  display: block;
}

.brand-kicker,
.eyebrow,
.mini-label {
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .74rem;
  color: var(--accent);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav a {
  color: var(--muted);
  font-weight: 500;
  transition: color .25s ease;
}

.nav a:hover { color: var(--accent-dark); }

.menu-toggle {
  display: none;
  border: 1px solid var(--border);
  background: var(--surface-strong);
  color: var(--text);
  border-radius: 14px;
  padding: .5rem .8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .95rem 1.4rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: white;
  font-weight: 700;
  border: 1px solid transparent;
  box-shadow: 0 16px 30px rgba(183, 120, 99, .24);
  transition: transform .25s ease, box-shadow .25s ease, opacity .25s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(183, 120, 99, .3);
}

.btn-sm { padding: .8rem 1.1rem; }

.btn-ghost {
  background: rgba(255,255,255,.55);
  color: var(--accent-dark);
  border-color: rgba(183, 120, 99, .22);
  box-shadow: none;
}

.hero {
  position: relative;
  min-height: calc(100vh - 82px);
  display: flex;
  align-items: center;
  isolation: isolate;
  overflow: clip;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(251,245,242,.94) 10%, rgba(251,245,242,.84) 45%, rgba(251,245,242,.56) 100%),
              url('assets/hero-bg.png') center/cover no-repeat;
  transform: scale(1.04);
  animation: slowZoom 16s ease-in-out infinite alternate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 10%, rgba(255,255,255,.4), transparent 30%);
}

@keyframes slowZoom {
  from { transform: scale(1.02); }
  to { transform: scale(1.08); }
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 2rem;
  align-items: center;
  padding: 4.4rem 0;
}

.hero-copy h1,
.section-head h2,
.about-copy h2,
.cta-card h2 {
  font-family: 'Cormorant Garamond', serif;
  margin: .5rem 0 1rem;
  line-height: .95;
  letter-spacing: -.03em;
}

.hero-copy h1 { font-size: clamp(3rem, 7vw, 6rem); max-width: 10ch; }
.hero-copy p { max-width: 58ch; color: var(--muted); font-size: 1.05rem; }

.hero-actions,
.cta-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.6rem;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.hero-meta div,
.hero-card,
.service-card,
.stat-card,
.cta-card,
.gallery-item,
.trust-grid > div {
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-meta div {
  padding: 1rem 1.1rem;
  border-radius: 20px;
}
.hero-meta strong { display: block; margin-bottom: .35rem; }
.hero-meta span, .hero-meta a { color: var(--muted); }

.hero-card {
  border-radius: 34px;
  padding: 1.2rem;
  transform: translateY(14px);
}

.hero-card img {
  border-radius: 26px;
  max-width: 100%;
  background: rgba(255,255,255,.7);
}

.hero-card-content {
  padding: 1.2rem .5rem .2rem;
}

.hero-card-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  margin: .45rem 0;
  line-height: 1;
}

.hero-card-content p { color: var(--muted); }

.trust-bar {
  margin-top: -2rem;
  position: relative;
  z-index: 4;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.trust-grid > div {
  border-radius: 20px;
  padding: 1.1rem 1.2rem;
}
.trust-grid strong { display: block; font-size: 1.05rem; margin-bottom: .2rem; }
.trust-grid span { color: var(--muted); }

.section {
  padding: 6.5rem 0;
}
.section-alt { background: linear-gradient(180deg, rgba(255,255,255,.28), rgba(255,255,255,.02)); }

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 2.5rem;
}

.section-head h2,
.about-copy h2,
.cta-card h2 { font-size: clamp(2.5rem, 5vw, 4.4rem); }
.section-head p,
.about-copy p,
.cta-card p { color: var(--muted); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.service-card {
  overflow: hidden;
  border-radius: 26px;
  transition: transform .35s ease, box-shadow .35s ease;
}

.service-card:hover,
.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 46px rgba(132, 92, 80, 0.18);
}

.image-wrap {
  overflow: hidden;
  aspect-ratio: 4 / 4.5;
}

.image-wrap img,
.gallery-item img {
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.service-card:hover img,
.gallery-item:hover img { transform: scale(1.05); }

.card-body {
  padding: 1.2rem 1.15rem 1.3rem;
}

.card-body h3,
.footer h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  margin: 0 0 .55rem;
}

.card-body p { color: var(--muted); min-height: 5.6rem; }
.price-tag {
  display: inline-flex;
  padding: .45rem .8rem;
  border-radius: 999px;
  background: rgba(183, 120, 99, .1);
  color: var(--accent-dark);
  font-size: .92rem;
  font-weight: 600;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 2rem;
  align-items: center;
}
.feature-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: .9rem;
}
.feature-list li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--muted);
}
.feature-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.stats-panel {
  display: grid;
  gap: 1rem;
}
.stat-card {
  border-radius: 22px;
  padding: 1.25rem;
}
.stat-card strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  margin-bottom: .35rem;
}
.stat-card span { color: var(--muted); }

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

.gallery-item {
  padding: 0;
  overflow: hidden;
  border-radius: 24px;
  cursor: pointer;
}
.gallery-item img { aspect-ratio: 1 / 1.06; object-fit: cover; }

.cta-section { padding-top: 2rem; }
.cta-card {
  border-radius: 32px;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer {
  padding: 4rem 0 3rem;
  background: rgba(255,255,255,.28);
  border-top: 1px solid rgba(183, 120, 99, .1);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr .8fr .6fr;
  gap: 2rem;
}
.footer-brand img { width: 64px; height: 64px; }
.footer-text,
.footer p,
.footer a,
.footer li { color: var(--muted); }
.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .7rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(44, 20, 15, .72);
  backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
  z-index: 100;
  padding: 1.25rem;
}
.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}
.lightbox img {
  width: min(92vw, 860px);
  max-height: 84vh;
  object-fit: contain;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(0,0,0,.3);
}
.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: rgba(255,255,255,.9);
  color: var(--accent-dark);
  font-size: 2rem;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .75s ease, transform .75s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }

@media (max-width: 1080px) {
  .services-grid,
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-grid,
  .about-grid,
  .footer-grid,
  .cta-card { grid-template-columns: 1fr; display: grid; }
  .cta-card { justify-content: initial; }
}

@media (max-width: 820px) {
  .menu-toggle { display: inline-flex; }
  .nav {
    position: absolute;
    top: calc(100% + .65rem);
    right: 1rem;
    width: min(320px, calc(100vw - 2rem));
    background: rgba(255,255,255,.92);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    border-radius: 22px;
    padding: 1rem;
    flex-direction: column;
    align-items: flex-start;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .24s ease, transform .24s ease;
  }
  .nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .hero { min-height: auto; }
  .hero-grid { padding: 3rem 0 4rem; }
  .hero-meta,
  .trust-grid,
  .services-grid,
  .gallery-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .hero-copy h1 { max-width: 12ch; }
  .section { padding: 5rem 0; }
}

@media (max-width: 560px) {
  .brand strong { font-size: 1.2rem; }
  .btn, .btn-sm { width: 100%; }
  .hero-actions, .cta-actions { flex-direction: column; }
  .hero-card { padding: .8rem; }
  .cta-card { padding: 1.4rem; }
}
