/*
Theme Name: Navenu
Theme URI: https://navenu.com
Author: Navenu Team
Author URI: https://navenu.com
Description: Clean, modern theme for Navenu — a real-world experience platform. Curated aesthetics, minimal design.
Version: 1.0.0
Requires at least: 5.8
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: navenu
Tags: minimal, clean, modern, white, sans-serif
*/

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
    --color-primary:      #F5521A;
    --color-dark:         #111111;
    --color-dark-bg:      #1a1a1a;
    --color-text:         #2d2d2d;
    --color-muted:        #777777;
    --color-muted-light:  #aaaaaa;
    --color-light:        #f7f7f5;
    --color-border:       #e8e8e8;
    --color-white:        #ffffff;
    --color-teal:         #2DC4A8;
    --color-teal-label:   #2DC4A8;

    --badge-orange:  #FF7B1C;
    --badge-purple:  #9C6FDB;
    --badge-teal:    #2DC4A8;
    --badge-green:   #4EBF75;
    --badge-blue:    #4A90D9;

    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, sans-serif;

    --container-max:  1100px;
    --container-wide: 1280px;
    --nav-height:     64px;

    --radius-sm:   4px;
    --radius-md:   8px;
    --radius-lg:   16px;
    --radius-pill: 100px;

    --shadow-sm:  0 1px 4px rgba(0,0,0,0.07);
    --shadow-md:  0 4px 16px rgba(0,0,0,0.10);
    --shadow-lg:  0 8px 32px rgba(0,0,0,0.12);

    --transition: 0.2s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition), opacity var(--transition);
}

a:hover { opacity: 0.75; }

ul, ol { list-style: none; }

button, input, textarea, select {
    font-family: var(--font-main);
    font-size: 1rem;
}

button { cursor: pointer; border: none; background: none; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-dark);
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.2rem; }
h4 { font-size: 1rem; }

p {
    color: var(--color-muted);
    line-height: 1.7;
}

.accent {
    color: var(--color-primary);
}

.label-overline {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-teal-label);
    margin-bottom: 0.75rem;
}

/* ============================================================
   LAYOUT / CONTAINER
   ============================================================ */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
}

.container--wide {
    max-width: var(--container-wide);
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 80px 0;
}

.section--sm {
    padding: 48px 0;
}

.section--lg {
    padding: 112px 0;
}

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
#site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    height: var(--nav-height);
    display: flex;
    align-items: center;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: var(--container-wide);
    margin: 0 auto;
    padding: 0 2rem;
    height: 100%;
}

/* Logo */
.site-logo {
    font-size: 1.45rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    color: var(--color-dark);
    line-height: 1;
    flex-shrink: 0;
}

.site-logo:hover { opacity: 1; }

/* Primary nav */
#primary-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

#primary-nav a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text);
    white-space: nowrap;
    position: relative;
}

#primary-nav a:hover { opacity: 1; color: var(--color-dark); }

#primary-nav .current-menu-item > a,
#primary-nav .current_page_item > a,
#primary-nav a.active {
    color: var(--color-dark);
    font-weight: 600;
}

/* Nav CTA button */
.nav-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

/* Mobile hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color-dark);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

/* Mobile menu */
#mobile-nav {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0; bottom: 0;
    background: var(--color-white);
    z-index: 999;
    padding: 2rem;
    flex-direction: column;
    gap: 0.5rem;
    overflow-y: auto;
}

#mobile-nav.is-open { display: flex; }

#mobile-nav a {
    font-size: 1.1rem;
    font-weight: 500;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--color-border);
    color: var(--color-dark);
    display: block;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.65rem 1.4rem;
    border-radius: var(--radius-pill);
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1;
    transition: background var(--transition), color var(--transition), border-color var(--transition), opacity var(--transition), transform var(--transition);
    white-space: nowrap;
    cursor: pointer;
    text-align: center;
}

