/* =========================================================
   SUNNY SEATS
   File: sunny-seats.css
========================================================= */


/* =========================================================
   PAGE SAFETY
========================================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
}

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

#what-is-a-sunny-seat {
    scroll-margin-top: 2rem;
}


/* =========================================================
   SUNNY SEATS COLOR PALETTE
========================================================= */

:root {
    --seats-blue-deep: #294c5b;
    --seats-blue-dark: #376778;
    --seats-blue-medium: #5d8795;
    --seats-blue-soft: #e6f2f5;

    --seats-green-dark: #35583d;
    --seats-green-medium: #668368;
    --seats-green-soft: #edf5eb;

    --seats-gold: #d99b35;
    --seats-yellow: #f3c956;
    --seats-yellow-light: #fff0a8;
    --seats-yellow-soft: #fff8d9;

    --seats-rock: #786f67;
    --seats-rock-soft: #eeeae5;

    --seats-cream: #fffaf0;
    --seats-paper: #f8f6ef;
    --seats-white: #ffffff;

    --seats-text: #37434a;
    --seats-muted: #66747a;

    --seats-border: rgba(41, 76, 91, 0.14);
    --seats-shadow: 0 14px 34px rgba(41, 76, 91, 0.1);
    --seats-shadow-soft: 0 9px 24px rgba(41, 76, 91, 0.07);
}


/* =========================================================
   HERO
========================================================= */

.seats-hero {
    position: relative;
    width: 100%;
    padding:
        clamp(4.75rem, 10vw, 8.5rem)
        clamp(1rem, 4vw, 2rem);
    overflow: hidden;
    background:
        radial-gradient(
            circle at 18% 18%,
            rgba(255, 240, 168, 0.25),
            transparent 28%
        ),
        radial-gradient(
            circle at 84% 72%,
            rgba(230, 242, 245, 0.25),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            var(--seats-blue-deep) 0%,
            var(--seats-blue-dark) 50%,
            var(--seats-blue-medium) 100%
        );
    color: var(--seats-white);
    text-align: center;
}

