:root {
  --cream: #FAF6EE;
  --cream-deep: #F2EAD9;
  --paper: #FFFFFF;
  --forest: #1F4D2C;
  --forest-soft: #2D5F3F;
  --sage: #C8D5C0;
  --sage-pale: #E5EDDF;
  --terracotta: #E85D2F;
  --terracotta-deep: #C44A20;
  --peach: #FDE4D4;
  --ink: #1A1A1A;
  --ink-soft: #4A4A4A;
  --ink-muted: #8A857C;
  --line: #E8DFCC;
  --shadow-sm: 0 2px 8px rgba(31, 77, 44, 0.06);
  --shadow-md: 0 8px 24px rgba(31, 77, 44, 0.08);
  --shadow-lg: 0 24px 60px rgba(31, 77, 44, 0.12);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --radius-pill: 999px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.display {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.02em;
  font-variation-settings: 'opsz' 144;
}
.display em {
  font-style: italic;
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
  color: var(--terracotta);
}

.eyebrow {
  font-family: 'Plus Jakarta Sans', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 600;
  color: var(--forest);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--forest);
}

.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 24px; }

.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100; padding: 16px 0;
  transition: all 0.3s ease;
}
.nav.scrolled {
  background: rgba(250, 246, 238, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(31, 77, 44, 0.08);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo { display: inline-flex; align-items: center; color: var(--forest); }
.logo img { height: 56px; width: auto; display: block; }
.footer-brand .logo {
  background: var(--cream);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  display: inline-flex;
}
.footer-brand .logo img { height: 72px; }

.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a {
  padding: 10px 16px; border-radius: var(--radius-pill);
  font-size: 15px; font-weight: 500; color: var(--ink-soft);
  transition: all 0.2s ease;
}
.nav-links a:hover { background: var(--sage-pale); color: var(--forest); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--forest); color: var(--cream) !important;
  padding: 12px 22px !important; border-radius: var(--radius-pill);
  font-weight: 600 !important; transition: all 0.2s ease;
}
.nav-cta:hover { background: var(--terracotta) !important; color: var(--cream) !important; transform: translateY(-1px); }
.nav-toggle {
  display: none; background: var(--forest); border: none; color: var(--cream);
  width: 44px; height: 44px; border-radius: var(--radius-pill);
  cursor: pointer; align-items: center; justify-content: center;
}
.nav-toggle svg { width: 22px; height: 22px; }

.hero { padding: 140px 0 80px; position: relative; overflow: hidden; }
.hero::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--sage-pale), transparent 70%);
  z-index: 0;
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.hero h1 { font-size: clamp(48px, 7vw, 96px); margin: 24px 0 28px; }
.hero h1 .line { display: block; }
.hero-sub { font-size: 19px; color: var(--ink-soft); max-width: 480px; margin-bottom: 36px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 30px; border-radius: var(--radius-pill);
  font-weight: 600; font-size: 15px; border: none;
  cursor: pointer; transition: all 0.2s ease; font-family: inherit;
}
.btn-primary { background: var(--terracotta); color: var(--cream); }
.btn-primary:hover { background: var(--terracotta-deep); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(232, 93, 47, 0.25); }
.btn-secondary { background: transparent; color: var(--forest); border: 1.5px solid var(--forest); }
.btn-secondary:hover { background: var(--forest); color: var(--cream); }
.btn-ghost { background: transparent; color: var(--forest); padding: 16px 8px; }
.btn-ghost:hover { color: var(--terracotta); }

.hero-visual { position: relative; height: 580px; }
.hero-img { position: absolute; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); background: var(--paper); }
.hero-img-main { top: 0; right: 0; width: 78%; height: 100%; transform: rotate(2deg); }
.hero-img-secondary { bottom: 40px; left: 0; width: 50%; height: 240px; transform: rotate(-4deg); z-index: 2; border: 8px solid var(--cream); }
.hero-img img { width: 100%; height: 100%; object-fit: cover; }

