/* =============================================================================
   TINYLAND — Static Site Stylesheet
   Fredoka One + Nunito · Warm palette · Mobile-first · No frameworks
   ============================================================================= */

/* ─── Design Tokens ──────────────────────────────────────────────────────────── */
:root {
    --cream:        #FFF8F0;
    --cream-dark:   #FFF0E0;
    --peach:        #FFCBA4;
    --peach-dark:   #F4A96A;
    --coral:        #E8705A;
    --coral-dark:   #C9503A;
    --sage:         #A8C5A0;
    --sage-dark:    #7DAF74;
    --sky:          #A8D4E6;
    --sky-dark:     #6FBAD6;
    --yellow:       #FFE082;
    --brown:        #5C3D2E;
    --brown-light:  #8B6355;
    --brown-xlight: #B89080;
    --white:        #FFFFFF;

    --font-display: 'Fredoka One', 'Nunito', cursive;
    --font-body:    'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;

    --sp-1:  0.25rem;
    --sp-2:  0.5rem;
    --sp-3:  0.75rem;
    --sp-4:  1rem;
    --sp-5:  1.25rem;
    --sp-6:  1.5rem;
    --sp-8:  2rem;
    --sp-10: 2.5rem;
    --sp-12: 3rem;
    --sp-16: 4rem;

    --radius-sm:   10px;
    --radius-md:   16px;
    --radius-lg:   24px;
    --radius-xl:   32px;
    --radius-full: 9999px;

    --shadow-soft:  0 8px 30px rgba(92, 61, 46, 0.10);
    --shadow-card:  0 4px 20px rgba(92, 61, 46, 0.12);
    --shadow-hover: 0 20px 50px rgba(92, 61, 46, 0.18);

    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
    --dur:         0.3s;

    --container-max: 1160px;
    --nav-h:         72px;
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--nav-h) + 12px);
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    background-color: var(--cream);
    color: var(--brown);
    font-size: 17px;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--coral); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--coral-dark); }
ul { list-style: none; }
button { font: inherit; cursor: pointer; }

h1, h2, h3, h4 {
    font-family: var(--font-display);
    line-height: 1.2;
    color: var(--brown);
}

/* ─── Container ──────────────────────────────────────────────────────────────── */
.container {
    max-width: var(--container-max);
    margin-inline: auto;
    padding-inline: clamp(1rem, 5vw, 1.5rem);
}

/* ─── Section atoms ──────────────────────────────────────────────────────────── */
.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--coral);
    background: rgba(232, 112, 90, 0.10);
    padding: 5px 14px;
    border-radius: var(--radius-full);
    margin-bottom: 14px;
}

.section-title {
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    margin-bottom: 16px;
    color: var(--brown);
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--brown-light);
    line-height: 1.75;
}

/* ─── Buttons ────────────────────────────────────────────────────────────────── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--coral);
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 1rem;
    padding: 14px 28px;
    min-height: 52px;
    border-radius: var(--radius-full);
    border: none;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(232, 112, 90, 0.40);
    transition: transform var(--dur) var(--ease-spring), box-shadow var(--dur), background 0.2s;
    white-space: nowrap;
}
.btn-primary:hover, .btn-primary:focus-visible {
    background: var(--coral-dark);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(232, 112, 90, 0.45);
}
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--white);
    color: var(--brown);
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 1rem;
    padding: 14px 28px;
    min-height: 52px;
    border-radius: var(--radius-full);
    border: none;
    text-decoration: none;
    box-shadow: var(--shadow-soft);
    transition: transform var(--dur) var(--ease-spring), box-shadow var(--dur);
}
.btn-secondary:hover, .btn-secondary:focus-visible {
    color: var(--brown);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(92, 61, 46, 0.15);
}

.btn-sm {
    font-size: 0.85rem;
    padding: 10px 20px;
    min-height: 40px;
}

/* ─── Scroll reveal ──────────────────────────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


/* =============================================================================
   HEADER
============================================================================= */

