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

:root {
    --navy: #0a1f3f;
    --navy-light: #132d54;
    --navy-dark: #061529;
    --gold: #d4a017;
    --gold-light: #e8b829;
    --gold-pale: #fdf3d7;
    --white: #ffffff;
    --off-white: #f8f6f1;
    --cream: #f0ece3;
    --text-dark: #1a1a1a;
    --text-mid: #4a4a4a;
    --text-light: #7a7a7a;
    --font-display: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--off-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

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

/* ===== Navigation ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 31, 63, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(212, 160, 23, 0.15);
    transition: transform 0.4s var(--ease-out);
}

.nav.hidden {
    transform: translateY(-100%);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    height: 72px;
    gap: 40px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.nav-logo-mark {
    width: 40px;
    height: 40px;
    background: var(--gold);
    color: var(--navy);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.05em;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

.nav-logo-text {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 15px;
    color: var(--white);
    letter-spacing: -0.01em;
}

.nav-logo-accent {
    color: var(--gold);
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.nav-links a {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    padding: 8px 16px;
    border-radius: 6px;
    transition: color 0.2s, background 0.2s;
}

.nav-links a:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.nav-cta {
    background: var(--gold) !important;
    color: var(--navy) !important;
    font-weight: 600 !important;
    margin-left: 8px;
}

.nav-cta:hover {
    background: var(--gold-light) !important;
}

/* Mobile toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-left: auto;
}

.nav-toggle span {
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.3s var(--ease-out), opacity 0.2s;
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--navy-dark);
    z-index: 999;
    padding: 32px 24px;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}

.mobile-menu.open {
    display: flex;
    flex-direction: column;
    opacity: 1;
    transform: translateY(0);
}

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

.mobile-menu-link {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    color: var(--white);
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: color 0.2s, padding-left 0.2s;
}

.mobile-menu-link:hover {
    color: var(--gold);
    padding-left: 8px;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.25s var(--ease-out);
    text-decoration: none;
}

.btn-primary {
    background: var(--gold);
    color: var(--navy);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 160, 23, 0.3);
}

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

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

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

.btn-outline-light:hover {
    background: var(--white);
    color: var(--navy);
    border-color: var(--white);
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

/* ===== Hero ===== */
.hero {
    min-height: 100vh;
    background: var(--navy);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
}

.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(--gold);
    top: -200px;
    right: -100px;
    opacity: 0.12;
}

.hero-shape-2 {
    width: 400px;
    height: 400px;
    background: var(--gold-light);
    bottom: -100px;
    left: 10%;
    opacity: 0.08;
}

.hero-shape-3 {
    width: 200px;
    height: 200px;
    background: var(--gold);
    top: 40%;
    left: 35%;
    opacity: 0.06;
}

.hero-shape-4 {
    width: 150px;
    height: 150px;
    background: var(--white);
    top: 20%;
    right: 30%;
    opacity: 0.03;
}

/* Geometric accent shapes */
.hero::before {
    content: '';
    position: absolute;
    top: 15%;
    left: 0;
    width: 4px;
    height: 120px;
    background: var(--gold);
    opacity: 0.6;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--off-white), transparent);
    z-index: 2;
    pointer-events: none;
}

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

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 24px;
}

.hero-tag-dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(32px, 4.5vw, 56px);
    font-weight: 700;
    line-height: 1.1;
    color: var(--white);
    letter-spacing: -0.025em;
    margin-bottom: 24px;
    max-width: 580px;
}

.hero-sub {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 36px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

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

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

.hero-stat-number {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--gold);
}

.hero-stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
}

/* Hero visual */
.hero-visual {
    position: relative;
}

.hero-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 16px;
}

.hero-img {
    overflow: hidden;
    border-radius: 12px;
    position: relative;
}

.hero-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 31, 63, 0.3), transparent 50%);
    pointer-events: none;
}

.hero-img-1 {
    grid-row: 1 / 3;
    grid-column: 1;
}

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

.hero-img-2 img,
.hero-img-3 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-img-2 {
    grid-row: 1;
    grid-column: 2;
}

