/* ============================================
   Bob's Beach Shack — Styles
   Classic & Elegant | Deep Navy + Warm Gold
   ============================================ */

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

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

body {
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    background: #111a28;
    color: #faf0d4;
    padding: 0.75rem 1.5rem;
    z-index: 1000;
    border-radius: 0 0 8px 8px;
    font-size: 0.875rem;
    transition: top 0.2s;
}

.skip-link:focus {
    top: 0;
}

/* --- Typography --- */
h1, h2, h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

.section-eyebrow {
    font-family: 'Lato', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #c9952e;
    margin-bottom: 1rem;
}

.section-eyebrow.light {
    color: #f5e0a8;
}

.section-heading {
    font-size: clamp(2rem, 4vw, 3.25rem);
    color: #111a28;
    margin-bottom: 1.5rem;
}

.section-heading.light {
    color: #f0f4f9;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-family: 'Lato', sans-serif;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-primary {
    background: #c9952e;
    color: #111a28;
    border: 1.5px solid #c9952e;
}

.btn-primary:hover,
.btn-primary:focus-visible {
    background: #b8862a;
    border-color: #b8862a;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(201, 149, 46, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #111a28;
    border: 1.5px solid #111a28;
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
    background: #111a28;
    color: #f0f4f9;
    transform: translateY(-1px);
}

.btn-outline-light {
    background: transparent;
    color: #f0f4f9;
    border: 1.5px solid rgba(240, 244, 249, 0.5);
}

.btn-outline-light:hover,
.btn-outline-light:focus-visible {
    background: rgba(240, 244, 249, 0.1);
    border-color: #f0f4f9;
    transform: translateY(-1px);
}

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

/* --- Header --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(240, 244, 249, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(17, 26, 40, 0.08);
    transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
    box-shadow: 0 2px 24px rgba(17, 26, 40, 0.08);
}

.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    color: #111a28;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.logo-icon {
    color: #c9952e;
}

.logo-light {
    color: #f0f4f9;
}

.logo-text {
    font-family: 'Cormorant Garamond', Georgia, serif;
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
    font-family: 'Lato', sans-serif;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.primary-nav a {
    color: #1c2e46;
    position: relative;
    padding: 0.25rem 0;
    transition: color 0.2s;
}

.primary-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background: #c9952e;
    transition: width 0.3s ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
    width: 100%;
}

.primary-nav a:hover {
    color: #c9952e;
}

.btn-gold {
    background: #c9952e;
    color: #111a28 !important;
    padding: 0.625rem 1.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    transition: all 0.3s ease;
}

.btn-gold::after {
    display: none;
}

.btn-gold:hover {
    background: #b8862a;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(201, 149, 46, 0.3);
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    z-index: 110;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 1.5px;
    background: #111a28;
    transition: all 0.3s ease;
    transform-origin: center;
}

.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

/* --- Hero --- */
.hero {
    min-height: 100vh;
    padding-top: 80px;
    background: #f0f4f9;
    overflow: hidden;
}

.hero-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: calc(100vh - 80px);
    align-items: stretch;
}

.hero-image-col {
    position: relative;
    overflow: hidden;
}

.hero-image-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 600px;
}

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

.hero-image-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(17, 26, 40, 0.2), transparent);
    pointer-events: none;
}

.hero-floating-card {
    position: absolute;
    bottom: 2rem;
    left: -2rem;
    background: #111a28;
    color: #f0f4f9;
    padding: 1.5rem 2rem;
    z-index: 2;
}

.floating-card-year {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 0.875rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #f5e0a8;
    display: block;
    margin-bottom: 0.25rem;
}

.floating-card-text {
    font-family: 'Lato', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    color: rgba(240, 244, 249, 0.7);
}

.hero-content-col {
    display: flex;
    align-items: center;
    padding: 4rem 4rem 4rem 3rem;
    background: #f0f4f9;
}

.hero-content-inner {
    max-width: 560px;
}

