/* ═══════════════════════════════════════════════════════════
   NORVON — Shared Stylesheet
   Rose / burgundy editorial identity
   ═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --rose-50:  #fff1f2;
    --rose-100: #ffe4e6;
    --rose-200: #fecdd3;
    --rose-300: #fda4af;
    --rose-400: #fb7185;
    --rose-500: #e11d48;
    --rose-600: #be123c;
    --rose-900: #881337;
    --cream:    #fefaf6;
    --cream-2:  #f4e9e4;
    --ink:      #3a1f2b;
    --muted:    #6b4858;
    --soft:     #a56c7e;
    --max-w:    1200px;
    --shadow:   0 20px 60px rgba(136, 19, 55, 0.10);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    color: var(--ink);
    background: var(--cream);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a   { color: var(--rose-600); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--rose-900); }

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--rose-900);
    font-weight: 600;
    line-height: 1.15;
}

.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 32px;
}

/* ── Navigation ── */
.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(254, 250, 246, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--rose-100);
}

.nav-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 16px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--rose-900);
}

.nav-brand svg { width: 28px; height: 28px; }

.nav-brand-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--rose-900);
    letter-spacing: 5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: var(--ink);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    padding: 6px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 1px;
    background: var(--rose-600);
    transform: scaleX(0);
    transition: transform 0.25s;
    transform-origin: left;
}

.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

.nav-links a.active { color: var(--rose-900); }

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--rose-900);
    cursor: pointer;
    padding: 4px;
}

.nav-toggle svg { width: 26px; height: 26px; }

/* ── Buttons ── */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 2px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    transition: all 0.25s;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--rose-900), var(--rose-600));
    color: #fff;
    box-shadow: 0 6px 20px rgba(136, 19, 55, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(136, 19, 55, 0.35);
    color: #fff;
}

.btn-outline {
    background: transparent;
    color: var(--rose-900);
    border: 1.5px solid var(--rose-600);
}

.btn-outline:hover {
    background: var(--rose-900);
    color: #fff;
}

/* ── Page Header ── */
.page-header {
    padding: 80px 0 60px;
    text-align: center;
    background: linear-gradient(180deg, var(--cream) 0%, var(--rose-50) 100%);
    border-bottom: 1px solid var(--rose-100);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(251, 113, 133, 0.12), transparent 70%);
    border-radius: 50%;
}

.page-header .eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--rose-600);
    margin-bottom: 14px;
    position: relative;
}

.page-header h1 {
    font-size: clamp(40px, 6vw, 68px);
    font-style: italic;
    font-weight: 500;
    margin-bottom: 14px;
    position: relative;
}

.page-header .lede {
    max-width: 640px;
    margin: 0 auto;
    font-size: 15px;
    color: var(--muted);
    line-height: 1.7;
    position: relative;
}

/* ── Section ── */
.section {
    padding: 80px 0;
}

.section-tight { padding: 56px 0; }

.section-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--rose-600);
    text-align: center;
    margin-bottom: 12px;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 4.5vw, 48px);
    font-style: italic;
    font-weight: 500;
    color: var(--rose-900);
    text-align: center;
    margin-bottom: 14px;
}

.section-lede {
    max-width: 600px;
    margin: 0 auto 48px;
    text-align: center;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
}

.section-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 0 auto 14px;
}

.section-ornament .line {
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--rose-600), transparent);
}

.section-ornament .diamond {
    width: 6px;
    height: 6px;
    background: var(--rose-600);
    transform: rotate(45deg);
}

/* ── Hero (home) ── */
.hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(136, 19, 55, 0.72), rgba(190, 18, 60, 0.55)),
        url('https://images.unsplash.com/photo-1488085061387-422e29b40080?w=1800&q=80') center/cover;
    color: #fff;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 100px;
    background: linear-gradient(180deg, transparent, var(--cream));
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 80px 32px;
    text-align: center;
}

.hero-eyebrow {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--rose-200);
    margin-bottom: 20px;
}

.hero h1 {
    color: #fff;
    font-size: clamp(48px, 8vw, 92px);
    font-style: italic;
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.05;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hero p {
    max-width: 560px;
    margin: 0 auto 36px;
    font-size: 17px;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero .btn-outline {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.7);
}

.hero .btn-outline:hover {
    background: #fff;
    color: var(--rose-900);
}

.hero-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 16px;
}

.hero-ornament .line {
    width: 60px;
    height: 1px;
    background: rgba(255, 255, 255, 0.4);
}

.hero-ornament .diamond {
    width: 6px;
    height: 6px;
    background: var(--rose-300);
    transform: rotate(45deg);
}

/* ── Service cards ── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.service-card {
    background: #fff;
    border: 1px solid var(--rose-100);
    border-radius: 4px;
    padding: 36px 28px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--rose-900), var(--rose-400));
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.service-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--rose-100), var(--rose-200));
    border: 1px solid var(--rose-400);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--rose-900);
}

.service-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.service-card p {
    font-size: 13px;
    line-height: 1.65;
    color: var(--muted);
}

/* ── Destinations grid ── */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.destination {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    background: var(--rose-900);
}

.destination img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.destination::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(136, 19, 55, 0.85));
    transition: opacity 0.3s;
}

.destination:hover img { transform: scale(1.05); }

.destination-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    color: #fff;
    z-index: 1;
}

.destination-country {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--rose-200);
    margin-bottom: 4px;
}

.destination-city {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 600;
    font-style: italic;
    line-height: 1;
}

/* ── Pricing cards ── */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    align-items: stretch;
}

