/* ============================================
   DISCOVER CONNECTION TRAVEL — Main Styles
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500;1,600&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Cormorant:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Outfit:wght@200;300;400;500;600;700&display=swap');
@import url('variables.css');

/* ── Reset & Base ── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    font-size: var(--fs-body);
    line-height: var(--lh-normal);
    color: var(--color-text);
    background-color: var(--color-bg);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--duration-fast) var(--ease-out);
}

ul,
ol {
    list-style: none;
}

button,
input,
textarea,
select {
    font: inherit;
    color: inherit;
    border: none;
    background: none;
    outline: none;
}

button {
    cursor: pointer;
}

/* ── Utility Classes ── */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.container--narrow {
    max-width: var(--max-width-narrow);
}

.container--wide {
    max-width: var(--max-width-wide);
}

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

/* ── Geometric Zellige Pattern (SVG Background) ── */
.zellige-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23C62828' stroke-width='0.8'%3E%3Cpath d='M40 0 L80 40 L40 80 L0 40Z'/%3E%3Cpath d='M40 10 L70 40 L40 70 L10 40Z'/%3E%3Cpath d='M40 20 L60 40 L40 60 L20 40Z'/%3E%3Cpath d='M0 0 L40 0 L40 40 L0 40Z'/%3E%3Cpath d='M40 0 L80 0 L80 40 L40 40Z'/%3E%3Cpath d='M0 40 L40 40 L40 80 L0 80Z'/%3E%3Cpath d='M40 40 L80 40 L80 80 L40 80Z'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 80px 80px;
}

/* ── Grain Overlay ── */
.grain-overlay::after {
    content: '';
    position: fixed;
    inset: 0;
    opacity: 0.03;
    pointer-events: none;
    z-index: 9999;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-size: 128px 128px;
}

/* ── Section Label (decorative) ── */
.section-label {
    font-family: var(--font-body);
    font-size: var(--fs-xs);
    font-weight: 600;
    letter-spacing: var(--ls-ultra);
    text-transform: uppercase;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.section-label::before {
    content: '';
    display: block;
    width: 32px;
    height: 2px;
    background: var(--color-primary);
}

/* ── Section Title ── */
.section-title {
    font-family: var(--font-display);
    font-size: var(--fs-h2);
    font-weight: 600;
    line-height: var(--lh-snug);
    letter-spacing: var(--ls-tight);
    color: var(--color-text);
    margin-bottom: var(--space-lg);
}

.section-title--light {
    color: var(--color-text-inverse);
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: var(--fs-body-lg);
    line-height: var(--lh-relaxed);
    color: var(--sand-600);
    max-width: 600px;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-nav);
    height: var(--nav-height);
    display: flex;
    align-items: center;
    transition:
        background var(--duration-normal) var(--ease-out),
        box-shadow var(--duration-normal) var(--ease-out),
        backdrop-filter var(--duration-normal) var(--ease-out);
}

