/* ============================================
   Water Wear Hawaii — Custom Styles
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    --plum-900: #1a0a2e;
    --plum-800: #2d1245;
    --plum-700: #3d1a5c;
    --plum-600: #5c2d82;
    --plum-500: #7c3aed;
    --plum-400: #a78bfa;
    --plum-300: #c4b5fd;
    --plum-200: #ddd6fe;
    --plum-100: #ede9fe;
    --plum-50:  #f5f3ff;

    --amber-600: #d97706;
    --amber-500: #f59e0b;
    --amber-400: #fbbf24;
    --amber-300: #fcd34d;
    --amber-200: #fde68a;
    --amber-100: #fef3c7;

    --warm-white: #fffbf5;
    --warm-gray-50: #faf8f5;
    --warm-gray-100: #f5f0ea;
    --warm-gray-200: #e8e0d6;
    --warm-gray-700: #4a4039;
    --warm-gray-800: #2d2520;
    --warm-gray-900: #1a1410;

    --font-display: 'Space Grotesk', system-ui, sans-serif;
    --font-body: 'Outfit', system-ui, sans-serif;

    --shadow-sm: 0 1px 3px rgba(26, 10, 46, 0.08);
    --shadow-md: 0 4px 16px rgba(26, 10, 46, 0.10);
    --shadow-lg: 0 8px 32px rgba(26, 10, 46, 0.14);
    --shadow-xl: 0 16px 48px rgba(26, 10, 46, 0.18);
    --shadow-glow: 0 0 40px rgba(124, 58, 237, 0.25);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--warm-gray-800);
    background: var(--warm-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

ul { list-style: none; }

.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--plum-600);
    color: #fff;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    z-index: 200;
    font-weight: 600;
}
.skip-link:focus {
    top: 16px;
}

/* --- Utility --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-accent {
    color: var(--plum-500);
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--amber-600);
    background: var(--amber-100);
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--warm-gray-900);
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--warm-gray-700);
    max-width: 560px;
    line-height: 1.7;
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-header .section-desc {
    margin: 0 auto;
}

.section {
    padding: 96px 0;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.btn-primary {
    background: var(--plum-600);
    color: #fff;
    box-shadow: 0 4px 14px rgba(92, 45, 130, 0.35);
}
.btn-primary:hover {
    background: var(--plum-700);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(92, 45, 130, 0.45);
}

.btn-secondary {
    background: rgba(255,255,255,0.15);
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.4);
    backdrop-filter: blur(4px);
}
.btn-secondary:hover {
    background: rgba(255,255,255,0.25);
    border-color: rgba(255,255,255,0.7);
    transform: translateY(-2px);
}

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

/* --- NAV --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 251, 245, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(92, 45, 130, 0.08);
    transition: box-shadow 0.3s ease;
}
.nav.scrolled {
    box-shadow: var(--shadow-md);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--plum-800);
}
.nav-logo-icon {
    color: var(--plum-500);
}
.nav-logo-accent {
    color: var(--amber-500);
}

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

.nav-link {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--warm-gray-700);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: color 0.2s, background 0.2s;
}
.nav-link:hover {
    color: var(--plum-600);
    background: var(--plum-50);
}

.nav-cta {
    background: var(--plum-600);
    color: #fff !important;
    margin-left: 8px;
}
.nav-cta:hover {
    background: var(--plum-700);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.nav-toggle-bar {
    width: 24px;
    height: 2px;
    background: var(--warm-gray-800);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* --- HERO --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, var(--plum-900) 0%, var(--plum-700) 50%, #1e3a5c 100%);
    overflow: hidden;
    padding-top: 72px;
}

.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(--plum-500);
    top: -200px;
    right: -100px;
}
.hero-shape-2 {
    width: 400px;
    height: 400px;
    background: var(--amber-500);
    bottom: -100px;
    left: -100px;
    opacity: 0.25;
}
.hero-shape-3 {
    width: 250px;
    height: 250px;
    background: var(--plum-300);
    top: 40%;
    left: 35%;
    opacity: 0.2;
}
.hero-shape-4 {
    width: 180px;
    height: 180px;
    background: var(--amber-400);
    bottom: 25%;
    right: 20%;
    opacity: 0.2;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.hero-grid {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px 120px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    color: #fff;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--amber-300);
    background: rgba(251, 191, 36, 0.12);
    border: 1px solid rgba(251, 191, 36, 0.25);
    padding: 8px 16px;
    border-radius: 100px;
    margin-bottom: 28px;
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 5.5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.08;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.headline-line {
    display: block;
}
.headline-accent {
    color: var(--amber-400);
}

.hero-sub {
    font-size: 1.15rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.75);
    max-width: 480px;
    margin-bottom: 36px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hero-visual {
    position: relative;
    min-height: 520px;
}

.hero-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}
.hero-card-main {
    width: 100%;
    aspect-ratio: 480/560;
}
.hero-card-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(to top, rgba(26, 10, 46, 0.85), transparent);
}
.hero-card-tag {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.85rem;
    color: #fff;
    background: var(--amber-500);
    padding: 6px 14px;
    border-radius: 100px;
}

/* Floating stat cards */
.float-card {
    position: absolute;
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 16px 20px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 3;
    animation: float 4s ease-in-out infinite;
}
.float-card-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.float-card-num {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--plum-700);
    line-height: 1;
}
.float-card-label {
    font-size: 0.75rem;
    color: var(--warm-gray-700);
    line-height: 1.3;
}