#site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    height: var(--nav-h);
    padding-inline: clamp(1rem, 5vw, 1.5rem);
    transition: background 0.3s var(--ease-out), box-shadow 0.3s;
}

#site-header.scrolled {
    background: rgba(255, 248, 240, 0.97);
    box-shadow: 0 2px 20px rgba(92, 61, 46, 0.10);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.nav-inner {
    max-width: var(--container-max);
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: var(--sp-6);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--brown);
    text-decoration: none;
    flex-shrink: 0;
    transition: opacity 0.2s;
}
.nav-logo:hover { color: var(--brown); opacity: 0.8; }

.nav-logo .logo-icon {
    width: 42px; height: 42px;
    background: var(--peach);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 2px 8px rgba(244, 169, 106, 0.4);
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    flex: 1;
    justify-content: center;
}

.nav-links a {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--brown);
    text-decoration: none;
    min-height: 44px;
    display: flex;
    align-items: center;
    position: relative;
    transition: color 0.2s;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 6px; left: 0; right: 0;
    height: 2px;
    background: var(--coral);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s var(--ease-spring);
}
.nav-links a:hover { color: var(--coral); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
    background: var(--coral) !important;
    color: var(--white) !important;
    padding: 10px 22px !important;
    min-height: 44px !important;
    border-radius: var(--radius-full) !important;
    font-weight: 800 !important;
    box-shadow: 0 4px 14px rgba(232, 112, 90, 0.35) !important;
    transition: background 0.2s, transform var(--dur) var(--ease-spring) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
    background: var(--coral-dark) !important;
    color: var(--white) !important;
    transform: translateY(-2px);
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    transition: background 0.2s;
    border: none;
    background: none;
    cursor: pointer;
}
.nav-hamburger:hover { background: rgba(92, 61, 46, 0.07); }
.nav-hamburger span {
    display: block;
    width: 24px; height: 2.5px;
    background: var(--brown);
    border-radius: 2px;
    transition: transform 0.3s var(--ease-spring), opacity 0.2s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }


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

#hero {
    min-height: 100svh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: var(--nav-h);
    background: linear-gradient(160deg, #FFF8F0 0%, #FFF0E0 50%, #FFE8D0 100%);
}

.hero-blobs {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(64px);
    opacity: 0.45;
}

.blob-1 { width: 520px; height: 520px; background: var(--peach);  top: -120px; right: -100px; animation: bfloat1 9s ease-in-out infinite; }
.blob-2 { width: 320px; height: 320px; background: var(--sky);    bottom: 40px; left: -80px;  animation: bfloat2 11s ease-in-out infinite; }
.blob-3 { width: 240px; height: 240px; background: var(--yellow); top: 38%;    right: 28%;   animation: bfloat3 7s ease-in-out infinite; }
.blob-4 { width: 200px; height: 200px; background: var(--sage);   bottom: 18%; right: 8%;    animation: bfloat2 10s ease-in-out infinite 2s; }

@keyframes bfloat1 { 0%,100%{ transform: translate(0,0) scale(1); } 50%{ transform: translate(-20px,18px) scale(1.04); } }
@keyframes bfloat2 { 0%,100%{ transform: translate(0,0) scale(1); } 50%{ transform: translate(14px,-14px) scale(1.03); } }
@keyframes bfloat3 { 0%,100%{ transform: translate(0,0) scale(1); } 50%{ transform: translate(-8px,10px) scale(1.07); } }

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
    width: 100%;
    max-width: var(--container-max);
    margin-inline: auto;
    padding: clamp(3rem, 8vw, 5rem) clamp(1rem, 5vw, 1.5rem);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--sage-dark);
    box-shadow: var(--shadow-soft);
    margin-bottom: 24px;
    animation: fadeUp 0.6s ease both;
}

