/* ============================================
   CSS VARIABLES & DESIGN TOKENS
   ============================================ */
:root {
    /* Colors */
    --bg-primary: #FFF8F0;
    --bg-secondary: #F1E6D0;
    --bg-elevated: rgba(255, 255, 255, 0.05);
    --accent-primary: #F4B400;
    --accent-secondary: #FFDD99;
    --accent-highlight: #D97C00;
    --text-primary: #4B3E2A;
    --text-secondary: #7B5E3B;
    --text-muted: #A6886C;
    --white: #FFFFFF;
    --glass-bg: rgba(255, 255, 255, 0.65);
    --glass-border: rgba(244, 180, 0, 0.15);
    --glass-shadow: 0 8px 32px rgba(75, 62, 42, 0.08);
    --shadow-sm: 0 2px 8px rgba(75, 62, 42, 0.06);
    --shadow-md: 0 4px 16px rgba(75, 62, 42, 0.1);
    --shadow-lg: 0 12px 40px rgba(75, 62, 42, 0.12);
    --shadow-glow: 0 0 20px rgba(244, 180, 0, 0.2);

    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --section-padding: 120px;
    --container-max: 1320px;
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 20px;
    --radius-xl: 24px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-smooth: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
}

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

a {
    color: var(--accent-highlight);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--accent-primary);
}

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

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

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

.narrow-container {
    max-width: 800px;
    margin: 0 auto;
}

.section {
    padding: var(--section-padding) 0;
    position: relative;
}

/* ============================================
   GLASS CARD
   ============================================ */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--glass-shadow);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

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

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 12px 28px;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), filter var(--transition-fast);
    gap: 8px;
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-highlight) 100%);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(244, 180, 0, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 6px 24px rgba(244, 180, 0, 0.45);
    filter: brightness(1.05);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--accent-highlight);
    border: 2px solid var(--accent-highlight);
}

.btn-outline:hover {
    background: var(--accent-highlight);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(217, 124, 0, 0.25);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn-sm {
    padding: 10px 22px;
    font-size: 0.88rem;
}

.btn-block {
    width: 100%;
}

/* ============================================
   HEADER / NAV
   ============================================ */
.glass-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 248, 240, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(244, 180, 0, 0.1);
    box-shadow: 0 2px 20px rgba(75, 62, 42, 0.05);
    transition: background var(--transition-base), box-shadow var(--transition-base);
}

.glass-nav.scrolled {
    background: rgba(255, 248, 240, 0.95);
    box-shadow: 0 4px 24px rgba(75, 62, 42, 0.1);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-primary);
    flex-shrink: 0;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.15rem;
    line-height: 1.2;
}

.logo-text em {
    font-style: normal;
    color: var(--accent-highlight);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-links a {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.92rem;
    color: var(--text-secondary);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: color var(--transition-fast), background var(--transition-fast);
    text-decoration: none;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-highlight);
    background: rgba(244, 180, 0, 0.08);
}

.nav-cta {
    flex-shrink: 0;
}

/* Hamburger */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2.5px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: transform var(--transition-base), opacity var(--transition-base);
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(255, 248, 240, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    z-index: 999;
    transition: right var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu.open {
    right: 0;
}

.mobile-menu-inner {
    text-align: center;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 32px;
}

.mobile-nav-links a {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    padding: 12px 24px;
    border-radius: var(--radius-md);
    transition: color var(--transition-fast), background var(--transition-fast);
}

.mobile-nav-links a:hover {
    color: var(--accent-highlight);
    background: rgba(244, 180, 0, 0.08);
}

.mobile-cta {
    font-size: 1.1rem;
}

/* ============================================
   POLLEN PARTICLES
   ============================================ */
.pollen-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.pollen {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-primary);
    border-radius: 50%;
    opacity: 0;
    animation: pollenFloat 12s infinite ease-in-out;
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 76px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #FFF8F0 0%, #F1E6D0 40%, #FFDD99 100%);
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 50%, rgba(244, 180, 0, 0.1) 0%, transparent 60%);
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 80px 24px;
}

.hero-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--accent-highlight);
    background: rgba(244, 180, 0, 0.12);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero h1 {
    margin-bottom: 24px;
    font-weight: 800;
}

.text-highlight {
    color: var(--accent-highlight);
    position: relative;
}

.text-highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(244, 180, 0, 0.2);
    border-radius: 4px;
    z-index: -1;
}

.hero-desc {
    font-size: 1.12rem;
    color: var(--text-secondary);
    margin-bottom: 36px;
    max-width: 520px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 36px;
}

.hero-stats .stat {
    text-align: left;
}

.hero-stats .stat strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent-highlight);
}

.hero-stats .stat span {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    max-width: 480px;
}

.hero-image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: var(--radius-xl);
}

.hero-float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 14px 20px;
    box-shadow: var(--shadow-md);
    animation: floatBounce 4s ease-in-out infinite;
}

.float-card-1 {
    top: 20%;
    left: -30px;
}

