@charset "UTF-8";

:root {
  --sand: #f5f1e9;
  --sand-deep: #eae2d4;
  --paper: #fbfaf7;
  --forest: #13170f;
  --forest-soft: #254033;
  --moss: #a99970;
  --gold: #b89a61;
  --ink: #18251e;
  --muted: #5e655f;
  --line: #ded9ce;
  --display: "Playfair Display", Georgia, serif;
  --body: "DM Sans", Arial, sans-serif;
  --ease: 300ms cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; overflow-x: hidden; background: var(--paper); color: var(--ink); font-family: var(--body); line-height: 1.55; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--display); font-weight: 400; line-height: 1.1; }
h1 { font-size: clamp(2rem, 3.5vw, 3.1rem); }
h2 { font-size: clamp(2rem, 3.1vw, 3.25rem); }
h3 { font-size: 1.35rem; }
.container-xl { max-width: 1220px; padding-inline: 1.5rem; }
.section-space { padding: clamp(4.5rem, 8vw, 7rem) 0; }

.skip-link { background: var(--paper); color: var(--forest); left: -999px; padding: .7rem 1rem; position: fixed; top: 0; z-index: 2000; }
.skip-link:focus { left: 0; }

/* Header */
.site-header { background: transparent; left: 0; position: absolute; right: 0; top: 0; z-index: 1000; transition: background 360ms ease, box-shadow 360ms ease; }
.site-header.scrolled { background: rgba(19, 23, 15, .96); box-shadow: 0 5px 20px rgba(0, 0, 0, .2); position: fixed; }
.navbar { align-items: center; display: flex; justify-content: space-between; min-height: 74px; }
.brand { display: inline-flex; line-height: 1; }
.brand-logo { display: block; height: auto; width: 154px; }
.nav-collapse { align-items: center; display: flex; gap: 2rem; }
.nav-links { display: flex; gap: 1.8rem; list-style: none; margin: 0; padding: 0; }
.nav-links a { color: rgba(255,255,255,.9); font-size: .68rem; font-weight: 700; letter-spacing: .04em; padding-bottom: .45rem; position: relative; text-transform: uppercase; }
.nav-links a::after { background: #fff; bottom: 0; content: ""; height: 1px; left: 0; position: absolute; transform: scaleX(0); transform-origin: left; transition: transform 260ms ease; width: 100%; }
.nav-links a:hover, .nav-links a:focus-visible { color: #fff; }
.nav-links a:hover::after, .nav-links a:focus-visible::after { transform: scaleX(1); }
.nav-services { position: relative; }
.nav-services-toggle { align-items: center; background: transparent; border: 0; color: rgba(255,255,255,.9); cursor: pointer; display: inline-flex; font: inherit; font-size: .68rem; font-weight: 700; gap: .35rem; letter-spacing: .04em; line-height: 1; padding: 0 0 .45rem; position: relative; text-transform: uppercase; }
.nav-services-toggle::after { background: #fff; bottom: 0; content: ""; height: 1px; left: 0; position: absolute; transform: scaleX(0); transform-origin: left; transition: transform 260ms ease; width: 100%; }
.nav-services-toggle:hover::after, .nav-services-toggle:focus-visible::after, .nav-services.open .nav-services-toggle::after { transform: scaleX(1); }
.nav-services-toggle span { display: inline-block; font-size: .85em; line-height: 1; transform: translateY(-.05em); transition: transform var(--ease); }
.nav-services.open .nav-services-toggle span { transform: translateY(-.05em) rotate(180deg); }
.nav-services-menu { background: var(--forest); border: 1px solid rgba(255,255,255,.15); box-shadow: 0 12px 30px rgba(0,0,0,.22); display: grid; gap: .15rem; grid-template-columns: 1fr; left: -1rem; list-style: none; margin: 0; opacity: 0; padding: .8rem; pointer-events: none; position: absolute; top: calc(100% + .8rem); transform: translateY(-6px); transition: opacity var(--ease), transform var(--ease); width: 260px; z-index: 4; }
.nav-services.open .nav-services-menu { opacity: 1; pointer-events: auto; transform: translateY(0); }
.nav-services-menu a { display: block; font-size: .66rem; padding: .45rem; text-transform: none; }
.nav-services-menu a::after { background: rgba(255,255,255,.85); bottom: .2rem; left: .45rem; width: calc(100% - .9rem); }
.header-cta { border: 1px solid rgba(255,255,255,.6); border-radius: 3px; color: #fff; font-size: .65rem; font-weight: 700; padding: .58rem .9rem; text-transform: uppercase; transition: background var(--ease); }
.header-cta:hover { background: #fff; color: var(--forest); }
.navbar-toggler { background: transparent; border: 0; display: none; padding: .4rem; }
.toggler-bar { background: #fff; display: block; height: 1px; margin: 5px 0; width: 25px; }
.menu-close { background: transparent; border: 0; color: #fff; display: none; font-size: 2.25rem; font-weight: 300; line-height: 1; padding: .25rem; position: absolute; right: 1.35rem; top: 1.15rem; transition: color var(--ease), transform var(--ease); }
.menu-close:hover { color: #d6c092; transform: rotate(90deg); }

/* Hero */
.hero { align-items: center; display: flex; height: 100vh; height: 100svh; min-height: 600px; overflow: hidden; position: relative; text-align: center; }
.hero-image, .final-cta > img { height: 100%; inset: 0; object-fit: cover; position: absolute; width: 100%; }
.hero-image { object-position: center; }
.hero-overlay { background: linear-gradient(180deg, rgba(9, 20, 16, .57) 0%, rgba(9, 20, 16, .13) 40%, rgba(9, 20, 16, .74) 100%); inset: 0; position: absolute; }
.hero-content { color: #fff; padding-bottom: 1rem; position: relative; z-index: 1; }
.hero-logo { animation: hero-logo-reveal 900ms 260ms cubic-bezier(.22, 1, .36, 1) both; height: auto; margin: 0 auto 1.35rem; max-width: min(340px, 62vw); width: 340px; }
@keyframes hero-logo-reveal { from { opacity: 0; transform: scale(.92) translateY(12px); } to { opacity: 1; transform: scale(1) translateY(0); } }
.hero-description { font-size: clamp(.88rem, 1.4vw, 1.05rem); line-height: 1.6; margin-bottom: 1.5rem; }
.btn { align-items: center; border-radius: 3px; display: inline-flex; font-family: var(--body); font-size: .7rem; font-weight: 700; gap: .75rem; letter-spacing: .05em; padding: .85rem 1.15rem; text-transform: uppercase; transition: background var(--ease), color var(--ease), transform var(--ease); }
.btn:hover { transform: translateY(-2px); }
.btn-light-outline { border: 1px solid rgba(255,255,255,.75); color: #fff; }
.btn-light-outline:hover { background: #fff; color: var(--forest); }
.btn-primary { background: var(--forest); color: #fff; }
.btn-primary:hover { background: var(--forest-soft); color: #fff; }

/* Headings and services */
.services { background: var(--paper); }
.section-heading { margin: 0 auto clamp(2.3rem, 5vw, 3.7rem); max-width: 760px; text-align: center; }
.section-heading h1, .section-heading h2 { margin-bottom: .75rem; }
.section-heading p:not(.eyebrow) { color: var(--muted); font-size: .88rem; margin: auto; max-width: 620px; }
.section-heading.compact { margin-bottom: 2.4rem; }
.eyebrow { color: var(--moss); font-size: .64rem; font-weight: 700; letter-spacing: .11em; margin-bottom: .85rem; text-transform: uppercase; }
.service-card { background: transparent; border: 1px solid var(--line); height: 100%; min-height: 225px; padding: 2rem 1.65rem 1.5rem; text-align: center; transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease); }
.service-card:hover { border-color: var(--moss); box-shadow: 0 16px 35px rgba(18,42,32,.08); transform: translateY(-4px); }
.service-icon { color: var(--forest); display: block; font-family: var(--display); font-size: 2rem; height: 2.35rem; line-height: 1; margin-bottom: 1rem; }
.service-icon svg { display: block; height: 30px; margin: 0 auto; transition: color var(--ease), transform var(--ease); width: 30px; }
.service-card:hover .service-icon svg { color: var(--gold); transform: translateY(-2px); }
.service-card h2 { font-family: var(--body); font-size: .88rem; font-weight: 700; margin-bottom: .7rem; }
.service-card p { color: var(--muted); font-size: .76rem; margin: 0; }

/* Services carousel */
.services-carousel { padding-inline: 3.35rem; position: relative; }
.services-carousel-viewport { overflow-x: auto; overscroll-behavior-x: contain; scrollbar-width: none; scroll-snap-type: x mandatory; }
.services-carousel-viewport::-webkit-scrollbar { display: none; }
.services-carousel-track { display: flex; gap: 1.5rem; padding-bottom: .3rem; }
.service-carousel-card { flex: 0 0 calc((100% - 3rem) / 3); min-width: 0; position: relative; scroll-snap-align: start; text-align: center; }
.service-carousel-media { aspect-ratio: .68; background: var(--forest); border-radius: 16px; overflow: hidden; position: relative; }
.service-carousel-media::after { background: linear-gradient(180deg, rgba(8, 26, 16, .4), rgba(8, 26, 16, .88)); content: ""; inset: 0; pointer-events: none; position: absolute; }
.service-carousel-media img { height: 100%; object-fit: cover; transition: transform 600ms ease; width: 100%; }
.service-carousel-card:hover .service-carousel-media img { transform: scale(1.06); }
.service-carousel-media div { color: #fff; left: 0; padding: 0 1.2rem; position: absolute; right: 0; top: 3.7rem; z-index: 1; }
.service-carousel-media h3 { font-family: var(--display); font-size: clamp(1.35rem, 2.25vw, 2.1rem); font-weight: 600; letter-spacing: 0; line-height: 1.05; margin: 0; text-transform: none; }
.service-carousel-media p { font-size: .74rem; line-height: 1.45; margin: 0; }
.service-carousel-link { background: rgba(19, 23, 15, .9); border: 1px solid rgba(255, 255, 255, .8); border-radius: 999px; bottom: 1.15rem; color: #fff; cursor: pointer; font-family: var(--body); font-size: .72rem; font-weight: 700; left: 50%; margin: 0; padding: .65rem 1.4rem; position: absolute; transform: translateX(-50%); transition: background var(--ease), color var(--ease), transform var(--ease); white-space: nowrap; z-index: 2; }
.service-carousel-link:hover, .service-carousel-link:focus-visible { background: #fff; color: var(--forest); transform: translateX(-50%) translateY(-2px); }
.services-carousel-control { align-items: center; background: transparent; border: 0; color: rgba(255, 255, 255, .9); cursor: pointer; display: flex; font-size: 3.6rem; height: 64px; justify-content: center; padding: 0; position: absolute; text-shadow: 0 2px 10px rgba(0, 0, 0, .35); top: 43%; transform: translateY(-50%); transition: color var(--ease), opacity var(--ease), transform var(--ease); width: 44px; z-index: 3; }
.services-carousel-control:hover, .services-carousel-control:focus-visible { color: #fff; opacity: .75; transform: translateY(-50%) scale(1.08); }
.services-carousel-control-prev { left: 3.35rem; }
.services-carousel-control-next { right: 3.35rem; }
.services-carousel-pagination { display: flex; gap: .55rem; justify-content: center; margin-top: 1.35rem; }
.services-carousel-pagination button { background: #d6d5cf; border: 0; border-radius: 50%; cursor: pointer; height: 7px; padding: 0; transition: background var(--ease), transform var(--ease); width: 7px; }
.services-carousel-pagination button[aria-current="true"] { background: var(--forest); transform: scale(1.15); }

/* Support */
.support { background: var(--sand); padding: 0; }
.support-panel { background: var(--paper); }
.support-copy { padding: clamp(2.8rem, 5.5vw, 5rem); }
.support-copy h2 { font-size: clamp(2rem, 3vw, 2.8rem); margin-bottom: 1.6rem; max-width: 480px; }
.support-copy > p:last-of-type { color: var(--muted); font-size: .83rem; margin: 1.5rem 0; max-width: 500px; }
.support-list { display: grid; gap: .65rem 1.5rem; grid-template-columns: 1fr 1fr; }
.support-list span { color: #4d554e; font-size: .76rem; padding-left: 1.1rem; position: relative; }
.support-list span::before { color: var(--gold); content: "●"; font-size: .47rem; left: 0; position: absolute; top: .36rem; }
.support-image { min-height: 380px; }
.support-image img { height: 100%; object-fit: cover; width: 100%; }

/* About / benefits */
.about { background: var(--paper); }
.about h2 { margin-bottom: 1rem; }
.about p:not(.eyebrow) { color: var(--muted); font-size: .9rem; max-width: 440px; }
.benefits-grid { display: grid; grid-template-columns: 1fr 1fr; }
.benefits-grid span { border-bottom: 1px solid var(--line); color: #485048; font-size: .82rem; padding: 1.1rem 1rem 1.1rem 2.2rem; position: relative; }
.benefits-grid span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 1.18rem;

    width: 7px;
    height: 7px;

    background: var(--gold);
    border-radius: 50%;
}.benefits-grid span:nth-last-child(-n+2) { border-bottom: 0; }

/* Audiences */
.audiences { background: var(--sand); }
.audience-card { background: var(--forest); color: #fff; height: 100%; overflow: hidden; position: relative; }
.audience-card img { filter: saturate(.72); height: 270px; object-fit: cover; transition: transform 600ms ease; width: 100%; }
.audience-card:hover img { transform: scale(1.05); }
.audience-card::after { background: linear-gradient(transparent 15%, rgba(8,22,15,.87)); content: ""; inset: 0; pointer-events: none; position: absolute; }
.audience-card div { bottom: 0; left: 0; padding: 1.5rem; position: absolute; right: 0; z-index: 1; }
.audience-card h3 { font-size: 1.3rem; margin-bottom: .35rem; }
.audience-card p { font-size: .72rem; line-height: 1.5; margin: 0; }

/* Service detail pages */
.service-detail-hero { align-items: end; color: #fff; display: flex; min-height: 440px; overflow: hidden; position: relative; }
.service-detail-hero img { height: 100%; inset: 0; object-fit: cover; object-position: center 58%; position: absolute; width: 100%; }
.service-detail-hero::after { background: linear-gradient(90deg, rgba(10, 24, 16, .86), rgba(10, 24, 16, .35)); content: ""; inset: 0; position: absolute; }
.service-detail-hero .container-xl { padding-bottom: 4.5rem; position: relative; z-index: 1; }
.service-detail-hero h1 { color: #fff; margin: 0; max-width: 700px; }
.service-detail-hero .eyebrow { color: #d6c092; }
.service-detail-content { padding: clamp(4rem, 8vw, 6.5rem) 0; }
.service-detail-intro { color: var(--muted); font-size: clamp(1rem, 1.8vw, 1.2rem); line-height: 1.7; max-width: 770px; }
.service-detail-content h2 { font-size: clamp(1.65rem, 2.6vw, 2.35rem); margin: 2.8rem 0 1rem; }
.service-detail-list { display: grid; gap: .8rem 1.5rem; grid-template-columns: repeat(2, minmax(0, 1fr)); list-style: none; margin: 1.4rem 0 2rem; padding: 0; }
.service-detail-list li { border-bottom: 1px solid var(--line); color: var(--muted); font-size: .9rem; padding: 0 0 .8rem 1.25rem; position: relative; }
.service-detail-list li::before { color: var(--gold); content: "●"; font-size: .48rem; left: 0; position: absolute; top: .45rem; }
.service-detail-cta { background: var(--sand); margin-top: 3.5rem; padding: clamp(2rem, 4vw, 3.3rem); }
.service-detail-cta h2 { margin-top: 0; }
.service-detail-cta p { color: var(--muted); max-width: 620px; }

/* CTA and footer */
.final-cta { color: #fff; min-height: 420px; overflow: hidden; position: relative; text-align: center; }
.final-cta > img { filter: saturate(.75); }
.final-cta-overlay { background: rgba(10,28,19,.76); inset: 0; position: absolute; }
.final-cta-content { padding-bottom: 4.5rem; padding-top: 4.5rem; position: relative; z-index: 1; }
.final-cta h2 { font-size: clamp(2rem, 3.5vw, 3.2rem); margin-bottom: .9rem; }
.final-cta-content > p:not(.eyebrow) { font-size: .85rem; margin: 0 auto 1.7rem; max-width: 620px; opacity: .85; }
.final-cta .eyebrow { color: #d6c092; }
.site-footer { background: var(--forest); color: rgba(255,255,255,.72); padding: 3.5rem 0 1.2rem; }
.brand-footer { margin-bottom: 1.2rem; }
.brand-footer .brand-logo { width: 188px; }
.site-footer p, .site-footer li, .site-footer a { font-size: .75rem; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.footer-contact li { align-items: center; display: flex; gap: .6rem; margin-bottom: .55rem; }
.footer-contact svg { color: var(--gold); flex-shrink: 0; height: 15px; width: 15px; }
.btn-icon { height: 15px; width: 15px; }
.site-footer h3 { color: #fff; font-family: var(--body); font-size: .69rem; font-weight: 700; letter-spacing: .08em; margin-bottom: 1rem; text-transform: uppercase; }
.site-footer a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.13); display: flex; font-size: .72rem; justify-content: space-between; margin-top: 2.5rem; padding-top: 1.15rem; }
.footer-bottom p { margin: 0; }
.back-to-top {
    position: fixed;
    right: 1.2rem;
    bottom: 1.2rem;

    width: 56px;
    height: 56px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: var(--gold);
    color: #fff;

    text-decoration: none;

    box-shadow: 0 10px 25px rgba(0,0,0,.25);

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);

    transition: all .3s ease;

    z-index: 9999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: #a98b57;
    color: #fff;
    transform: translateY(-3px);
}

.back-to-top i {
    font-size: 28px;
    line-height: 1;
}

.whatsapp-icon {
    width: 24px;
    height: 24px;
    display: block;
    fill: currentColor;
    flex-shrink: 0;
    transition: transform .3s ease;
}

.back-to-top:hover .whatsapp-icon {
    transform: scale(1.1);
}

/* Motion */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 700ms ease, transform 700ms ease; }
[data-reveal].is-visible { opacity: 1; transform: none; }

@media (max-width: 991.98px) {
  .navbar-toggler { display: block; }
  .nav-collapse { background: var(--forest); bottom: 0; box-shadow: -10px 0 30px rgba(0,0,0,.2); flex-direction: column; gap: 2rem; justify-content: center; padding: 3rem; position: fixed; right: 0; top: 0; transform: translateX(100%); transition: transform var(--ease); width: min(340px, 86vw); }
  .nav-collapse.open { transform: translateX(0); }
  .menu-close { display: block; }
  .nav-links { align-items: center; flex-direction: column; gap: 1.5rem; }
  .nav-links a { font-size: .8rem; }
  .nav-services-toggle { font-size: .8rem; }
  .nav-services-menu { display: grid; grid-template-columns: 1fr; left: 50%; max-height: 0; opacity: 0; overflow: hidden; padding: 0; position: static; transform: translateX(-50%); transition: max-height var(--ease), opacity var(--ease), padding var(--ease); width: min(270px, 70vw); }
  .nav-services.open .nav-services-menu { max-height: 430px; opacity: 1; padding: .6rem; transform: translateX(-50%); }
  .support-image { min-height: 330px; }
  .service-carousel-card { flex-basis: calc((100% - 3rem) / 3); }
}

@media (max-width: 767.98px) {
  .hero { height: 100svh; min-height: 0; }
  .hero-image { object-position: 58% center; }
  .hero-content { padding-bottom: 0; padding-inline: 1.2rem; }
  .hero-logo { margin-bottom: 1rem; max-width: min(245px, 68vw); }
  .hero-description { font-size: .83rem; margin-bottom: 1.25rem; }
  .hero-name { font-size: 4.4rem; }
  .hero-subtitle { font-size: .52rem; letter-spacing: .38em; }
  .support-list { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .benefits-grid span:nth-last-child(2) { border-bottom: 1px solid var(--line); }
  .audience-card img { height: 250px; }
  .service-detail-hero { min-height: 360px; }
  .service-detail-hero .container-xl { padding-bottom: 2.7rem; }
  .service-detail-list { grid-template-columns: 1fr; }
  .services-carousel { padding-inline: 2.85rem; }
  .services-carousel-control-prev { left: 2.85rem; }
  .services-carousel-control-next { right: 2.85rem; }
  .service-carousel-card { flex-basis: calc((100% - 1.5rem) / 2); }
}

@media (max-width: 575.98px) {
  .container-xl { padding-inline: 1.2rem; }
  .brand-logo { width: 136px; }
  .hero-logo { max-width: min(220px, 68vw); }
  .hero-description { padding-inline: .8rem; }
  .service-card { min-height: 0; padding: 1.7rem 1.2rem; }
  .services-carousel { padding-inline: 2.45rem; }
  .service-carousel-track { gap: 1rem; }
  .service-carousel-card { flex-basis: 100%; }
  .services-carousel-control { font-size: 3rem; height: 52px; top: 42%; width: 34px; }
  .services-carousel-control-prev { left: 2.45rem; }
  .services-carousel-control-next { right: 2.45rem; }
  .service-carousel-media div { padding: 1.2rem 1rem; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: .5rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
.footer-contact li {
    align-items: flex-start;
}

.footer-contact li a,
.footer-contact li span {
    overflow-wrap: anywhere;
    word-break: break-word;
}
