/* ===== CSS Reset & Variables ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand Colors */
    --deep-blue: #1F4E5F;
    --ocean-teal: #2F7A7E;
    --cliff-green: #6E8F3A;
    --meadow-green: #AFCB6B;
    --mist-white: #F5F7F6;
    --cloud-grey: #D6D9D7;
    --golden-grass: #E0A95C;

    /* Functional */
    --text-dark: #1a2a2d;
    --text-body: #3d4f52;
    --text-light: #6b7d80;
    --white: #ffffff;
    --success: #3a8f4a;
    --danger: #c0392b;

    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --section-padding: 3rem 0;
    --container-max: 1200px;

    /* Transitions */
    --transition: 0.3s ease;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-body);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: var(--ocean-teal);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--deep-blue);
}

ul {
    list-style: none;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--deep-blue);
    line-height: 1.3;
}

h2,
.why-choose__card h3,
.highlight-card h3,
.itinerary__info h3,
.included__heading,
.practical__item h3,
.alt-card h3,
.footer__links h3 {
    background: linear-gradient(135deg, var(--deep-blue) 0%, #4f7f91 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    text-align: center;
}

h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* ===== Container ===== */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.25rem;
}

.section-intro {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.section-cta {
    text-align: center;
    margin-top: 2rem;
}

/* ===== HEADER ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    background: rgba(15, 40, 50, 0.72);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.site-header__inner {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 0.9rem;
    padding-bottom: 0.9rem;
}

.site-header__brand {
    flex: 0 0 auto;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
}

.site-header__brand:hover {
    color: var(--white);
}

.site-header__nav {
    display: none;
    align-items: center;
    gap: 1.25rem;
}

.site-header__nav a {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.92rem;
    font-weight: 500;
}

.site-header__nav a:hover {
    color: var(--white);
}

.site-header__cta {
    flex: 0 0 auto;
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    font-family: var(--font-body);
    font-weight: 600;
    text-align: center;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    line-height: 1.4;
}

.btn--primary {
    background: linear-gradient(135deg, var(--deep-blue) 0%, #4f7f91 100%);
    color: var(--white);
    padding: 0.875rem 2rem;
    font-size: 1rem;
}

.btn--primary:hover {
    background: linear-gradient(135deg, #2f6375 0%, #6a9caf 100%);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(31, 78, 95, 0.3);
}

.highlights .btn--primary {
    background: var(--golden-grass);
    box-shadow: 0 4px 16px rgba(224, 169, 92, 0.32);
}

.highlights .btn--primary:hover {
    background: #c98f42;
    box-shadow: 0 6px 20px rgba(201, 143, 66, 0.36);
}

.btn--lg {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

.btn--sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
}

.btn--outline {
    background: transparent;
    color: var(--deep-blue);
    border: 2px solid var(--deep-blue);
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
}

.btn--outline:hover {
    background: var(--deep-blue);
    color: var(--white);
}

/* ===== Stars ===== */
.stars {
    display: inline-flex;
    gap: 2px;
}

.star {
    display: inline-block;
    width: 18px;
    height: 18px;
    position: relative;
}

.star::before {
    content: '\2605';
    font-size: 18px;
    color: var(--cloud-grey);
}

.star.filled::before {
    color: var(--golden-grass);
}

.star.partial {
    overflow: hidden;
}

.star.partial::before {
    color: var(--golden-grass);
}

.star.partial::after {
    content: '\2605';
    font-size: 18px;
    color: var(--cloud-grey);
    position: absolute;
    left: 0;
    top: 0;
    clip-path: inset(0 0 0 70%);
}

/* ===== Badges ===== */
.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge--bestseller {
    background: var(--golden-grass);
    color: var(--white);
}

.badge--sellout {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: url('../images/cliffs-of-moher-hero.webp') center bottom/cover no-repeat;
    color: var(--white);
    overflow: hidden;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(15, 40, 50, 0.55) 0%,
        rgba(15, 40, 50, 0.7) 60%,
        rgba(15, 40, 50, 0.85) 100%
    );
}

.hero__content {
    position: relative;
    z-index: 2;
    padding: 8rem 1.25rem 4rem;
}

