/*=================================================
  PRESENTS Salon - Vibrant Welcoming Theme
  =================================================*/

/* CSS Variables for Vibrant & Welcoming Theme */
:root {
    --bg-white: #FFFFFF;
    --bg-black: #1A1A1A;
    /* Softer almost-black */
    --bg-grey: #F8F9FA;
    --text-black: #333333;
    /* Softer reading text */
    --text-white: #FFFFFF;
    --text-grey: #666666;
    --border-color: #E2E8F0;

    /* Primary Brand Accents */
    --accent: #e8126a;
    /* Magenta/Pink */
    --accent-hover: #b50d52;
    /* Darker Pink for hovers */

    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Montserrat', sans-serif;

    --transition-fast: all 0.3s ease-in-out;
    --border-radius: 8px;
    /* Friendly curves */
}

/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-white);
    color: var(--text-black);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius);
    /* Softer image edges globally */
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-padding {
    padding: 50px 0;
}

.mt-4 {
    margin-top: 2rem;
}

.mt-5 {
    margin-top: 3rem;
}

.w-100 {
    width: 100%;
}

.bg-black {
    background-color: var(--bg-black);
}

.bg-white {
    background-color: var(--bg-white);
}

.text-white {
    color: var(--text-white);
}

.text-black {
    color: var(--text-black);
}

.relative {
    position: relative;
}

.z-index-10 {
    z-index: 10;
}

.heading-line-stark {
    width: 60px;
    height: 4px;
    background-color: var(--accent);
    margin: 20px 0;
    border-radius: 2px;
}

.heading-line-stark.center {
    margin: 20px auto;
}

.heading-line-stark.left {
    margin: 20px 0;
}

.heading-line-stark.bg-white {
    background-color: var(--bg-white);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 36px;
    font-family: var(--font-heading);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    border: none;
    border-radius: var(--border-radius);
    /* Soft corners */
    transition: var(--transition-fast);
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-stark {
    background-color: var(--accent);
    color: var(--text-white);
}

.btn-stark:hover {
    background-color: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(197, 160, 89, 0.4);
}

.btn-stark-outline {
    background-color: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
    box-shadow: none;
}

.btn-stark-outline:hover {
    background-color: var(--accent);
    color: var(--text-white);
    transform: translateY(-3px);
}

.btn-stark-block {
    background-color: var(--accent);
    color: var(--text-white);
}

.btn-stark-block:hover {
    background-color: var(--text-black);
    color: var(--text-white);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-fast);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    /* padding: 6px 0; */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Maintain scrolled state styling similarly for now */
.navbar.scrolled {
    padding: 5px 0;
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0px 30px 0px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.brand-icon {
    height: 80px !important;
    width: 80px !important;
    object-fit: contain;

}

.brand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    letter-spacing: 2px;
}

.brand-slogan {
    font-family: var(--font-body);
    font-size: 9px;
    font-weight: 600;
    color: var(--text-grey);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 4px;
}

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

.nav-links li a {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--text-black);
}

.nav-links li a:hover {
    color: var(--accent);
}

.nav-links li a.nav-btn {
    background-color: var(--accent);
    color: var(--text-white);
    padding: 10px 24px;
    border-radius: var(--border-radius);
    border: none;
}

.nav-links li a.nav-btn:hover {
    background-color: var(--accent-hover);
    color: var(--text-white);
}

.mobile-menu-toggle {
    display: none;
    cursor: pointer;
}

.mobile-menu-toggle .bar {
    display: block;
    width: 30px;
    height: 3px;
    margin: 6px auto;
    background-color: var(--accent);
    transition: var(--transition-fast);
    border-radius: 3px;
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg-white);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-fast);
}

.mobile-nav-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav-links {
    text-align: center;
}

.mobile-nav-links li {
    margin: 25px 0;
}

.mobile-nav-links li a {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--text-black);
    letter-spacing: 3px;
}

.mobile-nav-links li a:hover {
    color: var(--accent);
}

/* Hero Section */
.hero-stark {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-stark {
    position: absolute;
    top: 9vh;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg-stark img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right top;
    border-radius: 0;
    /* Backgrounds stay edge-to-edge */
}

/* Add a beautiful warm gradient overlay */
.hero-bg-stark::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.1) 100%);
}

.hero-content-stark {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
    z-index: 2;
}

.hero-content-stark h1 {
    font-size: 4rem;
    line-height: 1.1;
    color: var(--text-white);
    margin-bottom: 20px;
}

.hero-content-stark p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 500px;
    margin-bottom: 40px;
}

/* Services Grid */
.section-heading-stark {
    text-align: center;
    margin-bottom: 50px;
}