.hero-badge {
  position: absolute; top: 30px; left: -10px;
  background: var(--terracotta); color: var(--cream);
  padding: 14px 22px; border-radius: var(--radius-pill);
  font-size: 13px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; transform: rotate(-6deg); z-index: 3;
  box-shadow: var(--shadow-md); display: inline-flex; align-items: center; gap: 8px;
}
.hero-badge svg { width: 16px; height: 16px; }

.trust-strip {
  margin-top: 60px; padding: 24px 0;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center;
}
.trust-item { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.trust-item strong { font-family: 'Fraunces', serif; font-size: 28px; color: var(--forest); font-weight: 600; }
.trust-item span { font-size: 13px; color: var(--ink-muted); text-transform: uppercase; letter-spacing: 0.1em; }

section { padding: 100px 0; position: relative; }
.section-head { max-width: 720px; margin-bottom: 60px; }
.section-head.center { margin: 0 auto 60px; text-align: center; }
.section-head h2 { font-size: clamp(36px, 5vw, 64px); margin-top: 16px; }
.section-head p { font-size: 18px; color: var(--ink-soft); margin-top: 18px; }

.about { background: var(--paper); border-radius: var(--radius-lg); margin: 0 24px; padding: 80px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: center; }
.about-img { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 3/4; box-shadow: var(--shadow-md); }
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-content h2 { font-size: clamp(36px, 5vw, 58px); margin: 16px 0 28px; }
.about-content p { font-size: 18px; color: var(--ink-soft); margin-bottom: 18px; }
.about-content p:first-of-type::first-letter {
  font-family: 'Fraunces', serif; font-size: 70px; float: left;
  line-height: 0.85; margin: 8px 12px 0 0; color: var(--terracotta); font-weight: 600;
}
.signature { margin-top: 32px; display: flex; align-items: center; gap: 16px; font-family: 'Fraunces', serif; font-style: italic; font-size: 22px; color: var(--forest); }
.signature::before { content: ''; width: 50px; height: 1px; background: var(--forest); }

.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.service-card {
  background: var(--paper); border-radius: var(--radius-md);
  padding: 32px 28px; transition: all 0.3s ease;
  border: 1px solid transparent; position: relative; overflow: hidden;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--sage); }
.service-icon {
  width: 64px; height: 64px; background: var(--sage-pale);
  border-radius: var(--radius-md); display: grid; place-items: center;
  color: var(--forest); margin-bottom: 24px; transition: all 0.3s ease;
}
.service-card:hover .service-icon { background: var(--forest); color: var(--cream); transform: rotate(-6deg); }
.service-icon svg { width: 32px; height: 32px; }
.service-card h3 { font-family: 'Fraunces', serif; font-size: 24px; font-weight: 600; margin-bottom: 12px; color: var(--ink); letter-spacing: -0.01em; }
.service-card p { color: var(--ink-soft); font-size: 15px; line-height: 1.6; }

.included {
  background: var(--forest); color: var(--cream);
  border-radius: var(--radius-lg); margin: 80px 24px 0;
  padding: 80px 60px; position: relative; overflow: hidden;
}
.included::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(232, 93, 47, 0.15), transparent 70%);
}
.included-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; position: relative; z-index: 1; }
.included h2 { font-size: clamp(36px, 5vw, 56px); margin-top: 16px; }
.included .eyebrow { color: var(--sage); }
.included .eyebrow::before { background: var(--sage); }
.included p { color: rgba(250, 246, 238, 0.8); margin-top: 20px; font-size: 17px; }
.included-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 32px; list-style: none; }
.included-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: rgba(250, 246, 238, 0.92); }
.check { width: 22px; height: 22px; background: var(--terracotta); border-radius: 50%; display: grid; place-items: center; flex-shrink: 0; margin-top: 2px; }
.check svg { width: 12px; height: 12px; color: var(--cream); }

