@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,700&family=Lora:ital,wght@0,400;0,500;1,400&family=Josefin+Sans:wght@300;400;600;700&family=IM+Fell+English:ital@0;1&display=swap');

:root {
    --orange:       #D4680A;
    --orange-light: #E8850F;
    --orange-dark:  #A85008;
    --cream:        #F7EDD8;
    --cream-dark:   #EDD9B0;
    --parchment:    #D9C08A;
    --brown:        #2C1810;
    --brown-mid:    #6B3520;
    --gold:         #BF9A3C;
    --gold-light:   #D4B458;
    --burgundy:     #7A1E1E;
    --text:         #1A0800;
    --text-mid:     #4A2810;
    --shadow:       rgba(26,8,0,0.25);
}

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

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

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none; 
    font-family: inherit;
}

body {
    font-family: 'Lora', serif;
    background-color: var(--cream);
    color: var(--text);
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    min-height: 100vh;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
    color: var(--brown);
}

h1 {
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 900;
}

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

h3 {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: 600;
}

h4 {
    font-size: 1.1rem;
    font-weight: 600;
}

p {
    font-family: 'Lora', serif;
    font-size: 1rem;
    line-height: 1.85;
    color: var(--text-mid);
}

.label {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--orange);
}

.serif-italic {
    font-family: 'IM Fell English', serif;
    font-style: italic;
}

.texture-overlay {
    position: relative;
}

.texture-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--brown);
}

.hero-bg {
    position: absolute;
    inset: -10%;
    background-image:
    linear-gradient(to bottom, rgba(26,8,0,0.55) 0%, rgba(26,8,0,0.35) 50%, rgba(26,8,0,0.72) 100%),
    url('https://images.unsplash.com/photo-1476514525535-07fb3b4ae5f1?w=1600&q=80&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    filter: sepia(30%) saturate(1.1);
    will-change: transform;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    background: rgba(212,104,10,0.2);
    border: 1px solid rgba(212,104,10,0.5);
    padding: 0.45rem 1.1rem;
    margin-bottom: 2rem;
}

.hero-badge span {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--orange-light);
}

.hero-badge-dot {
    width: 5px; height: 5px;
    background: var(--orange);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%,100% {
        opacity:1; transform: scale(1);
    }
    50% {
        opacity:0.5; transform: scale(1.4);
    }
}
.hero h1 {
    color: var(--cream);
    font-size: clamp(3rem, 6vw, 5.2rem);
    font-weight: 900;
    line-height: 1.05;
    max-width: 780px;
    margin-bottom: 0.3rem;
    text-shadow: 2px 4px 20px rgba(0,0,0,0.4);
}

.hero h1 em {
    color: var(--orange-light);
    font-style: italic;
    display: block;
}

.hero-sub {
    font-family: 'IM Fell English', serif;
    font-style: italic;
    font-size: clamp(1rem, 2vw, 1.35rem);
    color: rgba(245,232,208,0.82);
    margin: 1.2rem 0 2.5rem;
    max-width: 480px;
    line-height: 1.6;
}

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

.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    z-index: 2;
    animation: fadeIn 1s 1s both;
}

.hero-scroll span {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(245,232,208,0.6);
}

.hero-scroll-line {
    width: 1px; height: 50px;
    background: linear-gradient(to bottom, rgba(212,104,10,0.8), transparent);
    animation: scrollLine 1.8s ease-in-out infinite;
}

@keyframes scrollLine {
    0%   {
        transform: scaleY(0);
        transform-origin: top;
        opacity:1;
    }
    50%  {
        transform: scaleY(1);
        transform-origin: top;
    }
    51%  {
        transform-origin: bottom;
    }
    100% {
        transform: scaleY(0);
        transform-origin: bottom;
        opacity:0; 
    }
}

.hero-corner {
    position: absolute;
    z-index: 2;
    width: 80px; height: 80px;
    pointer-events: none;
}
.hero-corner--tl {
    top: 85px;
    left: 2rem;
    border-top: 2px solid rgba(212,104,10,0.4);
    border-left: 2px solid rgba(212,104,10,0.4);
}

.hero-corner--br {
    bottom: 2rem;
    right: 2rem;
    border-bottom: 2px solid rgba(212,104,10,0.4);
    border-right: 2px solid rgba(212,104,10,0.4);
}

.hero-stats {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: rgba(26,8,0,0.85);
    backdrop-filter: blur(6px);
    border-top: 1px solid rgba(212,104,10,0.3);
    z-index: 2;
}