.seats-hero::before,
.seats-hero::after {
    position: absolute;
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.seats-hero::before {
    top: -10rem;
    left: -8rem;
    width: 27rem;
    height: 27rem;
    background: rgba(255, 255, 255, 0.06);
}

.seats-hero::after {
    right: -9rem;
    bottom: -12rem;
    width: 30rem;
    height: 30rem;
    background: rgba(255, 238, 159, 0.08);
}

.seats-hero-content {
    position: relative;
    z-index: 1;
    width: min(100%, 900px);
    margin: 0 auto;
}

.seats-hero-icon {
    margin-bottom: 1rem;
    font-size: clamp(4rem, 9vw, 6.5rem);
    line-height: 1;
}

.seats-eyebrow {
    margin: 0 0 0.85rem;
    color: var(--seats-yellow-light);
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    line-height: 1.4;
    text-transform: uppercase;
}

.seats-hero h1 {
    margin: 0;
    color: var(--seats-white);
    font-size: clamp(3.2rem, 9vw, 6.6rem);
    font-weight: 900;
    line-height: 0.98;
}

.seats-tagline {
    max-width: 790px;
    margin: 1.5rem auto 0;
    color: var(--seats-white);
    font-size: clamp(1.2rem, 3vw, 1.75rem);
    font-weight: 800;
    line-height: 1.5;
}

.seats-hero-introduction {
    max-width: 760px;
    margin: 1.3rem auto 0;
    color: rgba(255, 255, 255, 0.93);
    font-size: 1.08rem;
    line-height: 1.82;
}

.seats-hero .trail-button {
    margin-top: 2rem;
    background: var(--seats-yellow-light);
    color: var(--seats-blue-deep);
}

.seats-hero .trail-button:hover,
.seats-hero .trail-button:focus-visible {
    background: var(--seats-white);
    color: var(--seats-blue-deep);
}


/* =========================================================
   GENERAL SECTIONS
========================================================= */

.seats-section {
    width: 100%;
    padding:
        clamp(3.75rem, 7vw, 5.75rem)
        clamp(1rem, 4vw, 1.5rem);
}

.seats-section-soft {
    background:
        linear-gradient(
            180deg,
            rgba(248, 246, 239, 0.97),
            rgba(230, 242, 245, 0.78)
        );
}

.seats-section-highlight {
    background:
        radial-gradient(
            circle at 15% 18%,
            rgba(243, 201, 86, 0.18),
            transparent 26%
        ),
        linear-gradient(
            135deg,
            rgba(255, 248, 217, 0.96),
            rgba(237, 245, 235, 0.93)
        );
}

.seats-section-heading {
    width: min(100%, 930px);
    margin: 0 auto 2.3rem;
    text-align: center;
}

.seats-kicker {
    margin: 0 0 0.7rem;
    color: var(--seats-blue-dark);
    font-size: 0.83rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    line-height: 1.4;
    text-transform: uppercase;
}

.seats-section-heading h2 {
    max-width: 880px;
    margin: 0 auto;
    color: var(--seats-blue-deep);
    font-size: clamp(2rem, 5vw, 3.45rem);
    font-weight: 850;
    line-height: 1.12;
}

.seats-section-heading > p:not(.seats-kicker) {
    max-width: 770px;
    margin: 1rem auto 0;
    color: var(--seats-muted);
    font-size: 1.04rem;
    line-height: 1.78;
}

.seats-copy {
    width: min(100%, 800px);
    margin: 0 auto;
}

.seats-copy p {
    margin: 0 0 1.25rem;
    color: var(--seats-text);
    line-height: 1.83;
}

.seats-copy p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   QUOTES
========================================================= */

.seats-quote {
    position: relative;
    width: min(100%, 745px);
    margin: 2.3rem auto;
    padding: 1.7rem 1.9rem 1.7rem 2.1rem;
    border: 0;
    border-left: 6px solid var(--seats-gold);
    border-radius: 0 1.25rem 1.25rem 0;
    background:
        linear-gradient(
            135deg,
            rgba(255, 248, 217, 0.98),
            rgba(255, 253, 246, 0.98)
        );
    box-shadow: 0 12px 28px rgba(87, 68, 36, 0.09);
    color: #4b4033;
    font-size: clamp(1.1rem, 2.5vw, 1.42rem);
    font-style: italic;
    font-weight: 750;
    line-height: 1.67;
}

.seats-quote::before {
    position: absolute;
    top: -0.5rem;
    left: 0.65rem;
    color: rgba(177, 121, 36, 0.17);
    content: "“";
    font-family: Georgia, "Times New Roman", serif;
    font-size: 5.2rem;
    font-style: normal;
    font-weight: 900;
    line-height: 1;
    pointer-events: none;
}

.seats-quote p {
    position: relative;
    z-index: 1;
    margin: 0;
}


/* =========================================================
   BUS WINDOW SECTION
========================================================= */

.seats-bus-section {
    background:
        radial-gradient(
            circle at 82% 16%,
            rgba(230, 242, 245, 0.6),
            transparent 28%
        ),
        linear-gradient(
            180deg,
            var(--seats-cream),
            var(--seats-white)
        );
}

.seats-bus-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    width: min(100%, 1060px);
    margin: 0 auto;
}

.seats-window-card {
    min-width: 0;
    min-height: 365px;
    padding: 2rem 1.8rem;
    border: 1px solid var(--seats-border);
    border-radius: 1.45rem;
    box-shadow: var(--seats-shadow);
    text-align: center;
}

.seats-window-rock {
    background:
        linear-gradient(
            145deg,
            rgba(238, 234, 229, 0.98),
            rgba(255, 255, 255, 0.98)
        );
}

.seats-window-sunny {
    background:
        linear-gradient(
            145deg,
            rgba(230, 242, 245, 0.98),
            rgba(255, 248, 217, 0.98)
        );
}

.seats-window-icon {
    margin-bottom: 1rem;
    font-size: 3.5rem;
    line-height: 1;
}

.seats-window-card h3 {
    margin: 0 0 1rem;
    color: var(--seats-blue-deep);
    font-size: 1.38rem;
}

.seats-window-card p {
    margin: 0 0 1rem;
    color: var(--seats-text);
    line-height: 1.75;
}

.seats-window-card p:last-child {
    margin-bottom: 0;
}

.seats-landscape-quote {
    width: min(100%, 860px);
    margin: 2.5rem auto 0;
    padding: clamp(1.75rem, 4vw, 2.4rem);
    border: 1px solid rgba(217, 155, 53, 0.22);
    border-radius: 1.35rem;
    background:
        linear-gradient(
            135deg,
            rgba(255, 244, 190, 0.9),
            rgba(255, 252, 238, 0.98)
        );
    box-shadow: 0 13px 30px rgba(92, 68, 30, 0.08);
    color: #473d30;
    text-align: center;
}