.pricing-card {
    background: #fff;
    border: 1px solid var(--rose-100);
    border-radius: 4px;
    padding: 40px 32px;
    text-align: center;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.pricing-card.featured {
    background: linear-gradient(180deg, #fff 0%, var(--rose-50) 100%);
    border: 2px solid var(--rose-600);
    transform: scale(1.03);
}

.pricing-card.featured:hover { transform: scale(1.03) translateY(-6px); }

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 18px;
    background: linear-gradient(135deg, var(--rose-900), var(--rose-600));
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(136, 19, 55, 0.3);
}

.pricing-tier {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--rose-600);
    margin-bottom: 10px;
}

.pricing-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    font-weight: 700;
    color: var(--rose-900);
    margin-bottom: 20px;
    font-style: italic;
}

.pricing-amount {
    font-family: 'Cormorant Garamond', serif;
    font-size: 56px;
    font-weight: 700;
    color: var(--rose-900);
    line-height: 1;
}

.pricing-amount .currency {
    font-size: 26px;
    vertical-align: top;
    margin-right: 2px;
}

.pricing-period {
    font-size: 11px;
    color: var(--soft);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 6px 0 24px;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 28px;
    flex: 1;
}

.pricing-features li {
    padding: 8px 0;
    border-bottom: 1px dashed var(--rose-100);
    font-size: 13px;
    color: var(--ink);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.pricing-features li::before {
    content: '✦';
    color: var(--rose-600);
    font-size: 14px;
    flex-shrink: 0;
    line-height: 1.3;
}

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

.pricing-card .btn { width: 100%; }

/* ── Contact form ── */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 48px;
    align-items: start;
}

.contact-info {
    background: linear-gradient(135deg, var(--rose-900), var(--rose-600));
    color: #fff;
    padding: 40px 36px;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 70%);
    border-radius: 50%;
}

.contact-info h2 {
    color: #fff;
    font-size: 30px;
    font-style: italic;
    margin-bottom: 10px;
    position: relative;
}

.contact-info > p {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 28px;
    line-height: 1.7;
    position: relative;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
    position: relative;
}

.contact-item-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item-icon svg { width: 16px; height: 16px; fill: var(--rose-200); }

.contact-item-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--rose-200);
    margin-bottom: 2px;
}

.contact-item-value {
    font-size: 14px;
    color: #fff;
}

.contact-item-value a { color: #fff; }

.contact-form {
    background: #fff;
    padding: 40px 36px;
    border-radius: 4px;
    border: 1px solid var(--rose-100);
    box-shadow: var(--shadow);
}

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

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

.form-group label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--rose-600);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--rose-200);
    border-radius: 3px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--ink);
    background: var(--cream);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--rose-600);
    box-shadow: 0 0 0 3px rgba(190, 18, 60, 0.12);
    background: #fff;
}

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

.form-status {
    margin-top: 14px;
    padding: 12px 16px;
    border-radius: 3px;
    font-size: 13px;
    display: none;
}

.form-status.success {
    display: block;
    background: #ecfdf5;
    color: #059669;
    border: 1px solid #a7f3d0;
}

.form-status.error {
    display: block;
    background: #fef2f2;
    color: #b91c1c;
    border: 1px solid #fecaca;
}

/* ── CTA band ── */
.cta-band {
    background: linear-gradient(135deg, var(--rose-900), var(--rose-600));
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-band::before,
.cta-band::after {
    content: '';
    position: absolute;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 70%);
    border-radius: 50%;
}

.cta-band::before { top: -120px; left: -120px; }
.cta-band::after  { bottom: -120px; right: -120px; }

.cta-band h2 {
    color: #fff;
    font-size: clamp(32px, 5vw, 52px);
    font-style: italic;
    margin-bottom: 14px;
    position: relative;
}

.cta-band p {
    max-width: 540px;
    margin: 0 auto 28px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    line-height: 1.7;
    position: relative;
}

.cta-band .btn-primary {
    background: #fff;
    color: var(--rose-900);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    position: relative;
}

.cta-band .btn-primary:hover { color: var(--rose-900); background: var(--rose-50); }

/* ── About layout ── */
.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-split img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: var(--shadow);
}

.about-split h2 {
    font-size: clamp(32px, 4vw, 44px);
    font-style: italic;
    margin-bottom: 18px;
}

.about-split p {
    color: var(--muted);
    line-height: 1.8;
    font-size: 15px;
    margin-bottom: 16px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.value-item {
    text-align: center;
    padding: 24px;
}

.value-num {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 42px;
    color: var(--rose-400);
    line-height: 1;
    margin-bottom: 8px;
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.value-item p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.65;
}

/* ── Footer ── */
.footer {
    background: var(--rose-900);
    color: rgba(255, 255, 255, 0.85);
    padding: 60px 0 28px;
    margin-top: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand-block .brand-name-footer {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    color: #fff;
    letter-spacing: 6px;
    margin-bottom: 12px;
    font-weight: 600;
}

.footer-brand-block p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    max-width: 280px;
}

.footer h4 {
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer ul a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
    transition: color 0.2s;
}
.footer ul a:hover { color: var(--rose-200); }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 22px;
    text-align: center;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 1.5px;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .contact-layout { grid-template-columns: 1fr; }
    .about-split    { grid-template-columns: 1fr; gap: 32px; }
    .footer-grid    { grid-template-columns: 1fr 1fr; gap: 32px; }
    .pricing-card.featured { transform: none; }
    .pricing-card.featured:hover { transform: translateY(-6px); }
}

@media (max-width: 680px) {
    .container { padding: 0 20px; }
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        background: var(--cream);
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 32px;
        gap: 18px;
        border-bottom: 1px solid var(--rose-100);
        display: none;
    }
    .nav-links.open { display: flex; }
    .nav-toggle { display: block; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .section { padding: 56px 0; }
    .hero { min-height: 72vh; }
}
