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

:root {
    --navy: #0f1a2e;
    --navy-mid: #162240;
    --navy-light: #1c2d4a;
    --gold: #b59a6a;
    --gold-light: #c9af82;
    --gold-dim: rgba(181, 154, 106, .15);
    --off-white: #f4f1ec;
    --cream: #faf8f5;
    --white: #ffffff;
    --text: #d4cfc7;
    --text-dark: #3a3530;
    --text-dark-muted: #6b6560;
    --text-muted: #8a8478;
    --border: rgba(181, 154, 106, .2);
    --border-light: rgba(181, 154, 106, .25);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--off-white);
    background: var(--navy);
    line-height: 1.7;
    font-weight: 300;
}

h1, h2, h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 600;
    line-height: 1.25;
}

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

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: color .2s;
}

a:hover {
    color: var(--gold-light);
}

/* ---------- HEADER ---------- */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(15, 26, 46, .92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.header.scrolled {
    background: rgba(15, 26, 46, .97);
}

.header.scrolled .header-inner {
    height: 60px;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    transition: height .3s;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 48px;
    width: auto;
}

.nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav a {
    color: var(--text);
    font-size: .78rem;
    font-weight: 400;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    transition: color .2s;
}

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

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--gold);
    border-radius: 2px;
    transition: transform .3s, opacity .3s;
}

/* ---------- HERO ---------- */

.hero {
    position: relative;
    isolation: isolate;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: radial-gradient(ellipse at 50% 40%, var(--navy-mid) 0%, var(--navy) 70%);
    text-align: center;
    padding: 6rem 0 4rem;
}

.hero::before {
    content: '';
    position: absolute;
    z-index: -1;
    width: min(92vw, 920px);
    aspect-ratio: 1;
    top: 38%;
    left: 50%;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(201, 175, 130, .08) 0%, rgba(181, 154, 106, .035) 34%, transparent 72%);
    filter: blur(28px);
    pointer-events: none;
}

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

.hero-logo {
    width: 280px;
    height: auto;
    position: relative;
    z-index: 1;
    margin: 0;
    filter: drop-shadow(0 0 18px rgba(201, 175, 130, .12));
}

.hero-logo-wrap {
    position: relative;
    margin-bottom: 2.5rem;
}

.hero-logo-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(112deg, transparent 30%, rgba(255, 244, 207, .78) 47%, rgba(255, 255, 255, .25) 50%, transparent 63%);
    background-size: 240% 100%;
    background-position: 140% 0;
    -webkit-mask: url('images/ss-logo.webp') center / contain no-repeat;
    mask: url('images/ss-logo.webp') center / contain no-repeat;
    opacity: .55;
    pointer-events: none;
    animation: logo-sheen 9s ease-in-out infinite;
}

@keyframes logo-sheen {
    0%, 55% { background-position: 140% 0; }
    78%, 100% { background-position: -40% 0; }
}

.hero-tagline {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2rem;
    font-weight: 500;
    color: var(--text);
    letter-spacing: .5px;
    line-height: 1.4;
}

.hero-divider {
    position: relative;
    overflow: hidden;
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 2.3rem 0 2rem;
}

.hero-divider::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 245, 210, .95), transparent);
    transform: translateX(-100%);
    animation: divider-sheen 6s ease-in-out infinite;
}

@keyframes divider-sheen {
    0%, 60% { transform: translateX(-100%); }
    82%, 100% { transform: translateX(100%); }
}

@media (prefers-reduced-motion: reduce) {
    .hero-logo-wrap::after,
    .hero-divider::after {
        animation: none;
    }
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

/* ---------- BUTTONS ---------- */

.btn {
    display: inline-block;
    padding: .9rem 2.2rem;
    font-size: .8rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    border-radius: 3px;
    cursor: pointer;
    border: none;
    transition: background .25s, color .25s, transform .2s;
}

.btn-gold {
    background: var(--gold);
    color: var(--navy);
}

.btn-gold:hover {
    background: var(--gold-light);
    color: var(--navy);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: .85rem 2.2rem;
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--navy);
}

