:root {
    --gold: #f4b000;
    --gold-dark: #d89e00;
    --gold-light: #fff8e7;
    --stone: #2c2a26;
    --stone-mid: #4a4740;
    --ash: #f7f5f2;
    --white: #ffffff;
    --muted: #6b6760;
    --border: #e8e4de;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow: 0 4px 24px rgba(44, 42, 38, 0.10);
    --shadow-lg: 0 12px 48px rgba(44, 42, 38, 0.16);
    --font-display: 'Nunito', system-ui, -apple-system, sans-serif;
    --font-body: 'Nunito', system-ui, -apple-system, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--stone);
    background: var(--white);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}


/* ─── TYPOGRAPHY ─────────────────────────────── */

h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(1.7rem, 3.5vw, 2.6rem);
    font-weight: 700;
}

h3 {
    font-size: 1.25rem;
    font-weight: 600;
}

p {
    color: var(--stone-mid);
}

.lead {
    font-size: 1.1rem;
    font-weight: 400;
}

.label-tag {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-dark);
}


/* ─── BUTTONS ────────────────────────────────── */

.btn-gold {
    background: var(--gold);
    color: var(--stone);
    font-weight: 600;
    font-size: 1rem;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 2px 12px rgba(244, 176, 0, 0.35);
}

.btn-gold:hover {
    background: var(--gold-dark);
    color: var(--stone);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(244, 176, 0, 0.45);
}

.btn-outline-stone {
    border: 2px solid var(--stone);
    color: var(--stone);
    font-weight: 600;
    font-size: 1rem;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    background: transparent;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.2s, color 0.2s, transform 0.15s;
}

.btn-outline-stone:hover {
    background: var(--stone);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-white {
    border: 2px solid rgba(255, 255, 255, 0.7);
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    background: transparent;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
    color: #fff;
}


/* ─── NAVBAR ─────────────────────────────────── */

#navbar {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 0.9rem 0;
    transition: box-shadow 0.3s;
}

#navbar.scrolled {
    box-shadow: var(--shadow);
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--stone);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-logo-img {
    border-radius: 8px;
    flex-shrink: 0;
}

.nav-links a {
    color: var(--stone-mid);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    margin-left: 1.5rem;
    transition: color 0.2s;
}

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


/* ─── HERO ───────────────────────────────────── */

#hero {
    background: linear-gradient(160deg, #1a1916 0%, #2c2a26 50%, #3a3630 100%);
    position: relative;
    overflow: hidden;
    padding: 7rem 0 5rem;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

#hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background: url('../img/300a.jpg') center/cover no-repeat;
    opacity: 0.22;
    pointer-events: none;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(244, 176, 0, 0.15);
    border: 1px solid rgba(244, 176, 0, 0.4);
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

#hero h1 {
    color: #fff;
    margin-bottom: 1.25rem;
}

#hero h1 .hero-brand {
    display: block;
    font-size: clamp(1.85rem, 4vw, 2.75rem);
    letter-spacing: -0.02em;
}

#hero h1 .hero-tagline {
    display: block;
    font-size: clamp(1.15rem, 2.5vw, 1.45rem);
    font-weight: 400;
    margin-top: 0.5rem;
    line-height: 1.35;
    opacity: 0.95;
}

#hero h1 em {
    font-style: italic;
    color: var(--gold);
}

#hero .lead {
    color: rgba(255, 255, 255, 0.78);
    max-width: 520px;
    margin-bottom: 2rem;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    align-items: center;
}

.hero-mockup-img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 28px 56px rgba(0, 0, 0, 0.5));
}


/* ─── TRUST BAR ──────────────────────────────── */

#trust {
    background: var(--gold-light);
    border-top: 1px solid rgba(244, 176, 0, 0.25);
    border-bottom: 1px solid rgba(244, 176, 0, 0.25);
    padding: 1.4rem 0;
}

.trust-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 2.5rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--stone);
    white-space: nowrap;
}

.trust-item i {
    color: var(--gold-dark);
    font-size: 0.85rem;
}


/* ─── SECTIONS ───────────────────────────────── */

section {
    padding: 5rem 0;
}

.section-label {
    margin-bottom: 0.5rem;
}

.section-title {
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--muted);
    max-width: 540px;
}


/* ─── HOW IT WORKS ───────────────────────────── */

#how-it-works {
    background: var(--ash);
}

.step-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
    height: 100%;
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.step-num {
    width: 52px;
    height: 52px;
    background: var(--gold);
    color: var(--stone);
    border-radius: 50%;
    font-family: var(--font-display);
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-weight: 700;
}

.step-card h3 {
    margin-bottom: 0.5rem;
}

.step-connector {
    position: absolute;
    top: 50px;
    right: -20px;
    color: var(--border);
    font-size: 1.5rem;
    z-index: 10;
    display: none;
}


/* ─── FEATURES ───────────────────────────────── */

.feature-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem 1.75rem;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: var(--gold);
}

