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

:root {
  --pink:       #D4868A;
  --pink-light: #F5E0E1;
  --teal:       #4DBFB4;
  --teal-dark:  #3AA99E;
  --sand:       #F7F0E4;
  --sand-dark:  #EFE5D0;
  --white:      #FEFCF9;
  --dark:       #2A2523;
  --mid:        #5C524D;
  --light:      #9C8F88;
  --radius:     12px;
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
  --max-w:      1180px;
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', sans-serif; color: var(--dark); background: var(--white); overflow-x: hidden; }
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; font-weight: 500; line-height: 1.2; }
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 3rem;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
nav.scrolled {
  background: rgba(254,252,249,0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  padding: 0.85rem 3rem;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
nav.solid {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  padding: 0.85rem 3rem;
}
.nav-logo { display: flex; flex-direction: column; text-decoration: none; flex-shrink: 0; }
.nav-logo .logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 700; letter-spacing: 0.02em;
  color: var(--white); transition: color var(--transition);
  white-space: nowrap;
}
.nav-logo .logo-sub {
  font-size: 0.68rem; font-weight: 300; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255,255,255,0.7);
  transition: color var(--transition);
  white-space: nowrap;
}
nav.scrolled .logo-name,
nav.solid    .logo-name { color: var(--dark); }
nav.scrolled .logo-sub,
nav.solid    .logo-sub  { color: var(--light); }

.nav-links { display: flex; gap: 0.25rem; list-style: none; align-items: center; flex-shrink: 0; }
.nav-links a {
  text-decoration: none; font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.88); padding: 0.4rem 0.7rem; border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}
nav.scrolled .nav-links a,
nav.solid    .nav-links a { color: var(--mid); }
.nav-links a:not(.nav-cta):hover { color: var(--teal) !important; }
.nav-links a.active:not(.nav-cta) { color: var(--teal) !important; }
.nav-cta {
  background: var(--teal) !important; color: white !important;
  padding: 0.5rem 1.25rem !important; border-radius: 50px !important;
  margin-left: 0.5rem;
  transition: background var(--transition), transform var(--transition) !important;
  box-shadow: 0 3px 12px rgba(77,191,180,0.35);
}
.nav-cta:hover { background: var(--teal-dark) !important; color: white !important; transform: translateY(-1px); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; z-index: 101; }
.nav-toggle span {
  display: block; width: 24px; height: 2px; margin: 5px 0;
  background: white; border-radius: 2px; transition: background var(--transition);
}
nav.scrolled .nav-toggle span,
nav.solid    .nav-toggle span { background: var(--dark); }

/* ── PAGE HERO (interior pages) ── */
.page-hero {
  position: relative; height: 60vh; min-height: 380px;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(30,20,15,0.75) 0%, rgba(30,20,15,0.2) 60%);
}
.page-hero-content {
  position: relative; padding: 3.5rem 3rem;
  max-width: var(--max-w); margin: 0 auto; width: 100%;
}
.page-hero-content h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem); color: white;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.page-hero-content p {
  font-size: 1.05rem; color: rgba(255,255,255,0.8);
  margin-top: 0.75rem; max-width: 560px; line-height: 1.65;
}

/* ── BREADCRUMB ── */
.breadcrumb {
  background: var(--sand); padding: 0.85rem 3rem;
  font-size: 0.78rem; color: var(--light);
  max-width: 100%;
}
.breadcrumb a { color: var(--mid); text-decoration: none; }
.breadcrumb a:hover { color: var(--teal); }
.breadcrumb span { margin: 0 0.5rem; }

/* ── SECTIONS ── */
section { padding: 5.5rem 2rem; }
.container { max-width: var(--max-w); margin: 0 auto; }
.section-label {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--teal); display: block; margin-bottom: 0.6rem;
}
.section-title { font-size: clamp(1.9rem, 3.5vw, 2.8rem); color: var(--dark); margin-bottom: 1rem; }
.section-subtitle { font-size: 1rem; color: var(--mid); line-height: 1.75; max-width: 580px; }
.section-header { margin-bottom: 3rem; }
.section-header.centered { text-align: center; }
.section-header.centered .section-subtitle { margin: 0 auto; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block; text-decoration: none;
  background: var(--teal); color: white;
  padding: 0.85rem 2.2rem; border-radius: 50px;
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 20px rgba(77,191,180,0.35);
}
.btn-primary:hover { background: var(--teal-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(77,191,180,0.45); }
.btn-outline {
  display: inline-block; text-decoration: none;
  background: transparent; color: var(--dark);
  padding: 0.85rem 2.2rem; border-radius: 50px;
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  border: 2px solid var(--sand-dark);
  transition: all var(--transition);
}
.btn-outline:hover { border-color: var(--teal); color: var(--teal); transform: translateY(-2px); }
.btn-outline.white {
  color: white; border-color: rgba(255,255,255,0.6);
}
.btn-outline.white:hover { border-color: white; background: rgba(255,255,255,0.12); }
.btn-group { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }

/* ── CARDS ── */
.card {
  background: var(--sand); border-radius: 20px; overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--sand-dark);
}
.card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(0,0,0,0.1); }
.card-img { overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.card:hover .card-img img { transform: scale(1.04); }
.card-body { padding: 1.75rem; }
.card-body h3 { font-size: 1.4rem; margin-bottom: 0.6rem; color: var(--dark); }
.card-body p { font-size: 0.93rem; line-height: 1.75; color: var(--mid); }

/* ── TAGS ── */
.tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.25rem; }
.tag {
  background: white; border: 1px solid var(--sand-dark);
  padding: 0.28rem 0.85rem; border-radius: 50px;
  font-size: 0.78rem; color: var(--mid); font-weight: 500;
}
.tag.teal { background: rgba(77,191,180,0.1); border-color: rgba(77,191,180,0.25); color: var(--teal-dark); }

