/**
 * Adara Homes
 * Satoshi font, wide architectural layout
 * Glassmorphism header + glass buttons
 * #a3ccc8 accent for subtle dividers/details
 * Consistent typography ratios throughout
 */

/* ==============================
   Variables
   ============================== */

:root {
    --black: #1a1a1a;
    --grey-900: #222;
    --grey-800: #333;
    --grey-700: #4a4a4a;
    --grey-600: #666;
    --grey-500: #888;
    --grey-400: #aaa;
    --grey-300: #ccc;
    --grey-200: #ddd;
    --grey-100: #eee;
    --grey-50: #f5f5f5;
    --white: #fff;

    --accent: #a3ccc8;
    --accent-light: rgba(163, 204, 200, 0.15);
    --accent-medium: rgba(163, 204, 200, 0.35);

    --font: 'Satoshi', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --max-w: 1440px;
    --gutter: 24px;
    --transition: 0.3s ease;

    /* Typography scale — consistent ratios */
    --text-sm: 15px;
    --text-base: 17px;
    --text-lg: 19px;
    --text-xl: 22px;
}

@media (min-width: 768px)  { :root { --gutter: 48px; } }
@media (min-width: 1200px) { :root { --gutter: 64px; } }
@media (min-width: 1600px) { :root { --gutter: 80px; } }

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
    font-family: var(--font);
    font-size: var(--text-base);
    line-height: 1.65;
    color: var(--grey-700);
    background: var(--white);
    overflow-x: hidden;
}
body.no-scroll { overflow: hidden; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
address { font-style: normal; }
::selection { background: var(--black); color: var(--white); }

/* ==============================
   Loader
   ============================== */

.loader {
    position: fixed; inset: 0; z-index: 9999;
    background: var(--black);
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner { text-align: center; }
.loader-logo-img { height: 42px; width: auto; margin: 0 auto 36px; opacity: 0.9; }
.loader-bar { width: 180px; height: 2px; background: rgba(255,255,255,0.12); overflow: hidden; margin: 0 auto; }
.loader-progress { height: 100%; width: 0%; background: var(--accent); transition: width 0.05s linear; }

/* ==============================
   Layout
   ============================== */

.container {
    width: 100%; max-width: var(--max-w);
    margin: 0 auto;
    padding-left: var(--gutter); padding-right: var(--gutter);
}

.section { padding: 100px 0; }
.section--grey { background: var(--grey-50); }
@media (min-width: 768px)  { .section { padding: 140px 0; } }
@media (min-width: 1200px) { .section { padding: 160px 0; } }

.section-header { margin-bottom: 56px; max-width: 800px; }
@media (min-width: 768px) { .section-header { margin-bottom: 80px; } }

.section-label {
    display: block;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(32px, 4.5vw, 56px);
    font-weight: 600;
    color: var(--black);
    line-height: 1.1;
    letter-spacing: -0.03em;
}

/* ==============================
   Buttons
   ============================== */

.btn {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 10px; padding: 16px 36px;
    font-size: var(--text-sm); font-weight: 500;
    letter-spacing: 0.5px;
    transition: all var(--transition);
    border: 1px solid transparent;
    cursor: pointer;
}

.btn-dark { background: var(--black); color: var(--white); border-color: var(--black); }
.btn-dark:hover { background: var(--grey-800); border-color: var(--grey-800); }

.btn-white { background: var(--white); color: var(--black); border-color: var(--white); }
.btn-white:hover { background: var(--grey-100); border-color: var(--grey-100); }

/* Glassmorphism transparent button */
.btn-glass-light {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
}
.btn-glass-light:hover {
    background: rgba(255,255,255,0.14);
    border-color: rgba(255,255,255,0.35);
}

/* Glass button on light backgrounds */
.btn-glass-dark {
    background: rgba(26,26,26,0.04);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(26,26,26,0.12);
    color: var(--black);
}
.btn-glass-dark:hover {
    background: rgba(26,26,26,0.08);
    border-color: rgba(26,26,26,0.2);
}

.btn-full { width: 100%; }

/* ==============================
   Header — glassmorphism on scroll
   ============================== */

.header {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 100; background: transparent;
    transition: all 0.4s ease;
}
.header.scrolled {
    background: rgba(26,26,26,0.6);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.header-inner {
    max-width: var(--max-w); margin: 0 auto;
    padding: 0 var(--gutter); height: 72px;
    display: flex; align-items: center; justify-content: space-between;
}

.logo { display: flex; align-items: center; z-index: 10; }
.logo-img { height: 36px; width: auto; }
@media (min-width: 768px) { .logo-img { height: 42px; } }

.nav { display: none; align-items: center; gap: 36px; }
@media (min-width: 960px) { .nav { display: flex; } }

.nav-link {
    font-size: var(--text-sm); font-weight: 400;
    color: white;
    transition: color var(--transition);
}
.nav-link:hover { color: var(--white); }

.nav-cta {
    padding: 10px 24px;
    background: var(--white); color: var(--black) !important;
    font-weight: 500;
}
.nav-cta:hover { background: var(--grey-100); }

.nav-toggle { display: flex; flex-direction: column; gap: 5px; padding: 4px; z-index: 110; }
@media (min-width: 960px) { .nav-toggle { display: none; } }
.nav-toggle span { width: 24px; height: 2px; background: var(--white); transition: all var(--transition); transform-origin: center; }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav.active {
    display: flex; flex-direction: column;
    position: fixed; inset: 0; background: var(--black);
    justify-content: center; align-items: center;
    gap: 28px; z-index: 105;
}
.nav.active .nav-link { font-size: 28px; color: var(--white); }
.nav.active .nav-cta { margin-top: 20px; font-size: 16px; padding: 16px 36px; }

/* ==============================
   Hero — Two columns with image + background
   ============================== */

.hero {
    position: relative; height: 100vh; height: 100lvh;
    display: flex; flex-direction: column;
    color: var(--white); overflow: hidden;
}

.hero::before {
    content: ''; position: absolute; inset: 0;
    background: url('../images/adara-homes-land-consultancy-hero.webp') center center / cover no-repeat;
    z-index: 0;
}

.hero::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to bottom,
        rgba(0,0,0,0.88) 0%,
        rgba(0,0,0,0.75) 30%,
        rgba(0,0,0,0.6) 60%,
        rgba(0,0,0,0.5) 100%
    );
    z-index: 1;
}
.hero-noise {
    position: absolute; inset: 0; z-index: 2;
    pointer-events: none;
    opacity: 0.12;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 200px 200px;
}

.hero-inner {
    position: relative; z-index: 3;
    max-width: var(--max-w); margin: 0 auto;
    padding: 0 var(--gutter); width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: center;
    flex: 1;
    padding-top: 80px;
    padding-bottom: 24px;
}

@media (min-width: 960px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 48px;
        padding-top: 72px;
        padding-bottom: 0;
    }
}

