/* ═══════════════════════════════════════════
   DROPLETS OFFICIAL — BASE DESIGN SYSTEM
   ═══════════════════════════════════════════ */

/* ── Reset ── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

ul,
ol {
    list-style: none;
}

button,
input,
textarea,
select {
    font-family: inherit;
    font-size: inherit;
    border: none;
    outline: none;
    background: none;
}

button {
    cursor: pointer;
}

/* ── CSS Variables ── */
:root {
    /* Brand Colors */
    --gold: #c9a96e;
    --gold-light: #dcc9a1;
    --gold-dark: #a68a4b;
    --gold-hover: #b8960f;

    /* Neutrals */
    --black: #0d0d0d;
    --dark: #1a1a1a;
    --dark-2: #2c2c2c;
    --dark-3: #3a3a3a;
    --grey: #6b6b6b;
    --grey-light: #999999;
    --border: #e0dcd7;
    --border-light: #eee9e3;
    --cream: #f5f0eb;
    --cream-light: #faf7f4;
    --white: #ffffff;
    --off-white: #fefdfb;

    /* Semantic */
    --bg: var(--white);
    --bg-alt: var(--cream);
    --bg-dark: var(--black);
    --text: var(--dark);
    --text-light: var(--grey);
    --text-on-dark: var(--white);
    --accent: var(--gold);
    --accent-hover: var(--gold-dark);

    /* Typography */
    --font-heading: 'Cormorant Garamond', 'Georgia', serif;
    --font-body: 'Inter', 'Helvetica Neue', sans-serif;
    --font-accent: 'Outfit', sans-serif;

    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 40px;
    --space-2xl: 64px;
    --space-3xl: 100px;

    /* Layout */
    --max-width: 1320px;
    --header-height: 72px;
    --announcement-height: 36px;

    /* Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-pill: 100px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.1);

    /* Transitions */
    --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --duration-fast: 0.2s;
    --duration-normal: 0.4s;
    --duration-slow: 0.6s;
}

/* ── Typography ── */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: var(--dark);
}

h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
}

h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.4rem, 3vw, 2rem);
}

h4 {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
}

p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

.text-gold {
    color: var(--gold);
}

.text-center {
    text-align: center;
}

.text-uppercase {
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.7rem;
    font-weight: 600;
    font-family: var(--font-accent);
}

/* ── Container ── */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 60px);
}

.container--narrow {
    max-width: 900px;
}

/* ── Section Spacing ── */
.section {
    padding: var(--space-3xl) 0;
}

.section--dark {
    background: var(--bg-dark);
    color: var(--text-on-dark);
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 {
    color: var(--white);
}

.section--dark p {
    color: rgba(255, 255, 255, 0.65);
}

.section--cream {
    background: var(--bg-alt);
}

/* ── Section Header ── */
.section-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.section-label {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.7rem;
    font-weight: 600;
    font-family: var(--font-accent);
    color: var(--gold);
    margin-bottom: var(--space-md);
}

.section-header h2 {
    margin-bottom: var(--space-md);
}

.section-header p {
    max-width: 560px;
    margin: 0 auto;
}

/* ── Utility Classes ── */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

.grid {
    display: grid;
    gap: var(--space-lg);
}

.flex {
    display: flex;
    align-items: center;
}

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ── Reveal Animation ── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-smooth),
        transform 0.8s var(--ease-smooth);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}