@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@600;700;800&family=Montserrat:wght@400;500;600;700&display=swap');

:root {
    --color-bg: #050505;
    --color-bg-soft: #101312;
    --color-surface: rgba(15, 17, 16, 0.84);
    --color-gold: #d4b06a;
    --color-green: #0f3d2e;
    --color-green-soft: #1d5a46;
    --color-white: #f7f3eb;
    --color-text-muted: rgba(247, 243, 235, 0.7);
    --color-line: rgba(212, 176, 106, 0.18);
    --shadow-luxury: 0 28px 70px rgba(0, 0, 0, 0.55);
}

body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #000;
    color: #fff;
}

/* =============================================
   SITE HEADER — sticky, dark luxury
   ============================================= */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 80, 0, 0.35);
    transition: background 0.3s ease;
}

.site-nav {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

/* Logo */
.site-logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
    text-decoration: none;
    flex-shrink: 0;
}
.site-logo-top {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.52rem;
    font-weight: 500;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: rgba(200,200,190,0.6);
}
.site-logo-brand {
    font-family: 'Cinzel', serif;
    font-size: 1.55rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #0f3d2e;
    line-height: 1;
}

/* Nav links */
.site-nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin: 0;
    padding: 0;
}
.site-nav-links li { margin: 0; }

.snl {
    font-family: 'Montserrat', sans-serif;
    color: rgba(220,220,210,0.7);
    text-decoration: none;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 8px 14px;
    border-radius: 3px;
    position: relative;
    transition: color 0.25s ease;
}
.snl::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 12px;
    right: 12px;
    height: 2px;
    background: #0f3d2e;
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
}
.snl:hover,
.snl.active {
    color: #fff;
}
.snl:hover::after,
.snl.active::after {
    transform: scaleX(1);
}

/* CTA button in nav */
.site-nav-cta {
    flex-shrink: 0;
    display: inline-block;
    padding: 9px 22px;
    border: 1.5px solid #0f3d2e;
    border-radius: 3px;
    color: #fff !important;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}
.site-nav-cta:hover {
    background: #0f3d2e;
    color: #fff !important;
    box-shadow: 0 0 16px #0f3d2e;
}

/* Hamburger */
.nav-toggle {
    display: none;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    gap: 6px;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #0f3d2e;
    border-radius: 1px;
    transition: all 0.3s ease;
    transform-origin: center;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* Push body down so content not under fixed header */
body { padding-top: 68px; }

/* =============================================
   HERO — full-width cinematic
   ============================================= */
.hero-full {
    position: relative;
    width: 100%;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #000;
}

/* Background image — shifted right so left is clear for text */
.hero-bg {
    position: absolute;
    inset: 0;
    background-repeat: no-repeat;
    background-size: 70% auto;
    background-position: right center;
    filter: brightness(0.7) saturate(0.85);
}

/* Global dark overlay */
.hero-overlay-dark {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.52);
    z-index: 1;
}

/* Left fade — image melts into black on the left */
.hero-overlay-left {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        #000 0%,
        rgb(0, 0, 0) 18%,
        rgb(0, 0, 0) 38%,
        rgba(0, 0, 0, 0) 60%,
        transparent 100%
    );
    z-index: 2;
}

/* Cinematic vignette */
.hero-overlay-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, transparent 40%, rgba(0,0,0,0.55) 100%);
    z-index: 3;
}

/* Content wrapper */
.hero-content-wrap {
    position: relative;
    z-index: 4;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-content {
    max-width: 560px;
}

/* Eyebrow — small top label */
.hero-eyebrow {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.45em;
    text-transform: uppercase;
    color: rgba(220, 220, 210, 0.75);
    margin-bottom: 14px;
    opacity: 0;
    animation: heroFadeUp 0.7s ease forwards 0.1s;
}

/* Brand name — luxury serif display */
.hero-brand {
    font-family: 'Cinzel', 'Cormorant Garamond', serif;
    font-size: clamp(64px, 10.5vw, 124px);
    letter-spacing: -0.03em;
    text-transform: uppercase;
    color: #0f3d2e;
    margin: 0 0 16px;
    line-height: 0.95;
    text-shadow: 0 4px 20px rgba(0,0,0,0.6), 0 1px 0 rgba(255,255,255,0.04);
    opacity: 0;
    animation: heroFadeUp 0.8s ease forwards 0.2s;
}

/* Tagline — elegant italic subline */
.hero-tagline {
    font-family: 'Cormorant Garamond', 'Cinzel', serif;
    font-size: 1.15rem;
    font-weight: 300;
    font-style: italic;
    letter-spacing: 0.04em;
    color: rgba(210, 210, 200, 0.82);
    margin: 0 0 20px;
    opacity: 0;
    animation: heroFadeUp 0.7s ease forwards 0.35s;
}

/* Desc paragraph — Montserrat clean body */
.hero-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.92rem;
    line-height: 1.9;
    color: #cccccc;
    font-weight: 400;
    letter-spacing: 0.01em;
    margin: 0 0 36px;
    max-width: 460px;
    opacity: 0;
    animation: heroFadeUp 0.7s ease forwards 0.5s;
}
.hero-accent {
    color: #0f3d2e;
    font-weight: 600;
}