.hero-content {
    display: flex; flex-direction: column;
    justify-content: center;
}

.hero-title {
    font-size: clamp(36px, 5.5vw, 72px);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.04em;
    margin-bottom: 16px;
}

.hero-subtitle {
    font-size: clamp(17px, 1.8vw, var(--text-xl));
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
    max-width: 520px;
    font-weight: 300;
    margin-bottom: 24px;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero image */
.hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-image img {
    width: 100%;
    max-width: 520px;
    height: auto;
    object-fit: cover;
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.5),
        0 12px 24px -8px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hero-image img:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 35px 60px -15px rgba(0, 0, 0, 0.6),
        0 20px 30px -10px rgba(0, 0, 0, 0.4);
}

/* Accent glow behind image */
.hero-image::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(ellipse at center, var(--accent-medium) 0%, transparent 70%);
    filter: blur(40px);
    z-index: -1;
    opacity: 0.6;
}

@media (min-width: 960px) {
    .hero-image img {
        max-width: 100%;
        max-height: 480px;
    }
}

/* Hero features */
.hero-features {
    position: relative;
    z-index: 3;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--gutter);
    padding-bottom: 60px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    border-top: 1px solid var(--accent-medium);
}

@media (min-width: 600px) {
    .hero-features {
        grid-template-columns: repeat(3, 1fr);
        padding-bottom: 0;
    }
}

