:root {
    --ink: #0e0c0a;
    --parchment: #f5f0e8;
    --gold: #a8894a;
    --gold-light: #c9a96e;
    --gold-dark: #a7884e;
    --charcoal: #2a2520;
    --mid: #6b6560;
    --line: #d4c9b0;
    --white: #fdfaf5;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--white);
    color: var(--ink);
    overflow-x: hidden;
}

/* ── HEADER ── */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 20px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(253, 250, 245, 0.96);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(6px);
    animation: fadeDown 0.8s ease both;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: 1.15rem;
    letter-spacing: 0.05em;
    color: var(--ink);
    line-height: 1.2;
}

.logo span {
    display: block;
    font-size: 0.62rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 3px;
}

nav {
    display: flex;
    gap: 36px;
    align-items: center;
}

nav a {
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--mid);
    transition: color 0.2s;
}

nav a:hover {
    color: var(--gold);
}

/* ── HERO ── */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px 80px 60px;
    position: relative;
    z-index: 2;
    animation: fadeLeft 1s 0.3s ease both;
}

.hero-eyebrow {
    font-size: 0.65rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.hero-eyebrow::before {
    content: '';
    display: inline-block;
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 5.5vw, 5.5rem);
    font-weight: 300;
    line-height: 1.08;
    color: var(--ink);
    margin-bottom: 12px;
}

.hero-title em {
    font-style: italic;
    font-weight: 400;
    color: var(--gold);
}

.hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.2rem, 2.2vw, 2rem);
    font-weight: 300;
    color: var(--mid);
    margin-bottom: 40px;
    font-style: italic;
}

.hero-desc {
    font-size: 0.82rem;
    line-height: 1.9;
    color: var(--mid);
    max-width: 420px;
    margin-bottom: 52px;
    font-weight: 300;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    background: var(--ink);
    color: var(--white);
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.25s, color 0.25s;
}

.btn-primary:hover {
    background: var(--gold);
    color: var(--ink);
}

.btn-primary svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.hero-right {
    position: relative;
    overflow: hidden;
    animation: fadeRight 1s 0.5s ease both;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: var(--parchment);
    overflow: hidden;
}

/* Decorative vertical lines */
.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(90deg,
            transparent,
            transparent 48px,
            rgba(168, 137, 74, 0.08) 48px,
            rgba(168, 137, 74, 0.08) 49px);
}

.hero-ornament {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    pointer-events: none;
}

.hero-ornament .big-initial {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(160px, 22vw, 280px);
    font-weight: 300;
    color: rgba(168, 137, 74, 0.12);
    line-height: 1;
    letter-spacing: -0.05em;
    user-select: none;
}

.hero-seal {
    position: absolute;
    bottom: 60px;
    right: 60px;
    width: 120px;
    height: 120px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    text-align: center;
    padding: 16px;
}

.hero-seal .seal-year {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--gold);
    font-weight: 400;
    line-height: 1;
}

.hero-seal .seal-text {
    font-size: 0.52rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--mid);
    line-height: 1.4;
}

/* ── DIVIDER ── */
.divider {
    height: 1px;
    background: linear-gradient(to right, transparent, var(--line), transparent);
    margin: 0 60px;
}

/* ── SECTION BASE ── */
section {
    padding: 100px 60px;
}

.section-label {
    font-size: 0.62rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.section-label::before {
    content: '';
    display: inline-block;
    width: 30px;
    height: 1px;
    background: var(--gold);
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 300;
    color: var(--ink);
    line-height: 1.15;
    margin-bottom: 24px;
}

.section-title em {
    font-style: italic;
    color: var(--gold);
}

/* ── ABOUT ── */
.about {
    background: var(--parchment);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text p {
    font-size: 0.85rem;
    line-height: 2;
    color: var(--mid);
    font-weight: 300;
    margin-bottom: 20px;
}

.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.value-card {
    border-top: 1px solid var(--gold);
    padding-top: 20px;
    animation: fadeUp 0.7s ease both;
}

.value-card h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--ink);
    margin-bottom: 8px;
}

.value-card p {
    font-size: 0.72rem;
    line-height: 1.7;
    color: var(--mid);
    font-weight: 300;
}

/* ── SERVICES ── */
.services {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 60px;
    border: 1px solid var(--line);
}

.service-item {
    padding: 48px 40px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    position: relative;
    transition: background 0.3s;
    cursor: default;
}

.service-item:nth-child(3n) {
    border-right: none;
}

.service-item:nth-last-child(-n+3) {
    border-bottom: none;
}

.service-item:hover {
    background: var(--parchment);
}

.service-item:hover .service-num {
    color: var(--gold);
}

.service-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 300;
    color: var(--line);
    line-height: 1;
    margin-bottom: 20px;
    transition: color 0.3s;
}

.service-item h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--ink);
    margin-bottom: 14px;
    line-height: 1.2;
}