/* CTA buttons */
.hero-btn-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    animation: heroFadeUp 0.7s ease forwards 0.65s;
}
.hero-btn {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 15px 32px;
    border-radius: 3px;
    text-decoration: none !important;
    transition: all 0.28s ease;
    position: relative;
    overflow: hidden;
}
.hero-btn::after {
    content: '';
    position: absolute;
    top: 0; left: -130%; width: 60%; height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.4s ease;
}
.hero-btn:hover::after { left: 130%; }

.hero-btn-primary {
    background: #0f3d2e;
    border: 2px solid #0f3d2e;
    color: #fff !important;
}
.hero-btn-primary:hover {
    background: #155f30;
    border-color: #155f30;
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(26,122,60,0.55);
}
.hero-btn-outline {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.45);
    color: #fff !important;
}
.hero-btn-outline:hover {
    border-color: #0f3d2e;
    color: #0f3d2e !important;
    transform: translateY(-3px);
}

@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* =============================================
   HERO STRIP — bottom feature bar
   ============================================= */
.hero-strip {
    background: #0a0a0a;
    border-top: 1px solid rgba(26,122,60,0.2);
    border-bottom: 1px solid rgba(26,122,60,0.1);
    padding: 0;
}
.hero-strip-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: stretch;
}
.hero-strip-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 22px 20px;
    transition: background 0.25s ease;
}
.hero-strip-item:hover {
    background: rgba(26,122,60,0.07);
}
.strip-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    color: #0f3d2e;
    opacity: 0.9;
}
.strip-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.strip-text strong {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #fff;
}
.strip-text span {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.5;
}
.hero-strip-divider {
    width: 1px;
    background: rgba(255,255,255,0.07);
    margin: 12px 0;
}

/* =============================================
   LEGACY header — kept for fallback
   ============================================= */
header {
    background-color: #000;
    padding: 1rem;
    border-bottom: 2px solid #0f3d2e;
    position: relative;
    z-index: 1000;
}

.main-nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.nav-logo{
    display: flex;
    flex-direction: column;
    align-items: center; /* centers horizontally */
    text-align: center;  /* centers text */
    line-height: 1;
        text-decoration: underline green;
}

/* TOP TEXT */
.slugon{
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: white;
    margin: 0;
    font-family: FangSong; /* FIXED typo */
    text-decoration: none;

}

/* BOTTOM TEXT */
.Nassir_slugon_text{
    font-family: FangSong;
    font-size: 3rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: #0f3d2e;
    margin: 0;
    text-decoration: none;

}


.nav-logo_2{
    display: flex;
    flex-direction: column;
    text-decoration: none;


        
    
    
}

/* TOP TEXT */
.slugon_2{
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: white;
    text-decoration: none;
    margin: 0;
    font-family: FangSong; /* FIXED typo */
}

/* BOTTOM TEXT */
.Nassir_slugon_text_2{
    font-family: FangSong;
    font-size: 6rem;
    font-weight: 400;
    text-decoration: none;
    color: #0f3d2e;
    margin: 0;
          line-height: 1;
        text-decoration: underline green;
        text-decoration-thickness: 3px; /* change this */
        text-underline-offset: 11px;
}