.section-heading-stark h2 {
    font-size: 2.5rem;
    color: var(--text-black);
}

/* Tap-to-reveal hint */
.services-hint {
    display: flex;
    width: fit-content;
    margin: 20px auto 0;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    padding: 8px 20px;
    background: rgba(232, 18, 106, 0.07);
    border: 1px dashed rgba(232, 18, 106, 0.35);
    border-radius: 30px;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-grey);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    animation: hint-pulse 2.4s ease-in-out infinite;
}

.hint-icon {
    font-size: 1.1rem;
    animation: hint-tap 1.2s ease-in-out infinite;
    display: inline-block;
}

@keyframes hint-pulse {

    0%,
    100% {
        opacity: 0.7;
    }

    50% {
        opacity: 1;
    }
}

@keyframes hint-tap {

    0%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-4px);
    }

    60% {
        transform: translateY(0px);
    }
}

/* Services Carousel & 3D Flip Cards */
.carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
    /* Space for navigational arrows */
}

/* Nav Arrows */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    font-size: 20px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    z-index: 10;
    transition: var(--transition-fast);
    color: var(--text-grey);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-nav:hover {
    background: var(--accent);
    color: var(--text-white);
    border-color: var(--accent);
}

.carousel-nav.prev {
    left: 0;
}

.carousel-nav.next {
    right: 0;
}

/* Track */
.services-carousel-track {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 20px 0;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.services-carousel-track::-webkit-scrollbar {
    display: none;
}

/* Base Card Layout */
.flip-card {
    background-color: transparent;
    flex: 0 0 calc(25% - 18.75px);
    /* 4 items layout exactly */
    aspect-ratio: 1 / 1;
    perspective: 1500px;
    scroll-snap-align: start;
}

/* 3D Flip Box */
.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s cubic-bezier(0.4, 0.2, 0.2, 1);
    transform-style: preserve-3d;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-radius: var(--border-radius);
    cursor: pointer;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: var(--border-radius);
    overflow: hidden;
}

/* Front Face */
.flip-card-front {
    background-color: var(--bg-white);
    color: black;
}

.flip-card-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9);
    transition: var(--transition-fast);
}

.flip-card:hover .flip-card-front img {
    filter: brightness(0.7);
}

.flip-card-front h3 {
    position: absolute;
    bottom: 25px;
    left: 0;
    width: 100%;
    color: var(--text-white);
    font-size: 1.6rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.6);
    margin: 0;
    letter-spacing: 2px;
}

/* Back Face */
.flip-card-back {
    background-color: var(--bg-white);
    color: var(--text-black);
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    border: 2px solid var(--accent);
}

.flip-card-back h3 {
    color: var(--accent);
    margin-bottom: 15px;
    font-size: 1.8rem;
    letter-spacing: 2px;
}

.flip-card-back p {
    font-size: 0.95rem;
    color: var(--text-grey);
    margin-bottom: 20px;
}

.flip-card-back .price {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text-black);
    margin-bottom: 25px;
}

/* About / Brand Split */
.stark-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.stark-split-img {
    height: 450px;
    position: relative;
    padding-left: 40px;
}

.stark-split-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: calc(var(--border-radius) * 2);
    /* pronounced round corner here */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.stark-split-text {
    padding: 40px 0;
}

.stark-split-text h2 {
    font-size: 3rem;
}

.stark-split-text p {
    margin-bottom: 20px;
    color: var(--text-grey);
}

/* Lookbook Masonry */
.gallery-stark {
    background: var(--bg-white);
    color: var(--text-black);
}

.masonry-grid-stark {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 300px;
    gap: 15px;
    /* Gap for regular aesthetic */
    margin-top: 40px;
}

.masonry-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
}

/* creating a masonry effect manually */
.masonry-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}

.masonry-item:nth-child(2) {
    grid-column: span 2;
    grid-row: span 1;
}

.masonry-item:nth-child(3) {
    grid-column: span 1;
    grid-row: span 1;
}

.masonry-item:nth-child(4) {
    grid-column: span 1;
    grid-row: span 1;
}

.masonry-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.masonry-item:hover img {
    transform: scale(1.05);
}

/* Location & Reviews Section */
.map-frame {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.14), 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 2px solid #000;
}

.map-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    left: auto;
    z-index: 10;
    background: #fff;
    color: #111;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 7px 14px;
    border-radius: 30px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
    pointer-events: none;
    white-space: nowrap;
}

.map-frame iframe {
    display: block;
    width: 100%;
    border: none;
    filter: grayscale(100%) contrast(1.05);
    transition: filter 0.4s ease;
}

.map-frame:hover iframe {
    filter: grayscale(0%) contrast(1);
}

