/* ===================================
   T J's Ice Cream Parlour — Styles
   =================================== */

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

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

body {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #FAF8F5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

ul {
    list-style: none;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: #0A1628;
    color: #F5D78E;
    padding: 8px 16px;
    z-index: 200;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
}

.skip-link:focus {
    top: 16px;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (min-width: 768px) {
    .container {
        padding: 0 40px;
    }
}

@media (min-width: 1200px) {
    .container {
        padding: 0 48px;
    }
}

/* ---- LOADER ---- */
.loader {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: #0A1628;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-icon {
    margin: 0 auto 16px;
    animation: loaderPulse 1.2s ease-in-out infinite;
}

@keyframes loaderPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.loader-text {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 18px;
    color: #D4A843;
    letter-spacing: 0.05em;
}

/* ---- HEADER ---- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: transparent;
    transition: background 0.4s ease, box-shadow 0.4s ease;
}

.header.scrolled {
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(212, 168, 67, 0.15);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

@media (min-width: 768px) {
    .header-inner {
        padding: 24px 40px;
    }
}

@media (min-width: 1200px) {
    .header-inner {
        padding: 24px 48px;
    }
}

/* ---- LOGO ---- */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 101;
}

.logo-icon {
    flex-shrink: 0;
}

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

.logo-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 20px;
    font-weight: 700;
    color: #F5D78E;
    letter-spacing: 0.02em;
}

.logo-sub {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 500;
    color: rgba(245, 215, 142, 0.6);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

/* ---- NAV ---- */
.nav {
    display: none;
    align-items: center;
    gap: 32px;
}

@media (min-width: 1024px) {
    .nav {
        display: flex;
    }
}

.nav-list {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: #D4A843;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #F5D78E;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #D4A843;
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
}

.nav-cta:hover {
    color: #F5D78E;
}

/* ---- MENU TOGGLE ---- */
.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 101;
}

@media (min-width: 1024px) {
    .menu-toggle {
        display: none;
    }
}

.menu-bar {
    display: block;
    width: 24px;
    height: 2px;
    background: #F5D78E;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle[aria-expanded="true"] .menu-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ---- MOBILE MENU ---- */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 99;
    background: rgba(10, 22, 40, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav {
    text-align: center;
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 48px;
}

.mobile-nav-link {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 32px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: #F5D78E;
}

.mobile-nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #D4A843;
}

/* ---- HERO ---- */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 60% at 50% 40%, rgba(212, 168, 67, 0.25) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 20% 60%, rgba(29, 53, 87, 0.8) 0%, transparent 50%),
        radial-gradient(ellipse 60% 50% at 80% 30%, rgba(180, 100, 60, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse 50% 40% at 60% 80%, rgba(100, 60, 120, 0.2) 0%, transparent 50%),
        linear-gradient(160deg, #0A1628 0%, #1a2744 40%, #2d1f3d 70%, #1a1210 100%);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(rgba(245, 215, 142, 0.04) 1px, transparent 1px);
    background-size: 32px 32px;
}

.hero-grain {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-size: 128px 128px;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    padding: 120px 24px 80px;
}

@media (min-width: 768px) {
    .hero-content {
        padding: 160px 40px 100px;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(245, 215, 142, 0.8);
    margin-bottom: 32px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #D4A843;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-headline {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(48px, 10vw, 96px);
    font-weight: 800;
    line-height: 1.05;
    color: #ffffff;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.headline-accent {
    color: #D4A843;
    font-style: italic;
    font-weight: 600;
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
    max-width: 520px;
    margin: 0 auto 40px;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-bottom: 56px;
}

/* ---- BUTTONS ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #D4A843;
    color: #0A1628;
}

.btn-primary:hover {
    background: #F5D78E;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 168, 67, 0.3);
}

.btn-outline {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    border-color: #D4A843;
    color: #D4A843;
    transform: translateY(-2px);
}

.btn-outline-sm {
    background: transparent;
    color: #D4A843;
    border: 1px solid rgba(212, 168, 67, 0.4);
    padding: 10px 20px;
    font-size: 13px;
}

.btn-outline-sm:hover {
    border-color: #D4A843;
    background: rgba(212, 168, 67, 0.08);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 28px;
    font-weight: 700;
    color: #F5D78E;
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.stat-divider {
    width: 1px;
    height: 32px;
    background: rgba(255, 255, 255, 0.15);
}

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

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(245, 215, 142, 0.6), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

.scroll-text {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(245, 215, 142, 0.5);
}

/* ---- SECTION COMMON ---- */
.section-label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #D4A843;
    margin-bottom: 20px;
}

.label-line {
    width: 32px;
    height: 1px;
    background: #D4A843;
    flex-shrink: 0;
}

.section-headline {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    color: #0A1628;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: clamp(16px, 2vw, 18px);
    color: #555;
    line-height: 1.7;
    max-width: 560px;
    font-weight: 300;
}

/* ---- FLAVORS ---- */
.flavors {
    padding: 100px 0 120px;
}

@media (min-width: 768px) {
    .flavors {
        padding: 120px 0 140px;
    }
}

.flavors .container:first-of-type {
    margin-bottom: 64px;
}

@media (min-width: 768px) {
    .flavors .container:first-of-type {
        margin-bottom: 80px;
    }
}

.flavors-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 64px;
}

@media (min-width: 640px) {
    .flavors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .flavors-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.flavor-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(10, 22, 40, 0.06);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.flavor-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(10, 22, 40, 0.12);
}