.nav-toggle {
    display: none;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    gap: 6px;
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: #0f3d2e;
    border-radius: 1px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.main-nav .nav-links {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.main-nav .nav-links li {
    margin: 0;
}

.main-nav .nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.main-nav .nav-links a:hover {
    color: #fff;
}



/* Legacy hero kept for reference — new hero uses .hero-full */
.hero {
    background: linear-gradient(to bottom, #000);
    min-height: 400px;
    display: flex;
    align-items: center;
    padding: 2rem;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.hero-left {
    flex: 1;
    text-align: left;
}

.hero-right {
    flex: 1;
    text-align: center;
}

.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.5);
}

/* Titel styling */
.gm-hero-title {
    font-family: 'Anton', sans-serif;
    font-size: 72px;
    font-weight: 400;
    text-transform: uppercase;
    color: #ffffff;
    text-align: left;
    margin: 0 0 18px 0;
    letter-spacing: 0.03em;
    opacity: 0;
    animation: gm-title-fade 1s ease-out forwards;
}

/* Gouden woord */
.gm-title-gold {
    color: #DABE62;
    position: relative;
    display: inline-block;
    animation: gm-title-glow 2.8s ease-in-out infinite alternate;
}

/* Gouden lijn onder Kapperszaak */
.gm-title-gold::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, transparent, #DABE62, transparent);
    box-shadow: 0 0 12px rgba(218, 190, 98, 0.6);
    border-radius: 3px;
    animation: gm-line-glow 2.8s ease-in-out infinite alternate;
}

/* Fade-in + slide-up effect */
@keyframes gm-title-fade {
    0% {
        opacity: 0;
        transform: translateY(25px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Gouden glow-effect */
@keyframes gm-title-glow {
    0% {
        text-shadow: 0 0 6px rgba(218,190,98,0.2);
    }
    100% {
        text-shadow: 0 0 22px rgba(218,190,98,0.8),
                     0 0 38px rgba(218,190,98,0.5);
    }
}

/* Glow animatie voor de onderlijn */
@keyframes gm-line-glow {
    0% {
        opacity: 0.5;
        transform: scaleX(0.7);
    }
    100% {
        opacity: 1;
        transform: scaleX(1);
    }
}

.gm-hero-text-wrapper {
    max-width: 720px;
    margin: 0 0 28px 0;
    animation: gm-hero-fade-up 0.9s ease-out both;
}

.gm-hero-text {
    font-size: 18px;
    line-height: 1.8;
    color: #ffffff;
    font-weight: 300;
    margin: 0;
}

.gm-hero-text .gm-gold {
    color: #0f3d2e;
    font-weight: 600;
    position: relative;
    animation: gm-gold-pulse 2.4s ease-in-out infinite alternate;
}

/* Subtiele glanslijn onder de gouden woorden */
.gm-hero-text .gm-gold::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, #0f3d2e, transparent);
    opacity: 0.7;
}

/* Hero fade / slide animatie */
@keyframes gm-hero-fade-up {
    0% {
        opacity: 0;
        transform: translateY(18px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Gouden pulse / glow animatie */
@keyframes gm-gold-pulse {
    0% {
        text-shadow: 0 0 0px #0f3d2e;
    }
    100% {
        text-shadow: 0 0 10px #0f3d2e;
    }
}

/* Mobile automatic hover animations */
@keyframes mobile-hover-primary {
    0%, 50%, 100% {
        transform: rotate(2deg);
        z-index: 1;
    }
    12.5%, 37.5% {
        transform: rotate(8deg) translateY(-6px);
        z-index: 3;
    }
}

@keyframes mobile-hover-secondary {
    0%, 50%, 100% {
        transform: rotate(-4deg);
        z-index: 2;
    }
    62.5%, 87.5% {
        transform: rotate(-10deg) scale(1.02);
        z-index: 3;
    }
}

.gm-button-row {
    display: flex;
    justify-content: flex-start;
    gap: 22px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.gm-btn {
    font-family: 'Merriweather', serif;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none !important;
    position: relative;
    overflow: hidden;
    transition:
      background-color 0.3s ease,
      border-color 0.3s ease,
      box-shadow 0.3s ease,
      transform 0.2s ease;
}

/* ✨ GLANS EFFECT - toegevoegd aan alle knoppen */
.gm-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
      120deg,
      transparent 0%,
      rgba(255,255,255,0.45) 50%,
      transparent 100%
    );
    transition: all 0.45s ease;
}

.gm-btn:hover::after {
    left: 120%;
}

/* VOLLEDIGE GOUDEN ACHTERGROND */
.gm-btn-full {
    background-color: #0f3d2e;
    border: 2px solid #0f3d2e;
    color: #fff !important;
}

.gm-btn-full:hover {
    background-color: #c9ac54;
    border-color: #c9ac54;
    color: #000000 !important;
    transform: translateY(-3px);
    box-shadow: 0 0 18px rgba(218, 190, 98, 0.6);
}
.nav-link-home  {
    color: #0f3d2e !important;
}

/* OUTLINE BUTTON VARIANT */
.gm-btn-outline {
    background-color: transparent;
    border: 2px solid #0f3d2e;
    color: #ffffff !important;
}

.gm-btn-outline:hover {
    background-color: #DABE62;
    border-color: #DABE62;
    color: #000000 !important;
    transform: translateY(-3px);
    box-shadow: 0 0 18px rgba(218, 190, 98, 0.6);
}

.hero-services {
    padding: 2rem;
    background-color: #111;
    text-align: center;
}

.hero-services-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.service-box {
    background-color: #222;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.5);
    width: 200px;
}

.service-box img {
    width: 50px;
    height: 50px;
    margin-bottom: 0.5rem;
}

.service-box h3 {
    color: #0f3d2e;
    margin: 0.5rem 0;
}

.service-box p {
    color: #fff;
    font-weight: bold;
}

/* ============================================================
   SERVICES SECTION — Luxury Dark Theme
   ============================================================ */

.services {
    background-color: #050505;
    padding: 7rem 2rem;
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(26,122,60,0.35), transparent);
}

/* Header */
.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-eyebrow {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: #0f3d2e;
    margin-bottom: 1rem;
}

.services-heading {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #f0f0ec;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin: 0 0 1.2rem;
}

.services-heading-line {
    width: 48px;
    height: 2px;
    background: #0f3d2e;
    margin: 0 auto;
    border-radius: 2px;
}

/* Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Card */
.service-card {
    background: #0b0b0b;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
    cursor: default;
    overflow: hidden;
}

.service-card:hover {
    
    border-color: #0f3d2e;
    box-shadow: 0 16px 48px rgba(0,0,0,0.6), 0 0 0 1px rgba(26,122,60,0.15);
}

/* Image wrapper — top section only, strictly clipped */
.service-img-wrap {
    position: relative;
    width: 100%;
    height: 260px;
    overflow: hidden;
    flex-shrink: 0;
    display: block;
}

.service-img-wrap img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    display: block;
    z-index: 0;
}

.service-card:hover .service-img-wrap img {
    transform: none;
}

/* Fade at the bottom edge of the image */
.service-img-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: linear-gradient(
        to bottom,
        transparent         0%,
        rgba(11,11,11,0.25) 35%,
        rgba(11,11,11,0.65) 65%,
        #0b0b0b             100%
    );
    pointer-events: none;
    z-index: 1;
}

/* Solid dark body — real content section */
.service-body {
    background: #0b0b0b;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0.2rem 1.4rem 1.6rem;
    gap: 0.5rem;
    flex: 1;
}

/* Icon pulled up slightly to overlap the fade bridge */
.service-icon {
    width: 44px;
    height: 44px;
    margin-top: -30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.3s ease, border-color 0.3s ease;
    position: relative;
    z-index: 1;
}


.service-icon svg {
    width: 30px;
    height: 30px;
    stroke: #0f3d2e;
}

.service-title {
    font-family: 'Cinzel', serif;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #f0f0ec;
    margin: 0;
}

.service-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.76rem;
    line-height: 1.7;
    color: #777;
    margin: 0;
}

.service-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #0f3d2e;
    letter-spacing: 0.05em;
    margin-top: 0.1rem;
}

