@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,700;1,400;1,500&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --white:   #FFFFFF;
  --off:     #F8F6F3;
  --light:   #EFE9E1;
  --border:  #E2D9CF;
  --mid:     #8A7D72;
  --dark:    #1E1612;
  --brown:   #8B6345;
  --gold:    #C49A3C;
  --warm:    #F5EFE6;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--dark);
  line-height: 1.65;
  font-weight: 400;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.75rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s, box-shadow 0.4s, padding 0.4s;
}
nav.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 1px 0 var(--border);
  backdrop-filter: blur(10px);
  padding: 1.1rem 3rem;
}
nav .logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s;
}
nav.scrolled .logo { color: var(--dark); }

nav ul {
  list-style: none;
  display: flex;
  gap: 2.75rem;
}
nav ul a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
}
nav ul a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0; right: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s;
}
nav ul a:hover::after, nav ul a.active::after { transform: scaleX(1); }
nav ul a:hover, nav ul a.active { color: var(--white); }
nav.scrolled ul a { color: var(--mid); }
nav.scrolled ul a:hover, nav.scrolled ul a.active { color: var(--dark); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.3s;
}
nav.scrolled .hamburger span { background: var(--dark); }

/* ─── HERO ─── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  background: no-repeat center center / cover;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 0 3rem 5rem;
}
.hero > img { display: none; }
.hero-content {
  position: relative;
  z-index: 1;
  color: white;
  max-width: 680px;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15,10,5,0.7) 0%,
    rgba(15,10,5,0.15) 55%,
    rgba(15,10,5,0.05) 100%
  );
}
.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 1rem;
  display: block;
}
.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}
.hero-content p {
  font-size: 1.05rem;
  font-weight: 300;
  opacity: 0.88;
  max-width: 440px;
  line-height: 1.7;
  margin-bottom: 2.25rem;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.availability-signal {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.availability-signal::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  flex-shrink: 0;
  animation: availability-pulse 2.5s ease-in-out infinite;
}
@keyframes availability-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.7);
  color: white;
  transition: all 0.25s;
  background: transparent;
  cursor: pointer;
}
.btn:hover {
  background: white;
  color: var(--dark);
  border-color: white;
}
.btn-solid {
  background: var(--brown);
  border-color: var(--brown);
  color: white;
}
.btn-solid:hover {
  background: var(--dark);
  border-color: var(--dark);
  color: white;
}
.btn-dark {
  background: var(--dark);
  border-color: var(--dark);
  color: white;
}
.btn-dark:hover {
  background: var(--brown);
  border-color: var(--brown);
}

/* ─── PAGE HERO ─── */
.page-hero {
  height: 70vh;
  min-height: 480px;
  background: no-repeat center center / cover;
  display: flex;
  align-items: flex-end;
  padding: 0 3rem 4rem;
  position: relative;
}
.page-hero > img { display: none; }
.page-hero-content {
  position: relative;
  z-index: 1;
  color: white;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,10,5,0.65) 0%, rgba(15,10,5,0.1) 60%);
}
.page-hero-content .eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 0.75rem;
  display: block;
}
.page-hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

/* ─── SECTIONS ─── */
section { padding: 6rem 3rem; }

.section-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 1rem;
  display: block;
}
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 500;
  color: var(--dark);
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.section-header p {
  margin-top: 1.1rem;
  color: var(--mid);
  font-size: 1rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
  font-weight: 300;
}

/* ─── ABOUT STRIP ─── */
.about-strip {
  background: var(--off);
  padding: 6rem 3rem;
}
.about-inner {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}
.about-text p {
  color: var(--mid);
  font-size: 0.98rem;
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 1rem;
}
.about-text p:last-of-type { margin-bottom: 1.75rem; }
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.about-stat {
  background: var(--white);
  padding: 1.75rem 1.5rem;
  text-align: center;
}
.about-stat .num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--brown);
  line-height: 1;
  display: block;
}
.about-stat .lbl {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
  margin-top: 0.35rem;
  display: block;
}