.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.pricing-card {
  background: var(--paper); border-radius: var(--radius-lg);
  padding: 56px 48px; border: 1px solid var(--line);
  position: relative; overflow: hidden;
}
.pricing-card::after {
  content: ''; position: absolute; bottom: -60px; right: -60px;
  width: 200px; height: 200px; background: var(--peach);
  border-radius: 50%; opacity: 0.5; z-index: 0;
}
.pricing-card > * { position: relative; z-index: 1; }
.price-tag { display: flex; align-items: baseline; gap: 8px; margin: 24px 0; }
.price-tag .from { font-size: 14px; color: var(--ink-muted); text-transform: uppercase; letter-spacing: 0.1em; }
.price-tag .amount { font-family: 'Fraunces', serif; font-size: 80px; font-weight: 600; color: var(--forest); line-height: 1; }
.price-tag .per { font-size: 18px; color: var(--ink-soft); }
.pricing-card p { color: var(--ink-soft); margin-bottom: 28px; font-size: 17px; }
.pricing-features { list-style: none; margin: 24px 0 32px; }
.pricing-features li { padding: 12px 0; border-bottom: 1px dashed var(--line); display: flex; align-items: center; gap: 12px; font-size: 15px; }
.pricing-features li::before { content: '✓'; color: var(--terracotta); font-weight: 700; }
.pricing-features li:last-child { border-bottom: none; }
.pricing-aside h2 { font-size: clamp(32px, 4.5vw, 52px); margin-top: 16px; }
.pricing-aside p { color: var(--ink-soft); margin-top: 20px; font-size: 17px; }

.gallery-section { background: var(--cream-deep); }
.gallery { columns: 4 200px; column-gap: 16px; margin-top: 40px; }
.gallery.collapsed {
  max-height: 1200px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, #000 78%, transparent 100%);
          mask-image: linear-gradient(to bottom, #000 78%, transparent 100%);
}
.gallery a {
  display: block; margin-bottom: 16px; break-inside: avoid;
  border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: all 0.3s ease; position: relative;
}
.gallery a:hover { transform: translateY(-4px) scale(1.02); box-shadow: var(--shadow-md); }
.gallery a::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(31, 77, 44, 0.3));
  opacity: 0; transition: opacity 0.3s ease;
}
.gallery a:hover::after { opacity: 1; }
.gallery img { width: 100%; height: auto; display: block; }
.gallery-more { text-align: center; margin-top: 40px; }

.lightbox {
  position: fixed; inset: 0;
  background: rgba(26, 26, 26, 0.92);
  display: none; align-items: center; justify-content: center;
  z-index: 1000; padding: 40px; cursor: zoom-out;
  backdrop-filter: blur(8px);
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 90%; max-height: 90vh; border-radius: var(--radius-md); box-shadow: var(--shadow-lg); }
.lightbox-close {
  position: absolute; top: 24px; right: 24px;
  background: var(--cream); color: var(--ink);
  width: 48px; height: 48px; border-radius: 50%;
  border: none; cursor: pointer; font-size: 24px;
  display: grid; place-items: center;
}

.reviews-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.review-card {
  background: var(--paper); border-radius: var(--radius-lg);
  padding: 48px 44px; position: relative;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
}
.review-card::before {
  content: '"'; font-family: 'Fraunces', serif; font-size: 140px;
  color: var(--sage); position: absolute; top: -10px; left: 32px;
  line-height: 1; opacity: 0.6;
}
.review-stars { display: flex; gap: 4px; margin-bottom: 20px; color: var(--terracotta); position: relative; }
.review-stars svg { width: 20px; height: 20px; }
.review-text { font-family: 'Fraunces', serif; font-size: 19px; line-height: 1.5; color: var(--ink); margin-bottom: 28px; position: relative; font-weight: 400; }
.review-author { display: flex; align-items: center; gap: 14px; }
.review-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--forest); color: var(--cream);
  display: grid; place-items: center;
  font-family: 'Fraunces', serif; font-weight: 600; font-size: 20px;
}
.review-author strong { display: block; color: var(--ink); font-size: 16px; }
.review-author span { color: var(--ink-muted); font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; }

