/* ============ CSS Reset ============ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', Arial, sans-serif;
  font-size: 18px;
  line-height: 1.7;
  color: #2C2A28;
  background: #F8F4EE;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* ============ Tokens ============ */
:root {
  --bg-page: #F8F4EE;
  --bg-surface: #FFFFFF;
  --bg-alt: #F1EBE1;
  --brand: #D35400;
  --brand-hover: #A04000;
  --brand-soft: #FBE9D7;
  --secondary: #8A6A3F;
  --ink: #2C2A28;
  --ink-muted: #6F665D;
  --border: #E8DDD0;
  --shadow-card: 0 10px 30px rgba(0,0,0,0.05);
  --shadow-card-hover: 0 18px 44px rgba(0,0,0,0.10);
  --radius: 16px;
}

/* ============ Layout ============ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-alt { background: var(--bg-alt); }

/* ============ Typography ============ */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: var(--ink);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.6rem, 5vw, 4rem); line-height: 1.08; font-weight: 700; }
h2 { font-size: clamp(2rem, 3.6vw, 2.85rem); line-height: 1.15; font-weight: 600; margin-bottom: 12px; }
h3 { font-size: 1.4rem; font-weight: 600; margin-bottom: 8px; }
h4 { font-size: 1.05rem; font-weight: 600; margin-bottom: 14px; color: var(--ink); }
p { color: var(--ink-muted); }
.eyebrow {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
  padding: 6px 14px;
  background: var(--brand-soft);
  border-radius: 999px;
  margin-bottom: 16px;
}
.lede { font-size: 1.15rem; max-width: 720px; margin: 12px auto 0; color: var(--ink-muted); }
.section-head { text-align: center; margin-bottom: 56px; }
.section-head h2 { max-width: 820px; margin: 0 auto 8px; }

/* ============ Buttons ============ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px;
  font-size: 1rem; font-weight: 600;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: background-color .25s ease, color .25s ease, transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  min-height: 50px;
  white-space: nowrap;
}
.btn-lg { padding: 18px 30px; font-size: 1.05rem; min-height: 58px; }
.btn-block { width: 100%; justify-content: center; }
.btn-primary { background: var(--brand); color: #fff; box-shadow: 0 8px 20px rgba(211,84,0,0.25); }
.btn-primary:hover { background: var(--brand-hover); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(160,64,0,0.32); }
.btn-ghost { background: rgba(255,255,255,0.92); color: var(--ink); border-color: var(--border); }
.btn-ghost:hover { background: #fff; transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--brand); border-color: var(--brand); }
.btn-outline:hover { background: var(--brand); color: #fff; }
.btn-whatsapp { background: #25D366; color: #fff; }
.btn-whatsapp:hover { background: #1ebe57; transform: translateY(-2px); }

/* ============ Header ============ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(248, 244, 238, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 14px 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-logo { width: 52px; height: 52px; object-fit: contain; border-radius: 10px; background: #fff; padding: 2px; box-shadow: 0 4px 12px rgba(0,0,0,0.06); }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-weight: 700; color: #16315B; }
.brand-tag { font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--secondary); margin-top: 2px; }
.primary-nav { display: flex; gap: 28px; }
.primary-nav a { font-size: 0.98rem; font-weight: 500; color: var(--ink); position: relative; }
.primary-nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px; background: var(--brand);
  transform: scaleX(0); transform-origin: left; transition: transform .25s ease;
}
.primary-nav a:hover::after { transform: scaleX(1); }
.header-cta { display: flex; gap: 10px; }
.header-cta .btn { padding: 10px 18px; font-size: 0.92rem; min-height: 44px; }

/* ============ Hero ============ */
.hero { position: relative; padding: 110px 0 120px; overflow: hidden; }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(115deg, rgba(248,244,238,0.96) 0%, rgba(248,244,238,0.86) 50%, rgba(248,244,238,0.55) 100%);
}
.hero-inner { position: relative; z-index: 1; max-width: 820px; }
.hero h1 { margin-bottom: 22px; }
.hero-sub { font-size: 1.2rem; color: var(--ink); margin-bottom: 32px; max-width: 680px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-signals { display: flex; flex-wrap: wrap; gap: 18px 28px; }
.hero-signals li { display: inline-flex; align-items: center; gap: 8px; font-weight: 500; color: var(--ink); font-size: 0.98rem; }
.hero-signals i { color: #2E7D32; }

/* ============ Trust strip ============ */
.trust-strip { background: var(--bg-surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 28px 0; }
.trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; }
.trust-item { display: flex; gap: 14px; align-items: center; padding: 6px 4px; }
.trust-item i { font-size: 1.6rem; color: var(--brand); width: 42px; height: 42px; display: grid; place-items: center; background: var(--brand-soft); border-radius: 12px; }
.trust-item strong { display: block; font-size: 1rem; color: var(--ink); }
.trust-item span { font-size: 0.85rem; color: var(--ink-muted); }

/* ============ Two-column ============ */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.two-col.reverse .two-col-media { order: 2; }
.two-col-media { position: relative; }
.two-col-media img { border-radius: var(--radius); box-shadow: var(--shadow-card); width: 100%; height: 540px; object-fit: cover; }
.floating-stat {
  position: absolute; left: -24px; bottom: -24px;
  background: #fff; border-radius: var(--radius); padding: 18px 22px;
  box-shadow: var(--shadow-card-hover); border: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 4px; max-width: 240px;
}
.floating-stat strong { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; color: var(--brand); }
.floating-stat span { font-size: 0.9rem; color: var(--ink-muted); }
.two-col-body p + p { margin-top: 16px; }
.check-list { margin: 24px 0 28px; display: flex; flex-direction: column; gap: 12px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink); }
.check-list i { color: #2E7D32; margin-top: 6px; }

/* ============ Feature grid ============ */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.feature-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px 24px; box-shadow: var(--shadow-card);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); border-color: #F0CFA8; }
.feature-icon { display: inline-grid; place-items: center; width: 52px; height: 52px; border-radius: 14px; background: var(--brand-soft); color: var(--brand); font-size: 1.3rem; margin-bottom: 16px; }
.feature-card h3 { margin-bottom: 8px; }
.feature-card p { font-size: 1rem; }

/* ============ Timeline ============ */
.timeline { position: relative; max-width: 880px; margin: 0 auto; padding-left: 40px; }
.timeline::before { content: ""; position: absolute; left: 18px; top: 8px; bottom: 8px; width: 2px; background: linear-gradient(to bottom, var(--brand), transparent); }
.timeline-item { position: relative; padding-bottom: 36px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
  position: absolute; left: -40px; top: 0;
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--brand); color: #fff; font-family: 'Cormorant Garamond', serif; font-weight: 700;
  display: grid; place-items: center; font-size: 1.05rem;
  box-shadow: 0 0 0 6px var(--brand-soft);
}
.timeline-body { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 22px 24px; box-shadow: var(--shadow-card); }
.timeline-body h3 { margin-bottom: 6px; color: var(--brand-hover); }
.note { margin-top: 32px; text-align: center; color: var(--ink-muted); font-size: 0.98rem; }
.note i { color: var(--brand); margin-right: 6px; }