.float-card-1 {
    top: 20px;
    left: -40px;
    animation-delay: 0s;
}
.float-card-1 .float-card-icon {
    background: var(--plum-100);
    color: var(--plum-600);
}
.float-card-2 {
    bottom: 120px;
    right: -30px;
    animation-delay: 1.3s;
}
.float-card-2 .float-card-icon {
    background: var(--amber-100);
    color: var(--amber-600);
}
.float-card-3 {
    bottom: -10px;
    left: 20px;
    animation-delay: 2.6s;
}
.float-card-3 .float-card-icon {
    background: #dbeafe;
    color: #2563eb;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    color: var(--warm-white);
    line-height: 0;
}
.hero-wave svg {
    width: 100%;
    height: 80px;
}

/* --- GEAR --- */
.gear-section {
    background: var(--warm-white);
}

.gear-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.gear-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--warm-gray-200);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gear-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.gear-card-visual {
    position: relative;
    overflow: hidden;
    aspect-ratio: 400/280;
}
.gear-card-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gear-card:hover .gear-card-visual img {
    transform: scale(1.05);
}

.gear-card-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--plum-800);
    background: var(--amber-400);
    padding: 5px 12px;
    border-radius: 100px;
}

.gear-card-body {
    padding: 24px;
}

.gear-card-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--warm-gray-900);
    margin-bottom: 10px;
}

.gear-card-body p {
    font-size: 0.95rem;
    color: var(--warm-gray-700);
    line-height: 1.7;
    margin-bottom: 16px;
}

.gear-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--plum-600);
    transition: gap 0.2s;
}
.gear-card-link:hover {
    gap: 10px;
}

/* --- ABOUT --- */
.about-section {
    background: var(--warm-gray-50);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.06) 0%, transparent 70%);
    top: -150px;
    right: -150px;
    pointer-events: none;
}

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

.about-visual {
    position: relative;
}

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

.about-img-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: relative;
    z-index: 2;
}
.about-img-main img {
    width: 100%;
    height: 580px;
    object-fit: cover;
}

.about-img-accent {
    position: absolute;
    bottom: -30px;
    right: -30px;
    z-index: 3;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--warm-white);
}
.about-img-accent img {
    width: 320px;
    height: 240px;
    object-fit: cover;
}

.about-shape-block {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 120px;
    height: 120px;
    background: var(--amber-400);
    border-radius: var(--radius-lg);
    z-index: 1;
    opacity: 0.6;
}

.about-content .section-tag { margin-bottom: 16px; }
.about-content .section-title { margin-bottom: 20px; }

.about-text {
    font-size: 1.05rem;
    color: var(--warm-gray-700);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-features {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.about-feature-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: var(--plum-100);
    color: var(--plum-600);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-feature strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--warm-gray-900);
    margin-bottom: 2px;
}

.about-feature span {
    font-size: 0.9rem;
    color: var(--warm-gray-700);
}

/* --- QUOTE --- */
.quote-section {
    background: linear-gradient(135deg, var(--plum-800) 0%, var(--plum-600) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.quote-section::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.15) 0%, transparent 70%);
    top: -100px;
    left: 10%;
    pointer-events: none;
}

.quote-block {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.quote-mark {
    color: var(--amber-400);
    margin-bottom: 24px;
}

.quote-block blockquote p {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 2.5vw, 1.75rem);
    font-weight: 500;
    line-height: 1.55;
    color: #fff;
    margin-bottom: 24px;
}

cite {
    font-style: normal;
}
.cite-author {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--amber-300);
}
.cite-author::before {
    content: '';
    width: 40px;
    height: 2px;
    background: var(--amber-400);
    border-radius: 2px;
}

/* --- LOCATION --- */
.location-section {
    background: var(--warm-white);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
}

.location-info .section-tag { margin-bottom: 16px; }
.location-info .section-title { margin-bottom: 16px; }
.location-desc {
    font-size: 1.05rem;
    color: var(--warm-gray-700);
    line-height: 1.7;
    margin-bottom: 32px;
}

