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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%
}

img {
    display: block;
    max-width: 100%;
    height: auto
}

a {
    text-decoration: none;
    color: inherit
}

ul {
    list-style: none
}

/* ══════════════════════════════════════════
   BASE
══════════════════════════════════════════ */
body {
    font-family: 'Lato', sans-serif;
    background: var(--cream);
    color: var(--brown);
    overflow-x: hidden
}

/* ══════════════════════════════════════════
   TYPOGRAPHY HELPERS
══════════════════════════════════════════ */
.script {
    font-family: 'Great Vibes', cursive
}

.cinzel {
    font-family: 'Cinzel', serif
}

.italic {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic
}

/* h1 keeps Cinzel (logo, nav structural)
   h2, h3 → Cormorant Garamond for elegant section/card titles */
h1 {
    font-family: 'Cinzel', serif
}

h2,
h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-style: normal
}

/* Override sec-title size + tracking for Cormorant (needs slightly larger) */
.sec-title {
    font-size: clamp(26px, 4vw, 40px);
    letter-spacing: .01em
}

/* ══════════════════════════════════════════
   LAYOUT
══════════════════════════════════════════ */
.wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px
}

section {
    padding: 72px 0
}

@media(min-width:768px) {
    section {
        padding: 96px 0
    }
}

/* ══════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 30px;
    border-radius: var(--r);
    font-family: 'Cinzel', serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all .25s
}

.btn-gold {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold)
}

.btn-gold:hover {
    background: var(--gold-deep);
    border-color: var(--gold-deep);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(200, 134, 10, .35)
}

.btn-outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, .7)
}

.btn-outline:hover {
    background: rgba(255, 255, 255, .12);
    border-color: #fff
}

.btn-outline-gold {
    background: transparent;
    color: var(--gold);
    border-color: var(--gold)
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: #fff
}

html[lang="vi"] .btn,
html[lang="zh"] .btn,
html[lang="ko"] .btn {
    font-family: inherit;
    letter-spacing: .05em
}

/* ══════════════════════════════════════════
   SECTION HEADER
══════════════════════════════════════════ */
.sec-head {
    text-align: center;
    margin-bottom: 48px
}

.sec-eyebrow {
    font-family: 'Cormorant Garamond', serif;
    font-size: 12px;
    letter-spacing: .35em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 6px
}

.sec-script {
    font-family: 'Great Vibes', cursive;
    font-size: clamp(38px, 7vw, 60px);
    color: var(--gold);
    display: block;
    line-height: 1.1;
    margin-bottom: 4px
}

.sec-title {
    font-size: clamp(22px, 3.5vw, 34px);
    color: var(--brown);
    margin-bottom: 12px;
    line-height: 1.2
}

.sec-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-lt), transparent);
    margin: 0 auto 16px
}

.sec-sub {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 17px;
    color: var(--brown2);
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto
}

/* ══════════════════════════════════════════
   REVEAL ANIMATION
══════════════════════════════════════════ */
.rv {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s ease, transform .7s ease
}

.rv.vis {
    opacity: 1;
    transform: none
}

/* ══════════════════════════════════════════
   UTILITIES
══════════════════════════════════════════ */
.txt-center {
    text-align: center
}

/* Flat SVG icon helper */
.si {
    width: 1.1em;
    height: 1.1em;
    display: inline-block;
    vertical-align: middle;
    fill: currentColor;
    flex-shrink: 0
}