.hero-eyebrow {
    font-family: 'Lato', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #c9952e;
    margin-bottom: 1.5rem;
}

.hero-headline {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(2.25rem, 4.5vw, 3.75rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #111a28;
    margin-bottom: 1.75rem;
}

.hero-deck {
    font-family: 'Lato', sans-serif;
    font-size: 1.0625rem;
    line-height: 1.75;
    color: #284269;
    margin-bottom: 2.5rem;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(17, 26, 40, 0.1);
}

.stat-item {
    flex: 1;
    text-align: left;
}

.stat-number {
    display: block;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2.25rem;
    font-weight: 600;
    color: #111a28;
    line-height: 1;
    margin-bottom: 0.375rem;
}

.stat-label {
    font-family: 'Lato', sans-serif;
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #416aaf;
}

.stat-divider {
    width: 1px;
    height: 3rem;
    background: rgba(17, 26, 40, 0.12);
    flex-shrink: 0;
}

/* --- Section Divider --- */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    color: #c9952e;
    opacity: 0.5;
}

/* --- About --- */
.about {
    padding: 6rem 2rem;
    background: #f0f4f9;
}

.about-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text {
    padding-right: 1rem;
}

.about-body {
    margin-bottom: 2.5rem;
}

.about-body p {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: #284269;
    margin-bottom: 1.25rem;
}

.about-body p:last-child {
    margin-bottom: 0;
}

.about-signature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(17, 26, 40, 0.08);
}

.about-signature-img {
    opacity: 0.6;
    object-fit: cover;
}

.signature-name {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #111a28;
    line-height: 1.2;
}

.signature-title {
    font-family: 'Lato', sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #416aaf;
}

.about-image {
    position: relative;
}

.about-image-main {
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

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

.about-image-detail {
    position: relative;
    margin-left: 2rem;
}

.about-image-detail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 6px;
}

.detail-caption {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1rem;
    font-style: italic;
    color: #416aaf;
    margin-top: 0.75rem;
    line-height: 1.5;
}

/* --- Products --- */
.products {
    padding: 6rem 2rem;
    background: #fff;
}

.products-header {
    max-width: 680px;
    margin: 0 auto 4rem;
    text-align: center;
}

.products-deck {
    font-family: 'Lato', sans-serif;
    font-size: 1.0625rem;
    line-height: 1.75;
    color: #284269;
}

.products-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.product-card {
    background: #f0f4f9;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(17, 26, 40, 0.1);
}

.product-card-image {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-card-image img {
    transform: scale(1.05);
}

.product-card-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.product-tag {
    display: inline-block;
    background: #111a28;
    color: #f5e0a8;
    font-family: 'Lato', sans-serif;
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.375rem 0.75rem;
    border-radius: 3px;
}

.product-card-body {
    padding: 1.75rem;
}

.product-card-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #111a28;
    margin-bottom: 0.75rem;
}

.product-card-desc {
    font-family: 'Lato', sans-serif;
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #284269;
    margin-bottom: 1.25rem;
}

.product-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Lato', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #c9952e;
    transition: gap 0.2s ease, color 0.2s;
}

.product-card-link:hover {
    gap: 0.75rem;
    color: #a6761e;
}

.product-card-link svg {
    flex-shrink: 0;
}

/* --- Experience --- */
.experience {
    padding: 6rem 2rem;
    background: #111a28;
    position: relative;
    overflow: hidden;
}