.service-item p {
    font-size: 0.76rem;
    line-height: 1.85;
    color: var(--mid);
    font-weight: 300;
}

/* ── PHILOSOPHY ── */
.philosophy {
    background: var(--charcoal);
    text-align: center;
    padding: 120px 60px;
    position: relative;
    overflow: hidden;
}

.philosophy::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(0deg,
            transparent,
            transparent 60px,
            rgba(168, 137, 74, 0.05) 60px,
            rgba(168, 137, 74, 0.05) 61px);
}

.philosophy .section-label {
    justify-content: center;
}

.philosophy .section-label::before {
    display: none;
}

.philosophy .section-title {
    color: var(--white);
    max-width: 780px;
    margin: 0 auto 32px;
    font-size: clamp(2rem, 4vw, 3.8rem);
}

.philosophy .section-title em {
    color: var(--gold-light);
}

.philosophy p {
    font-size: 0.83rem;
    line-height: 2;
    color: rgba(245, 240, 232, 0.6);
    max-width: 560px;
    margin: 0 auto;
    font-weight: 300;
}

/* ── whoiam ── */
.whoiam {
    background: var(--gold-dark);
    text-align: center;
    padding: 120px 60px;
    position: relative;
    overflow: hidden;
}

.whoiam::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(0deg,
            transparent,
            transparent 60px,
            rgba(168, 137, 74, 0.05) 60px,
            rgba(168, 137, 74, 0.05) 61px);
}

.whoiam .section-label {
    justify-content: center;
}

.whoiam .section-label::before {
    display: none;
}

.whoiam .section-title {
    color: #FFF;
    max-width: 780px;
    margin: 0 auto 32px;
    font-size: clamp(2rem, 4vw, 3.8rem);
}

.whoiam .section-title em {
    color: var(--gold-dark);
}

.whoiam p {
    font-size: 0.93rem;
    line-height: 2;
    color: #FFF;
    max-width: 660px;
    margin: 0 auto;
    font-weight: 300;
}

/* ── CONTACT ── */
.contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 0;
}

.contact-info {
    padding: 100px 60px;
    background: var(--parchment);
}

.contact-action {
    padding: 100px 60px;
    background: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info p {
    font-size: 0.82rem;
    line-height: 1.9;
    color: var(--mid);
    font-weight: 300;
    margin-bottom: 40px;
    max-width: 380px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-detail .cd-icon {
    width: 36px;
    height: 36px;
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail .cd-icon svg {
    width: 14px;
    height: 14px;
    fill: var(--gold);
}

.contact-detail .cd-text {
    font-size: 0.78rem;
    color: var(--mid);
    font-weight: 300;
    line-height: 1.6;
}

.contact-detail .cd-text strong {
    display: block;
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 4px;
}

.contact-action .section-title {
    margin-bottom: 20px;
}

.contact-action>p {
    font-size: 0.82rem;
    line-height: 1.9;
    color: var(--mid);
    font-weight: 300;
    margin-bottom: 40px;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 18px 40px;
    background: #25D366;
    color: #fff;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    transition: background 0.25s, transform 0.2s;
    width: fit-content;
    margin-bottom: 20px;
}

.btn-whatsapp:hover {
    background: #1da851;
    transform: translateY(-2px);
}

.btn-whatsapp svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    flex-shrink: 0;
}

.btn-instagram {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 18px 40px;
    background: transparent;
    border: 1px solid var(--line);
    color: var(--mid);
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    transition: border-color 0.25s, color 0.25s, transform 0.2s;
    width: fit-content;
}

.btn-instagram:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

.btn-instagram svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    flex-shrink: 0;
}

.btn-note {
    font-size: 0.65rem;
    color: var(--mid);
    opacity: 0.6;
    margin-top: 8px;
    font-style: italic;
}

/* ── FOOTER ── */
footer {
    background: var(--ink);
    padding: 40px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(168, 137, 74, 0.3);
}

footer .logo {
    color: var(--parchment);
}

footer .logo span {
    color: var(--gold);
}

footer p {
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    color: rgba(245, 240, 232, 0.35);
    font-weight: 300;
}

/* ── ANIMATIONS ── */
@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    header {
        padding: 18px 24px;
    }

    nav {
        display: none;
    }

    .hero {
        grid-template-columns: 1fr;
    }

    .hero-left {
        padding: 60px 24px;
    }

    .hero-right {
        min-height: 300px;
    }

    section {
        padding: 70px 24px;
    }

    .about,
    .contact {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .about-values {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-item {
        border-right: none;
    }

    .contact-info,
    .contact-action {
        padding: 60px 24px;
    }

    footer {
        flex-direction: column;
        gap: 16px;
        text-align: center;
        padding: 36px 24px;
    }

    .divider {
        margin: 0 24px;
    }
}