
/* ─── Variables ─── */
:root {
    --peach:    #F9AD88;
    --sage:     #BACCBE;
    --cream:    #FADAB9;
    --charcoal: #404041;
    --bg:       #FAF7F3;
    --bg-warm:  #FEFCF9;
    --border:   rgba(64,64,65,.1);
    --serif:    'GFS Didot', 'Didot', 'Bodoni MT', Georgia, serif;
    --sans:     'Raleway', 'Brandon Grotesque', sans-serif;
    --ease:     cubic-bezier(.25,.46,.45,.94);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
    background: var(--bg);
    color: var(--charcoal);
    font-family: var(--sans);
    font-weight: 300;
    line-height: 1.75;
    overflow-x: hidden;
}

/* Grain overlay */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: .028;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }

/* ─── Utilities ─── */
.label {
    font-family: var(--sans);
    font-weight: 400;
    font-size: 1rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    opacity: .55;
}

.rule {
    display: block;
    width: 36px;
    height: 1px;
    background: var(--peach);
}

.btn {
    display: inline-block;
    font-family: var(--sans);
    font-weight: 400;
    font-size: 1rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    padding: 14px 34px;
    transition: background .25s var(--ease), color .25s var(--ease), transform .2s var(--ease);
    cursor: pointer;
    border: none;
}

.btn-dark {
    background: var(--charcoal);
    color: var(--bg);
}
.btn-dark:hover {
    background: var(--peach);
    color: var(--charcoal);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--charcoal);
    border-bottom: 1px solid rgba(64,64,65,.3);
    padding: 14px 0;
    letter-spacing: .16em;
}
.btn-ghost:hover { border-color: var(--charcoal); }

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .75s var(--ease), transform .75s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .1s; }
.reveal.d2 { transition-delay: .2s; }
.reveal.d3 { transition-delay: .32s; }
.reveal.d4 { transition-delay: .44s; }
.reveal.d5 { transition-delay: .56s; }

/* ─── NAV ─── */
nav {
    position: fixed;
    inset: 0 0 auto;
    z-index: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 48px 64px;
    transition: padding .4s var(--ease), background .4s var(--ease), box-shadow .4s var(--ease), backdrop-filter .4s;
}
nav.stuck {
    padding: 38px 64px;
    background: rgba(250,247,243,.88);
    backdrop-filter: blur(14px);
    box-shadow: 0 1px 0 var(--border);
}

.nav-logo { height: 69px; width: auto; flex-shrink: 0; }

.nav-brand {
    display: flex;
    align-items: flex-end;
    gap: 24px;
    text-decoration: none;
}

.nav-brand-divider {
    width: 1px;
    height: 45px;
    background: var(--charcoal);
    opacity: .15;
    flex-shrink: 0;
}

.nav-brand-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
    line-height: 1;
}

.nav-brand-name {
    font-family: var(--serif);
    font-size: 1.575rem;
    font-weight: 400;
    letter-spacing: .01em;
    color: var(--charcoal);
}

.nav-brand-sub {
    font-family: var(--sans);
    font-size: 1.125rem;
    font-weight: 400;
    letter-spacing: .22em;
    /* text-transform: uppercase; */
    color: var(--charcoal);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 42px;
    list-style: none;
}
.nav-links li a {
    font-family: var(--sans);
    font-weight: 300;
    font-size: 1rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    /* opacity: .65; */
    /* transition: opacity .2s; */
}
.nav-links li a:hover { opacity: 1; }

.nav-cta {
    background: var(--charcoal);
    color: var(--bg) !important;
    opacity: 1 !important;
    padding: 10px 24px;
    font-weight: 400 !important;
    transition: background .22s !important;
}
.nav-cta:hover { background: var(--peach) !important; color: var(--charcoal) !important; }

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}
.nav-hamburger span {
    display: block;
    width: 22px;
    height: 1px;
    background: var(--charcoal);
    transition: transform .3s, opacity .3s;
}

