/* ============================================
   SHARED STYLES — Every page uses this one file.
   Change a colour, font, or layout here and it 
   updates across ALL 20+ pages instantly.
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&family=Playfair+Display:ital,wght@0,600;0,700;1,400&display=swap');

:root {
    --ink: #0a0a0a;
    --paper: #f6f3ee;
    --cream: #ece7df;
    --accent: #c45d3e;
    --accent-dark: #a8412a;
    --sage: #5a6b52;
    --slate: #4a4a4a;
    --mist: #d4cec5;
    --white: #ffffff;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, sans-serif;
    --max-w: 1280px;
    --gutter: clamp(1.25rem, 4vw, 3rem);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
    font-family: var(--font-body);
    background: var(--paper);
    color: var(--ink);
    line-height: 1.65;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

/* ============================================
   NAVIGATION — Identical on every page
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem var(--gutter);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(246, 243, 238, 0.85);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}

.nav__logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    text-decoration: none;
    color: var(--ink);
}

.nav__logo span { color: var(--accent); }

.nav__links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav__links a {
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--slate);
    position: relative;
    transition: color 0.3s;
}

.nav__links a:hover,
.nav__links a.active { color: var(--ink); }

.nav__links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s;
}

.nav__links a:hover::after,
.nav__links a.active::after { width: 100%; }

.nav__cta {
    background: var(--ink) !important;
    color: var(--paper) !important;
    padding: 0.6rem 1.5rem;
    border-radius: 100px;
    font-size: 0.85rem !important;
    transition: background 0.3s !important;
}

.nav__cta:hover { background: var(--accent) !important; }
.nav__cta::after { display: none !important; }

.nav__toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 28px;
    height: 20px;
    position: relative;
}

.nav__toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--ink);
    position: absolute;
    left: 0;
    transition: all 0.3s;
}

.nav__toggle span:nth-child(1) { top: 0; }
.nav__toggle span:nth-child(2) { top: 9px; }
.nav__toggle span:nth-child(3) { top: 18px; }

.nav__toggle.active span:nth-child(1) { top: 9px; transform: rotate(45deg); }
.nav__toggle.active span:nth-child(2) { opacity: 0; }
.nav__toggle.active span:nth-child(3) { top: 9px; transform: rotate(-45deg); }

/* ============================================
   PAGE HERO — Reusable across inner pages
   ============================================ */
.page-hero {
    padding: 10rem 0 4rem;
    position: relative;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(196,93,62,0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.page-hero__tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
}

.page-hero__tag::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--accent);
}

.page-hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    max-width: 700px;
    margin-bottom: 1.25rem;
}

.page-hero__title em {
    font-style: italic;
    color: var(--accent);
}

.page-hero__desc {
    font-size: 1.15rem;
    color: var(--slate);
    max-width: 560px;
    line-height: 1.75;
}

/* ============================================
   CONTENT SECTIONS
   ============================================ */
.content-section {
    padding: 5rem 0;
}

.content-section--dark {
    background: var(--ink);
    color: var(--paper);
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.content-grid__text h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

.content-grid__text p {
    font-size: 1.05rem;
    color: var(--slate);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.content-section--dark .content-grid__text p {
    color: rgba(246,243,238,0.7);
}

.content-grid__image {
    background: var(--cream);
    border-radius: 24px;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    overflow: hidden;
}

.content-section--dark .content-grid__image {
    background: rgba(255,255,255,0.05);
}

/* Cards grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.25rem;
    border: 1px solid rgba(0,0,0,0.04);
    transition: transform 0.4s, box-shadow 0.4s;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0,0,0,0.08);
}

.card__icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(196,93,62,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.card__title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.card__desc {
    font-size: 0.95rem;
    color: var(--slate);
    line-height: 1.7;
}

/* Team grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.team-member {
    text-align: center;
}

.team-member__photo {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 20px;
    background: var(--cream);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

.team-member__name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
}

.team-member__role {
    font-size: 0.85rem;
    color: var(--slate);
    margin-top: 0.2rem;
}

/* ============================================
   BREADCRUMBS — Good for SEO
   ============================================ */
.breadcrumbs {
    padding: 6.5rem 0 0;
    font-size: 0.82rem;
    color: var(--slate);
}

.breadcrumbs a {
    text-decoration: none;
    color: var(--accent);
    transition: color 0.3s;
}

.breadcrumbs a:hover { color: var(--accent-dark); }

.breadcrumbs span { margin: 0 0.5rem; }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    padding: 5rem 0;
}

.cta-banner__inner {
    background: var(--ink);
    border-radius: 24px;
    padding: 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner__inner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(196,93,62,0.15) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-banner__title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--paper);
    margin-bottom: 1rem;
    position: relative;
}

.cta-banner__desc {
    color: rgba(246,243,238,0.7);
    font-size: 1.05rem;
    max-width: 500px;
    margin: 0 auto 2rem;
    position: relative;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
    position: relative;
}

.btn--primary {
    background: var(--accent);
    color: var(--white);
}

.btn--primary:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(196,93,62,0.3);
}

.btn--white {
    background: var(--white);
    color: var(--ink);
}

.btn--white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* ============================================
   FOOTER — Identical on every page
   ============================================ */
.footer {
    background: var(--ink);
    color: rgba(246,243,238,0.6);
    padding: 4rem 0 2rem;
}

.footer__inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer__brand {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--paper);
    margin-bottom: 1rem;
}

.footer__brand span { color: var(--accent); }

.footer__desc { font-size: 0.9rem; line-height: 1.7; max-width: 300px; }

.footer__heading {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--paper);
    margin-bottom: 1.25rem;
}

.footer__links { list-style: none; display: grid; gap: 0.75rem; }

.footer__links a {
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.3s;
}

.footer__links a:hover { color: var(--paper); }

.footer__bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    display: flex;
    justify-content: space-between;
    font-size: 0.82rem;
}

.footer__bottom a {
    text-decoration: none;
    transition: color 0.3s;
}

.footer__bottom a:hover { color: var(--paper); }

/* ============================================
   WHATSAPP FLOAT — On every page
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(37,211,102,0.4);
    text-decoration: none;
    transition: transform 0.3s;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover { transform: scale(1.1); }

.whatsapp-float svg { width: 32px; height: 32px; fill: white; }

@keyframes pulse {
    0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 6px 24px rgba(37,211,102,0.2), 0 0 0 12px rgba(37,211,102,0.08); }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 968px) {
    .content-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .cards-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr 1fr; }
    .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
    .nav__links {
        display: none;
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: var(--paper);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
    }
    .nav__links.open { display: flex; }
    .nav__toggle { display: block; }
    .team-grid { grid-template-columns: 1fr; }
    .footer__inner { grid-template-columns: 1fr; }
    .footer__bottom { flex-direction: column; gap: 0.5rem; }
    .cta-banner__inner { padding: 2.5rem 1.5rem; }
}