.btn:hover { opacity: 1; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

/* Dark / primary */
.btn-dark {
    background: var(--color-dark);
    color: var(--color-white);
    border: 2px solid var(--color-dark);
}
.btn-dark:hover { background: #333; border-color: #333; }

/* Outlined dark */
.btn-outline {
    background: transparent;
    color: var(--color-dark);
    border: 1.5px solid var(--color-dark);
}
.btn-outline:hover { background: var(--color-dark); color: var(--color-white); }

/* Outlined white (on dark bg) */
.btn-outline-white {
    background: transparent;
    color: var(--color-white);
    border: 1.5px solid rgba(255,255,255,0.5);
}
.btn-outline-white:hover { border-color: var(--color-white); background: rgba(255,255,255,0.08); }

/* White filled (on dark bg) */
.btn-white {
    background: var(--color-white);
    color: var(--color-dark);
    border: 1.5px solid var(--color-white);
}
.btn-white:hover { background: #efefef; border-color: #efefef; }

/* Primary orange */
.btn-primary {
    background: var(--color-primary);
    color: var(--color-white);
    border: 2px solid var(--color-primary);
}
.btn-primary:hover { background: #e04718; border-color: #e04718; }

/* Submit / full-width */
.btn-submit {
    width: 100%;
    justify-content: center;
    padding: 0.9rem 1.4rem;
    font-size: 0.95rem;
    border-radius: var(--radius-md);
}

/* ============================================================
   LINK ARROW
   ============================================================ */
.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-primary);
    border-bottom: 1px solid transparent;
    transition: border-color var(--transition);
}
.link-arrow:hover { opacity: 1; border-bottom-color: var(--color-primary); }

/* ============================================================
   HERO SECTION (Homepage)
   ============================================================ */
.hero {
    padding: 80px 0 60px;
    text-align: center;
}

.hero h1 {
    max-width: 680px;
    margin: 0 auto 1.25rem;
    font-size: clamp(2.4rem, 5.5vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
}

.hero p {
    max-width: 480px;
    margin: 0 auto 2rem;
    font-size: 1rem;
    color: var(--color-muted);
}

.hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

/* ============================================================
   GALLERY SECTION (Homepage)
   ============================================================ */
.gallery-section {
    padding: 0 0 80px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 10px;
    height: 360px;
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    background: #ccc;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-right {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 10px;
}

.gallery-label {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0,0,0,0.62);
    color: var(--color-white);
    font-size: 0.72rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    backdrop-filter: blur(4px);
}

/* ============================================================
   FEATURES SECTION (Homepage)
   ============================================================ */
.features-section {
    padding: 80px 0;
    background: var(--color-white);
    text-align: center;
}

.features-section h2 {
    margin-bottom: 0.75rem;
}

.features-section > .container > p {
    max-width: 520px;
    margin: 0 auto 3rem;
    font-size: 0.95rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.feature-card {
    background: var(--color-white);
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2rem 1.75rem;
    text-align: left;
    transition: box-shadow var(--transition), transform var(--transition);
}

.feature-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.feature-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-light);
    border-radius: var(--radius-md);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    border: 1.5px solid var(--color-border);
}

.feature-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.875rem;
    line-height: 1.65;
    color: var(--color-muted);
}

/* ============================================================
   HOW IT WORKS SECTION (Homepage)
   ============================================================ */
.how-section {
    padding: 80px 0;
}

.how-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.how-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: #d4c8ba;
}

.how-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.how-content h2 {
    margin-bottom: 2rem;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.step {
    padding-left: 1rem;
    border-left: 3px solid var(--color-border);
    transition: border-color var(--transition);
}

.step:hover { border-left-color: var(--color-primary); }

.step h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.3rem;
}

.step p {
    font-size: 0.875rem;
    color: var(--color-muted);
    line-height: 1.6;
}

/* ============================================================
   DARK CTA SECTION
   ============================================================ */
.cta-dark {
    background: var(--color-dark-bg);
    padding: 80px 0;
    text-align: center;
}

.cta-dark h2 {
    color: var(--color-white);
    margin-bottom: 0.75rem;
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
}

.cta-dark p {
    color: rgba(255,255,255,0.65);
    max-width: 460px;
    margin: 0 auto 2rem;
    font-size: 0.95rem;
}

.cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

/* ============================================================
   TEAM PAGE
   ============================================================ */
.team-hero {
    padding: 70px 0 60px;
    text-align: center;
}

