:root {
    --cream: #FFF6E9;
    --sand: #FFEAD0;
    --peach: #FFB37A;
    --coral: #FF7A59;
    --rose: #E85D75;
    --ember: #C2452F;
    --plum: #43202C;
    --gold: #F2A33C;
    --green: #1E7A4F;
    --r: 18px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--cream);
    color: var(--plum);
    font-size: 16.5px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden
}

h1,
h2,
h3 {
    font-family: 'Young Serif', serif;
    line-height: 1.08;
    font-weight: 400
}

a {
    color: inherit
}

.wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px
}

section {
    padding: 92px 0;
    position: relative
}

.kick {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: .78rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--ember)
}

.kick::before {
    content: "";
    width: 34px;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--gold), var(--rose))
}

:focus-visible {
    outline: 3px solid var(--ember);
    outline-offset: 3px;
    border-radius: 6px
}

@media(prefers-reduced-motion:reduce) {

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important
    }
}

/* ============ NAV ============ */
nav {
    position: sticky;
    top: 0;
    z-index: 200;
    background: rgba(255, 246, 233, .9);
    backdrop-filter: blur(12px);
    border-bottom: 2px solid rgba(67, 32, 44, .08)
}

.nav-in {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px
}

.logo {
    font-family: 'Young Serif', serif;
    font-size: 1.25rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px
}

.logo img {
    display: block;
    width: 48px;
    height: 48px;
}

.nav-links {
    display: flex;
    gap: 28px;
    list-style: none
}

.nav-links a {
    text-decoration: none;
    font-weight: 600;
    font-size: .93rem;
    opacity: .75;
    padding: 10px 2px;
    transition: .2s
}

.nav-links a:hover {
    opacity: 1;
    color: var(--ember)
}

.nav-call {
    background: var(--plum);
    color: var(--cream);
    text-decoration: none;
    font-weight: 700;
    padding: 13px 24px;
    border-radius: 999px;
    font-size: .92rem;
    transition: transform .2s, background .2s
}

.nav-call:hover {
    transform: translateY(-2px);
    background: var(--ember)
}

@media(max-width:860px) {
    .nav-links {
        display: none
    }
}

/* ============ HERO ============ */
.hero {
    padding: 4rem 0;
    overflow: visible
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 40px;
    align-items: center
}

.hero h1 {
    font-size: clamp(2.6rem, 5.6vw, 3.5rem);
    margin: 18px 0 22px
}

.hero h1 .scr {
    color: var(--ember);
    position: relative;
    display: inline-block
}

.hero h1 .scr::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -4px;
    height: 10px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 12'%3E%3Cpath d='M2 8 Q 15 2 30 7 T 60 7 T 90 7 T 118 6' fill='none' stroke='%23F2A33C' stroke-width='5' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center/contain
}

.hero .lede {
    font-size: 1.14rem;
    opacity: .85;
    max-width: 520px;
    margin-bottom: 32px
}

.cta-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 2rem;
}

.btn-sun {
    background: linear-gradient(120deg, var(--gold), var(--coral));
    color: #fff;
    font-weight: 800;
    font-size: 1.06rem;
    text-decoration: none;
    padding: 18px 34px;
    border-radius: 999px;
    box-shadow: 0 10px 26px rgba(255, 122, 89, .4);
    transition: transform .2s, box-shadow .2s;
    display: inline-flex;
    align-items: center;
    gap: 10px
}

.btn-sun:hover {
    transform: translateY(-3px) rotate(-1deg);
    box-shadow: 0 16px 36px rgba(255, 122, 89, .5)
}

.btn-out {
    border: 2px solid var(--plum);
    text-decoration: none;
    font-weight: 700;
    padding: 16px 28px;
    border-radius: 999px;
    font-size: .96rem;
    transition: .2s
}

.btn-out:hover {
    background: var(--plum);
    color: var(--cream)
}

.phone-xl {
    font-family: 'Young Serif', serif;
    font-size: clamp(1.8rem, 3.4vw, 2.5rem);
    color: var(--ember);
    text-decoration: none;
    display: inline-block;
    margin-top: 26px
}