.seats-landscape-quote p {
    margin: 0 0 0.7rem;
    font-size: clamp(1.12rem, 2.5vw, 1.42rem);
    font-weight: 800;
    line-height: 1.65;
}

.seats-landscape-quote p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   CHOICE CARDS
========================================================= */

.seats-choice-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
    width: min(100%, 1140px);
    margin: 0 auto;
}

.seats-choice-card {
    min-width: 0;
    min-height: 285px;
    padding: 1.7rem;
    border: 1px solid var(--seats-border);
    border-radius: 1.25rem;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: var(--seats-shadow-soft);
}

.seats-choice-icon {
    margin-bottom: 0.9rem;
    font-size: 2.35rem;
    line-height: 1;
}

.seats-choice-card h3 {
    margin: 0 0 0.75rem;
    color: var(--seats-blue-deep);
    font-size: 1.2rem;
}

.seats-choice-card p {
    margin: 0;
    color: var(--seats-text);
    line-height: 1.72;
}


/* =========================================================
   EVERYDAY EXAMPLES
========================================================= */

.seats-example-list {
    display: grid;
    gap: 1.15rem;
    width: min(100%, 980px);
    margin: 0 auto;
}

.seats-example {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        auto
        minmax(0, 1fr);
    gap: 1rem;
    align-items: center;
    padding: 1.3rem;
    border: 1px solid var(--seats-border);
    border-radius: 1.2rem;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--seats-shadow-soft);
}

.seats-example p {
    margin: 0;
    line-height: 1.68;
}

.seats-example-rock,
.seats-example-seat {
    min-width: 0;
    min-height: 120px;
    padding: 1.15rem;
    border-radius: 1rem;
}

.seats-example-rock {
    background: var(--seats-rock-soft);
    color: #514b46;
}

.seats-example-seat {
    background:
        linear-gradient(
            135deg,
            var(--seats-blue-soft),
            var(--seats-yellow-soft)
        );
    color: var(--seats-blue-deep);
}

.seats-example-arrow {
    color: var(--seats-gold);
    font-size: 1.8rem;
    font-weight: 900;
}


/* =========================================================
   SUNNY SPOTS AND SUNNY SEATS
========================================================= */

.seats-companion-section {
    background:
        linear-gradient(
            135deg,
            rgba(230, 242, 245, 0.88),
            rgba(255, 250, 232, 0.94)
        );
}

.seats-companion-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    width: min(100%, 1040px);
    margin: 0 auto;
}

.seats-companion-card {
    min-width: 0;
    min-height: 325px;
    padding: 2rem 1.75rem;
    border: 1px solid var(--seats-border);
    border-radius: 1.4rem;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--seats-shadow);
    text-align: center;
}

.seats-companion-icon {
    margin-bottom: 1rem;
    font-size: 3.3rem;
    line-height: 1;
}

.seats-companion-card h3 {
    margin: 0 0 1rem;
    color: var(--seats-blue-deep);
    font-size: 1.35rem;
}

.seats-companion-card p {
    margin: 0 0 1rem;
    color: var(--seats-text);
    line-height: 1.74;
}

.seats-companion-card p:last-child {
    margin-bottom: 0;
}

.seats-companion-quote {
    width: min(100%, 820px);
    margin: 2.4rem auto 0;
    padding: 1.5rem 1.7rem;
    border-radius: 1.15rem;
    background: var(--seats-blue-deep);
    color: var(--seats-white);
    box-shadow: 0 13px 30px rgba(41, 76, 91, 0.18);
    text-align: center;
}

.seats-companion-quote p {
    margin: 0;
    font-size: clamp(1.1rem, 2.5vw, 1.38rem);
    font-weight: 800;
    line-height: 1.65;
}


/* =========================================================
   LANGUAGE SECTION
========================================================= */

.seats-language-section {
    background:
        radial-gradient(
            circle at 20% 15%,
            rgba(243, 201, 86, 0.18),
            transparent 27%
        ),
        linear-gradient(
            135deg,
            rgba(255, 250, 231, 0.96),
            rgba(230, 242, 245, 0.92)
        );
}

.seats-language-list {
    display: grid;
    gap: 0.75rem;
    width: min(100%, 700px);
    margin: 1.8rem auto 2rem;
}

.seats-language-list p {
    position: relative;
    margin: 0;
    padding: 1rem 1.15rem 1rem 3rem;
    border: 1px solid rgba(41, 76, 91, 0.1);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 7px 18px rgba(41, 76, 91, 0.05);
    color: var(--seats-blue-deep);
    font-weight: 750;
    line-height: 1.55;
}

