/* ============================================
   ALICANTE WEDDING PLANNER
   Luxury Landing Page Stylesheet
   ============================================ */

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

:root {
    /* Brand Palette */
    --ivory: #FAF6F0;
    --sand: #D4C5A9;
    --terracotta: #C67D4A;
    --gold: #B8A88A;
    --gold-light: #C9B99B;
    --wine: #5C2434;
    --wine-light: #7A3348;
    --charcoal: #2C2C2C;
    --dark: #1A1A1A;
    --white: #FFFFFF;
    --cream: #F5F0E8;
    --warm-grey: #8A8176;

    /* Typography */
    --display: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
    --sans: 'DM Sans', 'Helvetica Neue', Arial, sans-serif;

    /* Spacing */
    --section-padding: clamp(80px, 10vw, 160px);
    --container-max: 1280px;
    --container-narrow: 860px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--sans);
    font-weight: 300;
    color: var(--charcoal);
    background-color: var(--ivory);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* ── UTILITIES ─────────────────────────────── */
.container {
    width: 90%;
    max-width: var(--container-max);
    margin: 0 auto;
}

.container--narrow {
    max-width: var(--container-narrow);
}

.section-label {
    font-family: var(--sans);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 1rem;
    text-align: center;
}

.section-label--light {
    color: var(--sand);
}

.section-title {
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--dark);
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: -0.01em;
}

.section-title--light {
    color: var(--white);
}

/* ── BUTTONS ──────────────────────────────── */
.btn {
    display: inline-block;
    font-family: var(--sans);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-align: center;
}

.btn--primary {
    background-color: var(--wine);
    color: var(--white);
    padding: 18px 48px;
    position: relative;
    overflow: hidden;
}

.btn--primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
    transition: left 0.6s ease;
}

.btn--primary:hover {
    background-color: var(--wine-light);
    transform: translateY(-1px);
    box-shadow: 0 8px 30px rgba(92, 36, 52, 0.25);
}

.btn--primary:hover::before {
    left: 100%;
}

.btn--large {
    padding: 22px 56px;
    font-size: 0.75rem;
}

.btn--small {
    padding: 10px 24px;
    font-size: 0.65rem;
    background-color: var(--wine);
    color: var(--white);
}

.btn--small:hover {
    background-color: var(--wine-light);
}

/* ── NAVIGATION ───────────────────────────── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 24px 0;
    transition: all 0.4s ease;
}

.nav--scrolled {
    background-color: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 16px 0;
    box-shadow: 0 1px 0 rgba(255,255,255,0.05);
}

.nav__container {
    width: 90%;
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__logo {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.nav__logo-text {
    font-family: var(--serif);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--white);
    letter-spacing: 0.05em;
}

.nav__logo-accent {
    font-family: var(--sans);
    font-size: 0.55rem;
    font-weight: 400;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
}

.nav__links a {
    font-family: var(--sans);
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
    transition: color 0.3s ease;
}

.nav__links a:hover {
    color: var(--white);
}

.nav__cta {
    border: 1px solid rgba(255,255,255,0.3) !important;
    padding: 10px 24px !important;
    transition: all 0.3s ease !important;
}

.nav__cta:hover {
    border-color: var(--gold) !important;
    color: var(--gold) !important;
}

.nav__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav__hamburger span {
    display: block;
    width: 24px;
    height: 1px;
    background-color: var(--white);
    transition: all 0.3s ease;
}

/* ── MOBILE MENU ──────────────────────────── */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--dark);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: right 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mobile-menu--open {
    right: 0;
}

.mobile-menu__close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    font-weight: 300;
}

.mobile-menu__links {
    list-style: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.mobile-menu__links a {
    font-family: var(--serif);
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--white);
    transition: color 0.3s ease;
}

.mobile-menu__links a:hover {
    color: var(--gold);
}

/* ── HERO ─────────────────────────────────── */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--dark);
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10, 10, 10, 0.65) 0%,
        rgba(10, 10, 10, 0.50) 40%,
        rgba(10, 10, 10, 0.75) 100%
    );
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
}

