/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --white:       #FFFFFF;
  --cream:       #FAF6EF;
  --sage:        #7D9B76;
  --sage-pale:   #EAF0E8;
  --terracotta:  #C47B5A;
  --terra-pale:  #F5E6DC;
  --mustard:     #D4A843;
  --must-pale:   #FBF3DC;
  --text:        #1E1E1E;
  --text-mid:    #4A4A4A;
  --text-light:  #888;
  --border:      #E5DDD4;
  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 1120px; margin: 0 auto; padding: 0 40px; }
@media (max-width: 700px) { .container { padding: 0 20px; } }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, blockquote { font-family: var(--font-serif); line-height: 1.1; }
em { font-style: italic; }
p { font-weight: 300; }

.eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 14px;
}

.section-header { margin-bottom: 64px; }
.section-header h2 { font-size: clamp(36px, 4.5vw, 54px); }
.section-header.center { text-align: center; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: var(--sage);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 32px;
  border: 2px solid var(--sage);
  transition: background .2s, color .2s;
}
.btn-primary:hover { background: transparent; color: var(--sage); }

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 32px;
  border: 2px solid var(--text);
  transition: background .2s, color .2s;
}
.btn-secondary:hover { background: var(--text); color: #fff; }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--terracotta);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 32px;
  border: 2px solid var(--terracotta);
  transition: background .2s, color .2s;
}
.btn-outline:hover { background: var(--terracotta); color: #fff; }

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 18px 36px;
  border: 2px solid #fff;
  transition: background .2s, color .2s;
}
.btn-white:hover { background: transparent; color: #fff; }

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 40px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.5px;
}
.nav-cta {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sage);
  text-decoration: none;
  border-bottom: 1px solid var(--sage);
  padding-bottom: 2px;
  transition: color .2s;
}
.nav-cta:hover { color: var(--terracotta); border-color: var(--terracotta); }

/* ===== HERO — SPLIT ===== */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 64px;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px 80px 40px;
  max-width: 560px;
  margin-left: auto;
}

.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--terracotta);
  border: 1px solid var(--terracotta);
  padding: 6px 14px;
  margin-bottom: 32px;
}

.hero-title {
  font-size: clamp(48px, 5.5vw, 72px);
  font-weight: 500;
  line-height: 1.05;
  margin-bottom: 24px;
  color: var(--text);
}

.hero-title em { color: var(--sage); }

.hero-desc {
  font-size: 17px;
  color: var(--text-mid);
  margin-bottom: 40px;
  font-weight: 300;
  line-height: 1.7;
}

.hero-meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 48px;
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.hero-meta-item {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.meta-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  width: 64px;
  flex-shrink: 0;
}

.meta-val {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--text);
}

/* HERO RIGHT — photo with block behind + card on top */
.hero-right {
  position: relative;
  background: var(--sage-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 60px;
}

.hero-img-frame {
  position: relative;
  width: 100%;
  max-width: 440px;
}

/* Colored block behind the photo */
.hero-img-frame::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 24px;
  width: 100%;
  height: 100%;
  background: var(--terracotta);
  z-index: 0;
}

.hero-img-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center 15%;
  display: block;
}

/* Text card floating on top of photo */
.hero-img-card {
  position: absolute;
  bottom: -24px;
  left: -32px;
  z-index: 3;
  background: var(--white);
  padding: 20px 24px;
  border-left: 3px solid var(--sage);
  min-width: 180px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
}

.hero-img-card .card-label {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  display: block;
  margin-bottom: 6px;
}

.hero-img-card .card-val {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--text);
  line-height: 1.2;
}

/* ===== STATEMENT ===== */
.statement {
  background: var(--cream);
  padding: 96px 0;
  text-align: center;
}
.statement-inner { max-width: 780px; margin: 0 auto; padding: 0 40px; }

.statement-text {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3.5vw, 32px);
  font-style: italic;
  line-height: 1.5;
  color: var(--text);
  font-weight: 400;
  margin-bottom: 32px;
}

.statement-divider {
  width: 48px;
  height: 2px;
  background: var(--sage);
  margin: 0 auto 32px;
}

.statement-sub {
  font-size: 15px;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.8;
  max-width: 560px;
  margin: 0 auto;
}

/* ===== WHAT WE OFFER ===== */
.offers {
  padding: 120px 0;
  background: var(--white);
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.offer-item {
  padding: 40px 36px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background .2s;
}

.offer-item:hover { background: var(--sage-pale); }

.offer-icon {
  font-size: 24px;
  margin-bottom: 20px;
  display: block;
}

.offer-item h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 12px;
  line-height: 1.25;
}

.offer-item p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.75;
  font-weight: 300;
}

/* ===== GALLERY ===== */
.gallery {
  padding: 0;
  overflow: hidden;
  background: var(--cream);
  position: relative;
}

.gallery-track {
  display: flex;
  gap: 0;
  transition: transform .45s cubic-bezier(.4,0,.2,1);
}

.gallery-item {
  flex: 0 0 calc(100% / 3);
  aspect-ratio: 3/4;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.04); }

.gallery-controls {
  position: absolute;
  bottom: 24px;
  right: 32px;
  display: flex;
  gap: 8px;
}