.hero-badge .dot {
    width: 8px; height: 8px;
    background: var(--sage-dark);
    border-radius: 50%;
    flex-shrink: 0;
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse { 0%,100%{ transform: scale(1); opacity: 1; } 50%{ transform: scale(1.5); opacity: 0.6; } }

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 5.5vw, 4.2rem);
    line-height: 1.1;
    color: var(--brown);
    margin-bottom: 20px;
    animation: fadeUp 0.6s 0.1s ease both;
}

.hero-title .highlight {
    color: var(--coral);
    position: relative;
    display: inline-block;
}
.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 3px; left: 0; right: 0;
    height: 7px;
    background: var(--yellow);
    border-radius: 4px;
    z-index: -1;
    transform: skewX(-2deg);
    opacity: 0.85;
}

.hero-desc {
    font-size: clamp(1rem, 2vw, 1.1rem);
    color: var(--brown-light);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 460px;
    animation: fadeUp 0.6s 0.2s ease both;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeUp 0.6s 0.3s ease both;
}

.hero-visual {
    position: relative;
    animation: fadeUp 0.7s 0.2s ease both;
}

.hero-card-main {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: 0 20px 60px rgba(92, 61, 46, 0.14);
    position: relative;
    overflow: hidden;
}
.hero-card-main::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--coral), var(--peach-dark), var(--yellow), var(--sage));
}

.hero-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1.5px dashed var(--peach);
}
.hero-card-header span {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--brown);
}

.hero-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.hero-activity-item {
    border-radius: var(--radius-md);
    padding: 14px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    cursor: default;
    transition: transform var(--dur) var(--ease-spring);
}
.hero-activity-item:hover { transform: scale(1.07) rotate(-2deg); }

.act-icon  { font-size: 1.75rem; line-height: 1; }
.act-label { font-family: var(--font-body); font-weight: 800; font-size: 0.72rem; color: var(--brown); text-align: center; }

.hero-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 16px;
    border-top: 1.5px dashed var(--peach);
    font-weight: 700;
    font-size: 0.82rem;
    color: var(--brown-light);
    flex-wrap: wrap;
}

.hero-float-badge {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    box-shadow: 0 8px 24px rgba(92, 61, 46, 0.14);
    font-weight: 800;
    font-size: 0.82rem;
    color: var(--brown);
    display: flex;
    align-items: center;
    gap: 8px;
    animation: bfloat2 5s ease-in-out infinite;
    white-space: nowrap;
}
.hero-float-1 { top: -18px;  right: -16px; animation-delay: 0s; }
.hero-float-2 { bottom: -18px; left: -16px; animation-delay: 1.5s; }

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}


/* =============================================================================
   ABOUT
============================================================================= */

#about {
    padding-block: clamp(4rem, 10vw, 7rem);
    position: relative;
    overflow: hidden;
}

.about-shape {
    position: absolute;
    top: -80px; right: -120px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(168, 197, 160, 0.22) 0%, transparent 70%);
    pointer-events: none;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 6vw, 5rem);
    align-items: center;
}

.about-media { position: relative; }

.about-img-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4 / 5;
    box-shadow: 0 20px 60px rgba(92, 61, 46, 0.14);
    background: linear-gradient(145deg, var(--peach) 0%, var(--sage) 100%);
}
.about-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.5s var(--ease-out);
}
.about-media:hover .about-img-wrap img { transform: scale(1.03); }

.about-float-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    box-shadow: var(--shadow-card);
    font-weight: 800;
    font-size: 0.88rem;
    color: var(--brown);
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}
.about-float-card strong { display: block; font-size: 0.88rem; }
.about-float-card small  { display: block; font-size: 0.72rem; color: var(--brown-light); font-weight: 600; }

.about-float-card.card-1 { bottom: -18px; right: -18px; animation: bfloat2 6s ease-in-out infinite; }
.about-float-card.card-2 { top: 24px; left: -18px; animation: bfloat3 7s ease-in-out infinite 1s; }