/* ─── FEATURES ─── */
.features { background: var(--white); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  border: 1px solid var(--border);
}
.feature-card {
  padding: 2.75rem 2rem;
  border-right: 1px solid var(--border);
  transition: background 0.25s;
}
.feature-card:last-child { border-right: none; }
.feature-card:hover { background: var(--off); }
.feature-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--light);
  line-height: 1;
  margin-bottom: 1.25rem;
}
.feature-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  color: var(--dark);
}
.feature-card p {
  color: var(--mid);
  font-size: 0.9rem;
  line-height: 1.75;
  font-weight: 300;
}

/* ─── TESTIMONIALS ─── */
.testimonials {
  background: var(--warm);
  padding: 6rem 3rem;
}
.testimonials-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 4rem;
  align-items: center;
}
.testimonial-divider {
  width: 1px;
  height: 100px;
  background: var(--border);
}
.testimonial-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  color: var(--dark);
  margin-bottom: 1.25rem;
}
.testimonial-author {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brown);
}
@media (max-width: 768px) {
  .testimonials-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .testimonial-divider {
    width: 60px;
    height: 1px;
  }
}

/* ─── HOME GALLERY TEASER ─── */
.gallery-teaser { background: var(--white); padding: 0 0 6rem; }
.gallery-teaser .section-header { padding-top: 6rem; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
.gallery-item {
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.7s ease, filter 0.4s;
  display: block;
}
.gallery-item:hover img {
  transform: scale(1.05);
  filter: brightness(0.88);
}
.gallery-teaser-cta {
  text-align: center;
  margin-top: 3rem;
  padding: 0 3rem;
}

/* ─── CTA BAND ─── */
.cta-band {
  background: var(--dark);
  color: white;
  text-align: center;
  padding: 7rem 3rem;
  position: relative;
}
.cta-band h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 500;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}
.cta-band p {
  opacity: 0.65;
  margin-bottom: 2.5rem;
  font-size: 0.98rem;
  font-weight: 300;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ─── PORTFOLIO ─── */
.full-gallery {
  padding: 5rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}
.masonry-grid {
  columns: 3;
  column-gap: 4px;
}
.masonry-item {
  break-inside: avoid;
  margin-bottom: 4px;
  overflow: hidden;
  cursor: pointer;
}
.masonry-item img {
  width: 100%;
  display: block;
  transition: transform 0.6s ease, filter 0.35s;
}
.masonry-item:hover img {
  transform: scale(1.04);
  filter: brightness(0.85);
}

/* ─── LIGHTBOX ─── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.96);
  align-items: center;
  justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox-img-wrap {
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  display: block;
}
.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  color: white;
  font-size: 1.75rem;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.2s;
  background: none;
  border: none;
  line-height: 1;
  font-family: sans-serif;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-size: 1.25rem;
  cursor: pointer;
  background: none;
  border: none;
  padding: 1rem;
  opacity: 0.5;
  transition: opacity 0.2s;
}
.lightbox-nav:hover { opacity: 1; }
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }
.lightbox-counter {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
}

/* ─── PRICING ─── */
.pricing-section { background: var(--white); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 960px;
  margin: 0 auto;
  border: 1px solid var(--border);
}
.pricing-card {
  padding: 3rem 2.25rem;
  text-align: center;
  border-right: 1px solid var(--border);
  position: relative;
  transition: background 0.25s;
  display: flex;
  flex-direction: column;
}
.pricing-card .btn {
  margin-top: auto;
}
.pricing-card:last-child { border-right: none; }
.pricing-card:hover { background: var(--off); }
.pricing-card.featured {
  background: var(--dark);
  color: white;
}
.pricing-card.featured:hover { background: var(--brown); }
.pricing-badge {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
}
.pricing-duration {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 1.5rem;
}
.pricing-card.featured .pricing-duration { color: rgba(255,255,255,0.55); }
.pricing-price {
  font-family: 'Playfair Display', serif;
  font-size: 4.5rem;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 0.4rem;
  letter-spacing: -0.02em;
}
.pricing-price sup { font-size: 1.75rem; vertical-align: top; margin-top: 0.65rem; display: inline-block; font-weight: 400; }
.pricing-note {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--mid);
  margin-bottom: 2.25rem;
  font-weight: 300;
}
.pricing-card.featured .pricing-note { color: rgba(255,255,255,0.45); }
.pricing-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 2rem;
}
.pricing-card.featured .pricing-divider { background: rgba(255,255,255,0.12); }
.pricing-features {
  list-style: none;
  margin-bottom: 2.5rem;
  text-align: left;
}
.pricing-features li {
  padding: 0.55rem 0;
  font-size: 0.9rem;
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-weight: 300;
  color: var(--mid);
}
.pricing-card.featured .pricing-features li { color: rgba(255,255,255,0.7); }
.pricing-features li::before {
  content: '—';
  color: var(--gold);
  flex-shrink: 0;
  font-weight: 400;
}