.hero-img-3 {
    grid-row: 2;
    grid-column: 2;
}

.hero-badge {
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--navy);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 13px;
    padding: 10px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    box-shadow: 0 8px 32px rgba(212, 160, 23, 0.3);
    z-index: 2;
}

/* ===== Section Labels ===== */
.section-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-label::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--gold);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.5vw, 48px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: var(--navy);
    margin-bottom: 20px;
}

/* ===== About ===== */
.about {
    padding: 120px 0;
    background: var(--off-white);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(to right, var(--navy), var(--gold), var(--navy));
}

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

.about-visual {
    position: relative;
}

.about-img-main {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(10, 31, 63, 0.15);
}

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

.about-img-float {
    position: absolute;
    bottom: -40px;
    right: -40px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(10, 31, 63, 0.2);
    border: 4px solid var(--off-white);
}

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

.about-accent-block {
    position: absolute;
    top: -24px;
    left: -24px;
    background: var(--navy);
    color: var(--white);
    padding: 20px 24px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    box-shadow: 0 12px 32px rgba(10, 31, 63, 0.3);
}

.about-accent-number {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold);
}

.about-accent-text {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
}

.about-content {
    padding: 20px 0;
}

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

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

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

.about-feature-icon {
    width: 44px;
    height: 44px;
    background: var(--gold-pale);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-feature strong {
    display: block;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 2px;
}

.about-feature span {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
}

/* ===== Market ===== */
.market {
    padding: 120px 0;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.market-bg-block {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: var(--navy-light);
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
    pointer-events: none;
}

.market-header {
    position: relative;
    z-index: 1;
    margin-bottom: 64px;
}

.market-title {
    color: var(--white);
}

.market-desc {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    max-width: 520px;
}

.market-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.market-card {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    background: var(--navy-light);
    transition: transform 0.4s var(--ease-out);
}

.market-card:hover {
    transform: translateY(-4px);
}

.market-card--large {
    grid-column: 1 / 8;
    grid-row: 1 / 2;
}

.market-card--wide {
    grid-column: 1 / 13;
    grid-row: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
}

.market-card:not(.market-card--large):not(.market-card--wide) {
    grid-column: span 6;
}

.market-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

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

.market-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px;
    background: linear-gradient(to top, rgba(10, 31, 63, 0.95) 0%, rgba(10, 31, 63, 0.6) 60%, transparent 100%);
}

.market-card-content--dark {
    position: relative;
    background: var(--navy-light);
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.market-card-content h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.market-card-content p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.65);
}

.market-card--large .market-card-content h3 {
    font-size: 28px;
}

/* ===== Deli ===== */
.deli {
    padding: 120px 0;
    background: var(--off-white);
    position: relative;
}

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

.deli-content {
    padding-right: 20px;
}

.deli-body {
    font-size: 16px;
    line-height: 1.75;
    color: var(--text-mid);
    margin-bottom: 16px;
}

.deli-highlights {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 36px 0;
}

.deli-highlight {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.deli-highlight-num {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    flex-shrink: 0;
    min-width: 40px;
}

.deli-highlight strong {
    display: block;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 4px;
}

.deli-highlight span {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
}

.deli-visual {
    position: relative;
}

.deli-img-stack {
    position: relative;
    height: 620px;
}

.deli-img {
    position: absolute;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(10, 31, 63, 0.15);
}

.deli-img--1 {
    top: 0;
    left: 0;
    width: 75%;
    height: 75%;
}

.deli-img--2 {
    bottom: 0;
    right: 0;
    width: 55%;
    height: 55%;
    border: 4px solid var(--off-white);
}

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

.deli-quote-block {
    position: absolute;
    bottom: 60px;
    left: -40px;
    background: var(--navy);
    color: var(--white);
    padding: 28px 32px;
    border-radius: 12px;
    max-width: 300px;
    box-shadow: 0 16px 48px rgba(10, 31, 63, 0.25);
    z-index: 2;
}

.deli-quote-block p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 12px;
    font-style: italic;
}

