/* ============================================================
   ELEVATE BEVERAGE SOLUTION — app.css
   Aesthetic: Dark Luxury / Editorial Gold
   ============================================================ */

/* ── TOKENS ── */
:root {
    --black:       #0a0908;
    --charcoal:    #141210;
    --surface:     #1c1916;
    --surface-2:   #242018;
    --gold:        #c9a84c;
    --gold-light:  #e0c070;
    --gold-muted:  #8a6f35;
    --cream:       #f5f0e8;
    --text:        #d4cfc6;
    --text-muted:  #7a746a;
    --border:      rgba(201, 168, 76, 0.15);

    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body:    'Jost', sans-serif;

    --nav-h:       80px;
    --transition:  0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    background: var(--black);
    color: var(--text);
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* ── NAVBAR ── */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 4rem;
    transition: background var(--transition), backdrop-filter var(--transition), border-bottom var(--transition);
}

.navbar.scrolled {
    background: rgba(10, 9, 8, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.navbar__logo-img {
    height: 48px;
    width: auto;
    transition: opacity var(--transition);
}
.navbar__logo-img:hover { opacity: 0.75; }

.navbar__links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.navbar__links a {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: color var(--transition);
    position: relative;
}

.navbar__links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width var(--transition);
}

.navbar__links a:hover { color: var(--gold); }
.navbar__links a:hover::after { width: 100%; }

.navbar__cta {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid var(--gold-muted);
    padding: 0.6rem 1.4rem;
    transition: background var(--transition), color var(--transition);
}

.navbar__cta:hover {
    background: var(--gold);
    color: var(--black);
}

.navbar__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.navbar__burger span {
    display: block;
    width: 26px; height: 1px;
    background: var(--cream);
    transition: var(--transition);
}

.navbar__mobile {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--black);
    z-index: 99;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}
.navbar__mobile.open { display: flex; }
.navbar__mobile ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}
.navbar__mobile a {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 300;
    color: var(--cream);
    letter-spacing: 0.05em;
    transition: color var(--transition);
}
.navbar__mobile a:hover { color: var(--gold); }
.navbar__mobile .navbar__cta {
    font-family: var(--font-body);
    font-size: 0.8rem;
    margin-top: 1rem;
}

/* ── BUTTONS ── */
.btn {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 0.9rem 2.2rem;
    transition: background var(--transition), color var(--transition), border-color var(--transition);
    cursor: pointer;
}

.btn--gold {
    background: var(--gold);
    color: var(--black);
    border: 1px solid var(--gold);
}
.btn--gold:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
}

.btn--outline {
    background: transparent;
    color: var(--cream);
    border: 1px solid rgba(245, 240, 232, 0.3);
}
.btn--outline:hover {
    border-color: var(--cream);
    color: var(--cream);
}

/* ── HERO ── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 4rem;
    /* Replace with your actual hero image */
    background: var(--charcoal);
    background-image:
        linear-gradient(to bottom right, rgba(10,9,8,0.85) 40%, rgba(10,9,8,0.5) 100%),
        url('/images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

/* Grain texture overlay */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    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)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
}

/* Gold accent line left */
.hero::after {
    content: '';
    position: absolute;
    left: 0; top: 20%; bottom: 20%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
    opacity: 0.4;
}

.hero__overlay { display: none; }

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    animation: heroFadeUp 1.2s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.hero__eyebrow {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    animation: heroFadeUp 1s 0.2s both;
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 300;
    line-height: 1.05;
    color: var(--cream);
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
    animation: heroFadeUp 1s 0.35s both;
}

.hero__title em {
    font-style: italic;
    color: var(--gold);
    font-weight: 300;
}

.hero__sub {
    font-size: 1rem;
    font-weight: 300;
    color: var(--text-muted);
    max-width: 480px;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    animation: heroFadeUp 1s 0.5s both;
}

.hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: heroFadeUp 1s 0.65s both;
}

.hero__scroll-hint {
    position: absolute;
    bottom: 3rem;
    right: 4rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 2;
    animation: heroFadeUp 1s 1s both;
}

.hero__scroll-hint span {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    writing-mode: vertical-rl;
}

.hero__scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--gold-muted), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

/* ── USP STRIP ── */
.usp-strip {
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    padding: 1.6rem 4rem;
}