.service-cta {
    display: inline-block;
    margin-top: 0.4rem;
    padding: 8px 20px;
    border: 1px solid rgba(26,122,60,0.4);
    color: #aaa;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    transition: border-color 0.3s, color 0.3s, background 0.3s;
}

.service-cta:hover {
    border-color: #0f3d2e;
    color: #fff;
    background: #0f3d2e;
}

/* ============================================================
   ABOUT SECTION — Luxury Dark Theme
   ============================================================ */

.about {
    background-color: #050505;
    color: #ccc;
    padding: 7rem 2rem;
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(26,122,60,0.35), transparent);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 5rem;
}

/* --- Image side --- */
.about-image-wrap {
    position: relative;
}

.about-img-frame {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 2 / 3;
    max-height: 600px;
}

.about-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    transition: transform 0.7s ease;
    filter: brightness(0.88) contrast(1.05);
}

.about-img-frame:hover .about-main-img {
    transform: scale(1.04);
}

.about-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(5,5,5,0.5) 0%,
        transparent 50%
    ),
    linear-gradient(
        to top,
        rgba(5,5,5,0.6) 0%,
        transparent 40%
    );
    pointer-events: none;
}

/* Floating accent card */
.about-accent-card {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background: #0f3d2e;
    padding: 1.4rem 1.8rem;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
    z-index: 2;
}

.about-accent-number {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.about-accent-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    margin-top: 0.35rem;
}

/* --- Text side --- */
.about-text {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.about-eyebrow {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.42em;
    text-transform: uppercase;
    color: rgba(200,200,190,0.55);
    margin-bottom: 1rem;
}

.about-heading {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: #f0f0ec;
    line-height: 1.2;
    letter-spacing: 0.03em;
    margin: 0 0 1.8rem;
}

.about-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    line-height: 1.85;
    color: #888;
    margin-bottom: 1rem;
    max-width: 520px;
}