/* ===== Visit ===== */
.visit {
    padding: 120px 0;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.visit-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 2px 2px, rgba(212, 160, 23, 0.08) 1px, transparent 0);
    background-size: 32px 32px;
    pointer-events: none;
}

.visit-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.visit-info {
    padding-top: 20px;
}

.visit-desc {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-mid);
    margin-bottom: 40px;
}

.visit-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.visit-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.visit-detail-icon {
    width: 48px;
    height: 48px;
    background: var(--navy);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.visit-detail-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    margin-bottom: 4px;
}

.visit-detail-value {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: var(--navy);
    line-height: 1.5;
}

.visit-link {
    transition: color 0.2s;
}

.visit-link:hover {
    color: var(--gold);
}

.visit-map {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(10, 31, 63, 0.12);
}

.visit-map-wrapper {
    position: relative;
    padding-bottom: 75%;
    height: 0;
}

.visit-map-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ===== Footer ===== */
.footer {
    background: var(--navy-dark);
    padding: 64px 0 32px;
}

.footer-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 32px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.footer-logo-mark {
    width: 36px;
    height: 36px;
    background: var(--gold);
    color: var(--navy);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.05em;
    clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

.footer-logo-text {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 14px;
    color: var(--white);
}

.footer-logo-accent {
    color: var(--gold);
}

.footer-tagline {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
    max-width: 300px;
    line-height: 1.6;
    margin-top: 4px;
}

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

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.2s;
}

.footer-bottom a:hover {
    color: var(--gold);
}

/* ===== Animations ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-visual {
        max-width: 500px;
    }

    .about-layout,
    .deli-layout,
    .visit-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .deli-content {
        padding-right: 0;
    }

    .deli-img-stack {
        height: 480px;
        max-width: 500px;
    }

    .deli-quote-block {
        left: -16px;
        bottom: 40px;
    }

    .market-card--large {
        grid-column: 1 / -1;
    }

    .market-card:not(.market-card--large):not(.market-card--wide) {
        grid-column: span 6;
    }

    .market-card--wide {
        grid-template-columns: 1fr;
    }

    .market-card--wide img {
        height: 280px;
    }
}

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

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding: 100px 0 80px;
        min-height: auto;
    }

    .hero-headline {
        font-size: clamp(28px, 7vw, 42px);
    }

    .hero-stats {
        gap: 20px;
    }

    .hero-image-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 200px 160px;
    }

    .hero-img-1 {
        grid-row: 1 / 3;
    }

    .hero-badge {
        bottom: -12px;
        font-size: 12px;
        padding: 8px 16px;
    }

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

    .about-img-float {
        right: -16px;
        bottom: -24px;
    }

    .about-accent-block {
        top: -16px;
        left: -16px;
    }

    .deli-img-stack {
        height: 400px;
    }

    .deli-quote-block {
        position: relative;
        left: 0;
        bottom: 0;
        max-width: 100%;
        margin-top: 20px;
    }

    .deli-visual {
        order: -1;
    }

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

    .market-card:not(.market-card--large):not(.market-card--wide) {
        grid-column: 1 / -1;
    }

    .market-card--large {
        grid-column: 1 / -1;
    }

    .market-card--wide {
        grid-column: 1 / -1;
    }

    .footer-top {
        flex-direction: column;
    }

    .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;
    }

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

    .hero-stat-divider {
        display: none;
    }

    .hero-image-grid {
        grid-template-columns: 1fr;
        grid-template-rows: 280px 160px 160px;
    }

    .hero-img-1,
    .hero-img-2,
    .hero-img-3 {
        grid-row: auto;
        grid-column: auto;
    }

    .about-img-float {
        position: relative;
        right: 0;
        bottom: 0;
        margin-top: 16px;
        border: none;
        border-radius: 12px;
    }

    .about-accent-block {
        position: relative;
        top: 0;
        left: 0;
        display: inline-flex;
        margin-bottom: 16px;
    }

    .about-visual {
        max-width: 100%;
    }

    .deli-img-stack {
        height: 320px;
    }

    .visit-layout {
        gap: 48px;
    }
}