.badges {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.micro {
    font-size: .9rem;
    opacity: .75;
    margin-top: 10px
}

.badges b {
    color: var(--green)
}

/* sun stage: photo inside a giant sun with rotating rays */
.sun-stage {
    position: relative;
    display: flex;
    justify-content: center;
    padding: 30px 0 70px
}

.sun-photo {
    position: relative;
    width: min(390px, 68%);
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    border: 10px solid var(--cream);
    box-shadow: 0 0 0 4px var(--gold), 0 30px 60px rgba(194, 69, 47, .28)
}

.sun-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.float-chip {
    position: absolute;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 14px 34px rgba(67, 32, 44, .18);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 11px;
    font-weight: 700;
    font-size: .9rem;
    animation: bob 5s ease-in-out infinite
}

@keyframes bob {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-12px)
    }
}

.float-chip .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #3DBE78;
    box-shadow: 0 0 0 0 rgba(61, 190, 120, .5);
    animation: pl 2s infinite
}

@keyframes pl {
    50% {
        box-shadow: 0 0 0 8px rgba(61, 190, 120, 0)
    }
}

.chip-a {
    top: 14%;
    left: 0
}

.chip-b {
    bottom: 22%;
    right: 0;
    animation-delay: 1.4s
}

.chip-b .eq {
    display: flex;
    align-items: flex-end;
    gap: 2.5px;
    height: 18px
}

.chip-b .eq i {
    width: 3.5px;
    border-radius: 2px;
    background: linear-gradient(to top, var(--coral), var(--gold));
    animation: eq 1.1s ease-in-out infinite
}

.chip-b .eq i:nth-child(2n) {
    animation-delay: .16s
}

.chip-b .eq i:nth-child(3n) {
    animation-delay: .32s
}

@keyframes eq {

    0%,
    100% {
        transform: scaleY(.3)
    }

    50% {
        transform: scaleY(1)
    }
}

/* palm silhouettes along hero base */
.palm-row {
    position: relative;
    height: 120px;
    margin-top: -50px;
    pointer-events: none
}

.palm-row svg {
    position: absolute;
    bottom: 0;
    fill: var(--plum);
    opacity: .92
}

@media(max-width:920px) {
    .hero-grid {
        grid-template-columns: 1fr
    }

    .sun-stage {
        padding-bottom: 40px
    }
}

/* ============ TICKER ============ */
.ticker {
    background: var(--plum);
    color: var(--cream);
    overflow: hidden;
    padding: 15px 0;
    border-top: 3px solid var(--gold);
    border-bottom: 3px solid var(--gold)
}

.ticker-track {
    display: flex;
    gap: 0;
    white-space: nowrap;
    animation: slide 26s linear infinite;
    width: max-content
}

@keyframes slide {
    to {
        transform: translateX(-50%)
    }
}

.ticker span {
    font-family: 'Young Serif', serif;
    font-size: 1.02rem;
    padding: 0 26px;
    display: inline-flex;
    align-items: center;
    gap: 26px
}

.ticker .star {
    color: var(--gold)
}

/* ============ SUNSET STAT STRIP ============ */
.strip {
    padding: 0;
}