.hero-feature {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

@media (min-width: 600px) {
    .hero-feature {
        padding: 32px 36px;
        border-bottom: none;
        border-right: 1px solid rgba(255,255,255,0.1);
    }
    .hero-feature:first-child { padding-left: 0; }
    .hero-feature:last-child  { border-right: none; padding-right: 0; }
}

.hero-feature-title {
    display: block;
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
}

.hero-feature-text {
    display: block;
    font-size: var(--text-base);
    color: white;
    line-height: 1.6;
    font-weight: 300;
}

/* ==============================
   Intro
   ============================== */

.intro { padding: 100px 0; }
@media (min-width: 768px)  { .intro { padding: 140px 0; } }
@media (min-width: 1200px) { .intro { padding: 160px 0; } }

.intro-inner { max-width: 900px; }

.intro-text {
    font-size: clamp(22px, 3vw, 36px);
    font-weight: 400;
    color: var(--black);
    line-height: 1.35;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.intro-sub {
    font-size: var(--text-lg);
    color: var(--grey-600);
    line-height: 1.65;
}

/* ==============================
   What We Do
   ============================== */

.what-grid { display: grid; gap: 48px; }
@media (min-width: 768px)  { .what-grid { grid-template-columns: 1fr 1fr; gap: 100px; } }
@media (min-width: 1200px) { .what-grid { gap: 140px; } }

.what-text p {
    font-size: var(--text-base);
    color: var(--grey-700);
    line-height: 1.7;
    margin-bottom: 16px;
}

.what-text-image {
    margin-top: 24px;
    border-radius: 8px;
    overflow: hidden;
}

.what-text-image img {
    width: 100%;
    max-width: 460px;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.what-list-title {
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--black);
    margin-bottom: 24px;
}

.check-list li {
    position: relative; padding-left: 32px;
    font-size: var(--text-base);
    color: var(--grey-700); line-height: 1.6;
    margin-bottom: 14px;
}
.check-list li::before {
    content: ''; position: absolute;
    left: 0; top: 8px;
    width: 16px; height: 8px;
    border-left: 2px solid var(--accent);
    border-bottom: 2px solid var(--accent);
    transform: rotate(-45deg);
}

.what-cta-text {
    margin-top: 28px;
    font-size: var(--text-base);
    color: var(--grey-600);
    font-style: italic;
}

/* ==============================
   Image Strip
   ============================== */

.image-strip { width: 100%; overflow: hidden; }
.image-strip-inner {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px;
}
.image-strip-item img { width: 100%; aspect-ratio: 16/10; object-fit: cover; display: block; }
@media (min-width: 768px) { .image-strip-inner { grid-template-columns: repeat(4, 1fr); } }

.image-placeholder {
    aspect-ratio: 16/10; background: var(--grey-100);
    display: flex; align-items: center; justify-content: center;
}
.image-placeholder span {
    font-size: 11px; text-transform: uppercase;
    letter-spacing: 2px; color: var(--grey-400); font-weight: 500;
}
.image-placeholder--tall { aspect-ratio: 3/4; }

/* ==============================
   Process
   ============================== */

.process-grid { display: grid; grid-template-columns: 1fr; gap: 48px; }
@media (min-width: 600px) { .process-grid { grid-template-columns: repeat(2, 1fr); gap: 56px; } }
@media (min-width: 960px) { .process-grid { grid-template-columns: repeat(4, 1fr); gap: 40px; } }

.process-step {
    position: relative; padding-top: 24px;
    border-top: 2px solid var(--accent-medium);
}

.process-num {
    display: block;
    font-size: 56px; font-weight: 200;
    color: var(--grey-300); line-height: 1;
    margin-bottom: 20px; letter-spacing: -0.04em;
}
@media (min-width: 768px) { .process-num { font-size: 64px; } }

.process-title {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--black);
    margin-bottom: 12px;
}

.process-desc {
    font-size: var(--text-base);
    color: var(--grey-600);
    line-height: 1.65;
}

.process-footer {
    margin-top: 64px; padding-top: 36px;
    border-top: 1px solid var(--accent-medium);
    font-size: var(--text-base);
    color: var(--grey-600); font-style: italic;
    max-width: 600px;
}

/* ==============================
   Background
   ============================== */

.background-grid { display: grid; gap: 48px; }
@media (min-width: 768px)  { .background-grid { grid-template-columns: 1fr 1fr; gap: 100px; align-items: start; } }
@media (min-width: 1200px) { .background-grid { gap: 140px; } }

.background-text p {
    font-size: var(--text-base);
    color: var(--grey-700); line-height: 1.7;
    margin-bottom: 18px;
}

.background-highlight {
    font-weight: 500;
    color: var(--black) !important;
    border-left: 3px solid var(--accent);
    padding-left: 24px;
    margin-top: 28px;
    font-size: var(--text-lg);
    line-height: 1.6;
}

.background-image img {
    width: 100%;
    height: auto;
}

/* ==============================
   Contact
   ============================== */

.contact { padding: 100px 0; background: var(--white); }
@media (min-width: 768px)  { .contact { padding: 140px 0; } }
@media (min-width: 1200px) { .contact { padding: 160px 0; } }

.contact-grid { display: grid; gap: 48px; }
@media (min-width: 768px)  { .contact-grid { grid-template-columns: 1fr 1fr; gap: 100px; align-items: start; } }
@media (min-width: 1200px) { .contact-grid { gap: 140px; } }

.contact-title {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 600;
    color: var(--black);
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 28px;
}

.contact-lead { font-size: var(--text-lg); color: var(--grey-700); line-height: 1.55; margin-bottom: 16px; }
.contact-lead em { color: var(--grey-600); }
.contact-intro p { font-size: var(--text-base); color: var(--grey-700); line-height: 1.7; margin-bottom: 12px; }
.contact-reassurance { margin-top: 24px; font-size: var(--text-lg); }

.contact-details { margin-top: 36px; display: flex; flex-direction: column; gap: 12px; }

.contact-detail {
    display: flex; align-items: center; gap: 14px;
    font-size: var(--text-base);
    color: var(--grey-700);
    padding: 16px 20px;
    background: var(--grey-50);
    border: 1px solid var(--grey-200);
    transition: all var(--transition);
}
.contact-detail:hover { border-color: var(--accent); transform: translateX(4px); }
.contact-detail svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--accent); }