.usp-strip__item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 2.5rem;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: color var(--transition);
}

.usp-strip__item:hover { color: var(--gold); }

.usp-strip__icon {
    color: var(--gold);
    font-size: 0.7rem;
    flex-shrink: 0;
}

.usp-strip__divider {
    width: 1px;
    height: 30px;
    background: var(--border);
}

/* ── ANIMATIONS ── */
@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}

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

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .navbar { padding: 0 2rem; }
    .navbar__links, .navbar__cta { display: none; }
    .navbar__burger { display: flex; }
    .hero { padding: 0 2rem; padding-top: var(--nav-h); }
    .usp-strip { padding: 1.2rem 1.5rem; gap: 0.5rem; }
    .usp-strip__divider { display: none; }
    .usp-strip__item { padding: 0.4rem 1rem; font-size: 0.68rem; }
}

@media (max-width: 480px) {
    .hero__title { font-size: 2.4rem; }
    .hero__actions { flex-direction: column; }
    .btn { width: 100%; text-align: center; }
    .hero__scroll-hint { display: none; }
}
/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: var(--delay, 0s);
}
.reveal--up    { transform: translateY(40px); }
.reveal--left  { transform: translateX(-50px); }
.reveal--right { transform: translateX(50px); }

.reveal.revealed {
    opacity: 1;
    transform: translate(0);
}

/* ============================================================
   SHARED SECTION TOKENS
   ============================================================ */
.section-eyebrow {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    display: block;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--cream);
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.section-title em {
    font-style: italic;
    color: var(--gold);
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
    padding: 8rem 4rem;
    background: var(--charcoal);
    position: relative;
    overflow: hidden;
}

/* subtle background pattern */
.about::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,0.04) 0%, transparent 70%);
    pointer-events: none;
}

.about__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

/* Image side */
.about__image-wrap {
    position: relative;
    display: inline-block;
}

.about__image {
    width: 100%;
    max-width: 460px;
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: top;
    display: block;
    filter: grayscale(20%);
    transition: filter var(--transition);
}
.about__image:hover { filter: grayscale(0%); }

/* offset decorative border */
.about__image-border {
    position: absolute;
    top: 20px; left: 20px;
    right: -20px; bottom: -20px;
    border: 1px solid var(--border);
    z-index: -1;
}

/* floating badge */
.about__badge {
    position: absolute;
    bottom: -24px; right: -24px;
    background: var(--gold);
    color: var(--black);
    padding: 1.2rem 1.4rem;
    text-align: center;
    line-height: 1.2;
}

.about__badge-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    line-height: 1;
}

.about__badge-label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 0.3rem;
}

/* Text side */
.about__body {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.9;
    margin-bottom: 1.2rem;
}

.about__team {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: 2.5rem 0;
    padding: 1.8rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.about__team-member {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.about__team-name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--cream);
    letter-spacing: 0.02em;
}

.about__team-role {
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-muted);
}

.about__team-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
    flex-shrink: 0;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
    padding: 8rem 4rem;
    background: var(--black);
    position: relative;
}

.services__header {
    max-width: 1200px;
    margin: 0 auto 4rem;
    text-align: center;
}

.services__intro {
    font-size: 0.95rem;
    color: var(--text-muted);
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.85;
}

.services__grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    background: var(--border);
    border: 1px solid var(--border);
}

.services__card {
    background: var(--charcoal);
    padding: 2.8rem 2.4rem;
    position: relative;
    transition: background var(--transition);
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.services__card:hover {
    background: var(--surface-2);
}

.services__card--featured {
    background: var(--surface);
}

.services__card--featured:hover {
    background: var(--surface-2);
}

.services__card-badge {
    position: absolute;
    top: 1.5rem; right: 1.5rem;
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--black);
    background: var(--gold);
    padding: 0.3rem 0.7rem;
}

.services__card-icon {
    color: var(--gold);
    font-size: 1rem;
    margin-bottom: 0.4rem;
}

.services__card-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--cream);
    letter-spacing: 0.01em;
    line-height: 1.2;
}

.services__card-desc {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.8;
    flex: 1;
}

.services__card-price {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--gold);
    padding-top: 0.8rem;
    border-top: 1px solid var(--border);
    margin-top: auto;
}

