/* ============================================
   TANNING LOUNGE — Puyallup
   Fresh, airy, forest green + off-white palette
   ============================================ */

/* --- RESET & BASE --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --green-900: #1A3A28;
    --green-800: #2D5A3D;
    --green-700: #3D7A52;
    --green-600: #4A8B5C;
    --green-500: #6BAF7E;
    --green-200: #B7D4B5;
    --green-100: #D6E8D0;
    --green-50:  #E8F5E4;
    --cream:     #F5F0E8;
    --cream-light:#FAF7F2;
    --cream-dark:#EDE5D8;
    --text-dark:  #1A2E22;
    --text-mid:   #3D4F44;
    --text-light: #6B7F72;
    --white:      #FFFFFF;
    --shadow-sm:  0 1px 3px rgba(45,90,61,0.06), 0 1px 2px rgba(45,90,61,0.04);
    --shadow-md:  0 4px 16px rgba(45,90,61,0.08), 0 2px 6px rgba(45,90,61,0.05);
    --shadow-lg:  0 12px 40px rgba(45,90,61,0.12), 0 4px 12px rgba(45,90,61,0.06);
    --radius-sm:  8px;
    --radius-md:  14px;
    --radius-lg:  24px;
    --radius-xl:  32px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    color: var(--text-dark);
    background: var(--cream-light);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    line-height: 1.2;
    color: var(--text-dark);
}

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

a {
    color: inherit;
    text-decoration: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- NAV --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(245, 240, 232, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(45, 90, 61, 0.08);
    transition: var(--transition);
}

.nav.scrolled {
    background: rgba(250, 247, 242, 0.95);
    box-shadow: var(--shadow-sm);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    height: 72px;
    gap: 32px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--green-800);
    letter-spacing: -0.01em;
}

.nav-logo-icon circle {
    fill: var(--green-800);
}

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

.nav-link {
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-mid);
    border-radius: 100px;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--green-800);
    background: var(--green-50);
}

.nav-cta {
    padding: 10px 22px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--green-800);
    background: var(--green-50);
    border: 1.5px solid var(--green-200);
    border-radius: 100px;
    transition: var(--transition);
    white-space: nowrap;
}

.nav-cta:hover {
    background: var(--green-800);
    color: var(--white);
    border-color: var(--green-800);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 22px;
    height: 2px;
    background: var(--green-800);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* --- MOBILE MENU --- */
.mobile-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background: rgba(250, 247, 242, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.mobile-menu-link {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--text-dark);
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.mobile-menu-link:hover {
    color: var(--green-800);
    background: var(--green-50);
}

.mobile-menu-cta {
    margin-top: 16px;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--white);
    background: var(--green-800);
    border-radius: 100px;
}

/* --- HERO --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 60px;
    background: linear-gradient(135deg, var(--cream-light) 0%, var(--cream) 50%, var(--green-50) 100%);
    position: relative;
    overflow: hidden;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.hero-shape-1 {
    width: 600px;
    height: 600px;
    background: var(--green-100);
    top: -200px;
    right: -100px;
}

.hero-shape-2 {
    width: 400px;
    height: 400px;
    background: var(--green-200);
    bottom: -100px;
    left: -100px;
    opacity: 0.25;
}

.hero-shape-3 {
    width: 200px;
    height: 200px;
    background: var(--cream-dark);
    top: 40%;
    left: 45%;
    opacity: 0.5;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--white);
    border: 1px solid var(--green-100);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--green-800);
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

.hero-headline {
    font-size: clamp(2.75rem, 5vw, 4.25rem);
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.hero-accent {
    color: var(--green-700);
    font-style: italic;
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.925rem;
    font-weight: 500;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--green-800);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(45, 90, 61, 0.25);
}

.btn-primary:hover {
    background: var(--green-700);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(45, 90, 61, 0.3);
}

.btn-ghost {
    background: transparent;
    color: var(--green-800);
    border: 1.5px solid var(--green-200);
}

.btn-ghost:hover {
    background: var(--green-50);
    border-color: var(--green-500);
}

.btn-light {
    background: var(--white);
    color: var(--green-800);
    box-shadow: var(--shadow-md);
}

.btn-light:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.5);
}

.btn-outline-light:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--white);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hero-stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--green-800);
}

.hero-stat-label {
    font-size: 0.775rem;
    color: var(--text-light);
    font-weight: 400;
}

.hero-stat-divider {
    width: 1px;
    height: 36px;
    background: var(--green-200);
}

/* Hero Images */
.hero-image-wrap {
    position: relative;
    height: 640px;
}