/* ─── VALUE BAR ─── */
.value-bar {
  background: var(--off);
  padding: 6rem 3rem;
}
.value-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.value-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}
.value-text p {
  color: var(--mid);
  font-size: 0.97rem;
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 0.9rem;
}
.value-text p:last-child { margin-bottom: 0; }
.value-numbers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.value-num-box {
  background: var(--white);
  padding: 2rem 1.5rem;
  text-align: center;
}
.value-num-box .n {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 400;
  color: var(--brown);
  line-height: 1;
  display: block;
}
.value-num-box .l {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
  margin-top: 0.4rem;
  display: block;
}

/* ─── CONTACT ─── */
.contact-wrap {
  max-width: 1000px;
  margin: 0 auto;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 6rem;
  align-items: start;
}
.contact-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 1.1rem;
  letter-spacing: -0.01em;
}
.contact-info > p {
  color: var(--mid);
  font-size: 0.97rem;
  line-height: 1.85;
  margin-bottom: 2.75rem;
  font-weight: 300;
}
.contact-item {
  margin-bottom: 1.5rem;
}
.contact-item .label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 0.2rem;
  display: block;
}
.contact-item a, .contact-item p {
  font-size: 0.97rem;
  font-weight: 400;
  color: var(--dark);
  text-decoration: none;
  transition: color 0.2s;
}
.contact-item a:hover { color: var(--brown); }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.form-group label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mid);
}
.form-group input,
.form-group textarea,
.form-group select {
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  background: var(--off);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--dark);
  transition: border-color 0.2s, background 0.2s;
  outline: none;
  border-radius: 0;
  -webkit-appearance: none;
  font-weight: 300;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--brown);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 140px; }

/* ─── FOOTER ─── */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.4);
  padding: 4.5rem 3rem 3rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: end;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: white;
  display: block;
  text-decoration: none;
  margin-bottom: 0.6rem;
  letter-spacing: 0.02em;
}
.footer-brand p {
  font-size: 0.85rem;
  font-weight: 300;
  max-width: 280px;
  line-height: 1.7;
}
.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.6rem;
}
.footer-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: rgba(255,255,255,0.9); }
.footer-bottom {
  max-width: 1200px;
  margin: 2.5rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 300;
}
.footer-bottom a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
  letter-spacing: 0.05em;
}
.footer-bottom a:hover { color: rgba(255,255,255,0.8); }

/* ─── BLOG POST ─── */
.blog-post {
  max-width: 720px;
  margin: 0 auto;
  padding: 5rem 2rem 7rem;
}
.blog-post-meta {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 2.5rem;
  display: flex;
  gap: 1.5rem;
}
.blog-post > p {
  color: var(--mid);
  font-size: 1.05rem;
  line-height: 1.9;
  font-weight: 300;
  margin-bottom: 1.25rem;
}
.blog-location {
  display: flex;
  gap: 1rem;
  align-items: baseline;
  margin-top: 4rem;
  margin-bottom: 1rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}