.btn-outline-light {
    background: transparent;
    border: 1px solid rgba(255,255,255,.4);
    color: var(--off-white);
}

.btn-outline-light:hover {
    background: rgba(255,255,255,.06);
    color: var(--off-white);
}

/* ---------- SECTION LABELS ---------- */

.section-label {
    font-size: .75rem;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .75rem;
    text-align: center;
}

.section-title {
    font-size: 2.3rem;
    color: var(--off-white);
    text-align: center;
    margin-bottom: 3rem;
}

.section-title.left {
    text-align: left;
}

/* ---------- SERVICES ---------- */

.services {
    padding: 7rem 0;
    background: var(--cream);
}

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

.services .section-title {
    color: var(--navy);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 6px;
    padding: 2.5rem 2rem;
    transition: transform .25s, border-color .25s, box-shadow .25s;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
    box-shadow: 0 8px 30px rgba(15, 26, 46, .08);
}

.service-icon {
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.service-icon svg {
    width: 32px;
    height: 32px;
}

.service-card h3 {
    font-size: 1.35rem;
    color: var(--navy);
    margin-bottom: .75rem;
}

.service-card p {
    color: var(--text-dark-muted);
    font-size: .92rem;
    line-height: 1.7;
}

.card-link {
    display: inline-block;
    margin-top: 1.25rem;
    font-size: .82rem;
    font-weight: 500;
    letter-spacing: .8px;
    text-transform: uppercase;
    color: var(--gold);
    transition: color .2s;
}

.card-link:hover {
    color: var(--navy);
}

.service-note {
    margin-top: 2rem;
    text-align: center;
    font-size: .9rem;
    color: var(--text-dark-muted);
    font-weight: 500;
}

/* ---------- ABOUT ---------- */

.about {
    padding: 7rem 0;
    background: var(--navy-mid);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

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

.about-text .section-label {
    text-align: left;
}

.about-text p {
    color: var(--text);
    font-size: .95rem;
    margin-bottom: 1.25rem;
}

.about-note {
    margin-top: 1.25rem;
    padding: 1.25rem 1.5rem;
    border-left: 3px solid var(--gold);
    background: rgba(255,255,255,.03);
    color: var(--text);
    line-height: 1.7;
    font-size: .94rem;
}

/* ---------- INTRO ---------- */

.intro {
    position: relative;
    background: var(--navy);
    padding: 6rem 0;
}

.intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: min(34vw, 260px);
    height: 1px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent, rgba(201, 175, 130, .72), transparent);
    box-shadow: 0 0 18px rgba(201, 175, 130, .16);
}

.lead {
    max-width: 820px;
    margin: 0 auto 1.4rem;
    color: var(--text);
    font-size: 1.02rem;
    line-height: 1.8;
    text-align: center;
}

/* ---------- PROCESS ---------- */

.process {
    background: var(--navy-mid);
    padding: 6rem 0;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1.5rem;
}

.process-step {
    background: rgba(255,255,255,.03);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1.5rem 1.25rem;
}

.process-step span {
    display: inline-block;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.process-step h3 {
    color: var(--off-white);
    font-size: 1.3rem;
    margin-bottom: .6rem;
}

.process-step p {
    color: var(--text);
    font-size: .9rem;
    line-height: 1.7;
}

/* ---------- AUDIENCE ---------- */

.audience {
    background: var(--cream);
    padding: 6rem 0;
}

.audience .section-title,
.faq .section-title {
    color: var(--navy);
}

.audience-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .9rem;
    max-width: 900px;
    margin: 0 auto;
}

.audience-list span {
    display: inline-flex;
    padding: .8rem 1.15rem;
    border: 1px solid var(--border-light);
    border-radius: 999px;
    background: var(--white);
    color: var(--text-dark-muted);
    font-size: .9rem;
}

/* ---------- FAQ ---------- */

.faq {
    background: var(--navy);
    padding: 6rem 0;
}

.faq-list {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: 8px;
    background: rgba(255,255,255,.02);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    text-align: left;
    padding: 1.2rem 1.3rem;
    color: var(--off-white);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
}