.flavor-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/2;
}

.flavor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.flavor-card:hover .flavor-image img {
    transform: scale(1.06);
}

.flavor-tag {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #0A1628;
    color: #F5D78E;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 3px;
}

.flavor-info {
    padding: 20px;
}

.flavor-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 20px;
    font-weight: 700;
    color: #0A1628;
    margin-bottom: 8px;
}

.flavor-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    font-weight: 300;
}

.flavors-cta {
    text-align: center;
    padding: 40px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 16px rgba(10, 22, 40, 0.06);
}

.flavors-cta p {
    font-size: 18px;
    color: #444;
    margin-bottom: 16px;
    font-weight: 300;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #D4A843;
    letter-spacing: 0.04em;
    transition: gap 0.3s ease;
}

.link-arrow:hover {
    gap: 10px;
}

/* ---- ABOUT ---- */
.about {
    padding: 100px 0 120px;
    background: #0A1628;
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 168, 67, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

@media (min-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 64px;
    }
}

.about-image-wrap {
    position: relative;
}

.about-image {
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/5;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-accent {
    position: absolute;
    bottom: -16px;
    right: -16px;
    width: 120px;
    height: 120px;
    border: 2px solid rgba(212, 168, 67, 0.3);
    border-radius: 8px;
    z-index: -1;
}

@media (min-width: 900px) {
    .about-accent {
        width: 160px;
        height: 160px;
        bottom: -24px;
        right: -24px;
    }
}

.about-content {
    position: relative;
    z-index: 1;
}

.about .section-headline {
    color: #ffffff;
}

.about-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 300;
}

.about-values {
    display: flex;
    gap: 32px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 500;
}

.value-item svg {
    color: #D4A843;
    flex-shrink: 0;
}

/* ---- VISIT ---- */
.visit {
    padding: 100px 0 120px;
    position: relative;
    overflow: hidden;
}

.visit-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #f5f0e8 0%, #faf8f5 50%, #f0ebe3 100%);
}

.visit-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(10, 22, 40, 0.03) 1px, transparent 1px);
    background-size: 24px 24px;
}

.visit > .container {
    position: relative;
    z-index: 1;
}

.visit-header {
    text-align: center;
    margin-bottom: 64px;
}

.visit-header .section-headline {
    margin-bottom: 0;
}

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

@media (min-width: 640px) {
    .visit-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.visit-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 36px 28px;
    box-shadow: 0 2px 16px rgba(10, 22, 40, 0.06);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.visit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(10, 22, 40, 0.1);
}

.visit-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #0A1628, #162A42);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D4A843;
    margin-bottom: 20px;
}

.visit-card-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 22px;
    font-weight: 700;
    color: #0A1628;
    margin-bottom: 12px;
}

.visit-card-text {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 8px;
}

.hours-day {
    display: block;
    font-weight: 600;
    color: #0A1628;
}

.hours-time {
    display: block;
    color: #666;
}

.visit-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #2d8a4e;
    margin-top: 8px;
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #2d8a4e;
    animation: badgePulse 2s ease-in-out infinite;
}

.visit-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 600;
    color: #D4A843;
    margin-top: 12px;
    transition: gap 0.3s ease;
}

.visit-link:hover {
    gap: 8px;
}

.visit-phone {
    color: #0A1628;
    font-weight: 600;
    font-size: 18px;
    transition: color 0.3s ease;
}

.visit-phone:hover {
    color: #D4A843;
}

.visit-card-subtext {
    font-size: 13px;
    color: #999;
    font-style: italic;
}

/* ---- CONTACT ---- */
.contact {
    padding: 100px 0 120px;
    background: #0A1628;
    position: relative;
    overflow: hidden;
}

.contact::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 168, 67, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    position: relative;
    z-index: 1;
}

@media (min-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }
}

.contact-info .section-headline {
    color: #ffffff;
}

.contact-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.8;
    margin-bottom: 32px;
    font-weight: 300;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.contact-item:hover {
    color: #F5D78E;
}

.contact-item svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: #D4A843;
}

/* ---- FORM ---- */
.contact-form-wrap {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 36px;
}

@media (min-width: 640px) {
    .contact-form-wrap {
        padding: 44px;
    }
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 300;
    transition: border-color 0.3s ease, background 0.3s ease;
    outline: none;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.form-input:focus {
    border-color: rgba(212, 168, 67, 0.5);
    background: rgba(255, 255, 255, 0.08);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.4)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.form-select option {
    background: #0A1628;
    color: #ffffff;
}

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

.form-success {
    text-align: center;
    padding: 20px;
}

.form-success svg {
    margin: 0 auto 16px;
}

.success-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.success-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 24px;
    font-weight: 300;
}

/* ---- FOOTER ---- */
.footer {
    background: #070f1e;
    padding: 48px 0 32px;
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.footer-nav ul {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-nav a {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.04em;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #F5D78E;
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin-bottom: 24px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-copy {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.3);
}

.footer-address {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.25);
}

/* ---- BACK TO TOP ---- */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: #0A1628;
    border: 1px solid rgba(212, 168, 67, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D4A843;
    z-index: 50;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: all 0.4s ease;
    cursor: pointer;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: #D4A843;
    color: #0A1628;
    transform: translateY(-2px);
}

/* ---- REVEAL ANIMATIONS ---- */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.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; }