.location-map iframe {
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: none;
    filter: none !important;
    border: none !important;
}

.review-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--accent) !important;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Booking Section */
.booking-stark {
    background: var(--bg-white);
}

.booking-grid-stark {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.massive-text {
    font-size: 4rem;
    line-height: 1.1;
    color: var(--text-black);
}

.stark-contact-info p {
    font-family: var(--font-body);
    margin-bottom: 10px;
    font-size: 1rem;
    color: var(--text-grey);
}

.stark-contact-info strong {
    color: var(--text-black);
    font-family: var(--font-heading);
}

.stark-form-container {
    background: var(--bg-grey);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
    width: 100%;
    position: relative;
}

.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
    border-color: #e8126a;
    box-shadow: 0 0 0 3px rgba(232, 18, 106, 0.15);
}

.form-group.has-error>label {
    color: #e8126a;
}

.date-error-msg {
    display: none;
    font-size: 11px;
    color: #e8126a;
    margin-top: 5px;
    font-family: var(--font-body);
}

.form-group.has-error .date-error-msg {
    display: block;
}

.form-group.half {
    width: 50%;
}

label {
    display: block;
    margin-bottom: 8px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--text-black);
}

input,
select,
textarea {
    width: 100%;
    padding: 14px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    color: var(--text-black);
    font-family: var(--font-body);
    transition: var(--transition-fast);
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.2);
}

/* Footer Section */
.footer-stark {
    background-color: var(--bg-black);
    padding: 80px 0 30px;
    color: var(--text-white);
}

.footer-content-stark {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 60px;
}

.footer-brand {
    font-size: 2rem;
    color: var(--accent);
}

.footer-logo {
    font-size: 2.5rem;
    color: var(--accent);
}

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

.footer-links ul li a {
    color: #CCCCCC;
}