.team-hero h1 {
    margin-bottom: 1rem;
    font-size: clamp(2.2rem, 5vw, 3.25rem);
    font-weight: 800;
}

.team-hero p {
    max-width: 560px;
    margin: 0 auto;
    font-size: 1rem;
    color: var(--color-muted);
    line-height: 1.7;
}

.team-grid {
    padding: 20px 0 80px;
}

.team-row {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.team-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 200px;
}

.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #999;
    margin-bottom: 1rem;
    overflow: hidden;
    flex-shrink: 0;
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-badge {
    display: inline-block;
    padding: 4px 14px;
    border-radius: var(--radius-pill);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: var(--color-white);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.badge-orange { background: var(--badge-orange); }
.badge-purple { background: var(--badge-purple); }
.badge-teal   { background: var(--badge-teal);   }
.badge-green  { background: var(--badge-green);  }
.badge-blue   { background: var(--badge-blue);   }

.team-card h3 {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-muted);
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.team-card p {
    font-size: 0.78rem;
    color: var(--color-muted-light);
    line-height: 1.5;
}

/* ============================================================
   CURATOR PAGE
   ============================================================ */
.curator-section {
    padding: 70px 0 80px;
}

.curator-layout {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.curator-left h1 {
    font-size: clamp(1.9rem, 4vw, 2.7rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.curator-left > p {
    font-size: 0.95rem;
    color: var(--color-muted);
    margin-bottom: 2rem;
    line-height: 1.7;
    max-width: 430px;
}

/* Benefit items */
.benefits {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
}

.check-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--color-teal);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
    margin-top: 2px;
    font-weight: 700;
}

.benefit-text strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.2rem;
}

.benefit-text p {
    font-size: 0.85rem;
    color: var(--color-muted);
    line-height: 1.55;
    margin: 0;
}

/* Looking for box */
.looking-for-box {
    background: var(--color-light);
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem 2rem;
}

.looking-for-box h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.9rem;
}

.looking-for-box ul {
    list-style: disc;
    padding-left: 1.1rem;
}

.looking-for-box ul li {
    font-size: 0.875rem;
    color: var(--color-muted);
    margin-bottom: 0.35rem;
    line-height: 1.5;
}

/* Curator form */
.curator-form-wrap {
    background: var(--color-white);
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2.25rem 2.25rem;
    box-shadow: var(--shadow-sm);
}

.curator-form-wrap h2 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.75rem;
    color: var(--color-dark);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1rem;
}

.form-group:last-of-type {
    margin-bottom: 1.25rem;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-dark);
    letter-spacing: 0.01em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.7rem 0.9rem;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    color: var(--color-text);
    background: var(--color-white);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
    appearance: none;
    -webkit-appearance: none;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-dark);
    box-shadow: 0 0 0 3px rgba(17,17,17,0.06);
}

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

.form-group textarea {
    resize: vertical;
    min-height: 100px;
    line-height: 1.6;
}

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
    background: var(--color-white);
    border-top: 1px solid var(--color-border);
    padding: 56px 0 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 48px;
}

.footer-brand .site-logo {
    display: inline-block;
    margin-bottom: 0.75rem;
}

.footer-brand p {
    font-size: 0.82rem;
    color: var(--color-muted);
    max-width: 220px;
    line-height: 1.65;
    margin: 0;
}

.footer-col h4 {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-dark);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.footer-col ul li a {
    font-size: 0.85rem;
    color: var(--color-muted);
    transition: color var(--transition);
}

.footer-col ul li a:hover {
    color: var(--color-dark);
    opacity: 1;
}

/* Social icons */
.footer-social {
    display: flex;
    gap: 0.6rem;
    margin-bottom: 0.9rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--color-light);
    border: 1px solid var(--color-border);
    color: var(--color-muted);
    font-size: 0.85rem;
    transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.footer-social a:hover {
    background: var(--color-dark);
    color: var(--color-white);
    border-color: var(--color-dark);
    opacity: 1;
}

.footer-email {
    font-size: 0.85rem;
    color: var(--color-muted);
}