.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: start; }
.contact-form { background: var(--paper); padding: 48px; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--forest); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.08em; }
.form-control {
  width: 100%; padding: 14px 18px;
  border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: var(--cream); font-family: inherit;
  font-size: 16px; color: var(--ink); transition: all 0.2s ease;
}
.form-control:focus { outline: none; border-color: var(--forest); background: var(--paper); box-shadow: 0 0 0 3px var(--sage-pale); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
textarea.form-control { resize: vertical; min-height: 130px; }

.contact-info { display: flex; flex-direction: column; gap: 16px; }
.info-card {
  background: var(--paper); padding: 24px 28px; border-radius: var(--radius-md);
  display: flex; align-items: center; gap: 18px;
  transition: all 0.2s ease; border: 1px solid var(--line);
}
.info-card:hover { border-color: var(--forest); transform: translateX(4px); }
.info-icon { width: 48px; height: 48px; background: var(--sage-pale); border-radius: 50%; display: grid; place-items: center; color: var(--forest); flex-shrink: 0; }
.info-icon svg { width: 22px; height: 22px; }
.info-card div small { display: block; color: var(--ink-muted); font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 2px; }
.info-card div strong { font-size: 17px; color: var(--ink); }
.map-wrap { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); margin-top: 8px; height: 280px; }
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

footer { background: var(--forest); color: var(--cream); padding: 80px 0 40px; margin-top: 80px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 60px; }
.footer-brand p { color: rgba(250, 246, 238, 0.7); margin-top: 20px; max-width: 320px; font-size: 15px; }
footer h4 { font-family: 'Fraunces', serif; font-size: 18px; margin-bottom: 18px; font-weight: 600; }
footer ul { list-style: none; }
footer ul li { margin-bottom: 10px; }
footer ul a { color: rgba(250, 246, 238, 0.75); font-size: 15px; transition: color 0.2s ease; }
footer ul a:hover { color: var(--terracotta); }
.footer-bottom {
  padding-top: 30px; border-top: 1px solid rgba(250, 246, 238, 0.15);
  display: flex; justify-content: space-between; align-items: center;
  color: rgba(250, 246, 238, 0.6); font-size: 13px;
  flex-wrap: wrap; gap: 16px;
}
.social { display: flex; gap: 10px; }
.social a { width: 40px; height: 40px; background: rgba(250, 246, 238, 0.1); border-radius: 50%; display: grid; place-items: center; transition: all 0.2s ease; }
.social a:hover { background: var(--terracotta); transform: translateY(-2px); }
.social svg { width: 18px; height: 18px; color: var(--cream); }

.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-up.in { opacity: 1; transform: translateY(0); }

@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { height: 460px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .included-grid { grid-template-columns: 1fr; gap: 40px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.mobile-open {
    display: flex; position: absolute; top: 76px; left: 16px; right: 16px;
    flex-direction: column; background: var(--paper); padding: 24px;
    border-radius: var(--radius-md); box-shadow: var(--shadow-lg); gap: 4px;
  }
  .nav-links.mobile-open a { width: 100%; padding: 14px 18px; }
  .nav-links.mobile-open .nav-cta { display: inline-flex; margin-top: 8px; justify-content: center; }
  .hero { padding: 110px 0 60px; }
  section { padding: 70px 0; }
  .container { padding: 0 16px; }
  .about { margin: 0 12px; padding: 60px 24px; }
  .about-img { max-width: 360px; margin: 0 auto; }
  .included { margin: 60px 12px 0; padding: 60px 28px; }
  .included-list { grid-template-columns: 1fr; gap: 12px; }
  .trust-strip { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .pricing-card { padding: 40px 28px; }
  .price-tag .amount { font-size: 60px; }
  .review-card { padding: 36px 28px; }
  .review-card::before { font-size: 100px; }
  .contact-form { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-visual { height: 380px; }
  .hero-img-main { width: 82%; }
  .hero-img-secondary { width: 55%; height: 180px; }
  .hero-badge { top: 12px; padding: 10px 16px; font-size: 11px; }
  .logo img { height: 44px; }
  .footer-brand .logo img { height: 60px; }
}

@media (max-width: 480px) {
  .gallery { columns: 2 140px; }
  .hero h1 { font-size: 44px; }
}