.feature-icon {
    width: 52px;
    height: 52px;
    background: var(--gold-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.feature-icon i {
    color: var(--gold-dark);
    font-size: 1.2rem;
}

.feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}


/* ─── ABOUT AKROTIRI ─────────────────────────── */

#about {
    background: linear-gradient(160deg, #2c2a26 0%, #1a1916 100%);
}

#about h2 {
    color: #fff;
}

#about p {
    color: rgba(255, 255, 255, 0.7);
}

#about .label-tag {
    color: var(--gold);
}

.fact-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(244, 176, 0, 0.12);
    border: 1px solid rgba(244, 176, 0, 0.3);
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.4rem 0.9rem;
    border-radius: 50px;
    margin: 0.2rem;
}

.about-image-wrap {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image-wrap img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
}


/* ─── AKROTIRI GUIDE CONTENT ─────────────────── */

#akrotiri-guide-content {
    background: var(--white);
}

#akrotiri-guide-content .section-subtitle {
    max-width: 760px;
}

.guide-content-flow {
    margin-top: 0.25rem;
}

.guide-row {
    margin-bottom: 3.5rem;
}

.guide-row:last-child {
    margin-bottom: 0;
}

.guide-topic-title {
    font-size: 1.55rem;
    line-height: 1.3;
    margin-bottom: 0.8rem;
    color: var(--stone);
}

#akrotiri-guide-content p {
    color: var(--muted);
    margin-bottom: 0.95rem;
    line-height: 1.7;
}

.guide-topic-last {
    margin-bottom: 0;
}

.guide-sign-list {
    margin: 1rem 0 1.1rem;
    display: grid;
    gap: 0.55rem;
}

.guide-sign-item {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    background: var(--ash);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 0.62rem 0.75rem;
}

.guide-sign-icon {
    width: 1.9rem;
    height: 1.9rem;
    border-radius: 999px;
    background: rgba(244, 176, 0, 0.16);
    border: 1px solid rgba(244, 176, 0, 0.34);
    color: var(--gold-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.05rem;
}

.guide-sign-item p {
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
}

.guide-image-wrap {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: #efeae0;
}

.guide-image-wrap img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
}


/* ─── PLAN YOUR VISIT ────────────────────────── */

#plan {
    background: var(--ash);
}

.info-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    height: 100%;
}

.info-card h3 {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1.25rem;
}

.info-card h3 i {
    color: var(--gold-dark);
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.92rem;
}

.hours-row:last-of-type {
    border-bottom: none;
}

.hours-label {
    font-weight: 500;
}

.hours-time {
    color: var(--muted);
}

.hours-section-title {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    margin: 1rem 0 0.4rem;
}

.ticket-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
}

.ticket-row:last-of-type {
    border-bottom: none;
}

.ticket-price {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--stone);
}

.hours-note {
    font-size: 0.78rem;
    color: var(--muted);
    margin-top: 0.75rem;
    display: flex;
    gap: 0.4rem;
}

.hours-note i {
    color: var(--gold-dark);
    flex-shrink: 0;
    margin-top: 2px;
}


/* Plan section — Free / reduced / free admission cards (readability) */

.plan-card-intro {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.55;
    margin: -0.35rem 0 1.15rem;
}

.plan-date-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plan-date-item {
    display: grid;
    grid-template-columns: 5.25rem 1fr;
    gap: 0.65rem 0.85rem;
    align-items: start;
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
    line-height: 1.45;
}

.plan-date-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.plan-date-item:first-child {
    padding-top: 0;
}

.plan-date-badge {
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gold-dark);
    background: var(--gold-light);
    border-radius: var(--radius-sm);
    padding: 0.35rem 0.5rem;
    text-align: center;
    line-height: 1.25;
}

.plan-date-label {
    color: var(--stone);
    font-weight: 600;
}

.plan-date-sub {
    display: block;
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--muted);
    margin-top: 0.2rem;
}

.plan-rule-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plan-rule-item {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
    line-height: 1.45;
}

.plan-rule-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.plan-rule-item:first-child {
    padding-top: 0;
}

.plan-rule-icon {
    flex-shrink: 0;
    width: 2.1rem;
    height: 2.1rem;
    border-radius: 10px;
    background: var(--gold-light);
    color: var(--gold-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.88rem;
    margin-top: 0.05rem;
}

.plan-rule-body {
    min-width: 0;
}

.plan-rule-title {
    display: block;
    font-weight: 600;
    color: var(--stone);
}

.plan-rule-hint {
    display: block;
    font-size: 0.8rem;
    color: var(--muted);
    margin-top: 0.25rem;
}

.plan-free-section {
    margin-bottom: 1.1rem;
}

.plan-free-section:last-child {
    margin-bottom: 0;
}

.plan-free-section-title {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.55rem;
    padding-bottom: 0.35rem;
    border-bottom: 2px solid var(--gold-light);
}

.plan-free-lines {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plan-free-lines li {
    position: relative;
    padding-left: 1.1rem;
    margin-bottom: 0.55rem;
    font-size: 0.88rem;
    line-height: 1.5;
    color: var(--stone-mid);
}

.plan-free-lines li:last-child {
    margin-bottom: 0;
}

.plan-free-lines li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gold);
}