.strip-in {
    background: linear-gradient(180deg, #FFD9A0 0%, var(--peach) 34%, var(--coral) 68%, var(--rose) 100%);
    border-radius: 0;
    padding: 4rem 0;
    position: relative;
    overflow: hidden
}


.stats {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    color: #fff
}

.stats .v {
    font-family: 'Young Serif', serif;
    font-size: clamp(1.9rem, 3.6vw, 2.8rem);
    text-shadow: 0 2px 14px rgba(122, 32, 38, .35)
}

.stats .k {
    font-size: .9rem;
    font-weight: 600;
    opacity: .95;
    margin-top: 5px
}

.strip-palms {
    display: block;
    width: 100%;
    margin-bottom: -2px
}

@media(max-width:760px) {
    .stats {
        grid-template-columns: 1fr;
    }
}

/* ============ ARCH GALLERY ============ */
.arches {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 30px;
}
.arches.second{
    margin-top: 4rem ;
}
@media(min-width:761px) {
    .arches.second .arch-card{
        order: 2;
    }
}

.arches h3 {
    font-size: 2rem;
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.arches ul {
    list-style-type: none;
    margin: 0 0 2rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.arches ul li {
    display: flex;
}

.arch-card {
    text-align: center
}

.arch {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    aspect-ratio: 1/1;
    box-shadow: 0 24px 50px rgba(67, 32, 44, .2)
}

.arch img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s
}

.arch-card:hover .arch img {
    transform: scale(1.06)
}

.arch::after {
    content: "";
    position: absolute;
    inset: 10px;
    border: 2px solid rgba(255, 246, 233, .85);
    border-radius: 14px;
    pointer-events: none
}

.arch-card .plaque {
    display: inline-block;
    background: #fff;
    border: 2px solid var(--plum);
    border-radius: 999px;
    padding: 10px 22px;
    font-weight: 700;
    font-size: .92rem;
    margin-top: -24px;
    position: relative;
    box-shadow: 0 8px 18px rgba(67, 32, 44, .12)
}

.arch-card .sub {
    font-size: .88rem;
    opacity: .7;
    margin-top: 10px;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto
}

@media(max-width:860px) {
    .arches {
        grid-template-columns: 1fr;
        max-width: 380px;
        margin-left: auto;
        margin-right: auto
    }
}

/* ============ FREEWAY EXITS (unique) ============ */
.freeway {
    position: relative;
    max-width: 840px;
    margin: 60px auto 0
}

.road {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 14px;
    transform: translateX(-50%);
    background: var(--plum);
    border-radius: 8px
}

.road::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 10px;
    bottom: 10px;
    width: 3px;
    transform: translateX(-50%);
    background: repeating-linear-gradient(to bottom, var(--gold) 0 26px, transparent 26px 52px)
}

.exit {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
    margin-bottom: 58px;
    position: relative
}

.exit:last-child {
    margin-bottom: 0
}

.exit-sign {
    background: var(--green);
    color: #fff;
    border: 5px solid #fff;
    outline: 3px solid var(--green);
    border-radius: 16px;
    padding: 22px 26px;
    box-shadow: 0 18px 38px rgba(30, 122, 79, .3);
    max-width: 360px;
    position: relative
}

.exit-sign .tab {
    position: absolute;
    top: -21px;
    left: 24px;
    background: var(--green);
    border: 3px solid #fff;
    border-radius: 8px;
    padding: 3px 13px;
    font-weight: 800;
    font-size: .74rem;
    letter-spacing: .12em
}

.exit-sign h3 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: .01em
}

.exit-sign p {
    font-size: .92rem;
    opacity: .94;
    margin-top: 7px
}

.exit:nth-child(odd) .exit-sign {
    justify-self: end;
    margin-right: 58px
}

.exit:nth-child(even) .exit-sign {
    grid-column: 2;
    justify-self: start;
    margin-left: 58px
}

.mile {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border: 3px solid var(--plum);
    width: 46px;
    height: 46px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--ember);
    box-shadow: 0 8px 18px rgba(67, 32, 44, .15);
    z-index: 2
}

@media(max-width:720px) {
    .road {
        left: 24px
    }

    .exit {
        grid-template-columns: 1fr
    }

    .exit .exit-sign,
    .exit:nth-child(even) .exit-sign {
        grid-column: 1;
        justify-self: start;
        margin: 0 0 0 64px
    }

    .mile {
        left: 24px
    }
    .nav-call{
        display: none;
    }
}

/* ============ POSTCARDS (unique) ============ */
.postcards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 54px
}

.postcard {
    background: #fff;
    border-radius: 12px;
    padding: 18px;
    box-shadow: 0 18px 40px rgba(67, 32, 44, .16);
    transform: rotate(-1.6deg);
    transition: transform .3s;
    position: relative
}

.postcard:nth-child(2) {
    transform: rotate(1.4deg)
}

.postcard:nth-child(3) {
    transform: rotate(-.8deg)
}

.postcard:hover {
    transform: rotate(0) translateY(-8px)
}

.postcard::before {
    content: "";
    position: absolute;
    inset: 8px;
    border: 3px solid transparent;
    border-image: repeating-linear-gradient(45deg, var(--rose) 0 12px, #fff 12px 22px, #3F6BB5 22px 34px, #fff 34px 44px) 3;
    pointer-events: none;
    border-radius: 6px
}

.pc-img {
    height: 170px;
    border-radius: 6px;
    overflow: hidden;
    margin: 10px;
    position: relative
}

.pc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.pc-img .greet {
    position: absolute;
    left: 10px;
    bottom: 8px;
    font-family: 'Caveat', cursive;
    font-size: 1.7rem;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, .55);
    line-height: 1
}