.gal-btn {
  width: 44px;
  height: 44px;
  background: var(--white);
  color: var(--text);
  border: 1px solid var(--border);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.gal-btn:hover { background: var(--text); color: #fff; }

/* ===== STATS ===== */
.stats {
  background: var(--text);
  padding: 80px 0;
}

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

.stat-item {
  padding: 40px 32px;
  border-right: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}
.stat-item:last-child { border-right: none; }

.stat-num {
  font-family: var(--font-serif);
  font-size: clamp(44px, 5vw, 64px);
  font-weight: 500;
  color: var(--mustard);
  line-height: 1;
  margin-bottom: 12px;
}

.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  font-weight: 300;
  line-height: 1.5;
}

/* ===== GUIDE ===== */
.guide {
  padding: 120px 0;
  background: var(--white);
}

.guide-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

/* Photo with block behind + badge on top */
.guide-img-wrap {
  position: relative;
}

.guide-img-wrap::before {
  content: '';
  position: absolute;
  bottom: 24px;
  right: 24px;
  width: 100%;
  height: 100%;
  background: var(--must-pale);
  border: 2px solid var(--mustard);
  z-index: 0;
}

.guide-img-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

/* Badge card on top of photo */
.guide-img-badge {
  position: absolute;
  top: 24px;
  right: -20px;
  z-index: 3;
  background: var(--sage);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 18px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
}

.guide-text { padding-left: 20px; }
.guide-text h2 { font-size: clamp(40px, 5vw, 60px); margin-bottom: 8px; }
.guide-text .guide-cred {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--terracotta);
  display: block;
  margin-bottom: 32px;
}
.guide-text p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 20px;
  font-weight: 300;
}
.guide-text em { color: var(--sage); font-style: italic; font-family: var(--font-serif); }

blockquote {
  font-size: 22px;
  font-style: italic;
  font-weight: 400;
  color: var(--text);
  padding: 24px 0 24px 24px;
  border-left: 3px solid var(--mustard);
  margin: 28px 0 36px;
  line-height: 1.4;
}

/* ===== PRICING ===== */
.pricing {
  padding: 120px 0;
  background: var(--cream);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto 40px;
}

.price-card {
  background: var(--white);
  padding: 52px 44px;
  border: 1px solid var(--border);
  position: relative;
}

.price-card.featured {
  background: var(--text);
  border-color: var(--text);
  color: #fff;
}

.price-tag {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--mustard);
  color: var(--text);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 12px;
}

.price-card h3 {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 20px;
  color: inherit;
}

.price-big {
  font-family: var(--font-serif);
  font-size: 72px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 20px;
  color: var(--mustard);
}
.price-big.secondary { color: var(--terracotta); }

.price-card > p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 28px;
  line-height: 1.7;
  font-weight: 300;
}
.price-card:not(.featured) > p { color: var(--text-mid); }

.price-list {
  list-style: none;
  margin-bottom: 36px;
}
.price-list li {
  font-size: 13px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.75);
  font-weight: 300;
}
.price-list li::before { content: '→  '; color: var(--mustard); }
.price-card:not(.featured) .price-list li { border-color: var(--border); color: var(--text-mid); }

.pricing-note {
  text-align: center;
  font-size: 13px;
  color: var(--text-light);
  letter-spacing: 0.5px;
  max-width: 900px;
  margin: 0 auto;
}

/* ===== CTA FINAL ===== */
.cta-final {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.cta-img-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cta-img-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.cta-img-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(30, 30, 30, 0.62);
}

.cta-overlay {
  position: relative;
  z-index: 1;
  width: 100%;
}

.cta-content {
  text-align: center;
  color: #fff;
}

.cta-content h2 {
  font-size: clamp(36px, 5vw, 60px);
  margin-bottom: 20px;
  color: #fff;
  font-weight: 500;
}
.cta-content h2 em { color: var(--mustard); }

.cta-content p {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 40px;
  font-weight: 300;
  line-height: 1.7;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--cream);
  border-top: 1px solid var(--border);
  padding: 48px 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.footer-brand strong {
  font-family: var(--font-serif);
  font-size: 18px;
  display: block;
  margin-bottom: 6px;
}
.footer-brand p, .footer-info p {
  font-size: 13px;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.7;
}
.footer-info { text-align: center; }
.footer-contact { text-align: right; }
.footer-contact a {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--sage);
  text-decoration: none;
  border-bottom: 1px solid var(--sage);
  padding-bottom: 2px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { max-width: 100%; padding: 80px 40px 60px; margin: 0 auto; text-align: center; }
  .hero-meta { align-items: center; }
  .hero-meta-item { justify-content: center; }
  .hero-right { padding: 40px; }
  .hero-img-frame { max-width: 340px; margin: 0 auto; }

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

  .guide-inner { grid-template-columns: 1fr; gap: 60px; }
  .guide-img-wrap { max-width: 480px; margin: 0 auto; }
  .guide-text { padding-left: 0; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }

  .footer-inner { grid-template-columns: 1fr; text-align: center; gap: 20px; }
  .footer-contact { text-align: center; }
}

@media (max-width: 640px) {
  .offers-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .gallery-item { flex: 0 0 100%; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-img-frame::before { top: 12px; left: 12px; }
  .guide-img-wrap::before { bottom: 12px; right: 12px; }
  .container { padding: 0 20px; }
  .hero-left { padding: 80px 20px 48px; }
}