.nav--scrolled {
    background: rgba(253, 248, 240, 0.92);
    backdrop-filter: blur(20px) saturate(1.4);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

/* Restore dark colours once the beige background appears */
.nav--scrolled .nav__logo {
    color: var(--color-text);
}

.nav--scrolled .nav__logo-text {
    color: var(--color-text);
}

.nav--scrolled .nav__link {
    color: var(--color-text);
}

.nav--scrolled .nav__toggle span {
    background: var(--color-text);
}

/* When mobile menu is open: instantly reset backdrop-filter so it doesn't
   clip the fixed overlay (Chrome/Safari bug). transition: none prevents
   the blur from animating out over duration-normal before it clears. */
.nav--menu-open,
.nav--scrolled.nav--menu-open {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    transition: none;
}

/* Keep logo text and X icon dark when mobile menu is open */
.nav--menu-open .nav__logo {
    color: var(--color-text);
}

.nav--menu-open .nav__logo-text {
    color: var(--color-text);
}

.nav--menu-open .nav__toggle span {
    background: var(--color-text);
}

.nav__inner {
    width: 100%;
    max-width: var(--max-width-wide);
    margin: 0 auto;
    padding: 0 var(--gutter);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    z-index: calc(var(--z-nav) + 10);
    color: #fff;
    text-decoration: none;
}

.nav__logo-icon {
    width: 38px;
    height: 38px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* .nav__logo-icon::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  border: 2px solid var(--ivory);
  transform: rotate(45deg);
} */

/* .nav__logo-icon::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  border: 1.5px solid var(--ivory);
  border-radius: 50%;
} */

.nav__logo-text {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: var(--ls-tight);
    line-height: 1.1;
}

.nav__logo-text span {
    display: block;
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: var(--ls-ultra);
    text-transform: uppercase;
    color: var(--color-primary);
    margin-top: 2px;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav__link {
    font-family: var(--font-body);
    font-size: var(--fs-small);
    font-weight: 500;
    color: #fff;
    letter-spacing: var(--ls-wide);
    text-transform: uppercase;
    color: var(--sand-700);
    position: relative;
    padding: var(--space-xs) 0;
    transition: color var(--duration-fast) var(--ease-out);
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width var(--duration-normal) var(--ease-out);
}

.nav__link:hover {
    color: var(--color-primary);
}

.nav__link:hover::after {
    width: 100%;
}

.nav__link--active {
    color: var(--color-primary);
}

.nav__link--active::after {
    width: 100%;
}

/* Dropdown */
.nav__dropdown {
    position: relative;
}

.nav__dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav__dropdown-trigger svg {
    width: 12px;
    height: 12px;
    transition: transform var(--duration-fast) var(--ease-out);
}

.nav__dropdown:hover .nav__dropdown-trigger svg {
    transform: rotate(180deg);
}

.nav__dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: var(--ivory);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: var(--space-sm);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity var(--duration-fast) var(--ease-out),
        visibility var(--duration-fast) var(--ease-out),
        transform var(--duration-fast) var(--ease-out);
}

.nav__dropdown:hover .nav__dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav__dropdown-item {
    display: block;
    padding: var(--space-sm) var(--space-md);
    font-size: var(--fs-small);
    font-weight: 400;
    letter-spacing: var(--ls-wide);
    text-transform: uppercase;
    color: var(--sand-700);
    border-radius: var(--radius-sm);
    transition:
        background var(--duration-fast) var(--ease-out),
        color var(--duration-fast) var(--ease-out);
}

.nav__dropdown-item:hover {
    background: var(--red-50);
    color: var(--color-primary);
}

/* Mobile Nav Toggle */
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    z-index: calc(var(--z-nav) + 10);
}

.nav__toggle span {
    display: block;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition:
        transform var(--duration-normal) var(--ease-out),
        opacity var(--duration-fast) var(--ease-out);
}

.nav__toggle span:nth-child(1) {
    width: 100%;
}
.nav__toggle span:nth-child(2) {
    width: 70%;
}
.nav__toggle span:nth-child(3) {
    width: 85%;
}

.nav__toggle--open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.nav__toggle--open span:nth-child(2) {
    opacity: 0;
}
.nav__toggle--open span:nth-child(3) {
    width: 100%;
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.nav__mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--cream);
    z-index: var(--z-nav);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--space-xl);
    opacity: 0;
    transition: opacity var(--duration-normal) var(--ease-out);
}

.nav__mobile-menu--open {
    display: flex;
    opacity: 1;
}

.nav__mobile-link {
    font-family: var(--font-display);
    font-size: var(--fs-h3);
    font-weight: 500;
    color: var(--color-text);
    transition: color var(--duration-fast) var(--ease-out);
}

.nav__mobile-link:hover {
    color: var(--color-primary);
}

.nav__mobile-link--cta {
    margin-top: var(--space-xl);
    padding: var(--space-md) var(--space-2xl);
    background: var(--color-primary);
    color: var(--cream) !important;
    border-radius: 100px;
    font-size: var(--fs-body);
    text-align: center;
}

.nav__mobile-link--cta:hover {
    background: var(--red-700);
    color: var(--cream) !important;
}

/* ── CTA Button ── */
.nav__cta {
    font-family: var(--font-body);
    font-size: var(--fs-small);
    font-weight: 600;
    letter-spacing: var(--ls-wide);
    text-transform: uppercase;
    color: var(--ivory);
    background: var(--color-primary);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-full);
    transition:
        background var(--duration-fast) var(--ease-out),
        transform var(--duration-fast) var(--ease-spring),
        box-shadow var(--duration-fast) var(--ease-out);
}

.nav__cta:hover {
    background: var(--red-700);
    transform: translateY(-1px);
    box-shadow: var(--shadow-red);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: var(--ls-wide);
    text-transform: uppercase;
    border-radius: var(--radius-full);
    transition: all var(--duration-normal) var(--ease-out);
    position: relative;
    overflow: hidden;
}

.btn--primary {
    font-size: var(--fs-small);
    color: var(--ivory);
    background: var(--color-primary);
    padding: var(--space-md) var(--space-2xl);
}

.btn--primary:hover {
    background: var(--red-700);
    transform: translateY(-2px);
    box-shadow: var(--shadow-red);
}

.btn--outline {
    font-size: var(--fs-small);
    color: var(--color-primary);
    background: transparent;
    border: 2px solid var(--color-primary);
    padding: calc(var(--space-md) - 2px) calc(var(--space-2xl) - 2px);
}

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