.faq-question span {
    color: var(--gold);
    font-size: 1.6rem;
    line-height: 1;
    transition: transform .2s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .25s ease;
}

.faq-answer p {
    padding: 0 1.3rem 1.2rem;
    color: var(--text);
    line-height: 1.7;
    font-size: .95rem;
}

.faq-item.active .faq-answer {
    max-height: 260px;
}

.faq-item.active .faq-question span {
    transform: rotate(45deg);
}

/* ---------- CONTACT ---------- */

.contact {
    padding: 7rem 0;
    background: var(--cream);
}

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

.contact .section-title {
    color: var(--navy);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.contact-intro {
    color: var(--text-dark-muted);
    font-size: .95rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--gold);
}

.contact-item strong {
    color: var(--navy);
    font-weight: 500;
}

.contact-item a,
.contact-item span {
    color: var(--text-dark-muted);
    font-size: .92rem;
}

.contact-item a:hover {
    color: var(--gold);
}

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

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

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

.form-group label {
    font-size: .78rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-dark-muted);
}

.form-group .optional {
    text-transform: none;
    letter-spacing: 0;
    font-size: .72rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: .9rem 1rem;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 4px;
    color: var(--text-dark);
    font-family: 'Inter', sans-serif;
    font-size: .92rem;
    transition: border-color .2s, box-shadow .2s;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(181, 154, 106, .12);
}

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

.consent-row {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    color: var(--text-dark-muted);
    font-size: .84rem;
    line-height: 1.6;
}

.consent-row input {
    margin-top: .2rem;
    width: 18px;
    height: 18px;
}

.contact-form .btn-gold {
    align-self: flex-start;
    margin-top: .5rem;
}

/* ---------- SUBPAGES ---------- */

.page-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    padding: 9rem 0 4rem;
    text-align: center;
}

.page-hero-title {
    font-size: 2.8rem;
    color: var(--off-white);
    margin-bottom: 1rem;
}

.page-hero-text {
    font-size: 1.1rem;
    color: var(--text);
    max-width: 600px;
    margin: 0 auto;
}

.page-content {
    background: var(--cream);
    padding: 5rem 0;
}

.content-block {
    max-width: 720px;
    margin: 0 auto 4rem;
}

.content-block h2 {
    font-size: 1.8rem;
    color: var(--navy);
    margin-bottom: 1.25rem;
}

.content-block p {
    color: var(--text-dark-muted);
    font-size: .95rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.content-block.disclaimer {
    max-width: 720px;
    margin: 0 auto 4rem;
    padding: 1.5rem 2rem;
    background: var(--white);
    border-left: 3px solid var(--gold);
    border-radius: 4px;
}

.content-block.disclaimer p {
    margin-bottom: 0;
    font-size: .88rem;
    color: var(--text-dark-muted);
}

.check-list {
    list-style: none;
    margin-top: 1.25rem;
}

.check-list li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: .75rem;
    color: var(--text-dark-muted);
    font-size: .95rem;
    line-height: 1.6;
}

.check-list li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 600;
}

.offerings {
    max-width: 900px;
    margin: 0 auto 4rem;
}

.offerings h2 {
    font-size: 1.8rem;
    color: var(--navy);
    margin-bottom: 2rem;
    text-align: center;
}

.offerings-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.offering-item {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 6px;
    padding: 2rem;
    transition: border-color .25s;
}

.offering-item:hover {
    border-color: var(--gold);
}

.offering-item h3 {
    font-size: 1.15rem;
    color: var(--navy);
    margin-bottom: .5rem;
}

.offering-item p {
    color: var(--text-dark-muted);
    font-size: .9rem;
    line-height: 1.7;
}

.page-cta {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding-top: 1rem;
}

.page-cta h2 {
    font-size: 1.8rem;
    color: var(--navy);
    margin-bottom: .75rem;
}

.page-cta p {
    color: var(--text-dark-muted);
    font-size: .95rem;
    margin-bottom: 1.5rem;
}

/* ---------- FOOTER ---------- */