.afc-icon {
    width: 36px; height: 36px;
    border-radius: 10px;
    background: #E8F5E9;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.card-1 .afc-icon { background: #FFF0E8; }

.about-body {
    font-size: 1.05rem;
    color: var(--brown-light);
    line-height: 1.8;
    margin-bottom: var(--sp-8);
}
.about-body p { margin-bottom: var(--sp-4); }
.about-body p:last-child { margin-bottom: 0; }

.about-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: var(--sp-8);
}

.about-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 18px 20px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    transition: transform var(--dur) var(--ease-spring);
}
.about-feature:hover { transform: translateX(6px); }

.feat-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: var(--feat-bg, #FFF0E8);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.feat-text h4 { font-family: var(--font-body); font-weight: 800; font-size: 0.98rem; margin-bottom: 4px; color: var(--brown); }
.feat-text p  { font-size: 0.88rem; color: var(--brown-light); line-height: 1.6; }


/* =============================================================================
   GALLERY
============================================================================= */

#gallery {
    padding-block: clamp(4rem, 10vw, 7rem);
    background: linear-gradient(180deg, var(--cream) 0%, #FFF4E8 100%);
}

.gallery-header {
    text-align: center;
    margin-bottom: 56px;
}
.gallery-header .section-subtitle { max-width: 480px; margin-inline: auto; }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.gallery-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    cursor: pointer;
    position: relative;
    transition: transform var(--dur) var(--ease-spring), box-shadow var(--dur);
}
.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}
.gallery-item:first-child { grid-column: span 2; }

.gallery-thumb {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    position: relative;
    background: var(--peach);
}
.gallery-item:not(:first-child) .gallery-thumb { aspect-ratio: 3 / 4; }

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s var(--ease-out);
}
.gallery-item:hover .gallery-thumb img { transform: scale(1.06); }

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(92,61,46,0.55) 0%, rgba(244,169,106,0.15) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s var(--ease-out);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }


/* =============================================================================
   CONTACT
============================================================================= */

#contact {
    padding-block: clamp(4rem, 10vw, 7rem);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: clamp(2rem, 6vw, 5rem);
    align-items: start;
}

.contact-info .section-subtitle { margin-bottom: 36px; max-width: 360px; }

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    text-decoration: none;
    color: var(--brown);
    transition: transform var(--dur) var(--ease-spring);
}
.contact-item:hover { transform: translateX(6px); color: var(--brown); }

.ci-icon {
    width: 46px; height: 46px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}
.ci-phone    { background: #FFF0E8; }
.ci-location { background: #E8F5E9; }
.ci-hours    { background: #E3F2FD; }

.ci-text span {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.10em;
    font-weight: 800;
    color: var(--brown-xlight);
    margin-bottom: 2px;
}
.ci-text strong { font-weight: 800; font-size: 0.95rem; color: var(--brown); }

.license-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: rgba(168, 197, 160, 0.18);
    border: 1.5px solid rgba(125, 175, 116, 0.30);
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--brown-light);
}
.lb-icon { font-size: 1.1rem; }

.contact-form-wrap {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: clamp(1.5rem, 4vw, 2.5rem);
    box-shadow: 0 20px 60px rgba(92, 61, 46, 0.10);
    position: relative;
    overflow: hidden;
}

.form-top-bar {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--coral), var(--peach-dark), var(--yellow), var(--sage));
}

.contact-form-wrap h3 { font-size: 1.5rem; margin-bottom: 6px; margin-top: 4px; }
.contact-form-wrap > p { color: var(--brown-light); font-size: 0.9rem; margin-bottom: 24px; }

#form-message {
    display: none;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    margin-bottom: 18px;
    font-weight: 700;
    font-size: 0.9rem;
}
#form-message.success {
    background: rgba(125, 175, 116, 0.15);
    color: var(--sage-dark);
    border: 1.5px solid rgba(125, 175, 116, 0.35);
}
#form-message.error {
    background: rgba(232, 112, 90, 0.10);
    color: var(--coral-dark);
    border: 1.5px solid rgba(232, 112, 90, 0.25);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group { margin-bottom: 18px; }