/* Footer bottom bar */
.footer-bottom {
    border-top: 1px solid var(--color-border);
    padding: 1rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.footer-bottom span,
.footer-bottom a {
    font-size: 0.78rem;
    color: var(--color-muted-light);
}

.footer-bottom-links {
    display: flex;
    gap: 1.25rem;
}

.footer-bottom-links a:hover {
    color: var(--color-dark);
    opacity: 1;
}

/* ============================================================
   PAGE HERO (Generic inner pages)
   ============================================================ */
.page-hero {
    padding: 60px 0 48px;
    text-align: center;
}

.page-hero h1 {
    margin-bottom: 0.75rem;
}

.page-hero p {
    max-width: 580px;
    margin: 0 auto;
    font-size: 1rem;
}

/* ============================================================
   STANDARD PAGE CONTENT
   ============================================================ */
.page-content {
    padding: 48px 0 80px;
}

.page-content p,
.page-content li {
    font-size: 1rem;
    color: var(--color-muted);
    line-height: 1.75;
    margin-bottom: 1rem;
}

.page-content h2 { margin: 2.5rem 0 1rem; }
.page-content h3 { margin: 2rem 0 0.75rem; }

/* ============================================================
   BLOG / ARCHIVE
   ============================================================ */
.blog-header {
    padding: 60px 0 48px;
    text-align: center;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 0 0 80px;
}

.post-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--color-white);
    border: 1.5px solid var(--color-border);
    transition: box-shadow var(--transition), transform var(--transition);
}

.post-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.post-card a { opacity: 1; }

.post-thumb {
    aspect-ratio: 16/10;
    background: var(--color-light);
    overflow: hidden;
}

.post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.post-card:hover .post-thumb img { transform: scale(1.03); }

.post-body {
    padding: 1.25rem 1.5rem 1.5rem;
}

.post-meta {
    font-size: 0.75rem;
    color: var(--color-muted-light);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.post-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
    line-height: 1.35;
}

.post-excerpt {
    font-size: 0.85rem;
    color: var(--color-muted);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ============================================================
   SINGLE POST
   ============================================================ */
.single-post-header {
    padding: 70px 0 48px;
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.single-post-header .post-meta {
    margin-bottom: 1rem;
    font-size: 0.8rem;
}

.single-post-header h1 {
    margin-bottom: 1rem;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
}

.single-post-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 2rem 80px;
}

.single-post-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--color-text);
}

.single-post-content h2 { margin: 2.5rem 0 1rem; }
.single-post-content h3 { margin: 2rem 0 0.75rem; }
.single-post-content a { color: var(--color-primary); text-decoration: underline; }

.single-post-featured {
    max-width: 860px;
    margin: 0 auto 3rem;
    padding: 0 2rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.single-post-featured img {
    border-radius: var(--radius-lg);
    width: 100%;
    max-height: 440px;
    object-fit: cover;
}

/* ============================================================
   404 PAGE
   ============================================================ */
.page-404 {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 2rem;
}

.page-404 h1 {
    font-size: 5rem;
    font-weight: 900;
    color: var(--color-border);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.page-404 h2 {
    font-size: 1.6rem;
    margin-bottom: 0.75rem;
}

.page-404 p {
    margin-bottom: 2rem;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================================
   UTILITIES
   ============================================================ */
.text-center { text-align: center; }
.text-left   { text-align: left; }

.sr-only {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 960px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .how-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .how-image {
        aspect-ratio: 16/9;
        max-height: 340px;
    }

    .curator-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .gallery-grid {
        height: 280px;
    }

    .posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 640px) {
    :root { --nav-height: 56px; }

    .container,
    .container--wide {
        padding: 0 1.25rem;
    }

    .section,
    .section--sm,
    .section--lg {
        padding: 56px 0;
    }

    #primary-nav { display: none; }
    .nav-toggle   { display: flex; }

    .hero { padding: 56px 0 40px; }

    .gallery-grid {
        grid-template-columns: 1fr;
        height: auto;
        gap: 8px;
    }

    .gallery-item { height: 220px; }
    .gallery-right { grid-template-rows: auto; display: flex; flex-direction: column; gap: 8px; }
    .gallery-right .gallery-item { height: 160px; }

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

    .team-row {
        gap: 1.5rem;
    }

    .team-card { width: 160px; }

    .form-row {
        grid-template-columns: 1fr;
    }

    .curator-form-wrap {
        padding: 1.5rem;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

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

    .cta-buttons { flex-direction: column; }
    .hero-cta    { flex-direction: column; }
}

/* ============================================================
   EXPERIENCE PAGE
   ============================================================ */

/* ── Hero ── */
.exp-hero {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: flex-end;
    background: #1a1a1a center/cover no-repeat;
}

.exp-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.15) 0%,
        rgba(0,0,0,0.55) 60%,
        rgba(0,0,0,0.82) 100%
    );
}

.exp-hero__inner {
    position: relative;
    z-index: 1;
    padding-bottom: 3rem;
    padding-top: 2rem;
}

.exp-breadcrumb {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 0.75rem;
}

.exp-breadcrumb a {
    color: rgba(255,255,255,0.6);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.exp-breadcrumb a:hover { color: var(--color-white); opacity: 1; }

.exp-badge {
    display: inline-block;
    padding: 4px 12px;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: var(--radius-pill);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.exp-hero__title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--color-white);
    max-width: 720px;
    margin-bottom: 0.5rem;
    letter-spacing: -0.025em;
}

.exp-hero__sub {
    color: rgba(255,255,255,0.75);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    max-width: 600px;
}

/* Stats bar */
.exp-stats-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 2rem;
}