.footer {
    position: relative;
    border-top: 1px solid var(--border);
    padding: 4rem 0 2.5rem;
    background: var(--navy);
}

.footer::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    width: min(28vw, 220px);
    height: 1px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
    box-shadow: 0 0 16px rgba(201, 175, 130, .16);
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}

.footer-logo {
    height: 64px;
    width: auto;
    opacity: .72;
}

.footer-contact {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .35rem 1.25rem;
    color: var(--text-muted);
    font-size: .78rem;
    text-align: center;
}

.footer-contact strong {
    flex-basis: 100%;
    color: var(--text);
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.15rem;
    font-weight: 600;
}

.footer-contact a {
    color: var(--text-muted);
}

.footer-contact a:hover {
    color: var(--gold-light);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .65rem 1.75rem;
    padding-top: .25rem;
    font-size: .76rem;
    font-weight: 500;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.footer-links a,
.footer-copy {
    color: var(--text-muted);
}

.footer-links a {
    transition: color .2s;
}

.footer-links a:hover {
    color: var(--gold-light);
}

.footer-copy {
    font-size: .78rem;
    opacity: .7;
}

/* ---------- COOKIE CONSENT ---------- */

.cookie-banner {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    left: 1.25rem;
    z-index: 200;
    border: 1px solid rgba(201, 175, 130, .35);
    border-radius: 6px;
    background: rgba(15, 26, 46, .97);
    box-shadow: 0 18px 55px rgba(0, 0, 0, .3);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.cookie-banner[hidden],
.cookie-modal[hidden] {
    display: none;
}

.cookie-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1180px;
    margin: 0 auto;
    padding: 1.5rem 1.75rem;
}

.cookie-banner-label {
    margin-bottom: .25rem;
    color: var(--gold-light);
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.cookie-banner h2,
.cookie-modal h2 {
    margin-bottom: .35rem;
    color: var(--off-white);
    font-size: 1.45rem;
}

.cookie-banner p:not(.cookie-banner-label),
.cookie-modal-panel > p:not(.section-label) {
    max-width: 650px;
    color: var(--text);
    font-size: .85rem;
    line-height: 1.55;
}

.cookie-banner-actions,
.cookie-modal-actions {
    display: flex;
    flex-shrink: 0;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: .6rem;
}

.cookie-banner .btn,
.cookie-modal .btn {
    padding: .7rem 1rem;
    font-size: .68rem;
}

.cookie-modal {
    position: fixed;
    inset: 0;
    z-index: 210;
    display: grid;
    place-items: center;
    padding: 1rem;
}

.cookie-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 10, 19, .72);
}

.cookie-modal-panel {
    position: relative;
    width: min(100%, 560px);
    padding: 2rem;
    border: 1px solid var(--border-light);
    border-radius: 6px;
    background: var(--navy);
    box-shadow: 0 25px 80px rgba(0, 0, 0, .4);
}

.cookie-modal-close {
    position: absolute;
    top: .8rem;
    right: 1rem;
    border: 0;
    background: transparent;
    color: var(--text-muted);
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
}

.cookie-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1rem;
    padding: 1rem;
    border: 1px solid var(--border);
    border-radius: 4px;
}

.cookie-option h3,
.cookie-option strong {
    display: block;
    color: var(--off-white);
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.2rem;
}

.cookie-option p,
.cookie-option small {
    display: block;
    margin-top: .2rem;
    color: var(--text-muted);
    font-size: .78rem;
    line-height: 1.45;
}

.cookie-status {
    flex-shrink: 0;
    color: var(--gold-light);
    font-size: .68rem;
    letter-spacing: .8px;
    text-transform: uppercase;
}

.cookie-option-toggle {
    cursor: pointer;
}

.cookie-option-toggle input {
    width: 1.15rem;
    height: 1.15rem;
    accent-color: var(--gold);
}

.cookie-policy-link {
    display: inline-block;
    margin: 1.2rem 0;
    font-size: .8rem;
}

.cookie-modal-actions {
    justify-content: flex-start;
}