.form-group label {
    display: block;
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--brown-light);
    margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    border: 2px solid #EEE5DC;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--brown);
    background: var(--cream);
    outline: none;
    appearance: none;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--coral);
    box-shadow: 0 0 0 3px rgba(232, 112, 90, 0.12);
    background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 110px; }

.form-submit {
    width: 100%;
    padding: 15px;
    background: var(--coral);
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 1rem;
    border: none;
    border-radius: var(--radius-full);
    box-shadow: 0 6px 20px rgba(232, 112, 90, 0.40);
    transition: transform var(--dur) var(--ease-spring), background 0.2s, box-shadow 0.2s;
}
.form-submit:hover {
    background: var(--coral-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(232, 112, 90, 0.45);
}
.form-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }


/* =============================================================================
   FOOTER
============================================================================= */

#site-footer {
    background: var(--brown);
    color: rgba(255, 248, 240, 0.75);
    padding-top: clamp(2.5rem, 6vw, 3.75rem);
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: clamp(2rem, 5vw, 3.75rem);
    margin-bottom: 3rem;
    max-width: var(--container-max);
    margin-inline: auto;
    padding-inline: clamp(1rem, 5vw, 1.5rem);
}

.footer-brand .nav-logo { color: var(--cream); margin-bottom: 14px; }
.footer-brand .nav-logo:hover { opacity: 0.8; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; max-width: 280px; }

.footer-col h4 {
    color: var(--cream);
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { color: rgba(255, 248, 240, 0.60); font-size: 0.9rem; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--peach); }

.footer-bottom {
    max-width: var(--container-max);
    margin-inline: auto;
    padding-inline: clamp(1rem, 5vw, 1.5rem);
    padding-block: 1.5rem;
    border-top: 1px solid rgba(255, 248, 240, 0.10);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 0.85rem;
}
.footer-bottom p { color: rgba(255, 248, 240, 0.40); }


/* =============================================================================
   RESPONSIVE
============================================================================= */

@media (max-width: 1024px) {
    .about-grid   { gap: 2.5rem; }
    .contact-grid { gap: 2.5rem; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-item:first-child { grid-column: span 1; }
    .gallery-thumb,
    .gallery-item:not(:first-child) .gallery-thumb { aspect-ratio: 4 / 3; }
}

@media (max-width: 900px) {
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: var(--nav-h); left: 0; right: 0;
        background: rgba(255, 248, 240, 0.98);
        padding: 24px clamp(1rem, 5vw, 1.5rem);
        gap: 6px;
        box-shadow: 0 8px 30px rgba(92, 61, 46, 0.12);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        z-index: 99;
    }
    .nav-links.open a {
        padding: 12px 16px;
        border-radius: var(--radius-md);
    }
    .nav-links.open a:hover { background: rgba(232, 112, 90, 0.08); }
    .nav-links.open a::after { display: none; }
    .nav-cta { display: inline-flex !important; align-self: flex-start; }
}

@media (max-width: 768px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        padding-block: 3.5rem;
    }
    .hero-desc    { margin-inline: auto; }
    .hero-actions { justify-content: center; }
    .hero-visual  { display: none; }

    .about-grid   { grid-template-columns: 1fr; }
    .about-media  { display: none; }

    .gallery-grid { grid-template-columns: 1fr; gap: 16px; }
    .gallery-thumb,
    .gallery-item:not(:first-child) .gallery-thumb { aspect-ratio: 4 / 3; }

    .contact-grid { grid-template-columns: 1fr; }
    .contact-info .section-subtitle { max-width: 100%; }

    .footer-inner  { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 6px; }

    .form-row { grid-template-columns: 1fr; }

    .hero-actions .btn-primary,
    .hero-actions .btn-secondary { width: 100%; }
}

@media (max-width: 480px) {
    .about-content .btn-primary { width: 100%; justify-content: center; }
}


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

:focus-visible {
    outline: 2px solid var(--coral);
    outline-offset: 3px;
    border-radius: 3px;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    html  { scroll-behavior: auto; }
    .reveal { opacity: 1; transform: none; }
}