/* ─── HERO ─── */
.hero {
    position: relative;
    min-height: 100svh;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    overflow: hidden;
}

.hero-content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 160px 64px 100px 64px;
    z-index: 2;
}

/* Soft radial glow on content side */
.hero-glow {
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(249,173,136,.18) 0%, transparent 68%);
    top: 50%;
    left: -15%;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 0;
}

/* Sage blob bottom-left of content */
.hero-blob-2 {
    position: absolute;
    width: 260px;
    height: 180px;
    border-radius: 50% 60% 40% 50% / 60% 40% 50% 50%;
    background: var(--sage);
    opacity: .18;
    bottom: 40px;
    left: -40px;
    pointer-events: none;
}

.hero-logo-wrap {
    opacity: 0;
    animation: heroLogoIn 1s var(--ease) .05s forwards;
    margin-bottom: 32px;
}
.hero-logo-img {
    height: 96px;
    width: auto;
    filter: drop-shadow(0 6px 20px rgba(249,173,136,.25));
}

.hero-eyebrow {
    opacity: 0;
    animation: fadeUp .8s var(--ease) .3s forwards;
    margin-bottom: 20px;
}

.hero-title {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(2.6rem, 4.2vw, 5.2rem);
    line-height: 1.08;
    letter-spacing: -.01em;
    color: var(--charcoal);
    opacity: 0;
    animation: fadeUp .9s var(--ease) .5s forwards;
    margin-bottom: 26px;
}

.hero-title em {
    font-style: italic;
    color: var(--peach);
}

.hero-sub {
    font-family: var(--sans);
    font-weight: 300;
    font-size: 1rem;
    line-height: 1.88;
    letter-spacing: .03em;
    max-width: 380px;
    opacity: 0;
    animation: fadeUp .9s var(--ease) .68s forwards;
    animation-fill-mode: both;
    margin-bottom: 44px;
    color: var(--charcoal);
    filter: opacity(.62);
}

.hero-actions {
    display: flex;
    gap: 20px;
    align-items: center;
    opacity: 0;
    animation: fadeUp .9s var(--ease) .86s forwards;
}

/* Photo right column */
.hero-photo-side {
    position: relative;
    overflow: hidden;
}
.hero-photo-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    display: block;
    opacity: 0;
    animation: fadeIn 1.2s var(--ease) .2s forwards;
}
/* Left-edge fade into page background */
.hero-photo-side::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
    linear-gradient(to right, var(--bg) 0%, transparent 28%),
    linear-gradient(to bottom, rgba(250,247,243,.82) 0%, transparent 22%);
    z-index: 1;
    pointer-events: none;
}
/* Subtle warm tint over photo */
.hero-photo-side::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(250, 218, 185, 0.07);
    z-index: 1;
    pointer-events: none;
}

.hero-scroll {
    position: absolute;
    bottom: 36px;
    left: 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0;
    animation: fadeIn 1.2s var(--ease) 1.3s forwards;
    z-index: 3;
}
.hero-scroll-line {
    width: 1px;
    height: 44px;
    background: var(--charcoal);
    opacity: .25;
    animation: scrollPulse 2.2s ease-in-out infinite;
}

/* ─── MARQUEE STRIP ─── */
.marquee-strip {
    background: var(--charcoal);
    color: var(--cream);
    overflow: hidden;
    padding: 18px 0;
    border-top: 1px solid rgba(255,255,255,.06);
}
.marquee-track {
    display: flex;
    gap: 0;
    animation: marquee 28s linear infinite;
    white-space: nowrap;
}
.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 28px;
    padding: 0 28px;
    font-family: var(--sans);
    font-weight: 300;
    font-size: 1rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    opacity: .55;
    flex-shrink: 0;
}
.marquee-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--peach);
    opacity: 1;
    flex-shrink: 0;
}