.pc-body {
    padding: 8px 14px 14px;
}

.pc-body p {
    font-size: 1.25rem;
    line-height: 1.25;
    margin: 0 0 1rem;
    color: #5A3A46;
}

.stamp {
    min-width: 62px;
    width: 62px;
    height: 74px;
    border: 2px dashed var(--ember);
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: var(--ember);
    font-size: .6rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-align: center;
    position: relative;
    background: var(--sand)
}

.stamp .sun-mini2 {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, var(--gold), var(--coral))
}

.postmark {
    position: absolute;
    top: 14px;
    right: 84px;
    width: 58px;
    height: 58px;
    border: 2px solid rgba(67, 32, 44, .35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .52rem;
    font-weight: 800;
    letter-spacing: .06em;
    color: rgba(67, 32, 44, .45);
    transform: rotate(-12deg);
    text-align: center;
    line-height: 1.3
}

@media(max-width:900px) {
    .postcards {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto
    }
}

/* ============ SAFETY ============ */
.safety {
    background: var(--sand);
    border-radius: 34px;
    padding: 70px 6%;
    margin-top: 20px
}

.safe-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-top: 44px
}

.safe-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px 28px;
    border-bottom: 5px solid var(--gold)
}

.safe-card .ic {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, var(--gold), var(--coral));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px
}

.safe-card .ic svg {
    width: 24px;
    height: 24px;
    stroke: #fff
}

.safe-card h3 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.08rem;
    margin-bottom: 8px
}

.safe-card p {
    font-size: .92rem;
    opacity: .78
}

.eeat {
    margin-top: 26px;
    font-size: .9rem;
    opacity: .78;
    text-align: center
}

.eeat b {
    color: var(--ember)
}

@media(max-width:860px) {
    .safe-grid {
        grid-template-columns: 1fr
    }
}

/* ============ FAQ ============ */
.faq {
    max-width: 800px;
    margin: 48px auto 0
}

details {
    background: #fff;
    border: 2px solid rgba(67, 32, 44, .12);
    border-radius: 18px;
    margin-bottom: 14px;
    overflow: hidden;
    transition: border-color .2s
}

details[open] {
    border-color: var(--gold)
}

summary {
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 22px 26px;
    font-weight: 700;
    font-size: 1.04rem;
    min-height: 48px
}

summary::-webkit-details-marker {
    display: none
}

summary::after {
    content: "☀";
    color: var(--gold);
    font-size: 1.2rem;
    transition: transform .3s
}

details[open] summary::after {
    transform: rotate(180deg) scale(1.2)
}

details .ans {
    padding: 0 26px 24px;
    opacity: .8;
    font-size: .97rem;
    max-width: 660px
}

.updated {
    text-align: center;
    margin-top: 26px;
    font-size: .78rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    opacity: .55;
    font-weight: 700
}

/* ============ FINAL CTA ============ */
.final {
    padding: 0 0 100px
}

.final-card {
    position: relative;
    border-radius: 34px;
    overflow: hidden;
    min-height: 430px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center
}

.final-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.final-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(67, 32, 44, .25), rgba(67, 32, 44, .72))
}

.final-in {
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 60px 24px
}

.final-in h2 {
    font-size: clamp(2.1rem, 4.6vw, 3.4rem)
}

.final-in .phone-xl {
    color: var(--gold);
    margin: 18px 0 26px;
    display: block
}

footer {
    padding: 0 0 46px;
    font-size: .88rem
}

.foot {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    opacity: .7
}

.foot a {
    margin-left: 18px;
    text-decoration: none
}

.foot a:hover {
    color: var(--ember)
}

.legal {
    margin-top: 12px;
    font-size: .78rem;
    opacity: .5
}

.sec-head {
    max-width: 900px;
    margin-bottom: 3rem;
}

.sec-head h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-top: 14px
}

.sec-head p {
    opacity: .78;
    margin-top: 14px;
    font-size: 1.04rem
}

.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto
}