.hero__preheading {
    font-family: var(--sans);
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 2rem;
}

.hero__title {
    font-family: var(--serif);
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    font-weight: 300;
    line-height: 1.08;
    color: var(--white);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero__subtitle {
    font-family: var(--sans);
    font-size: clamp(0.85rem, 1.2vw, 1rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 3rem;
    letter-spacing: 0.05em;
    line-height: 1.8;
}

.hero__cta {
    margin-bottom: 3.5rem;
}

.hero__support {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.hero__support-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--sans);
    font-size: 0.68rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

.hero__support-icon {
    color: var(--gold);
    font-size: 0.5rem;
}

.hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.hero__scroll span {
    font-family: var(--sans);
    font-size: 0.55rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, rgba(255,255,255,0.4), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.4; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
}

/* ── CLAIM ────────────────────────────────── */
.claim {
    padding: var(--section-padding) 0;
    background-color: var(--ivory);
}

.claim__title {
    font-family: var(--serif);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 300;
    line-height: 1.25;
    color: var(--dark);
    text-align: center;
    margin-bottom: 2rem;
}

.claim__divider {
    width: 60px;
    height: 1px;
    background-color: var(--terracotta);
    margin: 0 auto 2.5rem;
}

.claim__text {
    font-family: var(--sans);
    font-size: clamp(0.9rem, 1.1vw, 1.05rem);
    font-weight: 300;
    line-height: 2;
    color: var(--warm-grey);
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

/* ── SERVICES ─────────────────────────────── */
.services {
    padding: var(--section-padding) 0;
    background-color: #566b79;
}

.services__header {
    text-align: center;
    margin-bottom: clamp(48px, 6vw, 80px);
}

.services__header .section-label {
    color: var(--gold);
}

.services__heading {
    font-family: var(--sans);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 300;
    letter-spacing: -0.03em;
    color: var(--white);
    margin-top: 0.8rem;
}

.services__list {
    max-width: 960px;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.services__row {
    display: grid;
    grid-template-columns: 56px 1fr 40px;
    align-items: start;
    gap: 32px;
    padding: 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    cursor: default;
    transition: all 0.4s ease;
}

.services__row:hover {
    padding-left: 12px;
}

.services__row:hover .services__index {
    color: var(--terracotta);
}

.services__row:hover .services__arrow {
    opacity: 1;
    transform: translateX(0);
    color: var(--terracotta);
}

.services__row:hover .services__name {
    color: var(--terracotta);
}

.services__index {
    font-family: var(--sans);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.3);
    padding-top: 4px;
    transition: color 0.4s ease;
}

.services__info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.services__name {
    font-family: var(--sans);
    font-size: clamp(1.05rem, 1.6vw, 1.3rem);
    font-weight: 400;
    color: var(--white);
    letter-spacing: -0.01em;
    line-height: 1.3;
    transition: color 0.4s ease;
}

.services__desc {
    font-family: var(--sans);
    font-size: 0.82rem;
    font-weight: 300;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.5);
    max-width: 620px;
}

.services__arrow {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.25);
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.4s ease;
    padding-top: 2px;
    align-self: start;
}

/* ── DESTINATION ──────────────────────────── */
.destination {
    position: relative;
    padding: var(--section-padding) 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.destination__bg {
    position: absolute;
    inset: 0;
    background-color: var(--dark);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.destination__overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 26, 0.7);
}

.destination__content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.destination__text {
    font-family: var(--sans);
    font-size: clamp(0.9rem, 1.1vw, 1.05rem);
    font-weight: 300;
    line-height: 2;
    color: rgba(255, 255, 255, 0.75);
    text-align: center;
    margin-bottom: 2rem;
}

.destination__features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 3rem;
}

.destination__feature {
    padding: 12px 28px;
    border: 1px solid rgba(184, 168, 138, 0.4);
    font-family: var(--sans);
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-light);
    transition: all 0.3s ease;
}

.destination__feature:hover {
    border-color: var(--gold);
    background-color: rgba(184, 168, 138, 0.1);
}

