/* ============================================
   CSS CUSTOM PROPERTIES
   ============================================ */
:root {
    --green-darkest: #1a4d32;
    --green-dark:    #226644;
    --green-mid:     #3a9966;
    --green-light:   #5dbf8a;
    --green-accent:  #7dd4a8;
    --green-pale:    #d4f5e4;

    --white:    #ffffff;
    --off-white: #f8f8f5;
    --gray-50:  #f5f5f0;
    --gray-100: #ebebe5;
    --gray-200: #d4d4cc;
    --gray-400: #9a9a90;
    --gray-600: #5a5a54;
    --gray-900: #1a1a18;

    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body:    'DM Sans', system-ui, sans-serif;

    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.05);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.12), 0 8px 24px rgba(0,0,0,0.08);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;

    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray-900);
    background: var(--off-white);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ============================================
   PAGE WRAPPER
   ============================================ */
.page-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

/* ============================================
   LEFT PANEL
   ============================================ */
.left-panel {
    position: relative;
    background: linear-gradient(160deg, #5dbf8a 0%, #3a9966 50%, #226644 100%);
    padding: 48px 48px 52px;
    display: flex;
    align-items: stretch;
    overflow: hidden;
}

.left-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 480px;
}

/* Decorative circles */
.bg-circle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}
.bg-circle--1 {
    width: 480px; height: 480px;
    background: radial-gradient(circle, rgba(82,183,136,0.12) 0%, transparent 70%);
    top: -120px; right: -180px;
}
.bg-circle--2 {
    width: 320px; height: 320px;
    background: radial-gradient(circle, rgba(116,198,157,0.08) 0%, transparent 70%);
    bottom: -80px; left: -80px;
}

/* Brand Logo */
.brand-logo {
    width: 100px;
    flex-shrink: 0;
    transition: transform var(--transition-base);
}
.brand-logo img {
    width: 100px;
    height: auto;
    display: block;
    filter: brightness(0) invert(1);
}
.brand-logo:hover {
    transform: translateY(-2px);
}

/* Status Badge */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 100px;
    color: rgba(255,255,255,0.9);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    width: fit-content;
    backdrop-filter: blur(8px);
}

.status-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--green-accent);
    animation: pulse-dot 2s ease-in-out infinite;
    flex-shrink: 0;
}
@keyframes pulse-dot {
    0%, 100% { box-shadow: 0 0 0 0 rgba(116,198,157,0.6); }
    50%       { box-shadow: 0 0 0 6px rgba(116,198,157,0); }
}

/* Hero Text */
.hero-text h1 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 2.8vw, 3rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--white);
    letter-spacing: -0.01em;
}
.hero-text h1 strong { font-weight: 600; }
.hero-text h1 em { color: var(--green-accent); font-style: italic; }

/* Hero Description */
.hero-description {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.65);
    max-width: 380px;
}

/* ============================================
   COUNTDOWN TIMER
   ============================================ */
.countdown {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-md);
    padding: 18px 20px;
    backdrop-filter: blur(8px);
}

.countdown__label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 12px;
    text-align: center;
}

.countdown__blocks {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.countdown__block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    flex: 1;
}

.countdown__value {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 2.5vw, 2.4rem);
    font-weight: 600;
    color: var(--white);
    line-height: 1;
    min-width: 2ch;
    text-align: center;
    display: block;
}

.countdown__value.flip {
    animation: flipNum 0.3s ease both;
}
@keyframes flipNum {
    0%   { transform: translateY(-6px); opacity: 0.4; }
    100% { transform: translateY(0);    opacity: 1; }
}

.countdown__unit {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
}

.countdown__sep {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 300;
    color: rgba(255,255,255,0.3);
    line-height: 1;
    margin-bottom: 18px;
    flex-shrink: 0;
}

/* ============================================
   CONTACT CARDS
   ============================================ */
.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-md);
    backdrop-filter: blur(8px);
    transition: background var(--transition-base), border-color var(--transition-base), transform var(--transition-base);
}
.contact-card:hover {
    background: rgba(255,255,255,0.13);
    border-color: rgba(255,255,255,0.2);
    transform: translateX(4px);
}
.contact-card:focus-visible {
    outline: 2px solid var(--green-accent);
    outline-offset: 2px;
}