.btn--outline-light {
    font-size: var(--fs-small);
    color: var(--ivory);
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.4);
    padding: calc(var(--space-md) - 2px) calc(var(--space-2xl) - 2px);
}

.btn--outline-light:hover {
    border-color: var(--ivory);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn--large {
    padding: var(--space-lg) var(--space-3xl);
    font-size: var(--fs-body);
}

.btn__arrow {
    width: 16px;
    height: 16px;
    transition: transform var(--duration-fast) var(--ease-out);
}

.btn:hover .btn__arrow {
    transform: translateX(4px);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--midnight);
    color: var(--sand-300);
    padding: var(--space-5xl) 0 var(--space-2xl);
    position: relative;
    overflow: hidden;
}

.footer .zellige-pattern {
    opacity: 0.03;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: var(--space-3xl);
    margin-bottom: var(--space-4xl);
}

.footer__brand {
    max-width: 320px;
}

.footer__brand-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.footer__brand-icon {
    width: 36px;
    height: 36px;
    /* background: var(--color-primary); */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* .footer__brand-icon::before {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    border: 2px solid var(--ivory);
    transform: rotate(45deg);
} */

.footer__brand-name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--sand-100);
}

.footer__brand-desc {
    font-size: var(--fs-small);
    line-height: var(--lh-relaxed);
    color: var(--sand-500);
    margin-bottom: var(--space-xl);
}

.footer__social {
    display: flex;
    gap: var(--space-md);
}

.footer__social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--sand-700);
    display: flex;
    align-items: center;
    justify-content: center;
    transition:
        border-color var(--duration-fast) var(--ease-out),
        background var(--duration-fast) var(--ease-out),
        color var(--duration-fast) var(--ease-out);
    color: var(--sand-400);
}

.footer__social-link:hover {
    border-color: var(--color-primary);
    background: var(--color-primary);
    color: var(--ivory);
}

.footer__social-link svg {
    width: 18px;
    height: 18px;
}

.footer__heading {
    font-family: var(--font-body);
    font-size: var(--fs-xs);
    font-weight: 600;
    letter-spacing: var(--ls-ultra);
    text-transform: uppercase;
    color: var(--sand-400);
    margin-bottom: var(--space-xl);
}

.footer__link {
    display: block;
    font-size: var(--fs-small);
    color: var(--sand-400);
    padding: var(--space-xs) 0;
    transition:
        color var(--duration-fast) var(--ease-out),
        padding-left var(--duration-fast) var(--ease-out);
}

.footer__link:hover {
    color: var(--sand-100);
    padding-left: var(--space-xs);
}

.footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
    font-size: var(--fs-small);
    color: var(--sand-400);
}

.footer__contact-item svg {
    width: 16px;
    height: 16px;
    margin-top: 3px;
    flex-shrink: 0;
    color: var(--color-primary);
}

.footer__divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--sand-800),
        transparent
    );
    margin-bottom: var(--space-xl);
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: var(--fs-xs);
    color: var(--sand-600);
}

.footer__bottom-links {
    display: flex;
    gap: var(--space-lg);
}

.footer__bottom-link {
    color: var(--sand-600);
    transition: color var(--duration-fast) var(--ease-out);
}

.footer__bottom-link:hover {
    color: var(--sand-300);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.92);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

@keyframes drawLine {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity var(--duration-slow) var(--ease-out),
        transform var(--duration-slow) var(--ease-out);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   PAGE HEADER (for inner pages)
   ============================================ */
.page-header {
    position: relative;
    padding: calc(var(--nav-height) + var(--space-5xl)) 0 var(--space-4xl);
    background: var(--midnight);
    overflow: hidden;
    min-height: 45vh;
    display: flex;
    align-items: flex-end;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, var(--red-900) 0%, var(--midnight) 60%);
    opacity: 0.8;
}

.page-header__content {
    position: relative;
    z-index: 2;
}

.page-header__label {
    font-family: var(--font-body);
    font-size: var(--fs-xs);
    font-weight: 600;
    letter-spacing: var(--ls-ultra);
    text-transform: uppercase;
    color: var(--red-300);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
    animation: fadeInUp var(--duration-slow) var(--ease-out) both;
}

.page-header__label::before {
    content: '';
    display: block;
    width: 32px;
    height: 2px;
    background: var(--color-primary);
}

.page-header__title {
    font-family: var(--font-display);
    font-size: var(--fs-h1);
    font-weight: 700;
    line-height: var(--lh-tight);
    letter-spacing: var(--ls-tight);
    color: var(--ivory);
    margin-bottom: var(--space-lg);
    animation: fadeInUp var(--duration-slow) var(--ease-out) 100ms both;
}