/* ── PROCESS ──────────────────────────────── */
.process {
    padding: var(--section-padding) 0;
    background-color: var(--ivory);
}

.process__intro {
    font-family: var(--sans);
    font-size: clamp(0.88rem, 1vw, 1rem);
    font-weight: 300;
    line-height: 2;
    color: var(--warm-grey);
    text-align: center;
    max-width: 680px;
    margin: -1rem auto 4rem;
}

.process__timeline {
    max-width: 780px;
    margin: 0 auto;
    position: relative;
}

.process__timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(180deg, transparent, var(--sand), var(--terracotta), var(--sand), transparent);
}

.process__step {
    display: flex;
    gap: 40px;
    margin-bottom: 48px;
    align-items: flex-start;
}

.process__step:last-child {
    margin-bottom: 0;
}

.process__step-number {
    font-family: var(--serif);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--terracotta);
    width: 60px;
    height: 60px;
    min-width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--sand);
    border-radius: 50%;
    background-color: var(--ivory);
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.process__step:hover .process__step-number {
    border-color: var(--terracotta);
    background-color: var(--terracotta);
    color: var(--white);
}

.process__step-content {
    padding-top: 12px;
}

.process__step-title {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.process__step-text {
    font-family: var(--sans);
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.9;
    color: var(--warm-grey);
}

/* ── BRAND CARD ───────────────────────────── */
.brand-card-section {
    padding: var(--section-padding) 0;
    background-color: var(--cream);
}

.brand-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-color: var(--white);
    border: 1px solid rgba(212, 197, 169, 0.3);
    overflow: hidden;
    position: relative;
}

.brand-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--terracotta), var(--gold), var(--wine));
}

.brand-card__left {
    padding: 56px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid rgba(212, 197, 169, 0.2);
}

.brand-card__logo {
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
}

.brand-card__logo-main {
    font-family: var(--serif);
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--dark);
    letter-spacing: 0.05em;
    line-height: 1.1;
}

.brand-card__logo-sub {
    font-family: var(--sans);
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 4px;
}

.brand-card__mission {
    font-family: var(--sans);
    font-size: 0.88rem;
    font-weight: 300;
    line-height: 1.9;
    color: var(--warm-grey);
}

.brand-card__right {
    padding: 56px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 28px;
}

.brand-card__heading {
    font-family: var(--sans);
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 12px;
}

.brand-card__palette {
    display: flex;
    gap: 12px;
}

.brand-card__swatch {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
    cursor: default;
}

.brand-card__swatch:hover {
    transform: scale(1.15);
}

.brand-card__type-serif {
    font-family: var(--serif);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--dark);
    margin-bottom: 4px;
}

.brand-card__type-sans {
    font-family: var(--sans);
    font-size: 0.82rem;
    font-weight: 300;
    color: var(--warm-grey);
}

.brand-card__values {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.brand-card__values span {
    padding: 8px 20px;
    border: 1px solid var(--sand);
    font-family: var(--sans);
    font-size: 0.68rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--dark);
    transition: all 0.3s ease;
}

.brand-card__values span:hover {
    border-color: var(--terracotta);
    color: var(--terracotta);
}

/* ── GALLERY ──────────────────────────────── */
.gallery {
    padding: var(--section-padding) 0;
    background-color: var(--ivory);
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: auto;
    gap: 16px;
    margin-top: 1rem;
    padding: 0 5%;
}

.gallery__item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery__item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 10 / 9;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery__item--tall img {
    aspect-ratio: 3 / 5;
}

.gallery__item--wide img {
    aspect-ratio: 16 / 9;
}

.gallery__item:hover img {
    transform: scale(1.05);
}

.gallery__item--tall {
    grid-row: span 2;
}

.gallery__item--wide {
    grid-column: span 2;
}

.gallery__placeholder {
    display: none;
}

.gallery__placeholder span {
    font-family: var(--serif);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--dark);
    margin-bottom: 8px;
}

.gallery__placeholder p {
    font-family: var(--sans);
    font-size: 0.72rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: var(--warm-grey);
}