.blog-location:first-of-type {
  border-top: none;
  padding-top: 0;
  margin-top: 3rem;
}
.blog-location-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 400;
  color: var(--light);
  line-height: 1;
  flex-shrink: 0;
}
.blog-location h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--dark);
}
.blog-location-body p {
  color: var(--mid);
  font-size: 1.02rem;
  line-height: 1.9;
  font-weight: 300;
  margin-bottom: 0.75rem;
}
.blog-location-body p:last-child { margin-bottom: 0; }
.blog-tips {
  background: var(--off);
  border-left: 3px solid var(--brown);
  padding: 2rem 2.25rem;
  margin: 4rem 0;
}
.blog-tips h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: var(--dark);
}
.blog-tips ul { list-style: none; }
.blog-tips li {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--mid);
  display: flex;
  gap: 0.65rem;
  padding: 0.4rem 0;
}
.blog-tips li::before { content: '—'; color: var(--brown); flex-shrink: 0; }
.blog-cta {
  background: var(--warm);
  padding: 3rem;
  text-align: center;
  margin-top: 4rem;
}
.blog-cta h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 500;
  margin-bottom: 0.75rem;
  color: var(--dark);
}
.blog-cta p {
  color: var(--mid);
  font-size: 0.97rem;
  font-weight: 300;
  margin-bottom: 1.75rem;
  line-height: 1.7;
}

/* ─── BLOG INDEX ─── */
.blog-index {
  max-width: 900px;
  margin: 0 auto;
  padding: 5rem 2rem 7rem;
}
.blog-card {
  display: grid;
  grid-template-columns: 380px 1fr;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow 0.25s;
}
.blog-card:hover { box-shadow: 0 8px 40px rgba(0,0,0,0.07); }
.blog-card-img {
  overflow: hidden;
  aspect-ratio: 4/3;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-body {
  padding: 2.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.blog-card-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 0.75rem;
  display: block;
}
.blog-card-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 2vw, 1.85rem);
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}
.blog-card-body h2 a {
  color: var(--dark);
  text-decoration: none;
  transition: color 0.2s;
}
.blog-card-body h2 a:hover { color: var(--brown); }
.blog-card-body > p {
  color: var(--mid);
  font-size: 0.95rem;
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .blog-card { grid-template-columns: 1fr; }
  .blog-card-img { aspect-ratio: 16/9; }
  .blog-card-body { padding: 1.75rem; }
  .blog-post { padding: 3.5rem 1.25rem 5rem; }
  .blog-tips { padding: 1.5rem 1.25rem; }
  .blog-cta { padding: 2.25rem 1.5rem; }
  .blog-index { padding: 3.5rem 1.25rem 5rem; }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card { border-bottom: 1px solid var(--border); }
  .feature-card:nth-child(2) { border-right: none; }
  .feature-card:nth-child(3) { border-bottom: none; }
  .feature-card:nth-child(4) { border-right: none; border-bottom: none; }
}
@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; border: none; max-width: 420px; margin: 0 auto; }
  .pricing-card { border-right: none; border: 1px solid var(--border); margin-bottom: -1px; }
  .pricing-card.featured { border-color: transparent; }
  .contact-grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .about-inner, .value-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { align-items: flex-start; flex-direction: row; flex-wrap: wrap; gap: 1.25rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}
@media (max-width: 768px) {
  nav { padding: 1.25rem 1.5rem; }
  nav.scrolled { padding: 0.9rem 1.5rem; }
  nav ul { display: none; }
  nav ul.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--white);
    padding: 1.75rem 1.5rem;
    gap: 1.25rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    border-top: 1px solid var(--border);
  }
  nav ul.open a { color: var(--mid); }
  nav ul.open a:hover, nav ul.open a.active { color: var(--dark); }
  .hamburger { display: flex; }
  .hero { padding: 0 1.5rem 3.5rem; }
  .page-hero { padding: 0 1.5rem 3rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .masonry-grid { columns: 2; }
  section { padding: 4.5rem 1.5rem; }
  .about-strip, .value-bar, .cta-band { padding: 4.5rem 1.5rem; }
}
@media (max-width: 520px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .masonry-grid { columns: 1; }
  section { padding: 3.5rem 1.25rem; }
  .hero-buttons { flex-direction: column; align-items: flex-start; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card { border-right: none !important; border-bottom: 1px solid var(--border) !important; }
  .feature-card:last-child { border-bottom: none !important; }
}