.exp-stat {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255,255,255,0.9);
    font-size: 0.85rem;
    font-weight: 500;
}

.exp-stat__icon { font-size: 1rem; }

/* ── Page layout ── */
.exp-container {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.exp-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 3.5rem;
    align-items: start;
}

/* ── Sections ── */
.exp-section {
    margin-bottom: 3rem;
}

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

.exp-section-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1.5px solid var(--color-border);
}

/* ── Description ── */
.exp-description p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 1.1rem;
}

/* ── Itinerary accordion ── */
.exp-itinerary {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.exp-day {
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color var(--transition);
}

.exp-day:has(.exp-day__header[aria-expanded="true"]) {
    border-color: var(--color-dark);
}

.exp-day__header {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--color-white);
    cursor: pointer;
    text-align: left;
    transition: background var(--transition);
}

.exp-day__header:hover { background: var(--color-light); }

.exp-day__num {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-primary);
    min-width: 44px;
    flex-shrink: 0;
}

.exp-day__title {
    flex: 1;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-dark);
}

.exp-day__chevron {
    color: var(--color-muted);
    flex-shrink: 0;
    transition: transform var(--transition);
}

.exp-day__header[aria-expanded="true"] .exp-day__chevron {
    transform: rotate(180deg);
}

.exp-day__body {
    padding: 0 1.25rem 1.25rem;
    border-top: 1px solid var(--color-border);
}

.exp-day__body p {
    font-size: 0.9rem;
    color: var(--color-muted);
    line-height: 1.7;
    margin: 1rem 0 0;
}

/* ── Gallery ── */
.exp-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.exp-gallery__item {
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--color-light);
}

.exp-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.exp-gallery__item:hover img { transform: scale(1.04); }

.exp-gallery__demo {
    width: 100%;
    height: 100%;
}

/* ── Sidebar ── */
.exp-sidebar {
    position: sticky;
    top: calc(var(--nav-height) + 1.5rem);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

/* ── Booking card ── */
.booking-card {
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    background: var(--color-white);
    box-shadow: var(--shadow-md);
}

.booking-price {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
    margin-bottom: 1.25rem;
}

.booking-price__amount {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-dark);
    letter-spacing: -0.02em;
}

.booking-price__label {
    font-size: 0.85rem;
    color: var(--color-muted);
    font-weight: 500;
}

.booking-btn {
    width: 100%;
    justify-content: center;
    padding: 0.9rem;
    font-size: 1rem;
    border-radius: var(--radius-md);
    margin-bottom: 1.25rem;
    background: var(--color-dark);
    color: var(--color-white);
    border: 2px solid var(--color-dark);
    letter-spacing: 0.01em;
}

.booking-btn:hover { background: #333; border-color: #333; }

.booking-coming-soon {
    text-align: center;
    padding: 0.75rem;
    background: var(--color-light);
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    color: var(--color-muted);
    margin-bottom: 1.25rem;
    border: 1.5px dashed var(--color-border);
}

.booking-includes h4 {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-dark);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.75rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--color-border);
}

