/* ---------- Design tokens ---------- */
:root{
  --gold: #c9a15a;
  --gold-dark: #a97f37;
  --gold-light: #e4c98a;
  --ink: #1c1712;
  --charcoal: #211b15;
  --cream: #faf6ef;
  --cream-soft: #f2ead9;
  --text-dark: #2a2420;
  --text-muted: #6b6055;
  --white: #ffffff;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(28, 23, 18, 0.10);
  --shadow-lg: 0 20px 50px rgba(28, 23, 18, 0.18);
  --font-head: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  --header-h: 84px;
}

@media (prefers-color-scheme: dark){
  :root{
    --cream: #17130f;
    --cream-soft: #1f1a14;
    --text-dark: #f1e9db;
    --text-muted: #b9ab97;
    --shadow: 0 10px 30px rgba(0,0,0,0.35);
    --shadow-lg: 0 20px 50px rgba(0,0,0,0.5);
  }
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
}
img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
h1, h2, h3, h4{ font-family: var(--font-head); font-weight: 700; color: var(--ink); margin: 0 0 .5em; line-height: 1.2; }
@media (prefers-color-scheme: dark){
  h1, h2, h3, h4{ color: var(--gold-light); }
}
p{ margin: 0 0 1em; color: var(--text-muted); }
.container{ width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.skip-link{
  position: absolute; left: -999px; top: 0; background: var(--gold); color: var(--ink);
  padding: 10px 16px; z-index: 1000; border-radius: 0 0 8px 0;
}
.skip-link:focus{ left: 0; }

/* ---------- Buttons ---------- */
.btn{
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; border-radius: 999px; font-weight: 700;
  font-size: 0.95rem; border: 2px solid transparent; cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  white-space: nowrap;
}
.btn:hover{ transform: translateY(-2px); }
.btn-gold{ background: linear-gradient(135deg, var(--gold-dark), var(--gold-dark)); color: var(--ink); box-shadow: var(--shadow); }
.btn-gold:hover{ box-shadow: var(--shadow-lg); }
.btn-outline-gold{ background: transparent; border-color: var(--gold); color: var(--gold-dark); }
.btn-outline-gold:hover{ background: var(--gold); color: var(--ink); }
@media (prefers-color-scheme: dark){
  .btn-outline-gold{ color: var(--gold-light); }
}
.btn-sm{ padding: 10px 20px; font-size: 0.85rem; }
.btn-lg{ padding: 16px 34px; font-size: 1.05rem; }

.eyebrow{
  text-transform: uppercase; letter-spacing: 2.5px; font-size: 0.8rem;
  color: var(--gold-dark); font-weight: 700; margin-bottom: 10px;
}

/* ---------- Reveal animation ---------- */
.reveal{ opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible{ opacity: 1; transform: translateY(0); }

/* ---------- Header ---------- */
.site-header{
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  height: var(--header-h);
  background: rgba(250, 246, 239, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201,161,90,0.25);
  transition: box-shadow .3s ease, background .3s ease;
}
@media (prefers-color-scheme: dark){
  .site-header{ background: rgba(23, 19, 15, 0.9); }
}
.site-header.is-scrolled{ box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.header-inner{
  height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.brand{ display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand-logo{ width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.brand-name{ font-family: var(--font-head); font-size: 1.25rem; font-weight: 700; color: var(--ink); }
@media (prefers-color-scheme: dark){ .brand-name{ color: var(--gold-light); } }
.brand-name em{ font-style: normal; color: var(--gold-dark); }

.main-nav ul{ display: flex; gap: 34px; list-style: none; margin: 0; padding: 0; }
.main-nav a{
  font-weight: 600; font-size: 0.95rem; color: var(--text-dark); position: relative; padding: 6px 0;
}
.main-nav a::after{
  content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 2px; background: var(--gold);
  transition: width .25s ease;
}
.main-nav a:hover::after{ width: 100%; }

.header-actions{ display: flex; align-items: center; gap: 16px; }
.header-call span{ display: inline; }

.nav-toggle{
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 36px; height: 36px; border: none; background: transparent; cursor: pointer; padding: 0;
}
.nav-toggle span{ width: 100%; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s ease, opacity .3s ease; }
@media (prefers-color-scheme: dark){ .nav-toggle span{ background: var(--gold-light); } }
.nav-toggle.is-open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2){ opacity: 0; }
.nav-toggle.is-open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero{
  position: relative; min-height: 100vh; display: flex; align-items: center;
  overflow: hidden; color: var(--white);
}
.hero-slide{
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.2s ease;
}
.hero-slide.is-active{ opacity: 1; }
.hero-overlay{
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(28,23,18,0.75) 20%, rgba(28,23,18,0.35) 70%);
}
.hero-content{ position: relative; z-index: 2; padding-top: var(--header-h); max-width: 640px; text-align: center; margin: 0 auto; }
.hero-content .eyebrow{ color: var(--gold-light); }
.hero-content h1{ color: var(--white); font-size: clamp(2.2rem, 5vw, 3.6rem); margin-bottom: 28px; }
.hero-dots{ position: absolute; right: 32px; bottom: 40px; z-index: 2; display: flex; flex-direction: column; gap: 10px; }
.hero-dots button{
  width: 10px; height: 10px; border-radius: 50%; border: 2px solid var(--gold-light);
  background: transparent; cursor: pointer; padding: 0;
}
.hero-dots button.is-active{ background: var(--gold-light); }

/* ---------- Section shells ---------- */
section{ padding: 100px 0; }
.section-head{ text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-intro{ margin-top: 6px; }

/* ---------- About ---------- */
.about-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-gallery{ position: relative; }
.about-main-img{ border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.about-sub-imgs{ display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 16px; }
.about-sub-imgs img{ border-radius: 12px; box-shadow: var(--shadow); aspect-ratio: 4/3; object-fit: cover; }
.about-copy h2{ font-size: clamp(1.8rem, 3vw, 2.4rem); }

/* ---------- Services ---------- */
.services{ background: var(--cream-soft); }
.services-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.service-card{
  background: var(--cream); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow);
  transition: transform .3s ease, box-shadow .3s ease;
}
.service-card:hover{ transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-img{ border-radius: 12px; overflow: hidden; aspect-ratio: 4/3; margin-bottom: 18px; }
.service-img img{ width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.service-card:hover .service-img img{ transform: scale(1.08); }
.service-card h3{ font-size: 1.25rem; }
.service-card p{ font-size: 0.92rem; min-height: 4.4em; }

/* ---------- Stats ---------- */
.stats{ background: var(--ink); color: var(--white); text-align: center; }
.stats h2{ color: var(--gold-light); }
.stats-grid{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-top: 40px; }
.stat-number{ font-family: var(--font-head); font-size: 3rem; font-weight: 700; color: var(--gold-light); }
.stat-suffix{ font-family: var(--font-head); font-size: 3rem; font-weight: 700; color: var(--gold-light); }
.stat p{ text-transform: uppercase; letter-spacing: 1.5px; font-size: 0.85rem; color: #d8cdbb; margin-top: 6px; }

/* ---------- Why us ---------- */
.why-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.why-card{ border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: var(--cream); transition: transform .3s ease, box-shadow .3s ease; }
.why-card:hover{ transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.why-card img{ aspect-ratio: 3/2; object-fit: cover; }
.why-card h3, .why-card p{ padding: 0 22px; }
.why-card h3{ margin-top: 20px; }
.why-card p{ padding-bottom: 22px; font-size: 0.92rem; }

/* ---------- CTA band ---------- */
.cta-band{
  background: linear-gradient(120deg, var(--charcoal), var(--ink));
  padding: 70px 0;
}
.cta-band-inner{ display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.cta-band-inner h2{ color: var(--white); margin: 0; font-size: clamp(1.5rem, 3vw, 2.1rem); }

/* ---------- Contact ---------- */
.contact-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-item{ display: flex; gap: 18px; margin-bottom: 28px; }
.contact-icon{
  width: 52px; height: 52px; border-radius: 50%; background: var(--gold); color: var(--ink);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.1rem;
}
.contact-item h3{ font-size: 1.05rem; margin-bottom: 4px; }
.contact-item p{ margin: 0; }

.contact-form-wrap{ background: var(--cream-soft); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow); }
.appointment-form{ display: flex; flex-direction: column; gap: 6px; }
.appointment-form label{ font-weight: 600; font-size: 0.9rem; margin-top: 12px; color: var(--text-dark); }
.appointment-form label span{ color: var(--gold-dark); }
.appointment-form input, .appointment-form select{
  padding: 12px 16px; border-radius: 10px; border: 1px solid rgba(0,0,0,0.15);
  background: var(--cream); font-family: var(--font-body); font-size: 0.95rem; color: var(--text-dark);
}
.appointment-form input:focus, .appointment-form select:focus{ outline: 2px solid var(--gold); }
.appointment-form button{ margin-top: 22px; align-self: flex-start; }

/* ---------- Map ---------- */
.map-section h2{ text-align: center; margin-bottom: 32px; }
.map-embed{ border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.map-embed iframe{ width: 100%; height: 420px; border: 0; display: block; }

/* ---------- Footer ---------- */
.site-footer{ background: var(--ink); color: #cfc3ae; padding: 70px 0 0; }
.footer-grid{ display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; }
.footer-logo{ width: 56px; height: 56px; border-radius: 50%; margin-bottom: 16px; }
.footer-col h3, .footer-col h4{ color: var(--gold-light); }
.footer-col h4{ font-size: 1.05rem; text-transform: uppercase; letter-spacing: 1px; }
.footer-about p{ color: #b3a690; font-size: 0.9rem; }
.footer-col ul{ list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li{ font-size: 0.9rem; color: #b3a690; display: flex; align-items: flex-start; gap: 8px; }
.footer-col ul a{ color: #b3a690; transition: color .2s ease; }
.footer-col ul a:hover{ color: var(--gold-light); }
.footer-col ul li i{ margin-top: 4px; color: var(--gold); }
.footer-bottom{
  border-top: 1px solid rgba(255,255,255,0.08); padding: 22px 24px; text-align: center; font-size: 0.85rem;
}
.footer-bottom a{ color: var(--gold-light); font-weight: 600; }
.footer-bottom i{ color: #e0455c; }

/* ---------- Floating action buttons ---------- */
.fab{
  position: fixed; z-index: 600; width: 58px; height: 58px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
  box-shadow: var(--shadow-lg); color: var(--white); transition: transform .25s ease;
}
.fab:hover{ transform: scale(1.08); }
.fab-whatsapp{ background: #25d366; right: 24px; bottom: 24px; }
.fab-call{ background: var(--gold-dark); right: 24px; bottom: 96px; }

/* ---------- Responsive ---------- */
@media (max-width: 992px){
  .about-grid, .contact-grid{ grid-template-columns: 1fr; }
  .services-grid{ grid-template-columns: repeat(2, 1fr); }
  .why-grid{ grid-template-columns: 1fr 1fr; }
  .stats-grid{ grid-template-columns: repeat(2, 1fr); }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px){
  section{ padding: 70px 0; }
  .main-nav{
    position: fixed; top: var(--header-h); left: 0; right: 0; bottom: 0;
    background: var(--cream); transform: translateX(100%); transition: transform .3s ease;
    padding: 30px 24px; overflow-y: auto;
  }
  .main-nav.is-open{ transform: translateX(0); height: 100vh; }
  .main-nav ul{ flex-direction: column; gap: 20px; }
  .main-nav a{ font-size: 1.1rem; }
  .nav-toggle{ display: flex; }
  .header-call span{ display: none; }
  .header-call{ padding: 12px; }
  .header-call i{ margin: 0; }

  .services-grid{ grid-template-columns: 1fr; }
  .why-grid{ grid-template-columns: 1fr; }
  .stats-grid{ grid-template-columns: 1fr 1fr; }
  .footer-grid{ grid-template-columns: 1fr; }
  .cta-band-inner{ flex-direction: column; align-items: flex-start; }
  .fab{ width: 50px; height: 50px; font-size: 1.3rem; }
  .fab-whatsapp{ right: 16px; bottom: 16px; }
  .fab-call{ right: 16px; bottom: 78px; }
}