.services__card-link {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: color var(--transition);
    margin-top: 0.4rem;
}

.services__card-link:hover {
    color: var(--gold);
}

/* ============================================================
   RESPONSIVE — ABOUT + SERVICES
   ============================================================ */
@media (max-width: 1024px) {
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .about { padding: 5rem 2rem; }
    .about__inner {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    .about__image { max-width: 100%; }
    .about__badge { bottom: -16px; right: -8px; }

    .services { padding: 5rem 2rem; }
    .services__grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .about__team { flex-direction: column; align-items: flex-start; gap: 1.2rem; }
    .about__team-divider { display: none; }
}
/* ============================================================
   CONTACT CTA (homepage)
   ============================================================ */
.contact-cta {
    padding: 8rem 4rem;
    background: var(--surface);
    border-top: 1px solid var(--border);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(201,168,76,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.contact-cta__inner {
    max-width: 640px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-cta__sub {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.9;
    margin-bottom: 2.5rem;
}

.contact-cta__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================================
   CONTACT PAGE — HERO
   ============================================================ */
.contact-hero {
    padding: 10rem 4rem 5rem;
    background: var(--charcoal);
    border-bottom: 1px solid var(--border);
    text-align: center;
}

.contact-hero__inner {
    max-width: 600px;
    margin: 0 auto;
}

.contact-hero__sub {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.85;
    margin-top: 1rem;
}

/* ============================================================
   CONTACT PAGE — MAIN
   ============================================================ */
.contact-main {
    padding: 6rem 4rem;
    background: var(--black);
}

.contact-main__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 6rem;
    align-items: start;
}

/* Info column */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding-top: 0.5rem;
}

.contact-info__block {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.contact-info__label {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
}

.contact-info__value {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--cream);
    line-height: 1.5;
}

.contact-info__value small {
    display: block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.2rem;
    letter-spacing: 0.05em;
}

.contact-info__value[href]:hover {
    color: var(--gold);
}

.contact-info__socials {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.75rem;
}

.contact-info__social-link {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: color var(--transition);
}
.contact-info__social-link:hover { color: var(--gold); }

/* Form */
.contact-form-wrap {
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 3rem;
}

.contact-form__success {
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid var(--gold-muted);
    color: var(--gold-light);
    padding: 1rem 1.4rem;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row { display: flex; flex-direction: column; gap: 1.5rem; }
.form-row--half { flex-direction: row; gap: 1.5rem; }
.form-row--half .form-group { flex: 1; }

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--charcoal);
    border: 1px solid var(--border);
    color: var(--cream);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 300;
    padding: 0.85rem 1rem;
    outline: none;
    transition: border-color var(--transition);
    width: 100%;
    appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
    opacity: 0.6;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold-muted);
}

.form-group input.is-error,
.form-group select.is-error,
.form-group textarea.is-error {
    border-color: #c0392b;
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c9a84c' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.form-group select option {
    background: var(--charcoal);
    color: var(--cream);
}

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

.form-error {
    font-size: 0.72rem;
    color: #e74c3c;
    letter-spacing: 0.05em;
}

.btn--full { width: 100%; text-align: center; padding: 1.1rem; }

/* ============================================================
   RESPONSIVE — CONTACT
   ============================================================ */
@media (max-width: 900px) {
    .contact-hero { padding: 8rem 2rem 4rem; }
    .contact-main { padding: 4rem 2rem; }
    .contact-main__inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .contact-cta { padding: 5rem 2rem; }
    .form-row--half { flex-direction: column; }
    .contact-form-wrap { padding: 2rem 1.5rem; }
}
/* ============================================================
   PROCESS
   ============================================================ */
.process {
    padding: 8rem 4rem;
    background: var(--charcoal);
    position: relative;
}

.process::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--border) 20%, var(--border) 80%, transparent);
    margin-left: calc(4rem + 28px);
}

.process__header {
    max-width: 1100px;
    margin: 0 auto 5rem;
}

.process__steps {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.process__step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 2.5rem;
    align-items: start;
    padding: 2.8rem 0;
    border-bottom: 1px solid var(--border);
    position: relative;
    transition: background var(--transition);
}

.process__step:first-of-type { border-top: 1px solid var(--border); }

.process__step:hover {
    background: rgba(201, 168, 76, 0.02);
}