.hero__badges {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.hero h1 {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #d8edf5 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.hero__subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.25rem;
    max-width: 600px;
    line-height: 1.6;
}

.hero__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.hero__rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rating-text {
    font-size: 0.9rem;
}

.hero__price {
    font-size: 1.1rem;
}

.hero__price strong {
    font-size: 1.5rem;
}

.hero__benefits {
    margin-bottom: 1.5rem;
}

.hero__benefits li {
    position: relative;
    padding: 0.25rem 0 0.25rem 1rem;
    font-size: 0.95rem;
}

.hero__benefits li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.9rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--meadow-green);
}

.hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.25rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
}

.hero__trust span {
    display: inline-flex;
    align-items: center;
    padding-left: 1rem;
    position: relative;
}

.hero__trust span::before {
    content: '';
    position: absolute;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.7);
}

/* ===== INTRO ===== */
.intro {
    padding: var(--section-padding);
    background:
        radial-gradient(circle at top left, rgba(175, 203, 107, 0.18), transparent 38%),
        linear-gradient(180deg, #fcfdfc 0%, var(--mist-white) 100%);
}

.intro .container {
    max-width: 880px;
}

.intro__eyebrow {
    margin-bottom: 0.75rem;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ocean-teal);
}

.intro__content {
    margin-top: 1.5rem;
    display: grid;
    gap: 1rem;
}

.intro__content p {
    margin: 0;
    font-size: 1rem;
    color: var(--text-body);
}

.intro__lead {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.intro__callout {
    margin-top: 0.5rem;
    padding: 1.25rem;
    border-left: 4px solid var(--golden-grass);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 14px 40px rgba(31, 78, 95, 0.08);
}

.intro__cta-text {
    font-size: 1.02rem;
    color: var(--text-dark);
}

.intro__callout .btn {
    margin-top: 1rem;
}

/* ===== TRUST SIGNALS ===== */
.trust {
    padding: 2.5rem 0;
    background: var(--mist-white);
    border-bottom: 1px solid var(--cloud-grey);
}

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

.trust__item {
    text-align: center;
    padding: 1rem 0.75rem;
}

.trust__label {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--deep-blue);
}

.trust__detail {
    font-size: 0.75rem;
    color: var(--ocean-teal);
}

/* ===== HIGHLIGHTS ===== */
.highlights {
    padding: var(--section-padding);
}

.highlights__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.highlight-card {
    background: linear-gradient(135deg, var(--deep-blue) 0%, var(--ocean-teal) 100%);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition);
    box-shadow: 0 10px 26px rgba(31, 78, 95, 0.2);
}

.highlight-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(31, 78, 95, 0.28);
}

.highlight-card h3 {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--white);
    background: none;
    -webkit-background-clip: border-box;
    background-clip: border-box;
    padding-top: 0.35rem;
}

.highlight-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 0.35rem;
}

/* ===== EXPERIENCE ===== */
.experience {
    padding: var(--section-padding);
    background: var(--mist-white);
}

.experience__content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.experience__text p {
    margin-bottom: 1rem;
}

.experience__image img {
    border-radius: 12px;
}

/* ===== PHOTO GALLERY ===== */
.gallery {
    padding: var(--section-padding);
    overflow: hidden;
}

.gallery__scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-top: 1rem;
    padding-bottom: 1rem;
}

.gallery__scroll::-webkit-scrollbar {
    display: none;
}

.gallery__track {
    display: flex;
    gap: 1rem;
    padding: 0 1.25rem;
}

.gallery__item {
    flex: 0 0 85%;
    border-radius: 12px;
    overflow: hidden;
}

.gallery__item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

/* ===== ITINERARY ===== */
.itinerary {
    padding: var(--section-padding);
    background: var(--mist-white);
}

.itinerary__timeline {
    max-width: 700px;
    margin: 1.5rem auto 0;
    position: relative;
    padding-left: 2.5rem;
}

.itinerary__timeline::before {
    content: '';
    position: absolute;
    left: 1rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--cloud-grey);
}

.itinerary__stop {
    position: relative;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--cloud-grey);
}

