:root {
  --bg: #f7f3ec;
  --surface: #f1ebe0;
  --ink: #1e2a24;
  --fg: #2b3830;
  --muted: #6b7a6f;
  --border: #dcd4c4;
  --primary: #2f4a3c;
  --primary-fg: #f7f3ec;
  --accent: #b87849;
  --accent-fg: #1e2a24;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--fg);
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4,h5 {
  font-family: 'Fraunces', Georgia, serif;
  letter-spacing: -0.02em;
  color: var(--ink);
}
em, i { font-style: italic; color: var(--primary); }
a { color: inherit; text-decoration: none; }

.container-x { max-width: 1280px; margin: 0 auto; padding: 0 1.25rem; }
@media (min-width: 768px) { .container-x { padding: 0 2rem; } }

.eyebrow {
  display: inline-flex; align-items: center; gap: .75rem;
  font-size: .72rem; font-weight: 600; letter-spacing: .28em;
  text-transform: uppercase; color: var(--accent);
}
.eyebrow::before { content: ""; width: 2.2rem; height: 1px; background: var(--accent); }
.eyebrow.center { justify-content: center; }

.btn-primary, .btn-outline {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5rem; padding: .9rem 1.6rem; font-weight: 500; font-size: .9rem;
  letter-spacing: .04em; text-transform: uppercase; border-radius: 2px;
  border: 1px solid var(--primary); cursor: pointer; transition: all .3s ease;
}
.btn-primary { background: var(--primary); color: var(--primary-fg); }
.btn-primary:hover {
  background: var(--accent); border-color: var(--accent); color: var(--accent-fg);
  transform: translateY(-2px); box-shadow: 0 12px 30px -10px rgba(184,120,73,.45);
}
.btn-outline { background: transparent; color: var(--ink); border-color: var(--border); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-accent { background: var(--accent); border-color: var(--accent); color: var(--ink); }
.btn-accent:hover { background: var(--primary); border-color: var(--primary); color: var(--primary-fg); }

/* Header */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 1050;
  transition: all .3s ease;
  background: linear-gradient(to bottom, rgba(0,0,0,.7), rgba(0,0,0,.4), transparent);
}
.site-header.scrolled {
  background: rgba(247,243,236,.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 rgba(0,0,0,.03);
}
.site-header .brand { display: flex; align-items: center; gap: .75rem; }
.site-header .brand img { height: 48px; width: 48px; border-radius: 2px; object-fit: cover; background: var(--ink); box-shadow: inset 0 0 0 1px rgba(255,255,255,.2); }
.brand-name { font-family: 'Fraunces', serif; font-size: 1.125rem; line-height: 1.1; color: #fff; text-shadow: 0 1px 2px rgba(0,0,0,.3); }
.brand-sub { font-size: 10px; letter-spacing: .24em; text-transform: uppercase; color: rgba(255,255,255,.8); }
.scrolled .brand-name { color: var(--ink); text-shadow: none; }
.scrolled .brand-sub { color: var(--muted); }
.nav-links { display: none; gap: 2rem; align-items: center; }
.nav-links a, .nav-links .dropdown-toggle {
  font-size: .875rem; font-weight: 500; color: rgba(255,255,255,.9);
  background: none; border: 0; cursor: pointer; padding: 0;
}
.scrolled .nav-links a, .scrolled .nav-links .dropdown-toggle { color: var(--fg); }
.nav-links a:hover, .scrolled .nav-links a:hover { color: var(--primary); }
.header-cta { display: none; }
@media (min-width: 992px) {
  .nav-links { display: flex; }
  .header-cta { display: inline-flex; }
  .menu-toggle { display: none !important; }
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 80px; }
.menu-toggle { background: transparent; border: 1px solid var(--border); width: 40px; height: 40px; border-radius: 2px; display: grid; place-items: center; }
.menu-toggle span { display: block; width: 20px; height: 2px; background: #fff; margin: 3px 0; }
.scrolled .menu-toggle span { background: var(--fg); }

/* Dropdown */
.dropdown-menu-custom {
  background: #fff; border: 1px solid var(--border); box-shadow: 0 10px 30px rgba(0,0,0,.08);
  min-width: 220px; padding: .5rem 0; border-radius: 2px;
}
.dropdown-menu-custom a { display: block; padding: .5rem 1rem; color: var(--fg); font-size: .875rem; }
.dropdown-menu-custom a:hover { background: var(--surface); color: var(--primary); }

/* Mobile nav */
.mobile-nav { display: none; background: var(--bg); border-top: 1px solid var(--border); padding: 1rem 1.25rem; }
.mobile-nav.open { display: block; }
.mobile-nav a { display: block; padding: .75rem 0; color: var(--fg); border-bottom: 1px solid rgba(220,212,196,.5); }

/* Hero */
.hero { position: relative; height: 100vh; min-height: 640px; overflow: hidden; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1s ease; }
.hero-slide.active { opacity: 1; }
.hero-slide img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-slide.active img { animation: kenburns 8s ease-out forwards; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(30,42,36,.85), rgba(30,42,36,.6) 50%, rgba(30,42,36,.3)); }
.hero-content { position: relative; z-index: 2; height: 100%; display: flex; align-items: center; padding-top: 5rem; }
.hero-content .inner { max-width: 780px; animation: fadeUp .9s ease-out both; }
.hero h1 { font-size: clamp(2.75rem, 6vw, 6rem); line-height: .95; color: var(--bg); margin: 1.5rem 0 0; }
.hero h1 .accent { color: var(--accent); font-style: italic; display: block; }
.hero-sub { margin-top: 2rem; max-width: 34rem; font-size: 1.125rem; line-height: 1.6; color: rgba(247,243,236,.85); }
.hero-actions { margin-top: 2.5rem; display: flex; flex-wrap: wrap; gap: .75rem; }
.hero-actions .btn-outline { color: var(--bg); border-color: rgba(247,243,236,.4); }
.hero-actions .btn-outline:hover { color: var(--accent); border-color: var(--accent); }
.hero .eyebrow { color: #e0a97d; }
.hero .eyebrow::before { background: #e0a97d; }

.hero-ctrl { position: absolute; top: 50%; transform: translateY(-50%); z-index: 3; width: 48px; height: 48px; display: none; place-items: center; background: transparent; color: var(--bg); border: 1px solid rgba(247,243,236,.4); cursor: pointer; }
.hero-ctrl:hover { background: var(--bg); color: var(--ink); }
.hero-ctrl.prev { left: 1.5rem; } .hero-ctrl.next { right: 1.5rem; }
@media (min-width: 768px) { .hero-ctrl { display: grid; } }

.hero-dots { position: absolute; bottom: 6rem; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; gap: .75rem; }
.hero-dots button { width: 24px; height: 3px; background: rgba(247,243,236,.4); border: 0; cursor: pointer; transition: all .3s; padding: 0; }
.hero-dots button.active { width: 48px; background: var(--accent); }

.hero-stats { position: absolute; bottom: 0; left: 0; right: 0; z-index: 2; background: rgba(247,243,236,.95); backdrop-filter: blur(6px); border-top: 1px solid var(--border); }
.hero-stats .row { display: grid; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 768px) { .hero-stats .row { grid-template-columns: repeat(4, 1fr); } }
.hero-stats .stat { padding: 1.25rem 1rem; text-align: center; border-left: 1px solid var(--border); }
.hero-stats .stat:first-child { border-left: 0; }
.hero-stats .num { font-family: 'Fraunces', serif; font-size: 1.75rem; color: var(--primary); }
.hero-stats .lbl { font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); margin-top: .25rem; }
@media (min-width: 768px) { .hero-stats .num { font-size: 2rem; } }

@keyframes kenburns { from { transform: scale(1); } to { transform: scale(1.12); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

/* Sections */
section { padding: 6rem 0; }
@media (min-width: 768px) { section { padding: 8rem 0; } }
.bg-surface { background: var(--surface); }
.bg-ink { background: var(--ink); color: var(--bg); }
.section-title { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.15; margin: 1rem 0 0; }
.section-title em { display: inline; }

/* About */
.about-img { aspect-ratio: 4/5; overflow: hidden; position: relative; }
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-badge { position: absolute; bottom: -2rem; right: -2rem; background: var(--primary); color: var(--primary-fg); padding: 1.5rem; max-width: 200px; }
.about-badge .n { font-family: 'Fraunces', serif; font-size: 2.5rem; line-height: 1; }
.about-badge .l { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; margin-top: .5rem; opacity: .85; }
@media (max-width: 767px) { .about-badge { display: none; } }
.check-list { margin-top: 2.5rem; display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .check-list { grid-template-columns: 1fr 1fr; } }
.check-list .item { border-left: 2px solid var(--accent); padding: .25rem 0 .25rem 1rem; font-weight: 500; color: var(--fg); }

/* Services */
.service-grid { margin-top: 4rem; display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--border); }
@media (min-width: 768px) { .service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .service-grid { grid-template-columns: repeat(3, 1fr); } }
.service-card { background: var(--bg); padding: 2rem; transition: background .3s; }
.service-card:hover { background: #fff; }
.service-card .row-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1.5rem; }
.service-card .n { font-family: 'Fraunces', serif; font-size: 3rem; color: rgba(184,120,73,.8); line-height: 1; }
.service-card .rule { display: block; height: 1px; width: 3rem; background: var(--border); margin-top: 2rem; transition: all .3s; }
.service-card:hover .rule { background: var(--primary); width: 5rem; }
.service-card h3 { font-size: 1.5rem; margin: 0; }
.service-card p { color: var(--muted); margin-top: .75rem; line-height: 1.6; }

/* Why */
.why-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 992px) { .why-grid { grid-template-columns: 5fr 7fr; gap: 3rem; } }
.why-cards { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) { .why-cards { grid-template-columns: 1fr 1fr; } }
.why-card { background: #fff; border: 1px solid var(--border); padding: 1.75rem; transition: border-color .3s; }
.why-card:hover { border-color: var(--primary); }
.why-card .n { font-family: 'Fraunces', serif; font-size: 1.75rem; color: var(--accent); }
.why-card h3 { font-size: 1.25rem; margin: 1rem 0 .5rem; }
.why-card p { color: var(--muted); font-size: .9rem; line-height: 1.6; margin: 0; }

/* Gallery */
.gallery-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 1rem; }
.gallery-grid { margin-top: 3.5rem; display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 768px) { .gallery-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 992px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }
.gallery-item .img-wrap { aspect-ratio: 3/4; overflow: hidden; background: var(--surface); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item .tag { margin-top: 1rem; font-size: 10px; letter-spacing: .24em; text-transform: uppercase; color: var(--accent); font-weight: 600; }
.gallery-item .cap { margin-top: .25rem; font-size: .875rem; }

/* FAQ */
.faq-wrap { max-width: 720px; margin: 0 auto; }
.faq-list { margin-top: 3.5rem; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: 0; }
.faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.5rem 0; background: transparent; border: 0; text-align: left; cursor: pointer; }
.faq-q .qtxt { font-family: 'Fraunces', serif; font-size: 1.25rem; color: var(--ink); }
.faq-q .icon { display: grid; place-items: center; width: 32px; height: 32px; border: 1px solid var(--border); font-size: 1.25rem; transition: all .3s; flex-shrink: 0; }
.faq-item.open .icon { transform: rotate(45deg); background: var(--primary); color: var(--primary-fg); border-color: var(--primary); }
.faq-a { display: none; padding-bottom: 1.5rem; color: var(--muted); line-height: 1.7; }
.faq-item.open .faq-a { display: block; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 992px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.contact-info .eyebrow { color: #e0a97d; }
.contact-info .eyebrow::before { background: #e0a97d; }
.contact-info h2 { color: var(--bg); }
.contact-info h2 em { color: var(--accent); }
.contact-info .lead { margin-top: 1.5rem; color: rgba(247,243,236,.7); line-height: 1.7; max-width: 28rem; }
.contact-rows { margin-top: 2.5rem; display: grid; gap: 1.5rem; }
.contact-row { display: grid; grid-template-columns: 80px 1fr; gap: 1rem; padding-top: 1.5rem; border-top: 1px solid rgba(247,243,236,.15); }
.contact-row .lbl { font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: var(--accent); font-weight: 600; margin-top: .25rem; }
.contact-row .val { color: rgba(247,243,236,.9); line-height: 1.6; }
.contact-row a { color: rgba(247,243,236,.9); }
.contact-row a:hover { color: var(--accent); }
.contact-card { background: var(--bg); color: var(--fg); padding: 2.5rem; }
.contact-card h3 { font-size: 1.5rem; margin: 0; }
.contact-card .sm { font-size: .875rem; color: var(--muted); margin-top: .25rem; }
.form-field { margin-top: 1.25rem; }
.form-field label { display: block; font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.form-field input, .form-field textarea { display: block; width: 100%; margin-top: .5rem; padding: .5rem 0; background: transparent; border: 0; border-bottom: 1px solid var(--border); font-family: inherit; font-size: 1rem; color: var(--fg); }
.form-field input:focus, .form-field textarea:focus { outline: 0; border-color: var(--primary); }
.form-field textarea { resize: none; }
.form-actions { margin-top: 2rem; }
.form-actions .btn-primary { width: 100%; }

/* Footer */
.site-footer { background: var(--bg); border-top: 1px solid var(--border); padding: 3rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }
.footer-brand { display: flex; gap: .75rem; align-items: center; }
.footer-brand img { height: 48px; width: 48px; border-radius: 2px; background: var(--ink); }
.footer-brand .n { font-family: 'Fraunces', serif; font-size: 1.125rem; color: var(--ink); }
.footer-brand .s { font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); }
.footer-col h4 { font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin: 0 0 1rem; font-family: 'Inter', sans-serif; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: .5rem; }
.footer-col a { font-size: .875rem; }
.footer-col a:hover { color: var(--primary); }
.footer-bar { margin-top: 3rem; border-top: 1px solid var(--border); padding: 1.5rem 0; display: flex; flex-wrap: wrap; justify-content: space-between; gap: .75rem; font-size: .75rem; color: var(--muted); }

/* WhatsApp FAB */
.wa-fab { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 40; width: 56px; height: 56px; border-radius: 50%; background: #25D366; color: #fff; display: grid; place-items: center; box-shadow: 0 8px 20px rgba(0,0,0,.15); transition: transform .3s; }
.wa-fab:hover { transform: scale(1.1); }
.wa-fab svg { width: 28px; height: 28px; }

/* Legal pages */
.legal { padding: 8rem 0 5rem; max-width: 780px; margin: 0 auto; }
.legal h1 { font-size: 3rem; margin: 2rem 0 .5rem; }
.legal .updated { color: var(--muted); font-size: .875rem; }
.legal section { padding: 0; margin-top: 2rem; }
.legal section h2 { font-family: 'Fraunces', serif; font-size: 1.5rem; margin: 0 0 .5rem; }
.legal section p { color: var(--muted); line-height: 1.7; margin: 0; }
.back-link { display: inline-flex; align-items: center; gap: .5rem; color: var(--accent); font-size: .875rem; }
.back-link:hover { text-decoration: underline; }