.process__step-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 300;
    color: var(--border);
    line-height: 1;
    letter-spacing: -0.02em;
    transition: color var(--transition);
    padding-top: 0.2rem;
    text-align: center;
}

.process__step:hover .process__step-number {
    color: var(--gold-muted);
}

.process__step-content h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--cream);
    margin-bottom: 0.6rem;
    letter-spacing: 0.01em;
    line-height: 1.3;
}

.process__step-content p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.85;
    max-width: 680px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--charcoal);
    border-top: 1px solid var(--border);
}

.footer__top {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 4rem 4rem;
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
    gap: 4rem;
}

.footer__logo {
    height: 42px;
    width: auto;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.footer__tagline {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-style: italic;
    color: var(--gold);
    margin-bottom: 0.8rem;
    letter-spacing: 0.02em;
}

.footer__desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 280px;
    margin-bottom: 1.5rem;
}

.footer__socials {
    display: flex;
    gap: 1.2rem;
}

.footer__social {
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: color var(--transition);
    position: relative;
}

.footer__social::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width var(--transition);
}

.footer__social:hover { color: var(--gold); }
.footer__social:hover::after { width: 100%; }

.footer__col-title {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.4rem;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer__links a,
.footer__links span:not(.footer__contact-label) {
    font-size: 0.82rem;
    color: var(--text-muted);
    transition: color var(--transition);
    line-height: 1.4;
}

.footer__links a:hover { color: var(--cream); }

.footer__links--contact li {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.footer__contact-label {
    font-size: 0.62rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-muted);
}

.footer__bottom {
    border-top: 1px solid var(--border);
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.8rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.footer__bottom p {
    font-size: 0.72rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

.footer__bottom span {
    color: var(--cream);
}

/* ============================================================
   RESPONSIVE — PROCESS + FOOTER
   ============================================================ */
@media (max-width: 1024px) {
    .footer__top {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
    .process { padding: 5rem 2rem; }
    .process::before { display: none; }
    .process__step { grid-template-columns: 56px 1fr; gap: 1.5rem; }
    .process__step-number { font-size: 2rem; }
}

@media (max-width: 600px) {
    .footer__top {
        grid-template-columns: 1fr;
        padding: 4rem 2rem 2rem;
        gap: 2.5rem;
    }
    .footer__brand { grid-column: auto; }
    .footer__bottom {
        padding: 1.5rem 2rem;
        flex-direction: column;
        text-align: center;
    }
    .process__step { grid-template-columns: 1fr; gap: 0.5rem; }
    .process__step-number { font-size: 1.5rem; text-align: left; }
}
/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
    padding: 8rem 0 6rem;
    background: var(--black);
    overflow: hidden;
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border), transparent);
}

.testimonials__header {
    max-width: 1100px;
    margin: 0 auto 4rem;
    padding: 0 4rem;
}

.testimonials__track-wrap {
    overflow: hidden;
    cursor: grab;
    user-select: none;
    padding: 1rem 0 2rem;
}

.testimonials__track-wrap:active {
    cursor: grabbing;
}

.testimonials__track {
    display: flex;
    gap: 1.5rem;
    padding: 0 4rem;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.testimonials__card {
    flex: 0 0 420px;
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 2.8rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    transition: border-color var(--transition), transform var(--transition);
}

.testimonials__card:hover {
    border-color: var(--gold-muted);
    transform: translateY(-4px);
}

.testimonials__card--featured {
    background: var(--surface-2);
    border-color: var(--gold-muted);
}

/* Opening quote mark */
.testimonials__card::before {
    content: '\201C';
    position: absolute;
    top: 1.5rem; right: 2rem;
    font-family: var(--font-display);
    font-size: 5rem;
    line-height: 1;
    color: var(--gold);
    opacity: 0.15;
    pointer-events: none;
}

.testimonials__stars {
    color: var(--gold);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
}

.testimonials__quote {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-style: italic;
    font-weight: 300;
    color: var(--text);
    line-height: 1.8;
    flex: 1;
    border: none;
    margin: 0;
    padding: 0;
}

.testimonials__author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.2rem;
    border-top: 1px solid var(--border);
}

.testimonials__author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gold-muted);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    flex-shrink: 0;
}

.testimonials__author-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonials__author-name {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--cream);
    letter-spacing: 0.02em;
}