.itinerary__stop:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.itinerary__marker {
    position: absolute;
    left: -2.5rem;
    top: 0;
    width: 2rem;
    height: 2rem;
    background: var(--deep-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 1;
}

.itinerary__info h3 {
    font-family: var(--font-body);
    color: var(--deep-blue);
    font-size: 1.05rem;
}

.itinerary__time {
    font-size: 0.8rem;
    color: var(--ocean-teal);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.itinerary__info p:last-child {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ===== WHAT'S INCLUDED ===== */
.included {
    padding: var(--section-padding);
}

.included__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 700px;
    margin: 1.5rem auto 0;
}

.included__heading {
    font-family: var(--font-body);
    font-size: 1.1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid;
    margin-bottom: 0.75rem;
}

.included__heading--yes {
    border-color: var(--success);
    color: var(--success);
}

.included__heading--no {
    border-color: var(--danger);
    color: var(--danger);
}

.included__list li {
    position: relative;
    padding: 0.4rem 0;
    padding-left: 1rem;
    font-size: 0.95rem;
}

.included__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.95rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.included__list--yes li::before {
    background: var(--success);
}

.included__list--no li::before {
    background: var(--danger);
}

/* ===== WHY CHOOSE ===== */
.why-choose {
    padding: var(--section-padding);
    background: var(--mist-white);
}

.why-choose__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.why-choose__card {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border-top: 3px solid var(--golden-grass);
}

.why-choose__card h3 {
    font-family: var(--font-body);
    color: var(--deep-blue);
    font-size: 1rem;
}

.why-choose__card p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.35rem;
}

/* ===== REVIEWS ===== */
.reviews {
    padding: var(--section-padding);
}

.reviews__summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.reviews__score {
    font-size: 3rem;
    font-weight: 800;
    color: var(--deep-blue);
    font-family: var(--font-heading);
}

.reviews__score span {
    font-size: 1.5rem;
    color: var(--text-light);
    font-weight: 400;
}

.reviews__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.review-card {
    background: var(--mist-white);
    border-radius: 12px;
    padding: 1.25rem;
}

.review-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.review-card__stars {
    color: var(--golden-grass);
    font-size: 1rem;
    letter-spacing: 1px;
}

.review-card__meta {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 500;
}

.review-card p {
    font-size: 0.9rem;
    font-style: italic;
    color: var(--text-body);
    line-height: 1.6;
}

/* ===== PRACTICAL INFO ===== */
.practical {
    padding: var(--section-padding);
    background: var(--mist-white);
}

.practical__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 700px;
    margin: 1.5rem auto 0;
}

.practical__item {
    background: var(--white);
    border-radius: 10px;
    padding: 1.25rem;
}

.practical__item h3 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--deep-blue);
    margin-bottom: 0.25rem;
}

.practical__item p {
    font-size: 0.9rem;
    color: var(--text-body);
}

/* ===== AVAILABILITY ===== */
.availability {
    padding: var(--section-padding);
    background: var(--white);
}

.availability__widget {
    max-width: 800px;
    margin: 1.5rem auto;
    min-height: 120px;
}

.availability__urgency {
    text-align: center;
    color: var(--danger);
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* ===== FAQ ===== */
.faq {
    padding: var(--section-padding);
    background: var(--mist-white);
}

.faq__list {
    max-width: 750px;
    margin: 1.5rem auto 0;
}

.faq__item {
    border-bottom: 1px solid var(--cloud-grey);
}

.faq__question {
    padding: 1.125rem 0;
    font-weight: 600;
    font-size: 1rem;
    color: var(--deep-blue);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq__question::-webkit-details-marker {
    display: none;
}

.faq__question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--ocean-teal);
    transition: transform var(--transition);
    flex-shrink: 0;
    margin-left: 1rem;
}

details[open] .faq__question::after {
    content: '\2212';
}

.faq__answer {
    padding: 0 0 1.125rem;
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.7;
}

/* ===== ALTERNATIVE TOURS ===== */
.alternatives {
    padding: var(--section-padding);
}

.alternatives__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.alt-card {
    background: var(--mist-white);
    border-radius: 12px;
    padding: 1.5rem;
    position: relative;
    transition: box-shadow var(--transition);
}

.alt-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.alt-card__badge {
    display: inline-block;
    background: var(--golden-grass);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    margin-bottom: 0.75rem;
}

.alt-card h3 {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--deep-blue);
    margin-bottom: 0.5rem;
}

