/* ============================================================
   HARROW — Standard Page Styling  |  style1.css
   Complementary white theme for About, Catalogue, etc.
   ============================================================ */

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

:root {
    --white: #ffffff;
    --black: #000000;
    --off-white: #f5f4f0;
    --ease-smooth: cubic-bezier(0.77, 0, 0.175, 1);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

html,
body {
    width: 100%;
    min-height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    /* Enable scrolling for content pages */
    background: var(--white);
    font-family: "Helvetica Now Text", "Helvetica", "Arial", Sans-Serif;
    color: var(--black);
    -webkit-font-smoothing: antialiased;
}

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

/* ─────────────────────────────────────────────────────────
   SITE HEADER (WHITE THEME & RESPONSIVE)
   ───────────────────────────────────────────────────────── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    background: var(--white);
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: all 0.4s var(--ease-smooth);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.site-header.scrolled {
    height: 70px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
}

.header-container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-left-group {
    display: flex;
    align-items: center;
    gap: 30px;
}

.header-logo img {
    height: clamp(40px, 6vw, 75px);
    width: auto;
    display: block;
}

.site-header .nav-hamburger {
    position: static;
    background: transparent;
    border: none;
    cursor: pointer;
    width: 22px;
    height: 14px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.site-header .nav-hamburger span {
    display: block;
    width: 100%;
    height: 1px;
    background: var(--black);
    transition: transform 0.3s;
}

.site-header .nav-link {
    color: var(--black);
    text-decoration: none;
    font-size: clamp(8px, 1.5vw, 10px);
    letter-spacing: 0.15em;
    font-weight: 400;
    text-transform: uppercase;
}

.nav-search-btn {
    background: none;
    border: none;
    color: var(--black);
    cursor: pointer;
    padding: 10px;
    display: flex;
    align-items: center;
    transition: opacity 0.3s;
}

.nav-search-btn:hover {
    opacity: 0.6;
}

/* ─────────────────────────────────────────────────────────
   EDITORIAL DESIGN SYSTEM
   ───────────────────────────────────────────────────────── */
.page-content {
    background: var(--white);
    color: var(--black);
    min-height: 100vh;
    padding-top: 0;
    /* Remove gap, let content start at top */
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Page Hero */
.page-hero {
    position: relative;
    width: 100%;
    height: 80vh;
    /* Taller for more impact */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--black);
}

.hero-image-wrapper {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transform: scale(1.05);
    animation: heroZoomOut 10s ease-out forwards;
}

@keyframes heroZoomOut {
    to {
        transform: scale(1);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.4) 0%,
            transparent 40%,
            rgba(0, 0, 0, 0.6) 100%);
    z-index: 2;
}

.hero-text-container {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 40px;
}

.page-title {
    font-family: "Times New Roman", "Helvetica Now Text", "Arial", Sans-Serif;
    font-size: clamp(40px, 8vw, 100px);
    font-weight: 300;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 0.95;
    margin-bottom: 24px;
}

.page-title-classic {
    font-family: "Times New Roman", "Helvetica Now Text", "Arial", Sans-Serif;
    font-size: clamp(54px, 10vw, 120px);
    font-weight: 300;
    line-height: 0.9;
    letter-spacing: -0.03em;
    color: var(--black);
    margin-bottom: 40px;
}

.page-subtitle {
    color: var(--white);
    font-size: clamp(10px, 1.2vw, 14px);
    letter-spacing: 0.35em;
    text-transform: uppercase;
    opacity: 0.9;
    font-weight: 300;
}

/* Animations */
.animate-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1.2s var(--ease-out) forwards;
}

.animate-up--delay {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1.2s var(--ease-out) 0.3s forwards;
}

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

/* Scroll Reveal Base */
.reveal-classic {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1.4s var(--ease-out), transform 1.4s var(--ease-out);
    will-change: opacity, transform;
}

.reveal-classic.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Delay Helpers */
.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

.delay-400 {
    transition-delay: 0.4s;
}

.delay-500 {
    transition-delay: 0.5s;
}

/* Editorial Grid */
.editorial-section {
    padding: 100px 0;
}

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