/* ============ Experiences ============ */
.experience-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 28px; }
.experience-card { background: #fff; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-card); transition: transform .3s ease, box-shadow .3s ease; }
.experience-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.experience-media { height: 220px; overflow: hidden; }
.experience-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.experience-card:hover .experience-media img { transform: scale(1.06); }
.experience-body { padding: 24px; }
.experience-body h3 i { color: var(--brand); margin-right: 8px; }

/* ============ Inclusions / Exclusions ============ */
.inex-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.inex-card { background: #fff; border-radius: var(--radius); padding: 32px; border: 1px solid var(--border); box-shadow: var(--shadow-card); }
.inex-card h3 { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; font-size: 1.5rem; }
.inex-in h3 i { color: #2E7D32; }
.inex-out h3 i { color: #B23B3B; }
.inex-card ul { display: flex; flex-direction: column; gap: 10px; }
.inex-card li { padding-left: 26px; position: relative; color: var(--ink); font-size: 1rem; }
.inex-in li::before { content: "✓"; position: absolute; left: 0; top: 0; color: #2E7D32; font-weight: 700; }
.inex-out li::before { content: "✕"; position: absolute; left: 0; top: 0; color: #B23B3B; font-weight: 700; }

/* ============ Gallery ============ */
.gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
.gallery-card { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/5; box-shadow: var(--shadow-card); }
.gallery-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.gallery-card:hover img { transform: scale(1.07); }
.gallery-card figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 14px 16px; color: #fff; font-weight: 600;
  background: linear-gradient(to top, rgba(0,0,0,0.75), rgba(0,0,0,0));
  font-size: 0.98rem;
}

/* ============ Founder ============ */
.section-founder { background: linear-gradient(180deg, var(--bg-page) 0%, var(--bg-alt) 100%); padding: 96px 0; }
.founder-role { font-weight: 600; color: var(--brand); margin-bottom: 14px; }
.two-col-body .btn { margin-top: 22px; }

/* ============ Testimonials ============ */
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.testimonial-card { background: #fff; border-radius: var(--radius); padding: 28px; border: 1px solid var(--border); box-shadow: var(--shadow-card); position: relative; }
.testimonial-card::before {
  content: "\201C"; position: absolute; top: 10px; left: 20px;
  font-family: 'Cormorant Garamond', serif; font-size: 4rem; color: var(--brand-soft); line-height: 1;
}
.testimonial-card p { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; line-height: 1.5; color: var(--ink); font-style: italic; position: relative; z-index: 1; }
.testimonial-card footer { margin-top: 16px; font-weight: 600; color: var(--brand-hover); font-size: 0.95rem; }

/* ============ Contact ============ */
.section-contact { background: var(--bg-page); }
.contact-info p { margin: 14px 0 24px; }
.contact-list { display: flex; flex-direction: column; gap: 14px; margin-top: 12px; }
.contact-list li { display: flex; align-items: center; gap: 14px; color: var(--ink); font-size: 1.05rem; }
.contact-list i { width: 40px; height: 40px; border-radius: 50%; background: var(--brand-soft); color: var(--brand); display: grid; place-items: center; }
.contact-list a:hover { color: var(--brand); }

.quote-form {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px; box-shadow: var(--shadow-card);
}
.quote-form label { display: flex; flex-direction: column; gap: 8px; font-weight: 500; color: var(--ink); margin-bottom: 16px; font-size: 0.95rem; }
.quote-form input, .quote-form textarea {
  font-family: 'Outfit', sans-serif; font-size: 1rem;
  padding: 14px 16px; border: 1px solid var(--border); border-radius: 12px;
  background: var(--bg-page); color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
}
.quote-form input:focus, .quote-form textarea:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 4px rgba(211,84,0,0.12); background: #fff; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-row label { margin-bottom: 16px; }
.form-success { margin-top: 16px; color: #2E7D32; font-weight: 600; text-align: center; }
.form-success i { margin-right: 6px; }

/* ============ Footer ============ */
.site-footer { background: #1F1A14; color: #D9CFC2; padding: 72px 0 0; margin-top: 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr 1fr; gap: 40px; padding-bottom: 48px; }
.site-footer h4 { color: #fff; margin-bottom: 16px; font-size: 1.1rem; }
.brand-footer .brand-name { color: #fff; }
.brand-footer .brand-tag { color: #C8B79D; }
.footer-about { margin: 16px 0 18px; color: #C8B79D; font-size: 0.95rem; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.07); color: #fff; display: grid; place-items: center; transition: background .25s, transform .25s; }
.footer-social a:hover { background: var(--brand); transform: translateY(-2px); }
.footer-links { display: flex; flex-direction: column; gap: 10px; font-size: 0.95rem; color: #C8B79D; }
.footer-links a:hover { color: #fff; }
.footer-links i { margin-right: 8px; color: var(--brand); }
.footer-seo { padding: 28px 24px; border-top: 1px solid rgba(255,255,255,0.08); color: #978773; font-size: 0.85rem; line-height: 1.7; }
.footer-bottom { background: #16110C; padding: 18px 0; font-size: 0.85rem; color: #978773; }
.footer-bottom-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }

/* ============ Floating WhatsApp ============ */
.floating-whatsapp {
  position: fixed; right: 22px; bottom: 22px;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: grid; place-items: center; font-size: 1.7rem;
  box-shadow: 0 10px 28px rgba(37,211,102,0.45);
  z-index: 60; transition: transform .25s, box-shadow .25s;
  animation: pulse 2.4s infinite;
}
.floating-whatsapp:hover { transform: scale(1.06); box-shadow: 0 14px 34px rgba(37,211,102,0.55); }
@keyframes pulse {
  0% { box-shadow: 0 10px 28px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.4); }
  70% { box-shadow: 0 10px 28px rgba(37,211,102,0.45), 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 10px 28px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0); }
}

/* ============ Responsive ============ */
@media (max-width: 980px) {
  .primary-nav { display: none; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .two-col.reverse .two-col-media { order: 0; }
  .two-col-media img { height: 380px; }
  .floating-stat { left: 16px; bottom: -16px; }
  .inex-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 72px 0; }
  .hero { padding: 80px 0 90px; }
}
@media (max-width: 640px) {
  body { font-size: 17px; }
  .header-cta .btn-whatsapp { display: none; }
  .brand-tag { display: none; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .quote-form { padding: 22px; }
  .timeline { padding-left: 32px; }
  .timeline-dot { left: -32px; width: 32px; height: 32px; font-size: 0.95rem; }
  .floating-whatsapp { width: 54px; height: 54px; font-size: 1.5rem; right: 16px; bottom: 16px; }
}