.page-header__desc {
    font-family: var(--font-body);
    font-size: var(--fs-body-lg);
    line-height: var(--lh-relaxed);
    color: var(--sand-300);
    max-width: 560px;
    animation: fadeInUp var(--duration-slow) var(--ease-out) 200ms both;
}

/* Decorative elements */
.page-header__decor {
    position: absolute;
    right: -5%;
    bottom: -10%;
    width: 500px;
    height: 500px;
    border: 1px solid rgba(198, 40, 40, 0.15);
    border-radius: 50%;
    animation: fadeIn var(--duration-glacial) var(--ease-out) 300ms both;
}

.page-header__decor::before {
    content: '';
    position: absolute;
    inset: 40px;
    border: 1px solid rgba(198, 40, 40, 0.1);
    border-radius: 50%;
}

.page-header__decor::after {
    content: '';
    position: absolute;
    inset: 80px;
    border: 1px solid rgba(198, 40, 40, 0.06);
    border-radius: 50%;
}

/* ============================================
   CARD COMPONENT
   ============================================ */
.card {
    background: var(--ivory);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition:
        transform var(--duration-normal) var(--ease-out),
        box-shadow var(--duration-normal) var(--ease-out);
}

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

.card__image {
    position: relative;
    height: 260px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--sand-200), var(--sand-300));
}

.card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-slow) var(--ease-out);
}

.card:hover .card__image img {
    transform: scale(1.06);
}

.card__badge {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    font-family: var(--font-body);
    font-size: var(--fs-xs);
    font-weight: 600;
    letter-spacing: var(--ls-wide);
    text-transform: uppercase;
    background: var(--color-primary);
    color: var(--ivory);
    padding: var(--space-2xs) var(--space-sm);
    border-radius: var(--radius-full);
}

.card__body {
    padding: var(--space-xl);
}

.card__category {
    font-family: var(--font-body);
    font-size: var(--fs-xs);
    font-weight: 600;
    letter-spacing: var(--ls-ultra);
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: var(--space-sm);
}

.card__title {
    font-family: var(--font-heading);
    font-size: var(--fs-h4);
    font-weight: 600;
    line-height: var(--lh-snug);
    color: var(--color-text);
    margin-bottom: var(--space-sm);
}

.card__desc {
    font-size: var(--fs-small);
    line-height: var(--lh-relaxed);
    color: var(--sand-600);
    margin-bottom: var(--space-lg);
}

.card__meta {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    padding-top: var(--space-md);
    border-top: var(--border-thin);
}

.card__meta-item {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: var(--fs-xs);
    color: var(--sand-600);
}

.card__meta-item svg {
    width: 14px;
    height: 14px;
    color: var(--color-primary);
}

.card__price {
    margin-left: auto;
    font-family: var(--font-heading);
    font-size: var(--fs-h4);
    font-weight: 700;
    color: var(--color-primary);
}

.card__price small {
    font-size: var(--fs-xs);
    font-weight: 400;
    font-family: var(--font-body);
    color: var(--sand-500);
}

/* ============================================
   FORM ELEMENTS
   ============================================ */
.form-group {
    margin-bottom: var(--space-xl);
}

.form-label {
    display: block;
    font-family: var(--font-body);
    font-size: var(--fs-small);
    font-weight: 600;
    letter-spacing: var(--ls-wide);
    text-transform: uppercase;
    color: var(--sand-700);
    margin-bottom: var(--space-sm);
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: var(--space-md) var(--space-lg);
    background: var(--ivory);
    border: 1px solid var(--sand-200);
    border-radius: var(--radius-md);
    font-size: var(--fs-body);
    color: var(--color-text);
    transition:
        border-color var(--duration-fast) var(--ease-out),
        box-shadow var(--duration-fast) var(--ease-out);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(198, 40, 40, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--sand-400);
}

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

.form-select {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%237A6248' stroke-width='2' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right var(--space-lg) center;
    padding-right: var(--space-3xl);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .nav__links {
        display: none;
    }

    .nav__toggle {
        display: flex;
    }

    .nav__cta {
        display: none;
    }

    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-2xl);
    }
}

@media (max-width: 768px) {
    .footer__grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .footer__bottom {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }

    .page-header {
        min-height: 35vh;
        padding: calc(var(--nav-height) + var(--space-3xl)) 0 var(--space-3xl);
    }

    .page-header__decor {
        width: 300px;
        height: 300px;
        right: -15%;
    }
}

@media (max-width: 480px) {
    :root {
        --gutter: 1.25rem;
    }
}