.hero-image-main {
    width: 100%;
    height: 100%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image-accent {
    position: absolute;
    bottom: -20px;
    left: -40px;
    width: 200px;
    height: 200px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
}

.hero-image-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-float-card {
    position: absolute;
    top: 40px;
    right: -20px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.hfc-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green-50);
    border-radius: 50%;
    flex-shrink: 0;
}

.hero-float-card strong {
    display: block;
    font-size: 0.875rem;
    color: var(--text-dark);
}

.hero-float-card span {
    font-size: 0.775rem;
    color: var(--text-light);
}

/* --- SECTION COMMON --- */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px;
}

.section-tag {
    display: inline-block;
    font-size: 0.775rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--green-700);
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-mid);
    line-height: 1.7;
}

/* --- SERVICES --- */
.services {
    padding: 100px 0;
    background: var(--white);
}

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

.service-card {
    padding: 36px 28px;
    background: var(--cream-light);
    border-radius: var(--radius-lg);
    border: 1px solid transparent;
    transition: var(--transition);
}

.service-card:hover {
    background: var(--white);
    border-color: var(--green-100);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green-50);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
}

.service-card p {
    font-size: 0.925rem;
    color: var(--text-mid);
    line-height: 1.7;
}

/* --- ABOUT --- */
.about {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--cream-light) 0%, var(--green-50) 100%);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image-stack {
    position: relative;
    height: 580px;
}

.about-img-main {
    width: 75%;
    height: 100%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img-secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    height: 55%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
}

.about-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-experience-badge {
    position: absolute;
    top: 24px;
    right: 40px;
    width: 110px;
    height: 110px;
    background: var(--green-800);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.about-experience-badge .exp-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1;
}

.about-experience-badge .exp-label {
    font-size: 0.65rem;
    color: var(--green-200);
    text-align: center;
    line-height: 1.3;
    margin-top: 2px;
}

.about-content {
    max-width: 480px;
}

.about-content .section-tag {
    text-align: left;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 24px;
}

.about-text {
    font-size: 0.975rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 32px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    color: var(--text-dark);
    font-weight: 400;
}

.about-feature svg {
    flex-shrink: 0;
}

/* --- GALLERY --- */
.gallery {
    padding: 100px 0;
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 260px);
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 58, 40, 0.7) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--white);
}

.gallery-item:nth-child(1) { grid-column: 1 / 5; grid-row: 1 / 3; }
.gallery-item:nth-child(2) { grid-column: 5 / 8; grid-row: 1; }
.gallery-item:nth-child(3) { grid-column: 8 / 11; grid-row: 1; }
.gallery-item:nth-child(4) { grid-column: 11 / 13; grid-row: 1 / 3; }
.gallery-item:nth-child(5) { grid-column: 5 / 11; grid-row: 2; }

/* --- CTA BANNER --- */
.cta-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--green-800) 0%, var(--green-700) 60%, var(--green-600) 100%);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
    top: -200px;
    right: -100px;
}

.cta-banner::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
    bottom: -100px;
    left: -50px;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.cta-text {
    max-width: 520px;
}

.cta-text .section-tag {
    color: var(--green-200);
}

.cta-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--white);
    margin: 8px 0 16px;
}

.cta-text p {
    font-size: 1rem;
    color: var(--green-200);
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    gap: 14px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

/* --- CONTACT --- */
.contact {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--cream-light) 0%, var(--cream) 100%);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info .section-tag {
    text-align: left;
}

.contact-info .section-title {
    text-align: left;
    margin-bottom: 12px;
}

.contact-intro {
    font-size: 0.975rem;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 36px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.ci-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green-50);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.contact-item span,
.contact-item a {
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.6;
}

.contact-item a:hover {
    color: var(--green-700);
}

.contact-item address {
    font-style: normal;
    line-height: 1.6;
}

/* Form */
.contact-form-wrap {
    max-width: 500px;
}

.contact-form-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--green-50);
}

.contact-form-card h3 {
    font-size: 1.5rem;
    margin-bottom: 6px;
}

.form-intro {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 28px;
}

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

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 0.825rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    color: var(--text-dark);
    background: var(--cream-light);
    border: 1.5px solid var(--cream-dark);
    border-radius: var(--radius-sm);
    outline: none;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--green-500);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(106, 175, 126, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
    gap: 12px;
}

.form-success.show {
    display: flex;
}

.success-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-success strong {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--green-800);
}