.section-tagline {
    display: block;
    font-size: 10px;
    letter-spacing: 0.4em;
    margin-bottom: 24px;
    opacity: 0.5;
    text-transform: uppercase;
}

.section-title {
    font-family: "Times New Roman", "Helvetica Now Text", "Arial", Sans-Serif;
    font-size: clamp(32px, 4.5vw, 64px);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 40px;
}

.section-para {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 30px;
}

.stats-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
}

.stat-label {
    display: block;
    font-size: 11px;
    letter-spacing: 0.2em;
    font-weight: 600;
    margin-bottom: 12px;
}

.stat-desc {
    font-size: 13px;
    color: #777;
    line-height: 1.5;
}

/* Services */
.services-section {
    background: #fcfcfc;
    padding: 100px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: #eee;
    border: 1px solid #eee;
}

.service-card {
    background: var(--white);
    padding: 60px;
    transition: background 0.4s;
}

.service-card:hover {
    background: #f9f9f9;
}

.service-title {
    font-family: "Times New Roman", "Helvetica Now Text", "Arial", Sans-Serif;
    font-size: 22px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.service-desc {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
}

/* Category Nav */
.category-nav {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 80px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 20px;
}

.cat-btn {
    background: none;
    border: none;
    font-family: "Helvetica Now Text", "Helvetica", "Arial", Sans-Serif;
    font-size: 11px;
    letter-spacing: 0.25em;
    color: rgba(0, 0, 0, 0.4);
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    padding: 10px 0;
}

.cat-btn.active,
.cat-btn:hover {
    color: var(--black);
}

.cat-btn::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--black);
    transition: width 0.3s;
}

.cat-btn.active::after {
    width: 100%;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.product-card {
    transition: transform 0.4s var(--ease-out);
}

.product-image {
    position: relative;
    overflow: hidden;
    background: #f9f9f9;
    aspect-ratio: 3/4;
}

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

.product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s;
}

.view-btn {
    background: var(--white);
    color: var(--black);
    text-decoration: none;
    padding: 15px 30px;
    font-size: 10px;
    letter-spacing: 0.2em;
    font-weight: 400;
    transform: translateY(20px);
    transition: all 0.4s var(--ease-out);
}

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

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-card:hover .view-btn {
    transform: translateY(0);
}

.product-info {
    margin-top: 24px;
}

.product-cat {
    font-size: 9px;
    letter-spacing: 0.2em;
    opacity: 0.5;
    display: block;
    margin-bottom: 8px;
}

.product-name {
    font-family: "Times New Roman", "Helvetica Now Text", "Arial", Sans-Serif;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.05em;
    margin-bottom: 6px;
}

.product-meta {
    font-size: 10px;
    letter-spacing: 0.1em;
    opacity: 0.4;
}

/* Responsive */
@media (max-width: 991px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .category-nav {
        gap: 20px;
        overflow-x: auto;
        justify-content: flex-start;
        padding-left: 20px;
    }

    .cat-btn {
        white-space: nowrap;
    }
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}

/* Sustainability */
.sustainability-section {
    background: #111;
    color: var(--white);
    padding: 140px 0;
    position: relative;
}

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

.section-para.white {
    color: #aaa;
}

/* ─────────────────────────────────────────────────────────
   RESPONSIVE OVERRIDES
   ───────────────────────────────────────────────────────── */
@media (max-width: 991px) {
    .editorial-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

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

    .editorial-image {
        order: -1;
    }

    .header-container {
        padding: 0 24px;
    }
}

@media (max-width: 768px) {
    .site-header {
        height: 70px;
    }

    .header-container {
        padding: 0 20px;
    }

    .header-left-group {
        gap: 15px;
    }

    .header-logo img {
        height: 35px;
    }

    .page-content {
        padding-top: 0;
    }

    /* Remove offset for mobile */
    .page-hero {
        height: 50vh;
    }

    .hero-text-container {
        padding: 0 30px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 24px;
    }

    .editorial-section {
        padding: 60px 0;
    }

    .page-hero {
        height: 45vh;
    }

    .site-header .nav-link {
        font-size: 8px;
    }

    .page-title {
        font-size: clamp(28px, 10vw, 42px);
        margin-bottom: 12px;
    }
}

