@property --angle {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}

:root {
    --bg-color: #0A0A0A;
    --text-color: #F5F5F5;
    --text-muted: #888888;
    --gold: #C9A96E;
    --gold-hover: #DBC08C;
    --gold-glow: rgba(201, 169, 110, .2);
    --card-bg: #121212;
    --shimmer-card-bg: #1A1A1A;
    --about-bg: #111111;
    --font-serif: "Cormorant Garamond", serif;
    --font-sans: "Plus Jakarta Sans", sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

html, body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-sans);
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.grain-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    opacity: .035;
    pointer-events: none;
    z-index: 9999;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: var(--bg-color);
}

::-webkit-scrollbar-thumb {
    background: #1a1a1a;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

.container {
    width: 100%;
    max-width: 460px;
    margin: 0 auto;
    padding: 0 0 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    overflow: hidden;
    border-radius: 0 0 16px 16px;
    background-color: var(--card-bg);
}

.hero-photo-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1.15 / 1;
    overflow: hidden;
}

.hero-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    display: block;
}

.hero-photo-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 65%;
    background: linear-gradient(to top, rgba(10,10,10,1) 0%, rgba(10,10,10,.95) 15%, rgba(10,10,10,.7) 35%, rgba(10,10,10,.3) 55%, transparent 100%);
    pointer-events: none;
}

.hero-info {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 2;
    padding: 0 24px;
}

.name {
    font-family: var(--font-serif);
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0;
    line-height: 1.1;
    text-shadow: 0 2px 20px rgba(0,0,0,.7);
    letter-spacing: .02em;
}

.name-first-letter {
    font-family: var(--font-serif);
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.subtitle {
    font-size: .72rem;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: .2em;
    margin-top: 8px;
    opacity: .9;
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 28px;
    width: 100%;
    padding: 14px 24px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-color);
    line-height: 1;
    margin-bottom: 4px;
    letter-spacing: .01em;
}

.stat-label {
    font-size: .62rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--text-muted);
    text-align: center;
}

.vertical-gold-line {
    width: 1px;
    height: 32px;
    background: linear-gradient(180deg, transparent, var(--gold) 20%, var(--gold) 80%, transparent);
    opacity: .4;
}

.hero-social {
    padding: 0 24px 14px;
}

.social-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(201, 169, 110, .3);
    background: transparent;
    text-decoration: none;
    color: var(--gold);
    transition: all .3s cubic-bezier(.16, 1, .3, 1);
}

.social-icon-btn svg {
    width: 18px;
    height: 18px;
}

.social-icon-btn:hover {
    border-color: var(--gold);
    background-color: #c9a96e1a;
    transform: scale(1.1);
    box-shadow: 0 0 15px #c9a96e26;
}

.tagline-container {
    width: 100%;
    padding: 0 28px;
    text-align: center;
}

.tagline {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.2rem;
    line-height: 1.55;
    color: #f5f5f5bf;
    font-weight: 500;
    max-width: 320px;
    margin: 0 auto;
    border: none;
}

.services {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 14px;
    padding: 0 20px;
}

@keyframes shimmerRotate {
    0% {
        --angle: 0deg;
    }
    to {
        --angle: 360deg;
    }
}

@keyframes pulseGlow {
    0%, to {
        box-shadow: 0 0 8px #c9a96e0d;
    }
    50% {
        box-shadow: 0 0 20px #c9a96e1f;
    }
}

.shimmer-card {
    position: relative;
    border-radius: 14px;
    padding: 2px;
    background: conic-gradient(from var(--angle), transparent 0%, transparent 70%, rgba(255, 255, 255, .7) 78%, rgba(201, 169, 110, .55) 84%, transparent 90%, transparent 100%);
    animation: shimmerRotate 6s linear infinite, pulseGlow 8s ease-in-out infinite;
    will-change: --angle;
}

.shimmer-card.shimmer-delay-1 {
    animation-delay: -1.5s, -2s;
}

.shimmer-card.shimmer-delay-2 {
    animation-delay: -3s, -4s;
}

.shimmer-card.shimmer-delay-3 {
    animation-delay: -4.5s, -6s;
}

.shimmer-card:hover {
    animation-duration: 4s, 5s;
    background: conic-gradient(from var(--angle), transparent 0%, transparent 62%, rgba(255, 255, 255, 1) 74%, rgba(201, 169, 110, 1) 80%, rgba(201, 169, 110, .6) 86%, transparent 92%, transparent 100%);
}

.btn {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all .3s cubic-bezier(.16, 1, .3, 1);
    width: 100%;
    cursor: pointer;
    position: relative;
}

.btn-service {
    padding: 18px 20px;
    background-color: var(--shimmer-card-bg);
    border: none;
    color: var(--text-color);
    border-radius: 12px;
    gap: 14px;
}

.btn-icon-wrap {
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: #c9a96e14;
    flex-shrink: 0;
    transition: background .3s ease;
}

.shimmer-card:hover .btn-icon-wrap {
    background: #c9a96e2e;
}

.btn-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    text-align: left;
}

.btn-text {
    font-size: .88rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--text-color);
    line-height: 1.3;
}

.btn-sub {
    font-size: .68rem;
    font-weight: 400;
    color: var(--text-muted);
    margin-top: 2px;
    letter-spacing: .02em;
}

.btn-arrow {
    font-size: 1.2rem;
    color: var(--text-muted);
    transition: all .3s ease;
    margin-left: auto;
    padding-left: 8px;
}

.shimmer-card:hover .btn-arrow {
    color: var(--gold);
    transform: translate(3px);
}