.booking-includes ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.booking-includes ul li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.83rem;
    color: var(--color-muted);
    line-height: 1.45;
}

/* ── Host card ── */
.host-card {
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    background: var(--color-white);
}

.exp-host-inner {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin-bottom: 0.75rem;
}

.host-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #e0e0e0;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    overflow: hidden;
    flex-shrink: 0;
}

.host-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.host-role {
    font-size: 0.75rem;
    color: var(--color-muted);
    margin: 0.2rem 0 0;
}

.host-bio {
    font-size: 0.83rem;
    color: var(--color-muted);
    line-height: 1.6;
    margin: 0;
}

/* ── Availability calendar ── */
.cal-wrap {
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    background: var(--color-white);
}

.cal-heading {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-dark);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 1rem;
}

.cal-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.cal-month-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-dark);
}

.cal-nav-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--color-light);
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--color-dark);
    transition: background var(--transition);
}

.cal-nav-btn:hover { background: var(--color-dark); color: var(--color-white); }

.cal-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    margin-bottom: 4px;
}

.cal-weekday {
    text-align: center;
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--color-muted-light);
    text-transform: uppercase;
    padding: 4px 0;
}

.cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 3px;
}

.cal-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    border-radius: 50%;
    font-weight: 500;
    position: relative;
    cursor: default;
}

.cal-day--empty   { visibility: hidden; }
.cal-day--past    { color: var(--color-border); }
.cal-day--today   { font-weight: 800; color: var(--color-dark); outline: 2px solid var(--color-border); outline-offset: -2px; }

.cal-day--available {
    background: var(--color-teal);
    color: var(--color-white);
    font-weight: 700;
    cursor: pointer;
}

.cal-day--available:hover { background: #24a891; }

.cal-legend {
    display: flex;
    align-items: center;
    margin-top: 0.75rem;
    font-size: 0.72rem;
    color: var(--color-muted);
}

.cal-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 0.3rem;
}

.cal-dot--avail { background: var(--color-teal); }
.cal-dot--gone  { background: var(--color-border); border: 1px solid #ccc; }

/* ── Archive Experience grid ── */
.exp-archive-header {
    padding: 60px 0 48px;
    text-align: center;
}

.exp-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding-bottom: 80px;
}

.exp-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--color-white);
    border: 1.5px solid var(--color-border);
    transition: box-shadow var(--transition), transform var(--transition);
    display: flex;
    flex-direction: column;
}

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

.exp-card a { opacity: 1; }

.exp-card__thumb {
    aspect-ratio: 16/10;
    background: var(--color-light);
    overflow: hidden;
    position: relative;
}

.exp-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.exp-card:hover .exp-card__thumb img { transform: scale(1.04); }

.exp-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: var(--radius-pill);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 3px 10px;
}

.exp-card__body {
    padding: 1.25rem 1.5rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.exp-card__meta {
    display: flex;
    gap: 1rem;
    font-size: 0.75rem;
    color: var(--color-muted-light);
    margin-bottom: 0.5rem;
}

.exp-card__title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.exp-card__excerpt {
    font-size: 0.85rem;
    color: var(--color-muted);
    line-height: 1.6;
    flex: 1;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.exp-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid var(--color-border);
}

.exp-card__price {
    font-size: 1rem;
    font-weight: 800;
    color: var(--color-dark);
}

.exp-card__price-label {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--color-muted);
    margin-left: 2px;
}

/* ── Responsive — Experience ── */
@media (max-width: 960px) {
    .exp-layout {
        grid-template-columns: 1fr;
    }

    .exp-sidebar {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .cal-wrap { grid-column: span 2; }

    .exp-cards-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .exp-hero { min-height: 360px; }

    .exp-stats-bar { gap: 0.5rem 1.25rem; }

    .exp-sidebar {
        grid-template-columns: 1fr;
    }

    .cal-wrap { grid-column: span 1; }

    .exp-gallery { grid-template-columns: 1fr; }

    .exp-cards-grid { grid-template-columns: 1fr; }
}