/* ─── INTRO ─── */
.intro {
    background: var(--charcoal);
    color: var(--bg);
    padding: 100px 64px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0 72px;
    align-items: center;
}
.intro-divider {
    width: 1px;
    height: 88px;
    background: rgba(255,255,255,.12);
}
.intro h2 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(2.1rem, 3.8vw, 3.6rem);
    line-height: 1.2;
}
.intro h2 em { font-style: italic; color: var(--cream); }
.intro p {
    font-size: 1rem;
    line-height: 1.95;
    opacity: .6;
}
.intro-label { color: var(--cream); margin-bottom: 18px; display: block; }

/* ─── EVENTS ─── */
.events-section {
    padding: 128px 64px;
}
.events-header {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 72px;
}
.events-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 10px;
    height: 520px;
}

/* ── Map side ── */
.events-map-side {
    position: relative;
    overflow: hidden;
    background: var(--sage);
}
.events-map-overlay {
    position: absolute;
    inset: 0;
    background: rgba(250,218,185,.1);
    pointer-events: none;
    z-index: 1;
}
.events-map-label {
    position: absolute;
    bottom: 28px;
    left: 28px;
    z-index: 2;
    background: var(--charcoal);
    color: var(--bg);
    padding: 20px 26px;
    font-family: var(--sans);
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.events-map-label-title {
    font-size: 1rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--peach);
    opacity: .9;
}
.events-map-label-areas {
    font-size: 1rem;
    letter-spacing: .04em;
    font-weight: 300;
    line-height: 1.7;
    opacity: .85;
}