.hero-stats-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    gap: 3rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
}

.hero-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--orange-light);
    line-height: 1;
}

.hero-stat-label {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(245,232,208,0.5);
    margin-top: 0.2rem;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(212,104,10,0.25);
}

.intro-strip {
    background: var(--orange);
    padding: 1.2rem 2rem;
}

.intro-strip-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.intro-strip p {
    font-family: 'IM Fell English', serif;
    font-style: italic;
    font-size: 1.05rem;
    color: rgba(255,255,255,0.92);
    line-height: 1.5;
}

.intro-strip-icon {
    font-size: 1.2rem;
    opacity: 0.7;
}

section {
    padding: 6rem 2rem;
}
.container {
    max-width: 1280px;
    margin: 0 auto;
}

.destinations {
    background: var(--cream);
}

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

.dest-featured {
    grid-column: span 1;
}

.values {
    background: var(--brown);
    position: relative;
    overflow: hidden;
    padding: 7rem 2rem;
}

.values::before {
    content: '';
    position: absolute; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='1' fill='rgba(212,104,10,0.07)'/%3E%3C/svg%3E");
}

.values::after {
    content: 'VALUES';
    position: absolute;
    bottom: -0.1em; left: 50%;
    transform: translateX(-50%);
    font-family: 'Playfair Display', serif;
    font-size: clamp(5rem, 14vw, 12rem);
    font-weight: 900;
    letter-spacing: 0.15em;
    color: rgba(212,104,10,0.045);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    line-height: 1;
}

.values .section-header h2  {
    color: var(--cream);
}

.values .section-header p   {
    color: rgba(245,232,208,0.6);
}

.values .label               {
    color: var(--orange-light);
}

.values .ornament::before,
.values .ornament::after     {
    background: rgba(212,104,10,0.4);
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 1rem 0 2rem;
    z-index: 1;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(212,104,10,0.5) 8%,
    rgba(212,104,10,0.5) 92%,
    transparent 100%
    );
}

.tl-item {
    display: grid;
    grid-template-columns: 1fr 72px 1fr;
    align-items: center;
    gap: 0;
    margin-bottom: 4rem;
    position: relative;
}

.tl-item:last-child {
    margin-bottom: 0;
}

.tl-left  {
    padding-right: 2.5rem;
    text-align: right;
}

.tl-right {
    padding-left:  2.5rem;
    text-align: left;
}

.tl-item.tl-odd  .tl-left  {
    order: 1;
}

.tl-item.tl-odd  .tl-center {
    order: 2;
}

.tl-item.tl-odd  .tl-right {
    order: 3;
}

.tl-item.tl-even .tl-left  {
    order: 1;
    padding-right: 0;
}

.tl-item.tl-even .tl-center {
    order: 2;
}

.tl-item.tl-even .tl-right {
    order: 3;
    text-align: left;
    padding-left: 2.5rem; 
    padding-right: 0;
}

.tl-center {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.tl-node {
    width: 72px; height: 72px;
    border-radius: 50%;
    background: var(--brown);
    border: 2px solid var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.9rem;
    color: var(--orange-light);
    box-shadow: 0 0 0 6px rgba(212,104,10,0.12), 0 0 28px rgba(212,104,10,0.2);
    transition: transform 0.35s, box-shadow 0.35s;
    cursor: default;
}

.tl-item:hover .tl-node {
    transform: scale(1.12);
    box-shadow: 0 0 0 10px rgba(212,104,10,0.15), 0 0 40px rgba(212,104,10,0.3);
}

.tl-content {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(212,104,10,0.18);
    padding: 1.8rem 2rem;
    position: relative;
    transition: background 0.3s, border-color 0.3s;
}

.tl-content:hover {
    background: rgba(212,104,10,0.07);
    border-color: rgba(212,104,10,0.38);
}

.tl-item.tl-odd .tl-content::after {
    content: '';
    position: absolute;
    right: -9px;
    top: 50%;
    transform: translateY(-50%);
    border: 8px solid transparent;
    border-left-color: rgba(212,104,10,0.18);
}

/* .tl-item.tl-even .tl-content::after {
    content: '';
    position: absolute;
    left: -9px;
    top: 50%;
    transform: translateY(-50%);
    border: 8px solid transparent;
    border-right-color: rgba(212,104,10,0.18);
} */

.tl-item.tl-even .tl-right .tl-content::after {
    content: '';
    position: absolute;
    left: -9px;
    top: 50%;
    transform: translateY(-50%);
    border: 8px solid transparent;
    border-right-color: rgba(212,104,10,0.18);
}

.tl-num {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--orange);
    display: block;
    margin-bottom: 0.4rem;
}