/* ─────────────────────────────────────────────────────────
   MENU OVERLAY (Side Drawer)
   ───────────────────────────────────────────────────────── */
.menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    pointer-events: none;
    visibility: hidden;
}

.menu-overlay.open {
    pointer-events: auto;
    visibility: visible;
}

.menu-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    transition: opacity 0.45s var(--ease-smooth);
    cursor: pointer;
}

.menu-overlay.open .menu-backdrop {
    opacity: 1;
}

.menu-drawer {
    position: absolute;
    top: 0;
    left: 0;
    width: min(380px, 90vw);
    height: 100%;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
    transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    overflow: hidden;
    box-shadow: 10px 0 50px rgba(0, 0, 0, 0.15);
}

.menu-overlay.open .menu-drawer {
    transform: translateX(0);
}

.menu-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 40px 30px;
    flex-shrink: 0;
}

.menu-brand {
    font-family: "Times New Roman", "Helvetica Now Text", "Arial", Sans-Serif;
    font-size: 17px;
    font-weight: 400;
    color: #000000;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    line-height: 1;
}

.menu-brand-thin {
    font-family: "Helvetica Now Text", "Helvetica", "Arial", Sans-Serif;
    font-weight: 300;
    font-size: 10px;
    font-style: normal;
    letter-spacing: 0.22em;
    opacity: 0.65;
    margin-left: 8px;
}

.menu-close {
    background: transparent;
    border: none;
    color: #000000;
    font-family: "Helvetica Now Text", "Helvetica", "Arial", Sans-Serif;
    font-weight: 200;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    opacity: 0.5;
    padding: 0;
    transition: opacity 0.3s, transform 0.4s var(--ease-smooth);
    letter-spacing: 0;
    flex-shrink: 0;
}

.menu-close:hover {
    opacity: 1;
    transform: rotate(90deg);
}

.menu-nav {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0 0 20px;
    scrollbar-width: none;
}

.menu-nav::-webkit-scrollbar {
    display: none;
}

.menu-list {
    list-style: none;
    display: flex;
    flex-direction: column;
}

.menu-item {
    border: none;
}

.menu-item-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menu-link {
    display: block;
    font-family: "Times New Roman", "Helvetica Now Text", "Arial", Sans-Serif;
    font-size: 17px;
    font-weight: 400;
    color: #000000;
    text-decoration: none;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 10px 40px;
    transition: color 0.3s, padding-left 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    flex: 1;
}

.menu-link:hover {
    color: #444;
    padding-left: 48px;
}

.submenu-toggle {
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: "Helvetica Now Text", "Helvetica", "Arial", Sans-Serif;
    font-size: 17px;
    font-weight: 300;
    color: #000;
    padding: 10px 40px 10px 14px;
    line-height: 1;
    opacity: 0.85;
    transition: transform 0.4s var(--ease-smooth), opacity 0.2s;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
}

.submenu-toggle.active {
    transform: rotate(45deg);
}

.submenu {
    list-style: none;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.submenu.open {
    max-height: 400px;
}

.submenu-link {
    display: block;
    font-family: "Helvetica Now Text", "Helvetica", "Arial", Sans-Serif;
    font-size: 11px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.75);
    text-decoration: none;
    letter-spacing: 0.2em;
    padding: 8px 40px 8px 50px;
    text-transform: uppercase;
    transition: color 0.3s, padding-left 0.3s var(--ease-out);
}

.submenu-link:hover {
    color: #000;
    padding-left: 58px;
}

.menu-drawer-footer {
    flex-shrink: 0;
    padding: 24px 40px 40px;
}

.menu-cta-btn {
    display: block;
    width: 100%;
    text-align: center;
    font-family: "Helvetica Now Text", "Helvetica", "Arial", Sans-Serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.2em;
    color: #000;
    text-decoration: none;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.15);
    padding: 14px;
    transition: all 0.3s var(--ease-smooth);
}

.menu-cta-btn:hover {
    background: #000;
    color: #fff;
}