.contact-card__icon {
    width: 38px; height: 38px;
    background: var(--green-mid);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.contact-card__info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.contact-card__label {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}

.contact-card__value {
    font-size: 0.875rem;
    font-weight: 400;
    color: rgba(255,255,255,0.92);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ============================================
   SOCIAL LINKS
   ============================================ */
.social-links {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
    padding-top: 4px;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 14px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 100px;
    color: rgba(255,255,255,0.75);
    font-size: 0.8rem;
    font-weight: 500;
    transition: background var(--transition-base), color var(--transition-base), transform var(--transition-fast);
}
.social-link:hover {
    background: rgba(255,255,255,0.15);
    color: var(--white);
    transform: translateY(-2px);
}
.social-link:focus-visible {
    outline: 2px solid var(--green-accent);
    outline-offset: 2px;
}

/* ============================================
   RIGHT PANEL
   ============================================ */
.right-panel {
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 48px;
    overflow-y: auto;
}

.form-container {
    width: 100%;
    max-width: 520px;
    animation: fadeInUp 0.5s ease-out both;
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Form Header */
.form-header {
    margin-bottom: 28px;
}
.form-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 2.5vw, 2.5rem);
    font-weight: 400;
    color: var(--green-darkest);
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 12px;
}
.form-header__divider {
    width: 44px; height: 3px;
    background: var(--green-dark);
    border-radius: 2px;
    margin-bottom: 14px;
}
.form-header__subtitle {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.65;
}

/* Form Groups */
.form-group {
    margin-bottom: 18px;
}

.form-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-900);
    margin-bottom: 7px;
}

/* Input Wrapper */
.input-wrapper {
    position: relative;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    font-size: 0.9375rem;
    font-family: var(--font-body);
    color: var(--gray-900);
    background: var(--off-white);
    border: 1.5px solid #e0e0d8;
    border-radius: var(--radius-sm);
    outline: none;
    transition: border-color var(--transition-base), background var(--transition-base), box-shadow var(--transition-base);
    -webkit-appearance: none;
    appearance: none;
}
.form-input::placeholder { color: var(--gray-400); font-size: 0.9rem; }
.form-input:hover { border-color: #c8c8c0; background: #f2f2ee; }
.form-input:focus {
    border-color: var(--green-dark);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(45,106,79,0.1);
}
.form-input.is-error {
    border-color: #d64c4c;
    background: #fff8f8;
    box-shadow: 0 0 0 3px rgba(214,76,76,0.08);
}
.form-input.is-success {
    border-color: var(--green-mid);
    background: #f4fbf6;
}

/* Select */
.select-wrapper {
    position: relative;
}
.form-select {
    cursor: pointer;
    padding-right: 40px;
}
.form-select option { color: var(--gray-900); }
.form-select option[value=""] { color: var(--gray-400); }

.select-arrow {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-400);
    pointer-events: none;
    display: flex;
    align-items: center;
    transition: color var(--transition-fast), transform var(--transition-base);
}
.form-select:focus ~ .select-arrow {
    color: var(--green-dark);
    transform: translateY(-50%) rotate(180deg);
}

/* Textarea */
.form-textarea {
    resize: vertical;
    min-height: 110px;
    line-height: 1.6;
}

/* Field Error */
.field-error {
    display: block;
    font-size: 0.8rem;
    color: #d64c4c;
    margin-top: 5px;
    min-height: 1.2em;
    font-weight: 500;
}
.field-error:empty { opacity: 0; }

/* Form Feedback (global) */
.form-feedback {
    display: none;
    align-items: flex-start;
    gap: 10px;
    padding: 13px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 16px;
    animation: feedbackSlide 0.3s ease-out both;
}
.form-feedback:not([hidden]) { display: flex; }
.form-feedback svg { flex-shrink: 0; margin-top: 1px; }

@keyframes feedbackSlide {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}