.alt-card__meta {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.alt-card__rating {
    color: var(--golden-grass);
    font-weight: 600;
}

.alt-card p {
    font-size: 0.875rem;
    color: var(--text-body);
    margin-bottom: 1rem;
}

.alt-card__widget {
    margin-top: 1rem;
}

.alt-card__widget > div {
    width: 100%;
}

.alt-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.alt-card__price {
    font-size: 0.9rem;
    color: var(--text-dark);
}

.alt-card__price strong {
    font-size: 1.15rem;
    color: var(--deep-blue);
}

/* ===== FINAL CTA ===== */
.final-cta {
    padding: 3.5rem 0;
    background: linear-gradient(135deg, var(--deep-blue) 0%, var(--ocean-teal) 100%);
    color: var(--white);
    text-align: center;
}

.final-cta h2 {
    color: var(--white);
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.final-cta p {
    max-width: 600px;
    margin: 0 auto 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.final-cta__benefits {
    display: block;
    width: fit-content;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5rem;
}

.final-cta__benefits li {
    position: relative;
    padding: 0.25rem 0 0.25rem 1rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.95);
}

.final-cta__benefits li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.95rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
}

.final-cta .btn--primary {
    background: var(--golden-grass);
    color: var(--deep-blue);
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.final-cta .btn--primary:hover {
    background: var(--white);
    color: var(--deep-blue);
}

.final-cta__urgency {
    margin-top: 2.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--text-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 2.5rem 0 6rem;
}

.footer__links h3 {
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.footer__links ul {
    columns: 1;
    gap: 0;
}

.footer__links li {
    padding: 0.3rem 0;
}

.footer__links a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.875rem;
    transition: color var(--transition);
}

.footer__links a:hover {
    color: var(--golden-grass);
}

.footer__bottom {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.8rem;
}

.footer__powered {
    margin-top: 0.5rem;
}

.footer__powered a {
    color: var(--golden-grass);
}

/* ===== STICKY MOBILE CTA ===== */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--cloud-grey);
    padding: 0.75rem 1.25rem;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.1);
}

.sticky-cta.visible {
    transform: translateY(0);
}

.sticky-cta__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--container-max);
    margin: 0 auto;
}

.sticky-cta__info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.sticky-cta__price {
    font-size: 0.9rem;
    color: var(--text-dark);
}

.sticky-cta__price strong {
    font-size: 1.15rem;
}

.sticky-cta__rating {
    color: var(--golden-grass);
    font-weight: 600;
    font-size: 0.85rem;
}

/* ===== RESPONSIVE — Tablet (600px+) ===== */
@media (min-width: 600px) {
    h2 {
        font-size: 2rem;
    }

    .site-header__nav {
        display: flex;
    }

    .intro__callout {
        padding: 1.5rem 1.75rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

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

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

    .gallery__item {
        flex: 0 0 45%;
    }

    .gallery__item img {
        height: 280px;
    }

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

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

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

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

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

    .footer__links ul {
        columns: 2;
    }
}

/* ===== RESPONSIVE — Desktop (900px+) ===== */
@media (min-width: 900px) {
    :root {
        --section-padding: 4.5rem 0;
    }

    h2 {
        font-size: 2.25rem;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero__content {
        padding: 9rem 1.25rem 5rem;
        max-width: 700px;
    }

    .intro__lead {
        font-size: 1.18rem;
    }

    .intro__callout {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1.5rem;
    }

    .intro__callout .btn {
        margin-top: 0;
        flex: 0 0 auto;
    }

    .trust__grid {
        grid-template-columns: repeat(6, 1fr);
    }

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

    .highlight-card:last-child {
        grid-column: span 1;
    }

    .experience__content {
        grid-template-columns: 1.2fr 1fr;
        gap: 2.5rem;
        align-items: start;
    }

    .gallery__item {
        flex: 0 0 32%;
    }

    .gallery__item img {
        height: 320px;
    }

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

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

    .reviews__grid .review-card:nth-child(4),
    .reviews__grid .review-card:nth-child(5) {
        grid-column: span 1;
    }

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

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

    .final-cta h2 {
        font-size: 2.25rem;
    }

    .footer {
        padding-bottom: 2.5rem;
    }

    .sticky-cta {
        display: none;
    }
}

/* ===== RESPONSIVE — Large Desktop (1100px+) ===== */
@media (min-width: 1100px) {
    .hero h1 {
        font-size: 3.25rem;
    }

    .highlights__grid {
        grid-template-columns: repeat(5, 1fr);
    }

    .highlight-card {
        padding: 1.25rem;
    }
}

/* ===== Print ===== */
@media print {
    .sticky-cta,
    .hero__overlay,
    .btn {
        display: none;
    }
}