/* Form */
.contact-form-wrap {
    background: var(--grey-50);
    border: 1px solid var(--grey-200);
    padding: 40px 32px;
}
@media (min-width: 768px) { .contact-form-wrap { padding: 48px 40px; } }

.form-heading { font-size: 24px; font-weight: 600; color: var(--black); margin-bottom: 8px; letter-spacing: -0.02em; }
.form-sub { font-size: var(--text-sm); color: var(--grey-600); margin-bottom: 32px; }

.form-group { margin-bottom: 20px; }
.form-row { display: grid; gap: 20px; }
@media (min-width: 480px) { .form-row { grid-template-columns: 1fr 1fr; } }

.form label {
    display: block; font-size: 13px; font-weight: 500;
    color: var(--grey-700); margin-bottom: 8px;
    text-transform: uppercase; letter-spacing: 0.5px;
}
.form label span { color: var(--grey-400); }

.form input, .form textarea {
    width: 100%; padding: 13px 16px;
    font-family: var(--font); font-size: var(--text-sm);
    color: var(--black); background: var(--white);
    border: 1px solid var(--grey-200);
    transition: border-color var(--transition);
}
.form input::placeholder, .form textarea::placeholder { color: var(--grey-400); }
.form input:focus, .form textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 2px var(--accent-light); }
.form textarea { resize: vertical; min-height: 110px; }

.form-error { padding: 14px 18px; margin-bottom: 24px; background: #fef2f2; border: 1px solid #fecaca; color: #b91c1c; font-size: 14px; }
.form-success { text-align: center; padding: 48px 24px; }
.form-success svg { width: 48px; height: 48px; margin: 0 auto 16px; color: var(--accent); }
.form-success h3 { font-size: 24px; font-weight: 600; color: var(--black); margin-bottom: 8px; }
.form-success p { font-size: var(--text-sm); color: var(--grey-600); }

/* ==============================
   Footer
   ============================== */

.footer { background: var(--black); color: var(--white); padding: 80px 0 36px; }

.footer-inner { display: grid; gap: 48px; margin-bottom: 56px; }
@media (min-width: 768px) { .footer-inner { grid-template-columns: 2fr 1fr 1fr; gap: 80px; } }

.footer-logo-img { height: 36px; width: auto; margin-bottom: 20px; opacity: 0.85; }
.footer-brand p { font-size: var(--text-sm); color: rgba(255,255,255,0.4); line-height: 1.6; max-width: 360px; }

.footer-links h4, .footer-contact h4 {
    font-size: 11px; font-weight: 600; text-transform: uppercase;
    letter-spacing: 2.5px; color: var(--accent); margin-bottom: 20px; opacity: 0.7;
}
.footer-links a, .footer-contact a, .footer-contact address {
    display: block; font-size: var(--text-sm); color: rgba(255,255,255,0.5);
    margin-bottom: 12px; transition: color var(--transition);
}
.footer-links a:hover, .footer-contact a:hover { color: var(--white); }

.footer-bottom {
    padding-top: 28px;
    border-top: 1px solid rgba(163,204,200,0.15);
    display: flex; flex-direction: column; gap: 12px;
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; } }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.2); }
.footer-legal { display: flex; gap: 28px; }
.footer-legal a { font-size: 13px; color: rgba(255,255,255,0.2); transition: color var(--transition); }
.footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* ==============================
   Back to Top
   ============================== */