.footer-links ul li a:hover {
    color: var(--accent);
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-social a {
    color: #CCCCCC;
}

.footer-social a:hover {
    color: var(--accent);
}

.footer-bottom-stark {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    color: #999999;
}

/* Floating AI WhatsApp Chat — wrapper holds both pill and button */
.float-wa-wrapper {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1000;
}

/* Pill label */
.float-wa-pill {
    background: #fff;
    border: 2px solid #222;
    border-radius: 50px;
    padding: 10px 14px 10px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #222;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.13);
    white-space: nowrap;
    animation: pillSlideIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
    animation-delay: 1.5s;
    opacity: 0;
}

@keyframes pillSlideIn {
    from {
        opacity: 0;
        transform: translateX(16px);
    }

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

.float-wa-pill.hidden {
    display: none;
}

.float-wa-pill-close {
    background: #222;
    border: none;
    color: #fff;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 0;
    line-height: 1;
    transition: background 0.2s;
    -webkit-tap-highlight-color: transparent;
}

.float-wa-pill-close:hover {
    background: #e8126a;
}

.float-wa {
    position: relative;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    /* Proper WhatsApp Green */
    border: none;
    color: #FFFFFF;
    border-radius: 50%;
    text-align: center;
    box-shadow: 0px 5px 20px rgba(37, 211, 102, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    animation: float_pulse 2s infinite;
    transition: var(--transition-fast);
    flex-shrink: 0;
}

.float-wa:hover {
    background-color: #128C7E;
    transform: scale(1.05);
}

.float-wa svg {
    fill: #FFFFFF !important;
}

@keyframes float_pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.wa-tooltip {
    position: absolute;
    right: 75px;
    background: var(--bg-white);
    color: var(--text-black);
    padding: 8px 15px;
    font-size: 0.8rem;
    border-radius: 20px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
}

.float-wa:hover .wa-tooltip {
    opacity: 1;
    visibility: visible;
}

/* ============================================
   RESPONSIVE — TABLET (max 1200px)
   ============================================ */
@media (max-width: 1200px) {
    .flip-card {
        flex: 0 0 calc(33% - 17px);
        /* 3 cards visible on large tablets */
    }
}

/* ============================================
   RESPONSIVE — TABLET (max 992px)
   ============================================ */
@media (max-width: 992px) {
    .hero-content-stark h1 {
        font-size: 3.2rem;
    }

    .stark-split,
    .booking-grid-stark,
    .footer-content-stark,
    .alignment-center {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .stark-split-img {
        height: 350px;
        padding-left: 0;
    }

    .masonry-grid-stark {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 220px;
    }

    .masonry-item:nth-child(1) {
        grid-column: span 2;
        grid-row: span 1;
    }

    .masonry-item:nth-child(2) {
        grid-column: span 1;
        grid-row: span 1;
    }

    .masonry-item:nth-child(3) {
        grid-column: span 1;
        grid-row: span 1;
    }

    .masonry-item:nth-child(4) {
        grid-column: span 2;
        grid-row: span 1;
    }

    .flip-card {
        flex: 0 0 calc(75%);
        /* 1.3 cards visible on tablet */
    }

    .carousel-nav {
        display: none;
    }

    .carousel-container {
        padding: 0 10px;
    }
}

/* ============================================
   RESPONSIVE — MOBILE (max 768px)
   ============================================ */
@media (max-width: 768px) {

    /* --- NAV --- */
    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .mobile-menu-toggle.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
        background: var(--text-black);
    }

    .mobile-menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
        background: var(--text-black);
    }

    .nav-container {
        padding: 4px 10px;
    }

    .brand-icon {
        height: 52px !important;
        width: 52px !important;
    }

    .brand-name {
        font-size: 22px;
    }

    .brand-slogan {
        font-size: 10px;
    }

    /* --- HERO --- */
    .hero-stark {
        min-height: 85vh;
    }

    /* Reposition background image on mobile so the salon sign stays visible */
    .hero-bg-stark {
        top: 6vh;
        overflow: hidden;
    }

    .hero-bg-stark img {
        margin-top: -10px;
        object-fit: 80%;
        object-position: 59%;
        transform: none;
    }

    .hero-content-stark {
        /* padding: 20px; */
        text-align: center;
        width: 100%;
        left: 0;
        right: 0;
    }

    .hero-content-stark h1 {
        font-size: 2.4rem;
        line-height: 1.1;
    }

    .hero-content-stark p {
        font-size: 0.9rem;
        margin: 12px 0;
    }

    .hero-buttons {
        justify-content: center;
    }

    /* --- SECTION HEADINGS --- */
    .section-heading-stark h2 {
        font-size: 1.8rem;
    }

    /* --- SERVICES CAROUSEL --- */
    .flip-card {
        flex: 0 0 calc(88%);
        /* Near-full-width card on mobile */
        height: 340px;
    }

    .flip-card-front h3,
    .flip-card-back h3 {
        font-size: 1.2rem;
    }

    .flip-card-back p {
        font-size: 0.82rem;
    }

    .flip-card-back .price {
        font-size: 0.95rem;
    }

    .carousel-container {
        padding: 0 5px;
    }

    .services-carousel-track {
        gap: 15px;
        padding: 15px 5px;
    }

    /* --- ABOUT SPLIT --- */
    .stark-split-img {
        padding: 10px;
        height: 260px;
    }

    .stark-split-text {
        padding: 0 20px 20px;
        /* Add side padding so text isn't flush to screen edge */
    }

    .stark-split-text h2 {
        font-size: 1.8rem;
    }

    /* --- GALLERY --- */
    .masonry-grid-stark {
        grid-template-columns: 1fr;
        grid-auto-rows: 220px;
        gap: 10px;
    }

    .masonry-item:nth-child(1),
    .masonry-item:nth-child(2),
    .masonry-item:nth-child(3),
    .masonry-item:nth-child(4) {
        grid-column: span 1;
        grid-row: span 1;
    }

    /* --- BOOKING FORM --- */
    .booking-grid-stark {
        gap: 20px;
    }

    .massive-text {
        font-size: 2.2rem;
        line-height: 1.1;
    }

    .stark-contact-info p {
        font-size: 0.82rem;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .form-group.half {
        width: 100%;
    }

    .stark-form-container {
        padding: 25px 15px;
    }

    .stark-form input,
    .stark-form select,
    .stark-form textarea {
        font-size: 0.9rem;
        padding: 12px 14px;
    }

    /* --- REVIEWS / LOCATION --- */
    .location-reviews-stark .alignment-center {
        grid-template-columns: 1fr;
    }

    /* --- FOOTER --- */
    .footer-content-stark {
        text-align: center;
        gap: 20px;
    }

    .footer-legal-stark {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    /* --- GENERAL SECTION PADDING --- */
    .section-padding {
        padding: 25px 0;
    }

    .container {
        padding: 0 16px;
    }
}

/* ============================================
   RESPONSIVE — SMALL MOBILE (max 480px)
   ============================================ */
@media (max-width: 480px) {
    .hero-content-stark h1 {
        font-size: 2rem;
    }

    .flip-card {
        flex: 0 0 calc(92%);
        height: 320px;
    }

    .massive-text {
        font-size: 1.9rem;
    }

    .btn {
        padding: 12px 22px;
        font-size: 0.78rem;
    }

    .services-hint {
        font-size: 0.72rem;
        padding: 6px 14px;
    }
}