.experience-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(ellipse at 20% 50%, rgba(201, 149, 46, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(65, 106, 175, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.experience-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.experience-text {
    padding-right: 1rem;
}

.experience-deck {
    font-family: 'Lato', sans-serif;
    font-size: 1.0625rem;
    line-height: 1.8;
    color: rgba(240, 244, 249, 0.75);
    margin-bottom: 2.5rem;
}

.experience-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.experience-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-family: 'Lato', sans-serif;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: rgba(240, 244, 249, 0.85);
}

.list-icon {
    flex-shrink: 0;
    color: #f5e0a8;
    margin-top: 1px;
}

.experience-image-col {
    position: relative;
}

.experience-image-stack {
    position: relative;
    min-height: 550px;
}

.exp-img-main {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.exp-img-main img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.exp-img-secondary {
    position: absolute;
    bottom: -2rem;
    left: -2rem;
    z-index: 3;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.exp-img-secondary img {
    width: 280px;
    height: 200px;
    object-fit: cover;
}

/* --- Visit --- */
.visit {
    padding: 6rem 2rem;
    background: #f0f4f9;
}

.visit-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.visit-info {
    padding-right: 1rem;
}

.visit-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.visit-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.visit-icon {
    flex-shrink: 0;
    color: #c9952e;
    margin-top: 2px;
}

.visit-detail-label {
    font-family: 'Lato', sans-serif;
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #416aaf;
    margin-bottom: 0.25rem;
}

.visit-detail-value {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #111a28;
}

.visit-detail-value a {
    color: #111a28;
    border-bottom: 1px solid rgba(201, 149, 46, 0.4);
    transition: border-color 0.2s;
}

.visit-detail-value a:hover {
    border-color: #c9952e;
    color: #c9952e;
}

.visit-map {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(17, 26, 40, 0.08);
}

.visit-image-col {
    position: relative;
}

.visit-image-main {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

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

.visit-image-strip {
    border-radius: 8px;
    overflow: hidden;
}

.visit-image-strip img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* --- CTA --- */
.cta {
    position: relative;
    padding: 7rem 2rem;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
}

.cta-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 16, 25, 0.88) 0%, rgba(17, 26, 40, 0.82) 100%);
}

.cta-inner {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.cta-deck {
    font-family: 'Lato', sans-serif;
    font-size: 1.0625rem;
    line-height: 1.8;
    color: rgba(240, 244, 249, 0.8);
    margin-bottom: 2.5rem;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* --- Contact --- */
.contact {
    padding: 6rem 2rem;
    background: #fff;
}

.contact-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    padding-right: 1rem;
}

.contact-deck {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: #284269;
    margin-bottom: 2.5rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-method-icon {
    flex-shrink: 0;
    color: #c9952e;
    margin-top: 2px;
}

.contact-method-label {
    font-family: 'Lato', sans-serif;
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #416aaf;
    margin-bottom: 0.25rem;
}

.contact-method a {
    color: #111a28;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    border-bottom: 1px solid rgba(201, 149, 46, 0.3);
    transition: border-color 0.2s, color 0.2s;
}

.contact-method a:hover {
    border-color: #c9952e;
    color: #c9952e;
}

.contact-method span {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    color: #111a28;
    line-height: 1.6;
}

/* Contact Form */
.contact-form-wrap {
    background: #f0f4f9;
    border-radius: 12px;
    padding: 2.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-family: 'Lato', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #1c2e46;
}

.form-optional {
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    color: #416aaf;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: #fff;
    border: 1.5px solid rgba(17, 26, 40, 0.12);
    border-radius: 6px;
    padding: 0.875rem 1rem;
    font-size: 0.9375rem;
    color: #111a28;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #8da6cf;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #c9952e;
    box-shadow: 0 0 0 3px rgba(201, 149, 46, 0.12);
}

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

.form-privacy {
    font-family: 'Lato', sans-serif;
    font-size: 0.75rem;
    color: #6788bf;
    text-align: center;
    margin-top: 0.5rem;
}

.form-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    padding: 2rem;
    color: #111a28;
}

.form-success svg {
    color: #c9952e;
}

.form-success-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: #111a28;
}

.form-success p {
    font-family: 'Lato', sans-serif;
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #284269;
}

/* --- Footer --- */
.site-footer {
    background: #0a1019;
    color: rgba(240, 244, 249, 0.7);
    padding: 4rem 2rem 0;
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(240, 244, 249, 0.08);
}

.footer-tagline {
    font-family: 'Lato', sans-serif;
    font-size: 0.9375rem;
    line-height: 1.7;
    color: rgba(240, 244, 249, 0.55);
    margin-top: 1rem;
    max-width: 300px;
}

.footer-nav-label {
    font-family: 'Lato', sans-serif;
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #f5e0a8;
    margin-bottom: 1rem;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.footer-nav a {
    font-family: 'Lato', sans-serif;
    font-size: 0.875rem;
    color: rgba(240, 244, 249, 0.6);
    transition: color 0.2s;
}

.footer-nav a:hover {
    color: #f5e0a8;
}

.footer-address {
    font-style: normal;
    font-family: 'Lato', sans-serif;
    font-size: 0.875rem;
    line-height: 1.7;
    color: rgba(240, 244, 249, 0.6);
    margin-bottom: 0.5rem;
}

.footer-contact p {
    font-family: 'Lato', sans-serif;
    font-size: 0.875rem;
}

.footer-contact a {
    color: rgba(240, 244, 249, 0.6);
    border-bottom: 1px solid rgba(240, 244, 249, 0.2);
    transition: color 0.2s, border-color 0.2s;
}

.footer-contact a:hover {
    color: #f5e0a8;
    border-color: #f5e0a8;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1.5rem 0;
    font-family: 'Lato', sans-serif;
    font-size: 0.8125rem;
    color: rgba(240, 244, 249, 0.35);
}

.footer-bottom a {
    color: rgba(240, 244, 249, 0.35);
    transition: color 0.2s;
}

.footer-bottom a:hover {
    color: #f5e0a8;
}

/* --- Scroll Reveal --- */
.reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-image-col {
        order: -1;
    }

    .hero-image-wrap {
        min-height: 400px;
        max-height: 500px;
    }

    .hero-floating-card {
        left: 1rem;
        bottom: 1rem;
    }

    .hero-content-col {
        padding: 3rem 2rem;
    }

    .about-grid,
    .experience-inner,
    .visit-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-text,
    .experience-text,
    .visit-info,
    .contact-info {
        padding-right: 0;
    }

    .about-image-detail {
        margin-left: 0;
    }

    .experience-image-stack {
        min-height: 400px;
    }

    .exp-img-main img {
        height: 400px;
    }

    .exp-img-secondary {
        left: 1rem;
        bottom: -1rem;
    }

    .exp-img-secondary img {
        width: 220px;
        height: 160px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .primary-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #f0f4f9;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1.5rem;
        transition: right 0.35s ease;
        box-shadow: -8px 0 32px rgba(17, 26, 40, 0.12);
        z-index: 100;
    }

    .primary-nav.open {
        right: 0;
    }

    .primary-nav a {
        font-size: 0.9375rem;
    }

    .hero-content-col {
        padding: 2rem 1.5rem;
    }

    .hero-headline {
        font-size: clamp(1.75rem, 7vw, 2.5rem);
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .stat-divider {
        display: none;
    }

    .stat-item {
        flex: none;
    }

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

    .contact-form-wrap {
        padding: 1.5rem;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .cta {
        padding: 5rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .header-inner {
        padding: 0.875rem 1rem;
    }

    .hero {
        padding-top: 70px;
    }

    .hero-image-wrap {
        min-height: 300px;
        max-height: 350px;
    }

    .hero-floating-card {
        left: 0.75rem;
        bottom: 0.75rem;
        padding: 1rem 1.25rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        justify-content: center;
    }

    .about,
    .products,
    .experience,
    .visit,
    .contact {
        padding: 4rem 1.25rem;
    }

    .experience-image-stack {
        min-height: 300px;
    }

    .exp-img-main img {
        height: 300px;
    }

    .exp-img-secondary {
        display: none;
    }

    .visit-image-main img,
    .about-image-main img {
        height: 350px;
    }
}

/* --- Reduced Motion --- */
@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;
    }
}