/* Highlights list */
.about-highlights {
    list-style: none;
    padding: 0;
    margin: 1.4rem 0 2.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.about-highlights li {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.83rem;
    font-weight: 500;
    color: #bbb;
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.about-check {
    color: #0f3d2e;
    font-size: 0.6rem;
    flex-shrink: 0;
}

/* Buttons */
.about-button-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.about-btn {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.73rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    padding: 13px 28px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.about-btn-primary {
    background-color: #0f3d2e;
    border: 1px solid #0f3d2e;
    color: #fff !important;
}

.about-btn-primary:hover {
    background-color: #155f30;
    border-color: #155f30;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26,122,60,0.35);
}

.about-btn-secondary {
    background-color: transparent;
    border: 1px solid rgba(255,255,255,0.18);
    color: #ccc !important;
}

.about-btn-secondary:hover {
    border-color: #0f3d2e;
    color: #0f3d2e !important;
    transform: translateY(-2px);
}

.gallery-section {
    position: relative;
    padding: 7rem 1.5rem;
    background:
        radial-gradient(circle at top center, rgba(15, 61, 46, 0.18), transparent 32%),
        linear-gradient(180deg, #020202 0%, #080808 48%, #030303 100%);
    overflow: hidden;
}

.gallery-section::before,
.gallery-section::after {
    content: '';
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
    filter: blur(70px);
    opacity: 0.28;
}

.gallery-section::before {
    top: 10%;
    left: 8%;
    width: 220px;
    height: 220px;
    background: rgba(15, 61, 46, 0.22);
}

.gallery-section::after {
    right: 5%;
    bottom: 8%;
    width: 280px;
    height: 280px;
    background: rgba(15, 61, 46, 0.2);
}

.gallery-shell {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(42px);
    transition: opacity 0.85s ease, transform 0.95s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-section.is-inview .gallery-shell {
    opacity: 1;
    transform: translateY(0);
}

.gallery-header {
    max-width: 760px;
    margin: 0 auto 3rem;
    text-align: center;
}

.gallery-kicker {
    display: inline-block;
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.34em;
    text-transform: uppercase;
    color: #0f3d2e;
}

.gallery-header h2 {
    margin: 0 0 0.85rem;
    font-family: 'Cinzel', serif;
    font-size: clamp(2.3rem, 4vw, 3.8rem);
    line-height: 1.05;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-white);
}

.gallery-header p {
    margin: 0 auto;
    max-width: 640px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.98rem;
    line-height: 1.85;
    color: var(--color-text-muted);
}

.gallery-slider {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 1rem;
}

.gallery-viewport {
    position: relative;
    overflow: hidden;
    padding: 2.5rem 0;
    touch-action: pan-y;
    overscroll-behavior: contain;
    mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
}

.gallery-track {
    display: flex;
    align-items: center;
    gap: 1.4rem;
    width: max-content;
    padding: 0 18%;
    will-change: transform;
    transition: transform 1.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-slider.is-dragging .gallery-track,
.gallery-slider.is-dragging .gallery-slide,
.gallery-slider.is-dragging .gallery-card img {
    transition: none !important;
}

.gallery-slider.is-dragging .gallery-slide {
    filter: none;
}

.gallery-slide {
    position: relative;
    flex: 0 0 min(32vw, 360px);
    opacity: 0.34;
    transform: scale(0.82);
    transition: transform 1.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.9s ease, filter 0.9s ease;
    filter: blur(2px);
    z-index: 1;
}

.gallery-slide.is-active {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
    z-index: 3;
}

.gallery-slide.is-near {
    opacity: 0.68;
    transform: scale(0.9);
    filter: blur(1px);
    z-index: 2;
}

.gallery-section:not(.is-inview) .gallery-slide {
    opacity: 0;
    filter: blur(4px);
    transform: translateY(26px) scale(0.74);
}

.gallery-section.is-inview .gallery-slide {
    transition-delay: 0.08s;
}

.gallery-card {
    position: relative;
    margin: 0;
    overflow: hidden;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
    border: 1px solid rgba(15, 61, 46, 0.4);
    box-shadow: var(--shadow-luxury), 0 0 0 1px rgba(15, 61, 46, 0.3), 0 0 30px rgba(15, 61, 46, 0.16);
    isolation: isolate;
}

.gallery-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 18%, rgba(0, 0, 0, 0.3) 58%, rgba(0, 0, 0, 0.82) 100%);
    z-index: 1;
}

.gallery-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 61, 46, 0.2), transparent 34%, transparent 65%, rgba(15, 61, 46, 0.26));
    z-index: 1;
    mix-blend-mode: screen;
}

.gallery-card img {
    display: block;
    width: 100%;
    aspect-ratio: 5 / 6.2;
    object-fit: cover;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
    transform: scale(1.01);
    transition: transform 0.8s ease;
}

.gallery-slide.is-active .gallery-card img {
    transform: scale(1.06);
}

.gallery-caption {
    position: absolute;
    left: 1.35rem;
    right: 1.35rem;
    bottom: 1.3rem;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 0.32rem;
}

.gallery-caption-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(15, 61, 46, 0.95);
}

.gallery-caption strong {
    font-family: 'Cinzel', serif;
    font-size: 1.28rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--color-white);
}

.gallery-nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border: 1px solid rgba(15, 61, 46, 0.45);
    border-radius: 50%;
    background: rgba(9, 9, 9, 0.88);
    color: var(--color-white);
    cursor: pointer;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.38);
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.gallery-nav:hover {
    transform: translateY(-2px);
    border-color: rgba(15, 61, 46, 0.95);
    background: rgba(15, 61, 46, 0.9);
    box-shadow: 0 16px 34px rgba(15, 61, 46, 0.32);
}

.gallery-nav span {
    font-size: 1.25rem;
    line-height: 1;
}

.gallery-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.65rem;
    margin-top: 2rem;
}