.form-feedback--success {
    background: #edfaf3;
    border: 1px solid rgba(58,138,101,0.25);
    color: #1b6b3a;
}
.form-feedback--error {
    background: #fef2f2;
    border: 1px solid rgba(214,76,76,0.2);
    color: #b91c1c;
}

/* Submit Button */
.submit-btn {
    position: relative;
    width: 100%;
    padding: 15px 28px;
    background: var(--green-dark);
    color: var(--white);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    overflow: hidden;
    transition: background var(--transition-base), transform var(--transition-fast), box-shadow var(--transition-base);
    margin-bottom: 14px;
    min-height: 52px;
    border: none;
    cursor: pointer;
}
.submit-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition-base);
}
.submit-btn:hover:not(:disabled) {
    background: var(--green-darkest);
    box-shadow: 0 8px 24px rgba(27,67,50,0.35);
    transform: translateY(-1px);
}
.submit-btn:hover::before { opacity: 1; }
.submit-btn:active:not(:disabled) { transform: translateY(0); }
.submit-btn:focus-visible { outline: 2px solid var(--green-dark); outline-offset: 3px; }
.submit-btn:disabled { cursor: not-allowed; opacity: 0.7; }

.submit-btn__arrow {
    transition: transform var(--transition-base);
    display: flex;
    align-items: center;
}
.submit-btn:hover:not(:disabled) .submit-btn__arrow { transform: translateX(4px); }

.submit-btn__loader {
    display: none;
    width: 18px; height: 18px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.submit-btn.is-loading .submit-btn__text,
.submit-btn.is-loading .submit-btn__arrow { opacity: 0; position: absolute; }
.submit-btn.is-loading .submit-btn__loader { display: block; }

/* Privacy note */
.form-privacy {
    display: flex;
    align-items: flex-start;
    gap: 7px;
    font-size: 0.8rem;
    color: var(--gray-400);
    line-height: 1.55;
    text-align: center;
    justify-content: center;
}
.form-privacy svg { flex-shrink: 0; margin-top: 2px; opacity: 0.7; }

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 0 16px 16px;
    transform: translateY(120%);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
}
.cookie-banner--visible { transform: translateY(0); pointer-events: all; }
.cookie-banner--hiding  { transform: translateY(120%); transition: transform 0.35s ease-in; }