.float-card-2 {
    bottom: 15%;
    right: -30px;
    animation-delay: 2s;
}

.float-icon {
    font-size: 1.6rem;
}

.hero-float-card strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--text-primary);
}

.hero-float-card span {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 2;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 64px;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.82rem;
    color: var(--accent-highlight);
    background: rgba(244, 180, 0, 0.1);
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.section-subtitle {
    font-size: 1.08rem;
    color: var(--text-secondary);
    margin-top: 16px;
    line-height: 1.7;
}

.section-bg-warm {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    z-index: -1;
}

.section-cta {
    text-align: center;
    margin-top: 48px;
}

/* ============================================
   FEATURES
   ============================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-card {
    padding: 36px 28px;
    text-align: center;
}

.feature-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.feature-card h3 {
    margin-bottom: 12px;
    font-size: 1.15rem;
}

.feature-card p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   PRODUCTS
   ============================================ */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.products-grid-full {
    grid-template-columns: repeat(3, 1fr);
}

.product-card {
    overflow: hidden;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

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

.product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-highlight));
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.75rem;
    padding: 5px 14px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-badge.seasonal {
    background: linear-gradient(135deg, #D97C00, #A65C00);
}

.product-badge.limited {
    background: linear-gradient(135deg, #8B6914, #6B4F0A);
}

.product-info {
    padding: 24px;
}

.product-info h3 {
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.product-info p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.6;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.product-price {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--accent-highlight);
}

.product-size {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ============================================
   EXPERIENCE SECTION
   ============================================ */
.experience-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.experience-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.experience-overlay-card {
    position: absolute;
    bottom: 24px;
    right: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 14px 20px;
    box-shadow: var(--shadow-md);
}

.overlay-icon {
    font-size: 1.4rem;
}

.experience-overlay-card strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.95rem;
}

.experience-overlay-card span {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.experience-text h2 {
    margin-bottom: 20px;
}

.experience-text > p {
    font-size: 1.02rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.8;
}

.experience-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 36px;
}

.experience-list li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.check-icon {
    color: var(--accent-primary);
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.experience-list li strong {
    display: block;
    font-size: 0.98rem;
    margin-bottom: 2px;
}

.experience-list li span {
    font-size: 0.88rem;
    color: var(--text-muted);
}

/* ============================================
   SEASONAL SECTION
   ============================================ */
.section-seasonal {
    overflow: hidden;
}

.seasonal-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, #F5E1B8 100%);
    z-index: -1;
}

.seasonal-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    overflow: hidden;
    padding: 0;
}

.seasonal-card:hover {
    transform: none;
}

.seasonal-content {
    padding: 60px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.seasonal-content h2 {
    margin-bottom: 16px;
}

.seasonal-content > p {
    color: var(--text-secondary);
    margin-bottom: 28px;
    line-height: 1.7;
}

.seasonal-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.seasonal-detail {
    display: flex;
    gap: 16px;
    align-items: baseline;
}

.seasonal-detail strong {
    font-size: 0.85rem;
    color: var(--text-muted);
    min-width: 120px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.seasonal-detail span {
    font-weight: 500;
    color: var(--text-primary);
}

.seasonal-image {
    overflow: hidden;
}

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

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testimonial-card {
    padding: 36px 28px;
}

.testimonial-card:hover {
    transform: translateY(-2px);
}

.testimonial-stars {
    color: var(--accent-primary);
    font-size: 1.1rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-card > p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.testimonial-author strong {
    display: block;
    font-size: 0.92rem;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ============================================
   NEWSLETTER
   ============================================ */
.section-newsletter {
    padding: 80px 0;
}

.newsletter-card {
    padding: 56px 48px;
    text-align: center;
    background: linear-gradient(135deg, rgba(244, 180, 0, 0.08) 0%, rgba(255, 221, 153, 0.12) 100%);
}

.newsletter-card:hover {
    transform: none;
}

.newsletter-content h2 {
    margin-bottom: 12px;
}

.newsletter-content > p {
    color: var(--text-secondary);
    margin-bottom: 28px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 480px;
    margin: 0 auto 16px;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 14px 20px;
    border: 1px solid rgba(244, 180, 0, 0.2);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.95rem;
    background: var(--white);
    color: var(--text-primary);
    outline: none;
    transition: border-color var(--transition-fast);
}

.newsletter-form input[type="email"]:focus {
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(244, 180, 0, 0.15);
}

.newsletter-form input[type="email"]::placeholder {
    color: var(--text-muted);
}

.newsletter-note {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* ============================================
   PAGE HEROES
   ============================================ */
.page-hero {
    position: relative;
    padding: 160px 0 80px;
    overflow: hidden;
}

.page-hero-short {
    padding: 140px 0 60px;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #FFF8F0 0%, #F1E6D0 50%, #FFDD99 100%);
    z-index: 0;
}

.page-hero-content {
    position: relative;
    z-index: 1;
    max-width: 680px;
}

.page-hero-content h1 {
    margin-bottom: 16px;
}

.page-hero-content > p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-story-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.about-story-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: sticky;
    top: 100px;
}

.about-story-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.about-story-text h2 {
    margin-bottom: 20px;
}

.about-story-text h3 {
    margin-top: 32px;
    margin-bottom: 12px;
    color: var(--accent-highlight);
}

.about-story-text p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.8;
}

/* Values */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.value-card {
    padding: 36px 28px;
}

.value-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(244, 180, 0, 0.2);
    margin-bottom: 12px;
    line-height: 1;
}

.value-card h3 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.value-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Team */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
}

.team-card {
    text-align: center;
}

.team-photo {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-md);
    border: 4px solid var(--white);
}

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

.team-card h3 {
    margin-bottom: 4px;
    font-size: 1.15rem;
}

.team-role {
    display: block;
    font-size: 0.85rem;
    color: var(--accent-highlight);
    font-weight: 600;
    margin-bottom: 10px;
}

.team-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* ============================================
   TOURS PAGE
   ============================================ */
.tours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: start;
}