.seats-language-list p::before {
    position: absolute;
    top: 50%;
    left: 1rem;
    content: "🪟";
    font-size: 1rem;
    transform: translateY(-50%);
}


/* =========================================================
   CLOSING
========================================================= */

.seats-closing {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 18% 18%,
            rgba(243, 201, 86, 0.28),
            transparent 29%
        ),
        radial-gradient(
            circle at 82% 78%,
            rgba(230, 242, 245, 0.52),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            rgba(255, 248, 217, 0.97),
            rgba(230, 242, 245, 0.96)
        );
    text-align: center;
}

.seats-closing::before {
    position: absolute;
    right: -6rem;
    bottom: -8rem;
    width: 22rem;
    height: 22rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    content: "";
    pointer-events: none;
}

.seats-closing-icon {
    position: relative;
    z-index: 1;
    margin-bottom: 1rem;
    font-size: 4rem;
    line-height: 1;
}

.seats-closing > h2 {
    position: relative;
    z-index: 1;
    width: min(100%, 870px);
    margin: 0 auto 2rem;
    color: var(--seats-blue-deep);
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.13;
}

.seats-closing .seats-copy {
    position: relative;
    z-index: 1;
    text-align: left;
}

.seats-closing-message {
    margin-top: 2rem !important;
    padding: 1.5rem;
    border-radius: 1.15rem;
    background: var(--seats-blue-deep);
    color: var(--seats-white) !important;
    box-shadow: 0 13px 30px rgba(41, 76, 91, 0.18);
    text-align: center;
    font-size: 1.16rem;
    font-weight: 800;
    line-height: 1.65;
}


/* =========================================================
   CONTINUE THE JOURNEY
========================================================= */

.continue-journey {
    width: 100%;
    padding:
        clamp(3.75rem, 7vw, 5.5rem)
        clamp(1rem, 4vw, 1.5rem);
    background: var(--seats-cream);
    text-align: center;
}

.continue-journey h2 {
    max-width: 820px;
    margin: 0 auto;
    color: var(--seats-blue-deep);
    font-size: clamp(2rem, 5vw, 3.2rem);
    line-height: 1.15;
}

.continue-journey-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    width: min(100%, 1000px);
    margin: 2rem auto 0;
}


/* =========================================================
   ACCESSIBILITY
========================================================= */

.seats-hero .trail-button:focus-visible,
.continue-journey .trail-button:focus-visible {
    outline: 3px solid var(--seats-yellow);
    outline-offset: 4px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 980px) {
    .seats-choice-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


/* =========================================================
   SMALL TABLET
========================================================= */

@media (max-width: 820px) {
    .seats-example {
        grid-template-columns: 1fr;
    }

    .seats-example-arrow {
        transform: rotate(90deg);
        justify-self: center;
    }

    .seats-example-rock,
    .seats-example-seat {
        min-height: 0;
    }
}


/* =========================================================
   PHONE
========================================================= */

@media (max-width: 700px) {
    .seats-hero {
        padding-top: 4.25rem;
        padding-bottom: 4.25rem;
    }

    .seats-section {
        padding-right: 1rem;
        padding-left: 1rem;
    }

    .seats-bus-grid,
    .seats-choice-grid,
    .seats-companion-grid {
        grid-template-columns: 1fr;
    }

    .seats-window-card,
    .seats-choice-card,
    .seats-companion-card {
        min-height: 0;
    }

    .seats-quote {
        margin: 1.7rem 0;
        padding: 1.35rem 1.2rem 1.35rem 1.5rem;
        border-left-width: 5px;
        border-radius: 0 1rem 1rem 0;
    }

    .seats-quote::before {
        left: 0.35rem;
        font-size: 4.2rem;
    }

    .seats-landscape-quote {
        padding: 1.5rem 1.15rem;
    }

    .seats-language-list p {
        padding-left: 2.8rem;
    }

    .continue-journey-links {
        align-items: stretch;
        flex-direction: column;
    }

    .continue-journey-links .trail-button {
        width: 100%;
        text-align: center;
    }
}


/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 430px) {
    .seats-hero h1 {
        font-size: 2.9rem;
    }

    .seats-tagline {
        font-size: 1.1rem;
    }

    .seats-hero-introduction {
        font-size: 1rem;
    }

    .seats-window-icon,
    .seats-companion-icon {
        font-size: 3rem;
    }

    .seats-closing-icon {
        font-size: 3.5rem;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}