.cookie-open-settings {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 150;
    padding: .45rem .7rem;
    border: 1px solid var(--border);
    border-radius: 3px;
    background: rgba(15, 26, 46, .9);
    color: var(--text-muted);
    font-size: .65rem;
    cursor: pointer;
}

.cookie-open-settings:hover {
    border-color: var(--gold);
    color: var(--gold-light);
}

/* ---------- ADMIN ---------- */

.admin-page {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 2rem 1rem;
    background: var(--cream);
    color: var(--text-dark);
}

.admin-panel {
    width: min(100%, 820px);
    padding: clamp(2rem, 5vw, 4rem);
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 6px;
    box-shadow: 0 18px 50px rgba(15, 26, 46, .08);
}

.admin-panel h1 {
    margin-bottom: 1.5rem;
    color: var(--navy);
    font-size: 2.4rem;
}

.admin-panel > p:not(.section-label) {
    margin-bottom: 1.5rem;
    color: var(--text-dark-muted);
}

.admin-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.admin-header h1 {
    margin-bottom: 0;
}

.admin-header .btn {
    flex-shrink: 0;
}

.admin-panel h2 {
    margin-bottom: 1.25rem;
    color: var(--navy);
    font-size: 1.7rem;
}

.admin-divider {
    height: 1px;
    margin: 2.5rem 0;
    background: var(--border-light);
}

.admin-error,
.admin-success {
    margin-bottom: 1.5rem;
    padding: .85rem 1rem;
    border-radius: 4px;
    font-size: .9rem;
}

.admin-error {
    background: #fff0ee;
    color: #8e2b20;
    border: 1px solid #e6b6af;
}

.admin-success {
    background: #eef8f0;
    color: #246b36;
    border: 1px solid #b8d9be;
}

@media (max-width: 600px) {
    .admin-header {
        flex-direction: column;
    }

    .admin-header .btn {
        width: auto;
    }
}

/* ---------- MOBILE ---------- */

@media (max-width: 1024px) {
    .process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--navy);
        border-bottom: 1px solid var(--border);
        flex-direction: column;
        padding: 1.25rem 1.5rem;
        gap: 1rem;
    }

    .nav.open {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding: 9rem 0 5rem;
    }

    .hero-logo {
        width: 220px;
    }

    .hero-tagline {
        font-size: 1.2rem;
    }

    .hero-actions {
        display: flex;
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        gap: .9rem;
    }

    .cookie-banner {
        right: .75rem;
        bottom: .75rem;
        left: .75rem;
    }

    .cookie-banner-inner {
        display: block;
        padding: 1.25rem;
    }

    .cookie-banner-actions {
        justify-content: flex-start;
        margin-top: 1rem;
    }

    .cookie-modal-panel {
        padding: 1.5rem;
    }

    .cookie-open-settings {
        right: .75rem;
        bottom: .75rem;
    }

    .services,
    .about,
    .contact,
    .intro,
    .process,
    .audience,
    .faq {
        padding: 4.5rem 0;
    }

    .services-grid,
    .contact-grid,
    .form-grid,
    .process-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2.5rem;
    }

    .about-inner {
        max-width: 100%;
    }

    .lead {
        font-size: .96rem;
    }

    .audience-list {
        gap: .7rem;
    }

    .audience-list span {
        font-size: .82rem;
    }

    .contact-info {
        gap: .8rem;
    }

    .page-hero {
        padding: 7rem 0 3rem;
    }

    .page-hero-title {
        font-size: 2rem;
    }

    .page-content {
        padding: 3.5rem 0;
    }

    .offerings-grid {
        grid-template-columns: 1fr;
    }

    .content-block,
    .offerings {
        margin-bottom: 3rem;
    }

    .content-block h2,
    .offerings h2,
    .page-cta h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero-logo {
        width: 170px;
    }

    .hero-tagline {
        font-size: 1.05rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .btn {
        display: block;
        width: 100%;
        text-align: center;
        padding: .8rem 1.25rem;
        font-size: .78rem;
    }

    .service-card {
        padding: 1.8rem 1.3rem;
    }

    .faq-question {
        font-size: .92rem;
    }
}