.location-details {
    margin-bottom: 32px;
}

.location-detail {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid var(--warm-gray-200);
}
.location-detail:first-child { padding-top: 0; }
.location-detail:last-child { border-bottom: none; }

.location-detail dt {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--plum-600);
    white-space: nowrap;
}

.location-detail dd {
    font-size: 1rem;
    color: var(--warm-gray-800);
    margin-top: 4px;
    line-height: 1.6;
}
.location-detail dd a {
    color: var(--warm-gray-800);
    transition: color 0.2s;
}
.location-detail dd a:hover {
    color: var(--plum-600);
}

.btn-map {
    background: var(--amber-500);
    color: var(--plum-900);
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.35);
}
.btn-map:hover {
    background: var(--amber-600);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.45);
}

.location-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.map-placeholder {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

/* --- CONTACT --- */
.contact-section {
    background: var(--warm-gray-50);
}

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

.contact-content .section-tag { margin-bottom: 16px; }
.contact-content .section-title { margin-bottom: 16px; }
.contact-desc {
    font-size: 1.05rem;
    color: var(--warm-gray-700);
    line-height: 1.7;
    margin-bottom: 32px;
}

.contact-quick {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-quick-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: #fff;
    border-radius: var(--radius-md);
    border: 1px solid var(--warm-gray-200);
    transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-quick-item:hover {
    border-color: var(--plum-300);
    box-shadow: var(--shadow-sm);
}

.contact-quick-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: var(--plum-100);
    color: var(--plum-600);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-quick-item span {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1rem;
    color: var(--warm-gray-800);
}

/* Form */
.contact-form-wrap {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 36px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--warm-gray-200);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--warm-gray-800);
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-body);
    font-size: 0.95rem;
    padding: 12px 16px;
    border: 1.5px solid var(--warm-gray-200);
    border-radius: var(--radius-sm);
    background: var(--warm-gray-50);
    color: var(--warm-gray-800);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--plum-400);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
    background: #fff;
}

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

.form-success {
    text-align: center;
    padding: 40px 20px;
}
.success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #d1fae5;
    color: #059669;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.form-success h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--warm-gray-900);
    margin-bottom: 8px;
}
.form-success p {
    font-size: 1rem;
    color: var(--warm-gray-700);
}

/* --- FOOTER --- */
.footer {
    background: var(--plum-900);
    color: rgba(255, 255, 255, 0.7);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 16px;
}
.footer-logo-icon { color: var(--amber-400); }

.footer-tagline {
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 300px;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--amber-400);
    margin-bottom: 16px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-links a {
    font-size: 0.95rem;
    transition: color 0.2s;
}
.footer-links a:hover {
    color: #fff;
}

.footer-contact address {
    font-style: normal;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 12px;
}
.footer-contact p {
    font-size: 0.95rem;
    margin-bottom: 6px;
}
.footer-contact a {
    transition: color 0.2s;
}
.footer-contact a:hover {
    color: #fff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    padding: 24px 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-top: 40px;
    }
    .hero-visual {
        max-width: 500px;
        margin: 0 auto;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .about-visual { order: -1; }
    .about-img-main img { height: 400px; }
    .location-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(255, 251, 245, 0.98);
        backdrop-filter: blur(16px);
        flex-direction: column;
        padding: 24px;
        gap: 8px;
        border-bottom: 1px solid var(--warm-gray-200);
        box-shadow: var(--shadow-lg);
        transform: translateY(-120%);
        opacity: 0;
        transition: transform 0.35s ease, opacity 0.35s ease;
        pointer-events: none;
    }
    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    .nav-link {
        width: 100%;
        padding: 12px 16px;
    }
    .nav-cta {
        margin-left: 0;
        text-align: center;
        justify-content: center;
    }
    .nav-toggle {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding-top: 72px;
        padding-bottom: 80px;
    }
    .hero-grid {
        padding: 40px 24px 80px;
    }
    .hero-headline {
        font-size: clamp(2.2rem, 8vw, 3rem);
    }
    .hero-visual {
        min-height: 360px;
    }
    .hero-card-main {
        aspect-ratio: 4/3;
    }
    .float-card { display: none; }

    .section {
        padding: 64px 0;
    }

    .gear-grid {
        grid-template-columns: 1fr;
    }

    .about-img-stack {
        min-height: 360px;
    }
    .about-img-main img { height: 360px; }
    .about-img-accent {
        width: 200px;
        right: -10px;
        bottom: -20px;
    }
    .about-img-accent img { width: 200px; height: 150px; }

    .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) {
    .container {
        padding: 0 16px;
    }
    .hero-actions {
        flex-direction: column;
    }
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    .contact-form-wrap {
        padding: 24px;
    }
}

/* --- Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