.gallery-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: none;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.22);
    cursor: pointer;
    transition: width 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.gallery-dot.is-active {
    width: 34px;
    background: linear-gradient(90deg, #0f3d2e, rgba(15, 61, 46, 0.46));
    box-shadow: 0 0 18px rgba(15, 61, 46, 0.34);
}

.contact {
    padding: 5.5rem 1.5rem;
    background-color: #050505;
    border-top: 1px solid rgba(26,122,60,0.2);
}

.contact h2 {
    margin: 0 0 0.9rem;
    font-family: 'Cinzel', serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #0f3d2e;
}

.contact-inner {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.contact-copy {
    margin: 0 auto 2rem;
    max-width: 560px;
    color: #b8b8b8;
    line-height: 1.8;
    font-family: 'Montserrat', sans-serif;
}

.contact-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.85rem;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    width: 100%;
    box-sizing: border-box;
    padding: 0.9rem 1rem;
    border: 1px solid rgba(15, 61, 46, 0.45);
    border-radius: 8px;
    text-decoration: none;
    color: #f0f0ec;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.92rem;
    transition: border-color 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.contact-link:hover {
    border-color: #0f3d2e;
    background-color: rgba(15, 61, 46, 0.18);
    color: #fff;
}

.contact-link svg {
    width: 19px;
    height: 19px;
    fill: #0f3d2e;
    flex-shrink: 0;
}

@media (max-width: 480px) {
    .contact {
        padding: 4rem 1rem;
    }

    .contact-link {
        justify-content: flex-start;
        font-size: 0.86rem;
    }
}

footer {
    background-color: #080808;
    color: #ccc;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    overflow: hidden;
    padding-top: 200px;
    border-top: 1px solid rgba(26,122,60,0.2);
}

.footer-waves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 220px;
    background: transparent;
    z-index: 1;
}

.footer-waves svg {
    width: 100%;
    height: 100%;
    display: block;
    opacity: 0.06;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    padding: 2rem 2rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    gap: 2rem;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-column h3 {
    color: #0f3d2e;
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    margin-bottom: 1rem;
    font-weight: 700;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(26,122,60,0.2);
}

.opening-hours {
    list-style: none;
    padding: 0;
    margin: 0;
}

.opening-hours li {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: #888;
}

.opening-hours li:last-child {
    border-bottom: none;
}

.nav-links {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.nav-links li {
    margin-bottom: 0.5rem;
}

.nav-links a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s, padding-left 0.25s;
}

.nav-links a:hover {
    color: #0f3d2e;
    padding-left: 5px;
}

.footer-column p {
    margin: 0.5rem 0;
    color: #ccc;
}

.footer-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: 1px solid #0f3d2e;
    color: #0f3d2e;
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    margin: 1rem 0;
    transition: background-color 0.3s, color 0.3s;
}

.footer-btn:hover {
    background-color: #0f3d2e;
    color: #fff;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icons a {
    color: #666;
    text-decoration: none;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #0f3d2e;
}

.footer-bottom {
    text-align: center;
    padding: 1rem;
    background-color: #050505;
    border-top: 1px solid rgba(255,255,255,0.04);
    position: relative;
    z-index: 2;
}

.footer-bottom p {
    margin: 0;
    color: #444;
    font-size: 0.8rem;
    font-family: 'Montserrat', sans-serif;
}

/* Responsive */
@media (max-width: 768px) {
    /* New header mobile */
    .nav-toggle {
        display: flex;
    }
    .site-nav-cta {
        display: none;
    }
    .site-nav-links {
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
        width: 100vw;
        background: rgba(0,0,0,0.97);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.35s ease, opacity 0.35s ease;
        z-index: 999;
    }
    .site-nav-links.active {
        max-height: 400px;
        opacity: 1;
    }
    .site-nav-links li {
        border-bottom: 1px solid rgba(46,204,113,0.1);
    }
    .snl {
        display: block;
        padding: 1rem 1.5rem;
        font-size: 0.78rem;
    }
    .snl::after { display: none; }
    .snl.active { color: #0f3d2e; }
    .site-nav { position: relative; }

    /* Hero mobile — image as full bg, centered/cropped */
    .hero-full {
        min-height: 75svh;
        align-items: flex-end;
        padding-bottom: 3rem;
    }
    .hero-bg {
        background-size: cover;
        background-position: center top;
        filter: brightness(0.5) saturate(0.85);
    }
    .hero-overlay-left {
        background: linear-gradient(
            to top,
            #000 0%,
            rgba(0,0,0,0.85) 30%,
            rgba(0,0,0,0.45) 65%,
            transparent 100%
        );
    }
    .hero-overlay-dark { background: rgba(0,0,0,0.45); }
    .hero-content-wrap { padding: 0 1.6rem; }
    .hero-content { max-width: 100%; text-align: center; }
    .hero-brand { font-size: clamp(52px, 18vw, 88px); }
    .hero-tagline { font-size: 0.92rem; }
    .hero-desc {
        font-size: 0.88rem;
        max-width: 100%;
        margin-bottom: 2rem;
    }
    .hero-btn {
        width: 100%;
        max-width: 320px;
        text-align: center;
        padding: 14px 24px;
        box-sizing: border-box;
    }
    .hero-btn-row {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    /* Strip mobile */
    .hero-strip-inner { flex-direction: column; }
    .hero-strip-divider { width: 100%; height: 1px; margin: 0; }
    .hero-strip-item { padding: 16px; }

    /* Legacy nav mobile */
    .main-nav .nav-links {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        width: 100vw;
        background: #000;
        flex-direction: column;
        align-items: stretch;
        padding: 0;
        gap: 0;
        border-radius: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.35s ease, opacity 0.35s ease;
        z-index: 999;
        margin-left: -1rem;
    }
    .main-nav .nav-links.active {
        max-height: 500px;
        opacity: 1;
    }
    .main-nav .nav-links li {
        margin: 0;
        border-bottom: 1px solid rgba(218, 190, 98, 0.15);
    }
    .main-nav .nav-links li:last-child {
        border-bottom: none;
    }
    .main-nav .nav-links a {
        padding: 1.1rem 1.8rem;
        background: transparent;
        border-radius: 0;
        color: #f7f7f7;
        position: relative;
        display: block;
        transition: all 0.25s ease;
    }
    .main-nav .nav-links a:active {
        background: rgba(218, 190, 98, 0.1);
    }
    .main-nav .nav-links a.active {
        color: #fff;
        background: rgba(218, 190, 98, 0.08);
    }
    .main-nav .nav-links a.active::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 3px;
        background: #DABE62;
    }
    .main-nav {
        position: relative;
    }
    .footer-content {
        flex-direction: column;
        padding: 2rem 1rem 1rem;
    }
    footer {
        padding-top: 220px;
    }
    .footer-waves {
        height: 240px;
    }
    .footer-column {
        margin-bottom: 2rem;
    }
    .opening-hours li {
        flex-direction: column;
        align-items: flex-start;
    }
    .social-icons {
        justify-content: center;
    }
    /* About mobile */
    .about {
        padding: 4rem 1.4rem;
    }
    .about-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .about-image-wrap {
        order: -1;
    }
    .about-img-frame {
        aspect-ratio: 2 / 3;
        max-height: 420px;
        width: 55%;
        margin: 0 auto;
    }
    .about-main-img { object-position: center center; }
    .service-img-wrap img { object-position: center center; }
    .about-accent-card {
        bottom: -1rem;
        right: 0.5rem;
        padding: 0.9rem 1.1rem;
    }
    .about-accent-number {
        font-size: 1.5rem;
    }
    .about-accent-label {
        font-size: 0.6rem;
    }
    .about-text {
        text-align: center;
        align-items: center;
    }
    .about-heading {
        font-size: clamp(1.5rem, 7vw, 2.2rem);
    }
    .about-desc {
        max-width: 100%;
        text-align: center;
    }
    .about-highlights {
        align-items: flex-start;
        width: 100%;
        max-width: 420px;
    }
    .about-button-row {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    .about-btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

/* Responsive voor tablet */
@media (max-width: 1024px) {
    .gm-hero-title { font-size: 56px; }
    .hero-container { flex-direction: column; text-align: center; }
    .hero-left { text-align: center; }
    .gm-button-row { justify-content: center; }

    /* Hero tablet — image still right-side but tighter */
    .hero-bg {
        background-size: 80% auto;
        background-position: right center;
    }
    .hero-content { max-width: 480px; }
    .hero-content-wrap { padding: 0 2rem; }

    /* About tablet — single column */
    .about-container {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    .about-image-wrap { order: -1; }
    .about-img-frame {
        aspect-ratio: 2 / 3;
        max-height: 480px;
        width: 60%;
        margin: 0 auto;
    }
    .about-text { text-align: center; align-items: center; }
    .about-highlights { align-items: flex-start; max-width: 500px; }
    .about-button-row { justify-content: center; }

    /* Services tablet: 2 columns */
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Larger screens — cap about image height */
@media (min-width: 1025px) {
    .about-img-frame {
        max-height: 620px;
    }
}

/* Responsive voor mobiel */
@media (max-width: 768px) {
    .gm-hero-title {
        font-size: 42px;
        margin-bottom: 12px;
        text-align: center;
    }
    .gm-hero-text {
        font-size: 16px;
        line-height: 1.7;
        text-align: center;
    }
    .gm-button-row {
        gap: 14px;
    }
    .gm-btn {
        width: 100%;
        max-width: 320px;
        text-align: center;
        padding: 14px 22px;
    }
    nav ul {
        flex-direction: column;
        align-items: center;
    }
    nav li {
        margin: 0.5rem 0;
    }
    .hero {
        padding: 1rem;
    }
    .hero-services {
        padding: 1rem;
    }
    /* Services mobile */
    .services {
        padding: 4rem 1.5rem;
    }
    .services-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    .about {
        padding: 1rem;
    }
    .gallery-section {
        padding: 5rem 1rem;
    }
    .about {
        padding: 1rem;
    }
    .about-button-row {
        justify-content: center;
    }
    .about-btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
    .hero-services-container {
        gap: 1rem;
    }
    .service-box {
        width: 100%;
        max-width: 300px;
    }
    .service {
        width: 100%;
        max-width: 300px;
    }
    /* Services: single column on small phones */
    .services-grid {
        grid-template-columns: 1fr;
    }
    .service-img-wrap {
        height: auto;
        aspect-ratio: 3 / 2;
        max-height: 260px;
    }
    .service-img-wrap img { object-position: center center; }
    .gallery-slider {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    .gallery-nav {
        order: 2;
    }
    .gallery-nav-prev {
        justify-self: start;
    }
    .gallery-nav-next {
        justify-self: end;
    }
    .gallery-track {
        padding: 0 15%;
    }
    .gallery-slide {
        flex-basis: min(66vw, 280px);
        transform: none !important;
        opacity: 0.76;
        transition: opacity 0.22s linear !important;
        filter: none;
    }
    .gallery-slide.is-near {
        transform: none !important;
        opacity: 0.62;
        filter: none;
    }
    .gallery-slide.is-active {
        transform: none !important;
        opacity: 1;
        filter: none;
    }
    .gallery-section:not(.is-inview) .gallery-slide,
    .gallery-section.is-inview .gallery-slide {
        transform: none !important;
    }
    .gallery-card::after {
        opacity: 0.2;
    }
    .gallery-card img {
        aspect-ratio: 5 / 6.2 !important;
        transition: none;
        transform: none !important;
    }
    .gallery-slide.is-active .gallery-card img {
        transform: none !important;
    }
    .gallery-nav {
        display: none;
    }
    .gallery-dots {
        display: none;
    }
}

/* =============================================
   EXTRA SMALL — phones ≤ 480px
   ============================================= */
@media (max-width: 480px) {
    /* Hero */
    .hero-full {
        min-height: 70svh;
        align-items: flex-end;
        padding-bottom: 2.5rem;
    }
    .hero-bg {
        background-size: cover;
        background-position: 60% top;
        filter: brightness(0.45) saturate(0.8);
    }
    .hero-overlay-dark { background: rgba(0, 0, 0, 0); }
    .hero-overlay-left {
        background: linear-gradient(
            to top,
            #000 0%,
            rgba(0, 0, 0, 0.34) 25%,
            rgba(0,0,0,0.5) 60%,
            transparent 100%
        );
    }
    .hero-content { text-align: center; }
    .hero-content-wrap { padding: 0 1.4rem; }
    .hero-eyebrow { font-size: 0.62rem; }
    .hero-brand { font-size: clamp(44px, 20vw, 72px); }
    .hero-tagline { font-size: 0.85rem; }
    .hero-desc { font-size: 0.82rem; line-height: 1.75; margin-bottom: 1.6rem; }
    .hero-btn {
        width: 100%;
        max-width: 100%;
        font-size: 0.68rem;
        padding: 13px 20px;
        box-sizing: border-box;
    }
    .hero-btn-row {
        gap: 10px;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    .strip-text strong { font-size: 0.74rem; }
    .strip-text span { font-size: 0.65rem; }

    .gallery-header {
        margin-bottom: 2rem;
    }
    .gallery-header p {
        font-size: 0.92rem;
    }
    .gallery-viewport {
        padding: 1.2rem 0 1.6rem;
        mask-image: none;
        -webkit-mask-image: none;
    }
    .gallery-track {
        gap: 1rem;
        padding: 0 16%;
    }
    .gallery-slide {
        flex-basis: 68vw;
    }
    .gallery-card {
        border-radius: 22px;
    }
    .gallery-slide.is-active .gallery-card {
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.52), 0 0 0 1px rgba(15, 61, 46, 0.55), 0 0 24px rgba(15, 61, 46, 0.42);
    }
    .gallery-slide.is-near {
        opacity: 0.44;
        transform: none !important;
        filter: none;
    }
    .gallery-caption {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
    }
    .gallery-caption strong {
        font-size: 1.08rem;
    }
    .gallery-nav { display: none; }

    /* About */
    .about { padding: 3rem 1.1rem; }
    .about-img-frame {
        aspect-ratio: 2 / 3;
        max-height: 360px;
        width: 65%;
        margin: 0 auto;
    }
    .about-main-img { object-position: center 30%; }
    .about-accent-card {
        right: 0.2rem;
        bottom: -0.8rem;
        padding: 0.7rem 0.9rem;
    }
    .about-accent-number { font-size: 1.25rem; }
    .about-heading { font-size: clamp(1.4rem, 8vw, 1.9rem); }
    .about-desc { font-size: 0.82rem; }
    .about-highlights li { font-size: 0.78rem; }
    .about-btn { font-size: 0.68rem; padding: 11px 20px; }

    /* Services */
    .services { padding: 3rem 1.1rem; }
    .service-img-wrap {
        height: auto;
        aspect-ratio: 4 / 3;
        max-height: 260px;
    }
    .service-img-wrap img { object-position: center center; }
    .services-grid { grid-template-columns: 1fr; gap: 1rem; }
}

@media (min-width: 481px) and (max-width: 900px) {
    .gallery-track {
        padding: 0 12%;
    }
    .gallery-slide {
        flex-basis: min(46vw, 340px);
    }
}