.cookie-banner__inner {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    border: 1px solid rgba(45,106,79,0.15);
    border-radius: var(--radius-lg);
    box-shadow: 0 -4px 32px rgba(0,0,0,0.10), 0 8px 32px rgba(0,0,0,0.08);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.cookie-banner__icon {
    width: 44px; height: 44px;
    background: var(--green-pale);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    color: var(--green-dark);
    flex-shrink: 0;
}

.cookie-banner__content { flex: 1; min-width: 200px; }
.cookie-banner__title { font-size: 0.875rem; font-weight: 600; color: var(--gray-900); margin-bottom: 4px; }
.cookie-banner__text  { font-size: 0.8125rem; color: var(--gray-600); line-height: 1.55; }

.cookie-policy-link {
    background: none; border: none; padding: 0;
    color: var(--green-dark); font-size: inherit;
    font-family: inherit; font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color var(--transition-fast);
}
.cookie-policy-link:hover { color: var(--green-darkest); }

.cookie-banner__actions { display: flex; gap: 10px; flex-shrink: 0; }

/* Cookie / Modal Buttons */
.cookie-btn {
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    cursor: pointer;
    border: none;
    transition: background var(--transition-base), transform var(--transition-fast), box-shadow var(--transition-base);
    white-space: nowrap;
}
.cookie-btn--accept { background: var(--green-dark); color: var(--white); }
.cookie-btn--accept:hover {
    background: var(--green-darkest);
    box-shadow: 0 4px 14px rgba(27,67,50,0.3);
    transform: translateY(-1px);
}
.cookie-btn--decline {
    background: var(--gray-50); color: var(--gray-600);
    border: 1px solid var(--gray-200);
}
.cookie-btn--decline:hover { background: var(--gray-100); color: var(--gray-900); transform: translateY(-1px); }
.cookie-btn:focus-visible { outline: 2px solid var(--green-dark); outline-offset: 3px; }

/* ============================================
   POLICY MODAL
   ============================================ */
.policy-modal {
    position: fixed;
    inset: 0;
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.policy-modal[hidden] { display: none; }

.policy-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(10,30,20,0.55);
    backdrop-filter: blur(4px);
    animation: overlayIn 0.25s ease both;
}
@keyframes overlayIn { from { opacity: 0; } to { opacity: 1; } }

.policy-modal__box {
    position: relative; z-index: 1;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%; max-width: 620px;
    max-height: 85vh;
    display: flex; flex-direction: column;
    animation: modalIn 0.3s cubic-bezier(0.34,1.56,0.64,1) both;
}
@keyframes modalIn {
    from { opacity: 0; transform: scale(0.92) translateY(16px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}

.policy-modal__header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 24px 28px 20px;
    border-bottom: 1px solid var(--gray-100);
    flex-shrink: 0;
}
.policy-modal__header h3 {
    font-family: var(--font-display);
    font-size: 1.4rem; font-weight: 400;
    color: var(--green-darkest);
    letter-spacing: -0.01em;
}

.policy-modal__close {
    width: 36px; height: 36px;
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    color: var(--gray-600);
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    cursor: pointer;
    transition: background var(--transition-fast), color var(--transition-fast);
    flex-shrink: 0;
}
.policy-modal__close:hover { background: var(--gray-100); color: var(--gray-900); }
.policy-modal__close:focus-visible { outline: 2px solid var(--green-dark); outline-offset: 2px; }

.policy-modal__body { padding: 24px 28px; overflow-y: auto; flex: 1; }
.policy-modal__body section { margin-bottom: 24px; }
.policy-modal__body section:last-child { margin-bottom: 0; }

.policy-modal__body h4 {
    font-family: var(--font-body);
    font-size: 0.8125rem; font-weight: 700;
    letter-spacing: 0.06em; text-transform: uppercase;
    color: var(--green-dark); margin-bottom: 8px;
}
.policy-modal__body p {
    font-size: 0.875rem; color: var(--gray-600);
    line-height: 1.65; margin-bottom: 8px;
}
.policy-modal__body p:last-child { margin-bottom: 0; }

.policy-modal__body ul { list-style: none; padding: 0; margin: 8px 0; }
.policy-modal__body ul li {
    font-size: 0.875rem; color: var(--gray-600);
    padding: 4px 0 4px 18px;
    position: relative; line-height: 1.55;
}
.policy-modal__body ul li::before {
    content: '';
    position: absolute; left: 0; top: 12px;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--green-accent);
}
.policy-modal__body a {
    color: var(--green-dark); font-weight: 500;
    text-decoration: underline; text-underline-offset: 2px;
    transition: color var(--transition-fast);
}
.policy-modal__body a:hover { color: var(--green-darkest); }

.cookie-table { width: 100%; border-collapse: collapse; margin-top: 12px; font-size: 0.8125rem; }
.cookie-table th {
    background: var(--gray-50); color: var(--gray-900);
    font-weight: 600; font-size: 0.75rem;
    letter-spacing: 0.05em; text-transform: uppercase;
    padding: 10px 12px; text-align: left;
    border-bottom: 2px solid var(--gray-200);
}
.cookie-table td {
    padding: 10px 12px; color: var(--gray-600);
    border-bottom: 1px solid var(--gray-100);
    vertical-align: top; line-height: 1.5;
}
.cookie-table tr:last-child td { border-bottom: none; }
.cookie-table code {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    padding: 2px 6px; border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.75rem; color: var(--green-dark);
}

.policy-modal__footer {
    padding: 16px 28px 24px;
    border-top: 1px solid var(--gray-100);
    display: flex; justify-content: flex-end;
    flex-shrink: 0;
}

/* ============================================
   RESPONSIVE — TABLET (≤1024px)
   ============================================ */
@media (max-width: 1024px) {
    .left-panel, .right-panel { padding: 40px 36px; }
    .hero-text h1 { font-size: 2.4rem; }
}

/* ============================================
   RESPONSIVE — MOBILE (≤768px)
   ============================================ */
@media (max-width: 768px) {
    .page-wrapper {
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr;
    }

    .left-panel { padding: 40px 28px 44px; }

    .left-inner {
        gap: 20px;
        align-items: center;
        text-align: center;
    }

    .hero-text h1 { font-size: 2.2rem; }
    .hero-description { max-width: 100%; }

    .countdown__value { font-size: 1.9rem; }

    .contact-cards {
        flex-direction: row;
        flex-wrap: wrap;
        width: 100%;
    }
    .contact-card {
        flex: 1;
        min-width: 180px;
        text-align: left;
    }

    .social-links {
        justify-content: center;
        margin-top: 0;
        padding-top: 0;
    }

    .bg-circle--1 { width: 280px; height: 280px; top: -60px; right: -80px; }

    .right-panel { padding: 40px 28px; align-items: flex-start; }
    .form-container { max-width: 100%; }
}

/* ============================================
   RESPONSIVE — SMALL MOBILE (≤480px)
   ============================================ */
@media (max-width: 480px) {
    .left-panel { padding: 32px 20px 40px; }

    .left-inner { align-items: center; text-align: center; }

    .hero-text h1 { font-size: 1.9rem; }

    .countdown__blocks { gap: 4px; }
    .countdown__value { font-size: 1.6rem; }
    .countdown__sep   { font-size: 1.4rem; }

    .contact-cards { flex-direction: column; }
    .contact-card  { min-width: unset; text-align: left; }

    .social-links { justify-content: center; }

    .right-panel { padding: 32px 20px; }
    .form-header h2 { font-size: 1.9rem; }

    .cookie-banner__inner { flex-direction: column; align-items: flex-start; gap: 14px; padding: 16px 18px; }
    .cookie-banner__actions { width: 100%; }
    .cookie-btn { flex: 1; text-align: center; }

    .policy-modal__box { max-height: 92vh; border-radius: var(--radius-md); }
    .policy-modal__header,
    .policy-modal__body,
    .policy-modal__footer { padding-left: 18px; padding-right: 18px; }

    .cookie-table { font-size: 0.75rem; }
    .cookie-table th, .cookie-table td { padding: 8px; }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ============================================
   SCROLL TO TOP BUTTON
   Only visible on mobile/tablet (≤768px)
   ============================================ */
.scroll-top {
    display: none; /* hidden on desktop */
    position: fixed;
    bottom: 28px;
    right: 24px;
    z-index: 900;
    width: 48px;
    height: 48px;
    background: var(--green-dark);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(27, 67, 50, 0.4), 0 2px 8px rgba(0,0,0,0.15);
    opacity: 0;
    transform: translateY(16px) scale(0.85);
    transition:
        opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
        background 0.2s ease,
        box-shadow 0.2s ease;
    pointer-events: none;
}

/* Show only on mobile */
@media (max-width: 768px) {
    .scroll-top {
        display: flex;
    }
}

/* Visible state */
.scroll-top.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

/* Hover state */
.scroll-top:hover {
    background: var(--green-darkest);
    box-shadow: 0 8px 28px rgba(27, 67, 50, 0.5), 0 4px 12px rgba(0,0,0,0.2);
    transform: translateY(-3px) scale(1.05);
}

/* Active/click state */
.scroll-top:active {
    transform: translateY(0) scale(0.96);
    box-shadow: 0 2px 10px rgba(27, 67, 50, 0.35);
}

/* Focus visible for accessibility */
.scroll-top:focus-visible {
    outline: 2px solid var(--green-accent);
    outline-offset: 3px;
}

/* Pulse ring animation on first appearance */
.scroll-top.is-visible::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid var(--green-light);
    animation: pulse-ring 1.5s ease-out forwards;
}
@keyframes pulse-ring {
    0%   { transform: scale(1);   opacity: 0.6; }
    100% { transform: scale(1.6); opacity: 0; }
}

/* Adjust position when cookie banner is visible */
.scroll-top.banner-open {
    bottom: 100px;
}