.tl-content h3 {
    font-size: 1.3rem;
    color: var(--cream);
    margin-bottom: 0.55rem;
    font-weight: 700;
}

.tl-content p {
    font-size: 0.88rem;
    color: rgba(245,232,208,0.6);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.tl-quote {
    font-family: 'IM Fell English', serif;
    font-style: italic;
    font-size: 0.95rem;
    color: var(--orange-light);
    opacity: 0.85;
    border-top: 1px solid rgba(212,104,10,0.2);
    padding-top: 0.85rem;
    line-height: 1.55;
}

.tl-quote::before {
    content: '"';
    margin-right: 2px;
}

.tl-quote::after  {
    content: '"';
    margin-left:  2px;
}

@media (max-width: 1024px) {
    .tl-content {
        padding: 1.5rem 1.6rem;
    }
}

@media (max-width: 768px) {
    .timeline::before {
        left: 28px;
        transform: none;
    }
    .tl-item {
    grid-template-columns: 56px 1fr;
    grid-template-rows: auto;
    margin-bottom: 2.5rem;
    }
    .tl-item.tl-odd .tl-right {
        display: none;
    }
    .tl-item.tl-odd .tl-center {
        order: 1 !important;
    }
    .tl-item.tl-odd .tl-left  {
        order: 2 !important;
        text-align: left;
        padding-right: 0;
        padding-left: 1.5rem;
    }
    .tl-item.tl-even .tl-left  {
        display: none;
    }
    .tl-item.tl-even .tl-center {
        order: 1 !important;
    }
    .tl-item.tl-even .tl-right {
        order: 2 !important;
        text-align: left;
        padding-left: 1.5rem;
        padding-right: 0;
    }
    .tl-item.tl-odd  .tl-content::after,
    .tl-item.tl-even .tl-right .tl-content::after {
    right: auto;
    left: -9px;
    border-left-color: transparent;
    border-right-color: rgba(212,104,10,0.18);
    }
    .tl-node {
        width: 56px;
        height: 56px;
        font-size: 1.4rem;
    }
}
@media (max-width: 480px) {
    .tl-content {
        padding: 1.2rem;
    }
    .tl-content h3 {
        font-size: 1.1rem;
    }
    .values {
        padding: 5rem 1.5rem;
    }
}

.cta-section {
    background: var(--cream-dark);
    padding: 7rem 2rem;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
    radial-gradient(ellipse at 20% 50%, rgba(212,104,10,0.12), transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(212,104,10,0.08), transparent 60%);
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin-bottom: 1rem;
}

.cta-section p {
    max-width: 520px;
    margin: 0 auto 2.5rem;
    font-size: 1.05rem;
}

.cta-deco-text {
    position: absolute;
    font-family: 'Playfair Display', serif;
    font-size: clamp(5rem, 15vw, 13rem);
    font-weight: 900;
    color: rgba(212,104,10,0.05);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    pointer-events: none;
    letter-spacing: 0.1em;
    user-select: none;
}

.testimonials {
    background: var(--cream);
}

.testimonial-wrapper {
    position: relative;
    max-width: 760px;
    margin: 0 auto;
}

.testimonial-track {
    position: relative;
    min-height: 280px;
}

.testimonial-slide {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.testimonial-slide.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.testimonial-quote-icon {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    color: var(--orange);
    line-height: 0.5;
    margin-bottom: 1.5rem;
    opacity: 0.4;
}

.testimonial-text {
    font-family: 'IM Fell English', serif;
    font-style: italic;
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    line-height: 1.75;
    color: var(--text-mid);
    margin-bottom: 1.8rem;
}

.testimonial-author {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--orange);
    font-weight: 600;
}

.testimonial-dest {
    font-family: 'Lora', serif;
    font-size: 0.82rem;
    color: var(--parchment);
    margin-top: 0.2rem;
}

.t-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2.5rem;
}

.t-prev, .t-next {
    width: 40px;
    height: 40px;
    border: 1px solid var(--parchment);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    color: var(--text-mid);
    background: var(--cream);
    transition: all 0.25s;
}

.t-prev:hover, .t-next:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
}

.t-dots {
    display: flex;
    gap: 0.5rem;
}

.t-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--parchment);
    cursor: pointer;
    transition: background 0.25s, transform 0.25s;
}