.gallery__item:hover .gallery__placeholder {
    background: linear-gradient(135deg, rgba(198, 125, 74, 0.25), rgba(92, 36, 52, 0.2));
    transform: scale(1.02);
}

/* ── INQUIRY FORM ─────────────────────────── */
.inquiry {
    padding: var(--section-padding) 0;
    background-color: var(--cream);
}

.inquiry__intro {
    font-family: var(--sans);
    font-size: clamp(0.88rem, 1vw, 1rem);
    font-weight: 300;
    line-height: 2;
    color: var(--warm-grey);
    text-align: center;
    max-width: 640px;
    margin: -1rem auto 3.5rem;
}

/* Form Styles */
.form {
    background-color: var(--white);
    padding: 56px 48px;
    border: 1px solid rgba(212, 197, 169, 0.3);
}

.form__row {
    margin-bottom: 28px;
}

.form__row:last-child {
    margin-bottom: 0;
}

.form__row--two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form__row--submit {
    text-align: center;
    margin-top: 40px;
}

.form__label {
    display: block;
    font-family: var(--sans);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--dark);
    margin-bottom: 10px;
}

.form__required {
    color: var(--terracotta);
}

.form__input,
.form__select,
.form__textarea {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--sans);
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--charcoal);
    background-color: var(--ivory);
    border: 1px solid rgba(212, 197, 169, 0.5);
    outline: none;
    transition: all 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
    border-radius: 0;
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
    border-color: var(--terracotta);
    box-shadow: 0 0 0 3px rgba(198, 125, 74, 0.08);
}

.form__input::placeholder,
.form__textarea::placeholder {
    color: rgba(138, 129, 118, 0.5);
}

.form__select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238A8176' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 40px;
}

.form__textarea {
    resize: vertical;
    min-height: 120px;
}

/* Radio Buttons */
.form__radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.form__radio {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.form__radio input {
    display: none;
}

.form__radio-custom {
    width: 20px;
    height: 20px;
    border: 1px solid var(--sand);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.form__radio-custom::after {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--terracotta);
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

.form__radio input:checked + .form__radio-custom {
    border-color: var(--terracotta);
}

.form__radio input:checked + .form__radio-custom::after {
    opacity: 1;
    transform: scale(1);
}

.form__radio-text {
    font-family: var(--sans);
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--charcoal);
}

/* Checkboxes */
.form__checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.form__checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.form__checkbox input {
    display: none;
}

.form__checkbox-custom {
    width: 20px;
    height: 20px;
    border: 1px solid var(--sand);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.form__checkbox-custom::after {
    content: '✓';
    font-size: 0.65rem;
    color: var(--white);
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

.form__checkbox input:checked + .form__checkbox-custom {
    background-color: var(--terracotta);
    border-color: var(--terracotta);
}

.form__checkbox input:checked + .form__checkbox-custom::after {
    opacity: 1;
    transform: scale(1);
}

.form__checkbox-text {
    font-family: var(--sans);
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--charcoal);
}

.form__checkbox-text a {
    color: var(--terracotta);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.form__checkbox--privacy {
    align-items: flex-start;
}

.form__checkbox--privacy .form__checkbox-custom {
    margin-top: 2px;
}

/* Form Success */
.form-success {
    display: none;
    text-align: center;
    padding: 80px 40px;
    background-color: var(--white);
    border: 1px solid rgba(212, 197, 169, 0.3);
}

.form-success--visible {
    display: block;
    animation: fadeInUp 0.6s ease forwards;
}

.form-success__icon {
    width: 64px;
    height: 64px;
    border: 2px solid var(--terracotta);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--terracotta);
    margin: 0 auto 2rem;
}

.form-success__title {
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 300;
    color: var(--dark);
    margin-bottom: 1rem;
}

.form-success__text {
    font-family: var(--sans);
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.9;
    color: var(--warm-grey);
    max-width: 500px;
    margin: 0 auto;
}

/* ── FOOTER ───────────────────────────────── */
.footer {
    background-color: var(--dark);
    padding: 80px 0 40px;
}

.footer__top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__logo {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
}

.footer__logo-main {
    font-family: var(--serif);
    font-size: 1.6rem;
    font-weight: 300;
    color: var(--white);
    letter-spacing: 0.05em;
    line-height: 0.9;
}

.footer__logo-sub {
    font-family: var(--sans);
    font-size: 0.5rem;
    font-weight: 500;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold);
}

.footer__tagline {
    font-family: var(--sans);
    font-size: 0.78rem;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.4);
}