.tour-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

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

.tour-card-featured {
    border: 2px solid var(--accent-primary);
    box-shadow: 0 8px 32px rgba(244, 180, 0, 0.15);
    position: relative;
}

.tour-header {
    padding: 32px 28px 24px;
    text-align: center;
    border-bottom: 1px solid rgba(244, 180, 0, 0.1);
}

.tour-type {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.75rem;
    color: var(--accent-highlight);
    background: rgba(244, 180, 0, 0.1);
    padding: 4px 12px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.tour-type.featured {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-highlight));
    color: var(--white);
}

.tour-header h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
}

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

.price-amount {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2rem;
    color: var(--accent-highlight);
}

.price-per {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.tour-body {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.tour-features {
    flex: 1;
    margin-bottom: 24px;
}

.tour-features li {
    padding: 8px 0;
    font-size: 0.92rem;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(244, 180, 0, 0.06);
}

.tour-features li:last-child {
    border-bottom: none;
}

/* Expect */
.expect-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.expect-card {
    padding: 32px 24px;
    text-align: center;
}

.expect-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-primary);
    margin-bottom: 12px;
    width: 56px;
    height: 56px;
    line-height: 56px;
    border-radius: 50%;
    background: rgba(244, 180, 0, 0.1);
    margin: 0 auto 16px;
}

.expect-card h3 {
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.expect-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* FAQ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    padding: 0;
    overflow: hidden;
}

.faq-item:hover {
    transform: none;
}

.faq-item summary {
    padding: 20px 28px;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.02rem;
    color: var(--text-primary);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color var(--transition-fast);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--accent-primary);
    transition: transform var(--transition-base);
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item summary:hover {
    color: var(--accent-highlight);
}

.faq-item p {
    padding: 0 28px 20px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-layout {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-form-card {
    padding: 48px;
}

.contact-form-card:hover {
    transform: none;
}

.contact-form-card h2 {
    margin-bottom: 28px;
    font-size: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid rgba(244, 180, 0, 0.2);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-primary);
    background: var(--white);
    outline: none;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(244, 180, 0, 0.15);
}

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

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' fill='none' stroke='%23A6886C' stroke-width='1.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 44px;
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.contact-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-card {
    padding: 28px;
}

.contact-info-card:hover {
    transform: none;
}

.contact-info-card h3 {
    font-size: 1.05rem;
    margin-bottom: 12px;
    color: var(--accent-highlight);
}

.contact-info-card p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 8px;
}

.contact-info-card p:last-child {
    margin-bottom: 0;
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-content {
    line-height: 1.8;
}

.legal-content h2 {
    font-size: 1.3rem;
    margin-top: 40px;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(244, 180, 0, 0.15);
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.legal-content ul {
    padding-left: 24px;
    margin-bottom: 16px;
}

.legal-content ul li {
    list-style: disc;
    color: var(--text-secondary);
    margin-bottom: 8px;
    padding-left: 4px;
}

.legal-content a {
    color: var(--accent-highlight);
    text-decoration: underline;
}

/* ============================================
   INFO BANNER (Products)
   ============================================ */
.info-banner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    padding: 0;
    overflow: hidden;
}

.info-banner:hover {
    transform: none;
}

.info-banner-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 28px 32px;
    border-right: 1px solid rgba(244, 180, 0, 0.1);
}

.info-banner-item:last-child {
    border-right: none;
}

.info-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.info-banner-item strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.info-banner-item span {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--bg-secondary);
    padding: 80px 0 0;
    margin-top: 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(244, 180, 0, 0.15);
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 16px;
    line-height: 1.6;
}

.footer-logo {
    margin-bottom: 8px;
}

.footer-links-group h4 {
    font-size: 0.92rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.footer-links-group ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links-group ul a {
    font-size: 0.88rem;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

.footer-links-group ul a:hover {
    color: var(--accent-highlight);
}

.footer-address,
.footer-contact-info {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.footer-contact-info {
    margin-top: 8px;
}

.footer-contact-info a {
    color: var(--accent-highlight);
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: var(--text-muted);
}
/* ENDFILE */