/* ── CHECKLIST ── */
.checklist { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.checklist li {
  display: flex; align-items: flex-start; gap: 0.65rem;
  font-size: 0.93rem; color: var(--mid); line-height: 1.5;
}
.checklist li svg { color: var(--teal); flex-shrink: 0; margin-top: 2px; }

/* ── TWO-COL GRID ── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 4.5rem; align-items: center; }
.three-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.four-col { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.auto-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.5rem; }

/* ── STATS BAR ── */
.stats-bar {
  background: var(--dark);
  display: flex; justify-content: center; flex-wrap: wrap;
}
.stat {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 1.4rem 2.5rem; color: white;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat:last-child { border-right: none; }
.stat-icon { color: var(--teal); flex-shrink: 0; }
.stat-value { font-family: 'Playfair Display', serif; font-size: 1.4rem; line-height: 1; display: block; }
.stat-label { font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-top: 2px; display: block; }

/* ── GALLERY GRID ── */
.gallery-grid { columns: 4; column-gap: 0.75rem; }
.gallery-item {
  break-inside: avoid; margin-bottom: 0.75rem;
  border-radius: var(--radius); overflow: hidden;
  cursor: pointer; position: relative;
}
.gallery-item img { width: 100%; display: block; transition: transform 0.5s ease; }
.gallery-item::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(42,37,35,0); transition: background 0.3s ease; border-radius: var(--radius);
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item:hover::after { background: rgba(42,37,35,0.15); }

/* ── LIGHTBOX ── */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(20,15,12,0.96);
  display: none; align-items: center; justify-content: center;
  padding: 2rem; backdrop-filter: blur(4px);
}
.lightbox.open { display: flex; }
.lightbox-inner {
  position: relative; max-width: 1100px; width: 100%;
  display: flex; align-items: center; justify-content: center;
}
.lightbox img { max-width: 100%; max-height: 85vh; max-height: 85svh; border-radius: var(--radius); object-fit: contain; box-shadow: 0 25px 80px rgba(0,0,0,0.6); }
.lb-btn {
  position: absolute; background: rgba(255,255,255,0.12); border: none; cursor: pointer;
  border-radius: 50%; width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  color: white; transition: background var(--transition);
}
.lb-close { top: -3.5rem; right: 0; }
.lb-prev  { left: -3.5rem; }
.lb-next  { right: -3.5rem; }
.lb-btn:hover { background: rgba(255,255,255,0.25); }
.lb-counter { position: absolute; bottom: -2.5rem; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.45); font-size: 0.78rem; }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--sand-dark); }
.faq-question {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.5rem 0; text-align: left; gap: 1rem;
}
.faq-question h3 {
  font-family: 'Inter', sans-serif; font-size: 1.25rem; font-weight: 600;
  color: var(--dark); line-height: 1.4;
}
.faq-icon {
  width: 32px; height: 32px; border-radius: 50%; background: var(--sand);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--teal); transition: transform var(--transition), background var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--teal); color: white; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; }
.faq-answer.open { max-height: 500px; padding-bottom: 1.5rem; }
.faq-answer p { font-size: 0.95rem; line-height: 1.8; color: var(--mid); }

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--dark); position: relative; overflow: hidden;
  text-align: center; padding: 6rem 2rem;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background-size: cover; background-position: center; opacity: 0.12;
}
.cta-banner-inner { position: relative; max-width: 640px; margin: 0 auto; }
.cta-banner h2 { font-size: clamp(2rem, 4vw, 3rem); color: white; margin-bottom: 1rem; }
.cta-banner p { color: rgba(255,255,255,0.65); font-size: 1rem; line-height: 1.7; margin-bottom: 2.5rem; }

/* ── FOOTER ── */
footer {
  background: #1E1917; color: rgba(255,255,255,0.4);
  padding: 3rem;
}
.footer-grid {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
  padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem; color: rgba(255,255,255,0.85); font-weight: 500; display: block; margin-bottom: 0.75rem;
}
.footer-brand p { font-size: 0.85rem; line-height: 1.7; }
.footer-col h4 { font-family: 'Inter', sans-serif; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul a { text-decoration: none; font-size: 0.87rem; color: rgba(255,255,255,0.4); transition: color var(--transition); }
.footer-col ul a:hover { color: var(--teal); }
.footer-bottom {
  max-width: var(--max-w); margin: 0 auto;
  padding-top: 1.5rem; font-size: 0.8rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.75rem;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .four-col { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { columns: 3; }
}
@media (max-width: 860px) {
  nav { padding: 1rem 1.5rem; }
  nav.scrolled, nav.solid { padding: 0.75rem 1.5rem; }
  .nav-links {
    display: none; position: fixed; inset: 0;
    background: var(--white); flex-direction: column; align-items: center;
    justify-content: center; gap: 1.5rem; z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links a { color: var(--dark) !important; font-size: 1.1rem; padding: 0.5rem 1rem; }
  .nav-cta { padding: 0.7rem 2rem !important; }
  .nav-toggle { display: block; }
  .two-col, .three-col { grid-template-columns: 1fr; gap: 2.5rem; }
  .page-hero-content { padding: 2rem 1.5rem; }
  .breadcrumb { padding: 0.75rem 1.5rem; }
  .gallery-grid { columns: 2; }
  .lb-prev { left: -2.5rem; }
  .lb-next { right: -2.5rem; }
}
@media (max-width: 600px) {
  section { padding: 3.5rem 1.25rem; }
  .stats-bar { flex-direction: column; }
  .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); justify-content: center; }
  .gallery-grid { columns: 1; }
  .lb-prev, .lb-next { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
