*,
*::before,
*::after {
    box-sizing: border-box;
}

:root {
    --bg-deep: #141010;
    --bg-secondary: #1e1814;
    --bg-card: #2a211a;
    --gold-light: #f0d890;
    --gold: #d4af37;
    --gold-dark: #a8842a;
    --bronze: #6b4e2a;
    --text: #f5ede0;
    --text-muted: #b8a898;
    --gradient-gold: linear-gradient(135deg, #f0d890 0%, #d4af37 50%, #a8842a 100%);
    --gradient-hero: radial-gradient(ellipse at 30% 20%, rgba(212, 175, 55, 0.14) 0%, transparent 55%);
    --font-serif: "Cormorant Garamond", Georgia, serif;
    --font-sans: "Source Sans 3", system-ui, sans-serif;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
    --header-height: 80px;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text);
    background: var(--bg-deep);
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: var(--gold-light);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--gold);
}

.container {
    width: min(1120px, calc(100% - 2.5rem));
    margin-inline: auto;
}

/* Header */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(20, 16, 16, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: var(--header-height);
    gap: 1.5rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    color: var(--text);
}

.brand:hover {
    color: var(--text);
}

.brand-logo {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.35);
    object-fit: cover;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--gold-light);
}

.brand-tagline {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-muted);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 1.75rem;
}

.main-nav a {
    font-size: 0.92rem;
    letter-spacing: 0.04em;
    color: var(--text-muted);
}

.main-nav a:hover,
.main-nav a.is-active {
    color: var(--gold-light);
}

.nav-cta {
    padding: 0.55rem 1.1rem;
    border: 1px solid rgba(212, 175, 55, 0.45);
    border-radius: 999px;
    color: var(--gold) !important;
}

.nav-cta:hover {
    background: rgba(212, 175, 55, 0.1);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--gold);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Hero */

.hero {
    position: relative;
    padding: 4rem 0 5rem;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
    pointer-events: none;
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
}

.hero-label,
.section-label {
    margin: 0 0 0.75rem;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--gold);
}

.hero-title {
    margin: 0 0 1.25rem;
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.25;
    color: var(--gold-light);
}

.hero-lead {
    margin: 0 0 2rem;
    max-width: 34rem;
    font-size: 1.15rem;
    color: var(--text-muted);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.photo-frame {
    position: relative;
    padding: 6px;
    border-radius: var(--radius-lg);
    background: var(--gradient-gold);
    box-shadow: var(--shadow);
}

.photo-frame::before {
    content: "";
    position: absolute;
    inset: -20px;
    border-radius: calc(var(--radius-lg) + 20px);
    background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, transparent 70%);
    z-index: -1;
}

.photo-frame img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: calc(var(--radius-lg) - 4px);
}

/* Buttons */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.6rem;
    font-family: var(--font-sans);
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    border-radius: 999px;
    border: 1px solid transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: var(--gradient-gold);
    color: #2a1f14;
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.25);
}

.btn-primary:hover {
    color: #2a1f14;
    box-shadow: 0 12px 32px rgba(212, 175, 55, 0.35);
}

.btn-secondary {
    border-color: rgba(212, 175, 55, 0.4);
    color: var(--gold-light);
    background: transparent;
}

.btn-secondary:hover {
    background: rgba(212, 175, 55, 0.08);
    color: var(--gold-light);
}

.btn-large {
    font-size: 1rem;
    padding: 1rem 2rem;
}

/* Sections */

.section {
    padding: 5rem 0;
}

.section-about {
    background: var(--bg-secondary);
}

.section-services {
    background: var(--bg-deep);
}

.section-contact {
    background: var(--bg-secondary);
    padding-bottom: 6rem;
}

.section-header {
    margin-bottom: 2.5rem;
}

.section-header h2 {
    margin: 0;
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 600;
    color: var(--gold-light);
}

.section-intro {
    margin: 1rem 0 0;
    max-width: 36rem;
    color: var(--text-muted);
}

.section-note {
    margin-top: 2.5rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* About */

.about-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr;
    gap: 3rem;
    align-items: start;
}

.about-text p {
    margin: 0 0 1.25rem;
    color: var(--text);
}

.about-text p:last-child {
    margin-bottom: 0;
}

.quote-card {
    padding: 1.75rem;
    margin-bottom: 1.5rem;
    background: var(--bg-card);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius);
}

.quote-card blockquote {
    margin: 0;
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-style: italic;
    line-height: 1.5;
    color: var(--gold-light);
}

.about-logo {
    text-align: center;
}

.about-logo img {
    margin-inline: auto;
    width: min(200px, 100%);
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.25);
}

/* Cards */

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.card {
    padding: 2rem 1.75rem;
    background: var(--bg-card);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: var(--radius);
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.card:hover {
    border-color: rgba(212, 175, 55, 0.35);
    transform: translateY(-2px);
}

.card-icon {
    margin-bottom: 1rem;
    font-size: 1.4rem;
    color: var(--gold);
}

.card h3 {
    margin: 0 0 0.75rem;
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--gold-light);
}

.card p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.98rem;
}

/* Contact */

.contact-box {
    max-width: 640px;
    margin-inline: auto;
    padding: 3rem;
    text-align: center;
    background: var(--bg-card);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.contact-box .section-header {
    margin-bottom: 2rem;
}

.contact-box .section-intro {
    margin-inline: auto;
}

/* Footer */

.site-footer {
    padding: 2.5rem 0;
    border-top: 1px solid rgba(212, 175, 55, 0.12);
    background: var(--bg-deep);
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-align: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo {
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.25);
}

.footer-name {
    margin: 0;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--gold-light);
}

.footer-contact a {
    font-size: 0.95rem;
}

.footer-copy {
    margin: 0;
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* Responsive */

@media (max-width: 900px) {
    .hero-grid,
    .about-grid,
    .cards-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        order: -1;
        max-width: 320px;
        margin-inline: auto;
    }

    .about-aside {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
        align-items: center;
    }
}

@media (max-width: 680px) {
    .nav-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        background: rgba(20, 16, 16, 0.98);
        border-bottom: 1px solid rgba(212, 175, 55, 0.15);
        transform: translateY(-120%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.25s ease, opacity 0.25s ease;
    }

    .main-nav.is-open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .main-nav a {
        width: 100%;
        padding: 0.85rem 1.25rem;
        text-align: center;
    }

    .nav-toggle[aria-expanded="true"] span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-toggle[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle[aria-expanded="true"] span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .about-aside {
        grid-template-columns: 1fr;
    }

    .contact-box {
        padding: 2rem 1.5rem;
    }
}