.t-dot.active {
    background: var(--orange);
    transform: scale(1.3);
}

.destinations-strip {
    background: var(--brown);
    padding: 4rem 2rem;
    text-align: center;
}

.destinations-strip h3 {
    color: var(--cream);
    font-size: 1rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 600;
    margin-bottom: 2rem;
}

.dest-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}

.dest-tag {
    font-family: 'Lora', serif;
    font-style: italic;
    font-size: 0.9rem;
    color: rgba(245,232,208,0.65);
    padding: 0.4rem 1rem;
    border: 1px solid rgba(212,104,10,0.2);
    transition: all 0.25s;
    cursor: default;
}

.dest-tag:hover {
    color: var(--cream);
    border-color: var(--orange);
    background: rgba(212,104,10,0.08);
}

@media (max-width: 1024px) {
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero h1 {
        font-size: 3.4rem;
    }
    .hero-stat-divider {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    .hero-sub {
        font-size: 1rem;
    }
    .destinations-grid {
        grid-template-columns: 1fr;
    }
    .hero-corner {
        display: none;
    }
    section {
        padding: 4rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 90vh;
    }
    .hero h1 {
        font-size: 2.2rem;
    }
    .values-grid {
        grid-template-columns: 1fr;
    }
    .hero-stats-inner {
        gap: 1.5rem;
        padding: 1rem;
    }
    .hero-stat-num {
        font-size: 1.4rem;
    }
    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }
    .hero-badge span {
        font-size: 0.62rem;
    }
}

.ornament {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem auto;
    width: fit-content;
}
.ornament::before, .ornament::after {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background: var(--gold);
}
.ornament-icon {
    color: var(--orange);
    font-size: 1.2rem;
    line-height: 1;
}
.ornament-wide::before, .ornament-wide::after {
    width: 120px;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}
.section-header .label {
    margin-bottom: 0.6rem;
    display: block;
}

.section-header h2 {
    margin-bottom: 0.8rem;
}

.section-header p {
    max-width: 540px;
    margin: 0 auto;
}

.vintage-border {
    border: 1px solid var(--parchment);
    box-shadow: 0 0 0 4px var(--cream), 0 0 0 5px var(--parchment);
    position: relative;
}
.vintage-border::before {
    content: '';
    position: absolute;
    inset: 6px;
    border: 1px solid var(--parchment);
    pointer-events: none;
    z-index: 0;
}

.btn {
    display: inline-block;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 700;
    padding: 0.85rem 2.2rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--orange);
    color: #fff;
    box-shadow: 3px 3px 0 var(--orange-dark);
}

.btn-primary:hover {
    background: var(--orange-dark);
    box-shadow: 1px 1px 0 var(--orange-dark);
    transform: translate(2px, 2px);
}

.btn-secondary {
    background: transparent;
    color: var(--orange);
    border: 2px solid var(--orange);
}

.btn-secondary:hover {
    background: var(--orange);
    color: #fff;
}

.btn-ghost {
    background: transparent;
    color: var(--cream);
    border: 2px solid var(--cream);
}

.btn-ghost:hover {
    background: var(--cream);
    color: var(--brown);
}

.site-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: var(--brown);
    border-bottom: 3px solid var(--orange);
}

.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.nav-logo .logo-main {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--cream);
    letter-spacing: 0.06em;
    line-height: 1;
}

.nav-logo .logo-sub {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--orange);
    margin-top: 2px;
}

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

.nav-links a {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--cream-dark);
    transition: color 0.25s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0; bottom: -4px;
    width: 0; height: 1px;
    background: var(--orange);
    transition: width 0.3s;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--cream);
}

.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}

.nav-cta {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--brown) !important;
    background: var(--orange);
    padding: 0.5rem 1.2rem;
    transition: background 0.25s !important;
}

.nav-cta:hover {
    background: var(--orange-light) !important;
    color: var(--brown) !important;
}

.nav-cta::after {
    display: none !important;
}

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

.nav-toggle span {
    display: block;
    width: 26px; height: 2px;
    background: var(--cream);
    transition: all 0.3s;
}

.nav-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px,5px);
}

.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px,-5px);
}

footer {
    background: var(--brown);
    color: var(--cream-dark);
    padding: 4rem 2rem 2rem;
    border-top: 3px solid var(--orange);
}

.footer-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--brown-mid);
}

.footer-brand .logo-main {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--cream);
    display: block;
    margin-bottom: 0.2rem;
}