.btn-service:after {
    content: "";
    position: absolute;
    top: 0;
    left: -80%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .03), transparent);
    transform: skew(-20deg);
    transition: .6s ease;
    pointer-events: none;
}

.shimmer-card:hover .btn-service:after {
    left: 130%;
}

.about-section {
    width: 100%;
    padding: 0 20px;
}

.about-inner {
    background-color: var(--about-bg);
    border-radius: 14px;
    padding: 32px 24px;
    text-align: center;
    position: relative;
}

.about-title {
    font-family: var(--font-sans);
    font-size: .68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .22em;
    color: var(--gold);
    margin-bottom: 16px;
}

.about-text {
    font-size: .85rem;
    line-height: 1.8;
    color: #f5f5f5a6;
    font-weight: 400;
    letter-spacing: .02em;
    max-width: 360px;
    margin: 0 auto;
}

.about-gold-line-top, .about-gold-line-bottom {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 110, .35) 30%, rgba(201, 169, 110, .35) 70%, transparent);
    margin: 0 auto;
    width: 50px;
}

.about-gold-line-top {
    margin-bottom: 18px;
}

.about-gold-line-bottom {
    margin-top: 18px;
}

.faq-section {
    width: 100%;
    padding: 0 20px;
}

.faq-title {
    font-family: var(--font-sans);
    font-size: .68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .22em;
    color: var(--gold);
    text-align: center;
    margin-bottom: 20px;
}

.faq-item {
    border-bottom: 1px solid rgba(245, 245, 245, .06);
    overflow: hidden;
}

.faq-item:first-of-type {
    border-top: 1px solid rgba(245, 245, 245, .06);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 4px;
    background: none;
    border: none;
    color: var(--text-color);
    font-family: var(--font-sans);
    font-size: .85rem;
    font-weight: 500;
    letter-spacing: .02em;
    cursor: pointer;
    text-align: left;
    transition: color .3s ease;
}

.faq-question:hover {
    color: var(--gold);
}

.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all .35s cubic-bezier(.16, 1, .3, 1);
    flex-shrink: 0;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    color: var(--gold);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .45s cubic-bezier(.16, 1, .3, 1), padding .45s cubic-bezier(.16, 1, .3, 1);
    padding: 0 4px;
}

.faq-item.open .faq-answer {
    max-height: 200px;
    padding: 0 4px 18px;
}

.faq-answer p {
    font-size: .8rem;
    line-height: 1.7;
    color: #f5f5f58c;
    font-weight: 400;
    letter-spacing: .01em;
}

.social-follow {
    width: 100%;
    padding: 0 20px;
}

.btn-instagram {
    padding: 15px 24px;
    background-color: transparent;
    border: 1px solid rgba(245, 245, 245, .12);
    color: var(--text-color);
    font-size: .82rem;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
    gap: 10px;
    border-radius: 12px;
    justify-content: center;
}

.btn-instagram .icon {
    width: 17px;
    height: 17px;
    opacity: .7;
    transition: opacity .3s ease;
}

.btn-instagram:hover {
    background-color: var(--text-color);
    border-color: var(--text-color);
    color: #0a0a0a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px #f5f5f514;
}

.btn-instagram:hover .icon {
    opacity: 1;
}

.cta-section {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    gap: 16px;
    margin-top: 4px;
    padding: 0 20px;
}

.cta-tagline {
    font-size: .88rem;
    font-weight: 500;
    color: #f5f5f5a6;
    letter-spacing: .04em;
}

.btn-whatsapp {
    padding: 17px 24px;
    background-color: var(--gold);
    border: 1px solid var(--gold);
    color: #0a0a0a;
    font-size: .9rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    gap: 10px;
    box-shadow: 0 4px 20px #c9a96e26;
    border-radius: 12px;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.btn-whatsapp .icon {
    width: 18px;
    height: 18px;
}

.btn-whatsapp:hover {
    background-color: var(--gold-hover);
    border-color: var(--gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px #c9a96e59;
}

.btn-whatsapp:after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .25), transparent);
    transform: skew(-20deg);
    animation: whatsappShine 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes whatsappShine {
    0%, 70%, to {
        left: -100%;
    }
    85% {
        left: 150%;
    }
}

.footer-note {
    font-size: .58rem;
    color: #333;
    text-transform: uppercase;
    letter-spacing: .12em;
    margin-top: 32px;
    font-weight: 500;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes nameEntrance {
    0% {
        opacity: 0;
        letter-spacing: .12em;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        letter-spacing: .02em;
        transform: translateY(0);
    }
}

.animated-element {
    opacity: 0;
    animation: fadeInUp .9s cubic-bezier(.16, 1, .3, 1) forwards;
}

.hero.animated-element {
    animation-delay: .1s;
}

.tagline-container.animated-element {
    animation-delay: .3s;
}

.services.animated-element {
    animation-delay: .45s;
}

.about-section.animated-element {
    animation-delay: .6s;
}

.faq-section.animated-element {
    animation-delay: .75s;
}

.social-follow.animated-element {
    animation-delay: .9s;
}

.cta-section.animated-element {
    animation-delay: 1.05s;
}

.hero.animated-element .name {
    animation: nameEntrance 1.4s cubic-bezier(.16, 1, .3, 1) forwards;
    animation-delay: .25s;
}

@media (max-width: 360px) {
    .name {
        font-size: 2.1rem;
    }
    .name-first-letter {
        font-size: 2.7rem;
    }
    .tagline {
        font-size: 1.05rem;
    }
    .stat-number {
        font-size: 1.5rem;
    }
    .btn-text {
        font-size: .82rem;
    }
}

@media (min-width: 461px) {
    .container {
        padding-top: 20px;
    }
    .hero {
        border-radius: 16px;
    }
}