.form-success span {
    font-size: 0.9rem;
    color: var(--text-mid);
}

/* --- MAP --- */
.map-section {
    padding: 0;
}

.map-container {
    border-radius: 0;
    overflow: hidden;
    filter: saturate(0.8) brightness(1.02);
}

/* --- FOOTER --- */
.footer {
    background: var(--green-900);
    color: var(--green-200);
    padding: 72px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(183, 212, 181, 0.15);
}

.footer-brand p {
    font-size: 0.875rem;
    line-height: 1.7;
    margin-top: 16px;
    color: var(--green-200);
    opacity: 0.8;
    max-width: 280px;
}

.footer-col h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 0.825rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul li a {
    font-size: 0.875rem;
    color: var(--green-200);
    opacity: 0.75;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    opacity: 1;
    color: var(--white);
}

.footer-col address {
    font-style: normal;
    font-size: 0.875rem;
    line-height: 1.7;
    margin-bottom: 12px;
}

.footer-col p {
    font-size: 0.875rem;
    margin-bottom: 6px;
}

.footer-col a {
    opacity: 0.75;
    transition: var(--transition);
}

.footer-col a:hover {
    opacity: 1;
    color: var(--white);
}

.footer-bottom {
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 0.8rem;
    opacity: 0.6;
}

.footer-bottom a {
    opacity: 0.6;
    transition: var(--transition);
}

.footer-bottom a:hover {
    opacity: 1;
}

/* --- REVEAL ANIMATIONS --- */
.reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Default visible state for progressive enhancement */
.reveal {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(24px);
    }
    .reveal.revealed {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .hero-container {
        gap: 40px;
    }
    .hero-image-wrap {
        height: 520px;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-container {
        gap: 48px;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
}

@media (max-width: 768px) {
    .nav-links,
    .nav-cta {
        display: none;
    }
    .nav-toggle {
        display: flex;
    }
    .hero {
        padding: 100px 0 60px;
    }
    .hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .hero-image-wrap {
        height: 420px;
        order: -1;
    }
    .hero-image-accent {
        width: 140px;
        height: 140px;
        left: -16px;
        bottom: -10px;
    }
    .hero-float-card {
        right: 10px;
        top: 20px;
        padding: 12px 16px;
    }
    .hero-stats {
        gap: 16px;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .about-container {
        grid-template-columns: 1fr;
    }
    .about-image-stack {
        height: 400px;
        max-width: 400px;
        margin: 0 auto;
    }
    .about-content {
        max-width: 100%;
    }
    .about-content .section-tag,
    .about-content .section-title {
        text-align: center;
    }
    .about-text {
        text-align: center;
    }
    .about-features {
        justify-items: center;
    }
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(3, 200px);
    }
    .gallery-item:nth-child(1) { grid-column: 1 / 3; grid-row: 1; }
    .gallery-item:nth-child(2) { grid-column: 1; grid-row: 2; }
    .gallery-item:nth-child(3) { grid-column: 2; grid-row: 2; }
    .gallery-item:nth-child(4) { grid-column: 1; grid-row: 3; }
    .gallery-item:nth-child(5) { grid-column: 2; grid-row: 3; }
    .cta-inner {
        flex-direction: column;
        text-align: center;
    }
    .cta-actions {
        justify-content: center;
    }
    .contact-container {
        grid-template-columns: 1fr;
    }
    .contact-form-wrap {
        max-width: 100%;
    }
    .contact-form-card {
        padding: 28px;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px)
{
    .hero-image-wrap {
        height: 320px;
    }
    .hero-float-card {
        display: none;
    }
    .hero-actions {
        flex-direction: column;
    }
    .hero-actions .btn {
        justify-content: center;
    }
    .about-image-stack {
        height: 300px;
    }
    .about-experience-badge {
        width: 80px;
        height: 80px;
        top: 16px;
        right: 20px;
    }
    .about-experience-badge .exp-num {
        font-size: 1.5rem;
    }
    .about-experience-badge .exp-label {
        font-size: 0.55rem;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 200px);
    }
    .gallery-item:nth-child(1) { grid-column: 1; grid-row: 1; }
    .gallery-item:nth-child(2) { grid-column: 1; grid-row: 2; }
    .gallery-item:nth-child(3) { grid-column: 1; grid-row: 3; }
    .gallery-item:nth-child(4) { grid-column: 1; grid-row: 4; }
    .gallery-item:nth-child(5) { grid-column: 1; grid-row: 5; }
}