.footer-brand .logo-sub {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--orange);
    display: block;
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.88rem;
    color: #A09080;
    line-height: 1.7;
}

.footer-col h5 {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--orange);
    margin-bottom: 1.2rem;
}

.footer-col ul li {
    margin-bottom: 0.65rem;
}

.footer-col ul li a {
    font-size: 0.88rem;
    color: #A09080;
    transition: color 0.25s;
    font-family: 'Lora', serif;
}

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

.footer-newsletter input {
    width: 100%;
    padding: 0.7rem 1rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--brown-mid);
    color: var(--cream);
    font-family: 'Lora', serif;
    font-size: 0.88rem;
    margin-bottom: 0.7rem;
    outline: none;
    transition: border-color 0.25s;
}

.footer-newsletter input:focus {
    border-color: var(--orange);
}

.footer-newsletter input::placeholder {
    color: #806050;
}

.footer-newsletter .btn {
    width: 100%;
    font-size: 0.72rem;
    padding: 0.7rem 1rem;
    background: var(--orange);
    color: #fff;
    font-family: 'Josefin Sans', sans-serif;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.footer-newsletter .btn:hover {
    background: var(--orange-dark);
}

.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding-top: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: #706050;
    font-family: 'Josefin Sans', sans-serif;
    letter-spacing: 0.06em;
}

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

.footer-bottom-links a {
    font-size: 0.8rem;
    color: #706050;
    font-family: 'Josefin Sans', sans-serif;
    letter-spacing: 0.06em;
    transition: color 0.25s;
}

.footer-bottom-links a:hover {
    color: var(--orange);
}

main {
    padding-top: 70px;
}

::-webkit-scrollbar {width: 8px; }
::-webkit-scrollbar-track { background: var(--cream-dark); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 0; }

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.animate-fade-up {
    animation: fadeUp 0.8s ease forwards;
}

.anim-delay-1 {
    animation-delay: 0.15s;
}

.anim-delay-2 {
    animation-delay: 0.3s;
}

.anim-delay-3 {
    animation-delay: 0.45s;
}

.anim-delay-4 {
    animation-delay: 0.6s;
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.stamp-card {
    background: var(--cream);
    border: 8px solid var(--cream-dark);
    box-shadow:
        0 0 0 1px var(--parchment),
        inset 0 0 0 1px var(--parchment),
        4px 6px 20px var(--shadow);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stamp-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        90deg,
        transparent 0, transparent 10px,
        rgba(180,140,80,0.08) 10px, rgba(180,140,80,0.08) 11px
    ),
    repeating-linear-gradient(
        180deg,
        transparent 0, transparent 10px,
        rgba(180,140,80,0.08) 10px, rgba(180,140,80,0.08) 11px
    );
    pointer-events: none;
    z-index: 1;
}

.stamp-card:hover {
    transform: translateY(-5px) rotate(0.3deg);
    box-shadow: 0 0 0 1px var(--parchment), inset 0 0 0 1px var(--parchment), 8px 14px 30px var(--shadow);
}

.stamp-card-img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    filter: sepia(25%) saturate(1.1) contrast(1.05);
    display: block;
}

.stamp-card-body {
    padding: 1.3rem 1.2rem;
    position: relative;
    z-index: 2;
}

.stamp-card-tag {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--orange);
    margin-bottom: 0.4rem;
    display: block;
}

.stamp-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--brown);
    margin-bottom: 0.4rem;
    line-height: 1.3;
}

.stamp-card-desc {
    font-size: 0.85rem;
    color: var(--text-mid);
    line-height: 1.65;
}

.stamp-card-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--orange);
    margin-top: 0.8rem;
}

.stamp-card-price span {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    color: var(--text-mid);
    font-weight: 400;
}

@media (max-width: 1024px) {
    h1 {
        font-size: 2.8rem;
    }
    h2 {
        font-size: 2.1rem;
    }

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--brown);
        padding: 1.5rem 2rem;
        gap: 0;
        border-top: 1px solid var(--brown-mid);
        border-bottom: 3px solid var(--orange);
    }
    .nav-links.open {
        display: flex;
    }
    .nav-links a {
        padding: 0.9rem 0;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        font-size: 0.85rem;
    }
    .nav-links a::after {
        display: none;
    }
    .nav-toggle {
        display: flex;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 15px;
    }
    .btn {
        padding: 0.75rem 1.6rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.8rem;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .footer-bottom-links {
        justify-content: center;
    }
}