@media (max-width: 575px) {
    .plan-date-item {
        grid-template-columns: 1fr;
        gap: 0.35rem;
    }
    .plan-date-badge {
        justify-self: start;
    }
}


/* ─── SHOWCASE (Find us also) ───────────────── */

.showcase-card-img {
    height: 200px;
    object-fit: cover;
    display: block;
}

.showcase-card-link {
    color: inherit;
}

.showcase-card {
    transition: transform 0.2s, box-shadow 0.2s;
}

.showcase-card-link:hover .showcase-card {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}


/* ─── MAP ────────────────────────────────────── */

#location {
    padding: 5rem 0 0;
}

.map-embed {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: min(70vh, 720px);
    min-height: 420px;
}

.map-embed iframe {
    width: 100%;
    height: 100%;
    min-height: 100%;
    border: none;
    display: block;
}


/* ─── FAQ ────────────────────────────────────── */

#faq {
    background: var(--ash);
    padding-bottom: 4rem;
}

.accordion-item {
    border: 1px solid var(--border) !important;
    border-radius: var(--radius-sm) !important;
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.accordion-button {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    color: var(--stone) !important;
    background: var(--white) !important;
    padding: 1.25rem 1.5rem;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    color: var(--stone) !important;
    background: var(--gold-light) !important;
}

.accordion-button::after {
    filter: brightness(0.4);
}

.accordion-body {
    color: var(--muted);
    font-size: 0.95rem;
    padding: 1rem 1.5rem 1.25rem;
    background: var(--white);
}


/* ─── FINAL CTA ──────────────────────────────── */

#cta-final {
    background: linear-gradient(135deg, #f4b000 0%, #e0a000 100%);
    padding: 6rem 0;
    text-align: center;
}

#cta-final h2 {
    color: var(--stone);
    max-width: 640px;
    margin: 0 auto 1.25rem;
}

#cta-final p {
    color: rgba(44, 42, 38, 0.7);
    max-width: 480px;
    margin: 0 auto 2rem;
}

.btn-dark {
    background: var(--stone);
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.9rem 2.2rem;
    border-radius: 50px;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 4px 16px rgba(44, 42, 38, 0.3);
}

.btn-dark:hover {
    background: #1a1916;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(44, 42, 38, 0.4);
}


/* ─── CONTACT ────────────────────────────────── */

#contact {
    padding: 4rem 0;
}

.contact-card {
    background: var(--ash);
    border-radius: var(--radius);
    padding: 2.5rem;
    text-align: center;
    max-width: 480px;
    margin: 0 auto;
}

.contact-card a {
    color: var(--stone);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}

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


/* ─── FOOTER ─────────────────────────────────── */

footer.site-footer {
    background: var(--stone);
    padding: 3rem 0 2rem;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.875rem;
}

footer .footer-brand-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.92);
    letter-spacing: 0.02em;
}

footer .footer-tagline {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.88rem;
    line-height: 1.55;
    max-width: 22rem;
}

footer .footer-heading {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.42);
    margin-bottom: 0.9rem;
    font-weight: 600;
}

footer .footer-links li {
    margin-bottom: 0.4rem;
}

footer .footer-links li:last-child {
    margin-bottom: 0;
}

footer .footer-links a {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    transition: color 0.2s;
}

footer .footer-links a:hover {
    color: #fff;
}

footer .footer-bottom {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.82);
}


/* ─── UTILITIES ──────────────────────────────── */

.divider {
    width: 48px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
    margin: 1.25rem 0;
}

.bg-white {
    background: var(--white) !important;
}


/* ─── RESPONSIVE ─────────────────────────────── */

@media (min-width: 992px) {
    .step-connector {
        display: block;
    }
}

@media (max-width: 767px) {
    section {
        padding: 3.5rem 0;
    }
    #hero {
        padding: 4rem 0 3rem;
        min-height: auto;
    }
    .hero-cta-group {
        flex-direction: column;
        align-items: flex-start;
    }
    .hero-mockup-img {
        width: 260px;
    }
}

@media (max-width: 575px) {
    .nav-links {
        display: none;
    }
}

/* ─── LEGAL PAGES (terms, privacy, cookies) ───────────────── */

main.legal-page {
    background: var(--ash);
    padding: 1.5rem 0 3.5rem;
    min-height: 50vh;
}

.legal-inner {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 2rem 1.5rem;
    max-width: 52rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .legal-inner {
        padding: 2.5rem 2.75rem;
    }
}

.legal-inner h2 {
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid var(--gold-light);
}

.legal-inner h4,
.legal-inner h5 {
    margin-top: 1.75rem;
    margin-bottom: 0.65rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--stone);
}

.legal-inner h4:first-of-type,
.legal-inner h5:first-of-type {
    margin-top: 0.5rem;
}

.legal-inner p,
.legal-inner li {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--stone-mid);
}

.legal-inner ul {
    padding-left: 1.25rem;
    margin-bottom: 1rem;
}

.legal-inner a {
    color: var(--gold-dark);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.legal-inner a:hover {
    color: var(--stone);
}