.submenu.open {
    max-height: 500px;
}

.submenu-link {
    display: block;
    font-size: 11px;
    color: rgba(0, 0, 0, 0.6);
    text-decoration: none;
    padding: 8px 40px 8px 55px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: color 0.3s;
}

.submenu-link:hover {
    color: var(--black);
}

/* ─────────────────────────────────────────────────────────
   SEARCH OVERLAY
   ───────────────────────────────────────────────────────── */
.search-overlay {
    position: fixed;
    inset: 0;
    z-index: 2100;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s var(--ease-smooth);
}

.search-overlay.open {
    opacity: 1;
    visibility: visible;
}

.search-inner {
    width: 100%;
    max-width: 600px;
    padding: 0 40px;
}

.search-input {
    width: 100%;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    font-size: 24px;
    outline: none;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ─────────────────────────────────────────────────────────
   PRELOADER
   ───────────────────────────────────────────────────────── */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.9s var(--ease-smooth), visibility 0.9s;
}

.preloader.done {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

.preloader-bar-wrap {
    width: 180px;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.preloader-bar {
    height: 100%;
    width: 0%;
    background: var(--white);
    transition: width 0.3s;
}

.preloader-label {
    font-size: 9px;
    letter-spacing: 0.3em;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
}

/* ─────────────────────────────────────────────────────────
   SITE FOOTER
   ───────────────────────────────────────────────────────── */
.site-footer {
    background: #111;
    color: var(--white);
    padding: 100px 0 0;
    margin-top: 100px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    padding-bottom: 80px;
}

.footer-title {
    font-size: 11px;
    letter-spacing: 0.25em;
    margin-bottom: 35px;
    font-weight: 500;
    color: var(--white);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 10px;
    letter-spacing: 0.15em;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--white);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    border-radius: 4px;
    transition: all 0.3s;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    font-size: 9px;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.4);
}

.footer-legal {
    display: flex;
    gap: 30px;
}

.footer-legal a {
    font-size: 9px;
    letter-spacing: 0.25em;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: var(--white);
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .footer-legal {
        justify-content: center;
    }
}

/* ─────────────────────────────────────────────────────────
   KEYFRAMES
   ───────────────────────────────────────────────────────── */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes shimmer {
    to {
        left: 160%;
    }
}

@keyframes logoReveal {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ─────────────────────────────────────────────────────────
   GLOBAL BUTTONS (EDITORIAL SUITE)
   ───────────────────────────────────────────────────────── */
.auth-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 45px;
    font-family: "Helvetica Now Text", "Helvetica", "Arial", Sans-Serif;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.5s var(--ease-smooth);
    border: 1px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

/* Solid Black Variant */
.auth-btn.black {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.auth-btn.black:hover {
    background: transparent;
    color: var(--black);
}

/* Outline Variant */
.auth-btn.outline {
    background: transparent;
}

.auth-btn.outline.black {
    border-color: var(--black);
    color: var(--black);
}

.auth-btn.outline.black:hover {
    background: var(--black);
    color: var(--white);
}

/* ─────────────────────────────────────────────────────────
   PANORAMIC HERO (LIGHT BANNER SYSTEM)
   ───────────────────────────────────────────────────────── */
.hero-panoramic {
    position: relative;
    height: 35vh;
    min-height: 300px;
    margin-top: 90px;
    background: #fdfcf9;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.panoramic-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    padding: 0 120px;
}

.panoramic-text {
    z-index: 5;
    padding: 0 40px;
}

.panoramic-media {
    height: 35vh;
    min-height: 300px;
    position: relative;
}

.panoramic-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.panoramic-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #fdfcf9 0%, transparent 15%, transparent 85%, #fdfcf9 100%);
    z-index: 2;
}

/* Responsive Panoramic */
@media (max-width: 768px) {
    .hero-panoramic {
        height: auto !important;
        margin-top: 70px !important;
        padding: 60px 0 !important;
    }

    .panoramic-grid {
        grid-template-columns: 1fr !important;
        text-align: center;
        padding: 0 24px !important;
    }

    .panoramic-media {
        height: 300px !important;
        order: -1;
    }
}