/* ── Event types list ── */
.events-typelist {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 10px;
}
.etype-item {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 22px 24px;
    overflow: hidden;
    cursor: default;
    transition: transform .3s var(--ease);
}
.etype-item:hover { transform: translateY(-2px); }
.etype-item:nth-child(1) { background: linear-gradient(148deg, #f5d4b4 0%, #eec49a 100%); }
.etype-item:nth-child(2) { background: linear-gradient(148deg, var(--sage) 0%, #9ab5a0 100%); }
.etype-item:nth-child(3) { background: linear-gradient(148deg, var(--peach) 0%, #f0a880 100%); }
.etype-item:nth-child(4) { background: linear-gradient(148deg, var(--cream) 0%, #f5c9a0 100%); }
.etype-item:nth-child(5) { background: linear-gradient(148deg, #d8e6db 0%, var(--sage) 100%); }
.etype-item:nth-child(6) { background: linear-gradient(148deg, #f0c9a8 0%, var(--cream) 100%); }
.etype-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 20%, rgba(255,255,255,.28) 0%, transparent 60%);
}
.etype-name {
    font-family: var(--serif);
    font-size: 1rem;
    font-weight: 400;
    color: var(--charcoal);
    line-height: 1.2;
    position: relative;
    z-index: 1;
}
.etype-desc {
    font-family: var(--sans);
    font-size: 1rem;
    font-weight: 300;
    opacity: .6;
    line-height: 1.5;
    margin-top: 5px;
    position: relative;
    z-index: 1;
}

/* ─── HOW IT WORKS ─── */
.hiw {
    background: var(--bg-warm);
    padding: 128px 64px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.hiw-inner { max-width: 1200px; margin: 0 auto; }

.hiw-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 56px;
    margin-top: 72px;
}

.hiw-step {
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.hiw-step-num {
    font-family: var(--serif);
    font-size: 3.8rem;
    font-weight: 400;
    color: var(--peach);
    line-height: 1;
}
.hiw-step h3 {
    font-family: var(--serif);
    font-size: 1.35rem;
    font-weight: 400;
}
.hiw-step p {
    font-size: 1rem;
    opacity: .6;
    line-height: 1.95;
}

/* ─── INCLUDED ─── */
.included {
    padding: 128px 64px;
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 96px;
    align-items: center;
}

.included-text h2 {
    font-family: var(--serif);
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 28px;
}
.included-text h2 em { font-style: italic; }
.included-text > p {
    font-size: 1rem;
    opacity: .6;
    line-height: 1.95;
    margin-bottom: 44px;
}

.feature-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 32px;
}
.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    letter-spacing: .03em;
}
.feature-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--peach);
    flex-shrink: 0;
}

.included-visual {
    position: relative;
    height: 540px;
}
.iv-main {
    position: absolute;
    top: 0; left: 0;
    width: 78%;
    height: 78%;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(64,64,65,.14);
}
.iv-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    display: block;
}
.iv-accent {
    position: absolute;
    bottom: 0; right: 0;
    width: 52%;
    height: 50%;
    border-radius: 2px;
    overflow: hidden;
    transform: rotate(3deg);
    box-shadow: 0 12px 40px rgba(64,64,65,.14);
    outline: 4px solid var(--peach);
}
.iv-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right 70%;
    display: block;
}
.iv-badge {
    position: absolute;
    bottom: 44px;
    left: 24px;
    background: var(--peach);
    color: var(--charcoal);
    padding: 10px 22px;
    border-radius: 100px;
    font-family: var(--sans);
    font-size: 1rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    line-height: 1;
    white-space: nowrap;
}

/* ─── TESTIMONIAL ─── */
.testimonial {
    background: var(--cream);
    padding: 120px 64px;
    text-align: center;
    border-top: 1px solid rgba(249,173,136,.3);
}
.testimonial-inner {
    max-width: 760px;
    margin: 0 auto;
}
.testimonial-mark {
    font-family: var(--serif);
    font-size: 7rem;
    line-height: .55;
    color: var(--peach);
    opacity: .5;
    display: block;
    margin-bottom: 28px;
}
.testimonial blockquote {
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(1.4rem, 2.8vw, 2.2rem);
    font-weight: 400;
    line-height: 1.5;
    color: var(--charcoal);
    margin-bottom: 36px;
}
.testimonial-attr {
    font-family: var(--sans);
    font-size: 1rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    opacity: .5;
}
.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 52px;
}
.tdot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--charcoal);
    opacity: .15;
}
.tdot.active { opacity: .45; width: 22px; border-radius: 4px; }

/* ─── CONTACT ─── */
.contact-section {
    padding: 128px 64px;
    background: var(--cream);
}
.contact-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.45fr;
    gap: 96px;
    align-items: start;
}

.contact-info { }
.contact-info h2 {
    font-family: var(--serif);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 28px;
}
.contact-info > p {
    font-size: 1rem;
    opacity: .6;
    line-height: 1.95;
    margin-bottom: 52px;
}

.contact-details { display: flex; flex-direction: column; gap: 28px; }
.cd-item { display: flex; flex-direction: column; gap: 5px; }
.cd-item .label { margin-bottom: 3px; }
.cd-item span { font-size: 1rem; opacity: .75; }

.contact-form-box {
    background: var(--bg-warm);
    border: 1px solid var(--border);
    padding: 52px;
}
.cfb-head h3 {
    font-family: var(--serif);
    font-size: 1.7rem;
    font-weight: 400;
    margin-bottom: 6px;
}
.cfb-head p {
    font-size: 1rem;
    opacity: .5;
    margin-bottom: 36px;
    letter-spacing: .03em;
}

.google-form-frame {
    width: 100%;
    min-height: 700px;
    border: none;
    display: block;
}

/* Placeholder shown until iframe is added */
.form-placeholder {
    width: 100%;
    min-height: 460px;
    border: 1.5px dashed var(--border);
    background: var(--bg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 60px 40px;
    text-align: center;
}
.form-placeholder .label { font-size: 1rem; opacity: .4; }
.form-placeholder p { font-size: 1rem; opacity: .4; line-height: 1.8; max-width: 340px; }
.form-placeholder .icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 6px;
}

/* ─── FOOTER ─── */
footer {
    background: var(--charcoal);
    color: var(--bg);
    padding: 80px 64px 44px;
}
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 64px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    margin-bottom: 40px;
    gap: 40px;
}
.footer-logo img {
    height: 50px;
    width: auto;
}
.footer-tagline {
    font-size: 1rem;
    opacity: .35;
    margin-top: 14px;
    letter-spacing: .04em;
}
.footer-cols {
    display: flex;
    gap: 72px;
}
.footer-col {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.footer-col .label { color: var(--bg); margin-bottom: 6px; }
.footer-col a {
    font-size: 1rem;
    opacity: .4;
    transition: opacity .2s;
    letter-spacing: .03em;
}
.footer-col a:hover { opacity: .85; }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-copy { font-size: 1rem; opacity: .28; letter-spacing: .04em; }
.footer-social { display: flex; gap: 24px; }
.footer-social a {
    font-size: 1rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    opacity: .32;
    transition: opacity .2s;
}
.footer-social a:hover { opacity: .75; }

/* ─── Keyframes ─── */
@keyframes heroLogoIn {
    from { opacity: 0; transform: translateY(14px) scale(.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(26px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@keyframes scrollPulse {
    0%, 100% { transform: scaleY(1);   opacity: .25; }
    50%       { transform: scaleY(.55); opacity: .5;  }
}
@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
    .intro { grid-template-columns: 1fr; gap: 40px; }
    .intro-divider { display: none; }
    .events-grid { grid-template-columns: 1fr; height: auto; }
    .events-typelist { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(3, 1fr); }
    .etype-item { min-height: 120px; }
    .events-map-side { height: 56vw; }
    .hiw-grid { grid-template-columns: 1fr 1fr; }
    .included { grid-template-columns: 1fr; gap: 60px; }
    .included-visual { height: 360px; }
    .contact-inner { grid-template-columns: 1fr; gap: 60px; }
}

@media (max-width: 768px) {
    body { margin-top: 90px; }
    nav { padding: 22px 28px; }
    nav.stuck { padding: 16px 28px; }
    .nav-logo { height: 46px; }
    .nav-brand { gap: 16px; }
    .nav-brand-divider { height: 30px; }
    .nav-brand-name { font-size: 1.05rem; }
    .nav-brand-sub { font-size: 1rem; }
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }

    .hero { display: flex; flex-direction: column; min-height: 0; }
    .hero-content { display: contents; }
    .hero-text {
    order: 0;
    padding: 32px 28px 8px;
    position: relative;
    z-index: 2;
    border-bottom: 1px solid var(--peach);
    }
    .hero-photo-side { order: 1; height: 88vw; }
    .hero-photo-side::before { display: none; }
    .hero-scroll { display: none; }
    .hero-cta {
    order: 2;
    padding: 32px 28px 48px;
    }
    .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    }
    .hero-actions .btn {
    text-align: center;
    width: 100%;
    }
    .hero-actions .btn-dark {
    background: var(--peach);
    color: var(--charcoal);
    }
    .hero-actions .btn-dark:hover {
    background: var(--charcoal);
    color: var(--bg);
    }
    .hero-title { font-size: clamp(1.9rem, 6vw, 3rem); }
    .hero-sub { margin-bottom: 0; }
    .hero-sub { display: none; }
    .hero-eyebrow { letter-spacing: .1em; opacity: .45; }
    .hero-text { text-align: left; }

    .intro { padding: 72px 28px; }
    .events-section { padding: 80px 28px; }
    .events-map-side { height: 72vw; }

    .hiw { padding: 80px 28px; }
    .hiw-grid { grid-template-columns: 1fr; gap: 44px; }

    .included { padding: 80px 28px; gap: 48px; }
    .feature-list { grid-template-columns: 1fr; }
    .included-visual { height: 280px; }

    .testimonial { padding: 80px 28px; }

    .contact-section { padding: 80px 28px; }
    .contact-form-box { padding: 32px 24px; }

    footer { padding: 60px 28px 36px; }
    .footer-top { flex-direction: column; padding-bottom: 44px; }
    .footer-cols { flex-direction: column; gap: 36px; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}