.back-to-top {
    position: fixed; bottom: 28px; right: 28px;
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    background: var(--black); color: var(--white);
    opacity: 0; visibility: hidden; transform: translateY(12px);
    transition: all var(--transition); z-index: 90;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--grey-800); }
.back-to-top svg { width: 18px; height: 18px; }

/* ==============================
   Animations
   ============================== */

/* Default: everything visible */
.anim-scroll {
    opacity: 1; transform: none;
    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);
}

/* JS-ready: hide for reveal */
.js-ready .anim-scroll {
    opacity: 0;
    transform: translateY(32px);
}
.js-ready .anim-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children within grids */
.js-ready .process-grid .anim-scroll:nth-child(1).visible { transition-delay: 0s; }
.js-ready .process-grid .anim-scroll:nth-child(2).visible { transition-delay: 0.12s; }
.js-ready .process-grid .anim-scroll:nth-child(3).visible { transition-delay: 0.24s; }
.js-ready .process-grid .anim-scroll:nth-child(4).visible { transition-delay: 0.36s; }

/* Hero entrance after loader */
.hero-content, .hero-image, .hero-features {
    opacity: 0; transform: translateY(28px);
    transition: opacity 0.9s ease 0.1s, transform 0.9s ease 0.1s;
}
.hero-image { transition-delay: 0.2s; }
.hero-features { transition-delay: 0.35s; }
body:not(.no-scroll) .hero-content,
body:not(.no-scroll) .hero-image,
body:not(.no-scroll) .hero-features {
    opacity: 1; transform: translateY(0);
}

/* ==============================
   Cookie Banner
   ============================== */

.cookie-banner {
    position: fixed; bottom: 24px; left: 24px;
    z-index: 9998;
    max-width: 380px;
    background: rgba(26, 26, 26, 0.7);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    padding: 24px;
    transform: translateY(20px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.4s ease, opacity 0.4s ease, visibility 0.4s ease;
}
.cookie-banner.visible { transform: translateY(0); opacity: 1; visibility: visible; }

.cookie-banner-inner {
    display: flex; flex-direction: column; gap: 16px;
}

.cookie-banner-text p {
    font-size: 13px; color: rgba(255, 255, 255, 0.7); line-height: 1.55; margin-bottom: 4px;
}
.cookie-link { font-size: 12px; color: var(--accent); text-decoration: underline; }
.cookie-link:hover { color: var(--white); }

.cookie-banner-actions { display: flex; gap: 8px; }
.cookie-btn { padding: 10px 18px; font-size: 13px; white-space: nowrap; flex: 1; }
.cookie-banner .btn-dark { background: var(--white); color: var(--black); border-color: var(--white); }
.cookie-banner .btn-dark:hover { background: var(--grey-100); border-color: var(--grey-100); }
.cookie-banner .btn-glass-dark {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
}
.cookie-banner .btn-glass-dark:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.35);
}

/* ==============================
   Legal Pages
   ============================== */

.legal-page { padding-top: 120px; padding-bottom: 80px; }
@media (min-width: 768px) { .legal-page { padding-top: 140px; padding-bottom: 120px; } }

.legal-page .container { max-width: 800px; }

.legal-page h1 {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 600; color: var(--black);
    line-height: 1.15; letter-spacing: -0.03em;
    margin-bottom: 12px;
}

.legal-last-updated {
    font-size: var(--text-sm); color: var(--grey-500);
    margin-bottom: 48px;
}

.legal-page h2 {
    font-size: var(--text-xl); font-weight: 600;
    color: var(--black); margin-top: 40px; margin-bottom: 16px;
}

.legal-page p, .legal-page li {
    font-size: var(--text-base); color: var(--grey-700);
    line-height: 1.75; margin-bottom: 14px;
}

.legal-page ul { padding-left: 24px; list-style: disc; margin-bottom: 18px; }
.legal-page ul li { margin-bottom: 8px; }

.legal-page a { color: var(--accent); text-decoration: underline; }
.legal-page a:hover { color: var(--black); }