.testimonials__author-role {
    font-size: 0.72rem;
    color: var(--text-muted);
    letter-spacing: 0.04em;
}

/* Controls */
.testimonials__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
    padding: 0 4rem;
}

.testimonials__btn {
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text-muted);
    font-size: 1rem;
    cursor: pointer;
    transition: border-color var(--transition), color var(--transition), background var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonials__btn:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 168, 76, 0.05);
}

.testimonials__dots {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.testimonials__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--border);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background var(--transition), transform var(--transition);
}

.testimonials__dot.active {
    background: var(--gold);
    transform: scale(1.4);
}

/* ============================================================
   RESPONSIVE — TESTIMONIALS
   ============================================================ */
@media (max-width: 900px) {
    .testimonials { padding: 5rem 0 4rem; }
    .testimonials__header { padding: 0 2rem; }
    .testimonials__track { padding: 0 2rem; }
    .testimonials__card { flex: 0 0 320px; padding: 2rem; }
    .testimonials__controls { padding: 0 2rem; }
}

@media (max-width: 480px) {
    .testimonials__card { flex: 0 0 85vw; }
}
/* ============================================================
   COOKIE CONSENT BANNER
   ============================================================ */
.cookie-banner {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(calc(100% + 3rem));
    z-index: 999;
    width: calc(100% - 4rem);
    max-width: 860px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-bottom: 2px solid var(--gold-muted);
    padding: 1.8rem 2.2rem;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.5s ease;
    opacity: 0;
    pointer-events: none;
}

.cookie-banner.visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: all;
}

.cookie-banner.hiding {
    transform: translateX(-50%) translateY(calc(100% + 3rem));
    opacity: 0;
}

.cookie-banner__inner {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.cookie-banner__text {
    flex: 1;
}

.cookie-banner__title {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--cream);
    margin-bottom: 0.5rem;
    letter-spacing: 0.01em;
}

.cookie-banner__icon {
    color: var(--gold);
    font-size: 0.8rem;
}

.cookie-banner__desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.cookie-banner__link {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color var(--transition);
}
.cookie-banner__link:hover { color: var(--gold-light); }

.cookie-banner__actions {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    flex-shrink: 0;
}

.cookie-banner__btn {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.75rem 1.6rem;
    border: 1px solid;
    cursor: pointer;
    white-space: nowrap;
    transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.cookie-banner__btn--accept {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}
.cookie-banner__btn--accept:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
}

.cookie-banner__btn--decline {
    background: transparent;
    color: var(--text-muted);
    border-color: var(--border);
}
.cookie-banner__btn--decline:hover {
    border-color: var(--text-muted);
    color: var(--cream);
}

/* ============================================================
   RESPONSIVE — COOKIE BANNER
   ============================================================ */
@media (max-width: 700px) {
    .cookie-banner {
        bottom: 1rem;
        width: calc(100% - 2rem);
        padding: 1.4rem 1.4rem;
    }
    .cookie-banner__inner {
        flex-direction: column;
        gap: 1.2rem;
        align-items: flex-start;
    }
    .cookie-banner__actions {
        flex-direction: row;
        width: 100%;
    }
    .cookie-banner__btn {
        flex: 1;
        text-align: center;
    }
}
/* ============================================================
   PRIVACY POLICY PAGE
   ============================================================ */
.privacy {
    padding: 10rem 4rem 8rem;
    background: var(--charcoal);
    min-height: 80vh;
}

.privacy__inner {
    max-width: 760px;
    margin: 0 auto;
}

.privacy__updated {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.privacy__body h2 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--cream);
    margin: 2.5rem 0 0.8rem;
    letter-spacing: 0.01em;
}

.privacy__body p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.9;
}

.privacy__body a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.privacy__body a:hover { color: var(--gold-light); }

@media (max-width: 900px) {
    .privacy { padding: 8rem 2rem 5rem; }
}
/* Dublin Service Area Banner */
.dublin-service-area {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding: 1.2rem 0;
}

.dublin-service-area__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.dublin-service-area__badge {
    display: inline-block;
    background: #d4af37;
    color: #1a1a1a;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.dublin-service-area__text {
    color: #e0e0e0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.dublin-service-area__text strong {
    color: #d4af37;
}