.footer__heading {
    font-family: var(--sans);
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.footer__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__list a {
    font-family: var(--sans);
    font-size: 0.82rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.55);
    transition: color 0.3s ease;
}

.footer__list a:hover {
    color: var(--white);
}

.footer__bottom {
    padding-top: 32px;
    text-align: center;
}

.footer__bottom p {
    font-family: var(--sans);
    font-size: 0.7rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.25);
}

/* ── COOKIE NOTICE ────────────────────────── */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 3000;
    padding: 20px 0;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cookie-notice--visible {
    transform: translateY(0);
}

.cookie-notice__content {
    width: 90%;
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cookie-notice__content p {
    font-family: var(--sans);
    font-size: 0.78rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.65);
}

.cookie-notice__actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.cookie-notice__link {
    font-family: var(--sans);
    font-size: 0.72rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-notice__link:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* ── ANIMATIONS ───────────────────────────── */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-animate].animated {
    opacity: 1;
    transform: translateY(0);
}

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

/* ── RESPONSIVE ───────────────────────────── */
@media (max-width: 1024px) {
    .services__row {
        grid-template-columns: 40px 1fr 32px;
        gap: 20px;
    }

    .brand-card {
        grid-template-columns: 1fr;
    }

    .brand-card__left {
        border-right: none;
        border-bottom: 1px solid rgba(212, 197, 169, 0.2);
    }

    .footer__top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer__brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .nav__links {
        display: none;
    }

    .nav__hamburger {
        display: flex;
    }

    .hero__title {
        font-size: clamp(2.2rem, 8vw, 3.5rem);
    }

    .hero__support {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .services__row {
        grid-template-columns: 36px 1fr;
        gap: 16px;
        padding: 28px 0;
    }

    .services__arrow {
        display: none;
    }

    .destination__bg {
        background-attachment: scroll;
    }

    .gallery__grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
        padding: 0 5%;
    }

    .gallery__item--tall {
        grid-row: span 1;
    }

    .gallery__item--wide {
        grid-column: span 1;
    }

    .form__row--two {
        grid-template-columns: 1fr;
    }

    .form {
        padding: 40px 24px;
    }

    .form__radio-group,
    .form__checkbox-group {
        flex-direction: column;
        gap: 12px;
    }

    .process__timeline::before {
        left: 22px;
    }

    .process__step {
        gap: 24px;
    }

    .process__step-number {
        width: 44px;
        height: 44px;
        min-width: 44px;
        font-size: 0.9rem;
    }

    .footer__top {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer__brand {
        grid-column: auto;
    }

    .cookie-notice__content {
        flex-direction: column;
        text-align: center;
    }

    .brand-card__left,
    .brand-card__right {
        padding: 40px 28px;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 60px;
    }

    .hero {
        min-height: 100vh;
    }

    .hero__preheading {
        font-size: 0.55rem;
    }

    .hero__subtitle br {
        display: none;
    }

    .claim__title br {
        display: none;
    }

    .section-title br {
        display: none;
    }

    .destination__features {
        gap: 10px;
    }

    .destination__feature {
        padding: 10px 20px;
        font-size: 0.6rem;
    }

    .btn--primary {
        padding: 16px 36px;
    }

    .btn--large {
        padding: 18px 40px;
        font-size: 0.7rem;
    }
}

/* ── PRINT ────────────────────────────────── */
@media print {
    .nav, .cookie-notice, .hero__scroll, .mobile-menu {
        display: none;
    }

    .hero {
        height: auto;
        min-height: auto;
        padding: 60px 0;
        background: var(--dark) !important;
    }

    body {
        font-size: 12pt;
    }
}
