/* =============================================
   NOU NAILS - Main Stylesheet
   ============================================= */

/* Custom Fonts */
@font-face {
    font-family: 'LamoricRowen';
    src: url('../1FTV-VIP-Lamoric-Rowen.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Athelas';
    src: url('../Athelas.ttc') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'ArgentumSans';
    src: url('../ArgentumSans[wght].ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Bogart';
    src: url('../MJ-CS-Bogart.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'BogartCopy';
    src: url('../MJ-CS-Bogart%20copy.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../Montserrat-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'MeaCulpa';
    src: url('../MeaCulpa-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

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

html, body {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'LamoricRowen', Georgia, serif;
    background-color: #1a0a0a;
    color: #fff;
}

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

/* Performance: defer rendering of below-fold sections */
.services-section,
.book-section,
.stories-section,
.site-footer {
    content-visibility: auto;
    contain-intrinsic-size: auto 600px;
}

/* GPU acceleration for animated elements */
.book-btn,
.stories-btn,
.footer-social__link,
.slider-btn {
    will-change: transform;
    transform: translateZ(0);
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

main#main-content {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Dark overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(20, 5, 5, 0.38);
    z-index: 1;
}

/* Content wrapper */
.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 48px;
    text-align: center;
    padding: 20px 20px 80px;
    width: 100%;
}

/* Logo */
.hero-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-bottom: 40px;
}

.logo-img {
    width: 208px;
    height: auto;
    max-width: 90vw;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/* Tagline */
.hero-tagline {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.hero-title {
    font-family: 'LamoricRowen', Georgia, serif;
    font-size: clamp(42px, 7vw, 86px);
    font-weight: 400;
    color: #ffffff;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    line-height: 1.1;
    text-shadow: 0 2px 24px rgba(0,0,0,0.35);
}

.hero-subtitle {
    font-family: 'LamoricRowen', Georgia, serif;
    font-size: clamp(18px, 3.2vw, 46px);
    font-weight: 400;
    color: #ffffff;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    line-height: 1.2;
    text-shadow: 0 2px 24px rgba(0,0,0,0.35);
}

/* =============================================
   ABOUT US SECTION
   ============================================= */
.about-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    min-height: 100vh;
    background-color: #f5ede3;
    overflow: hidden;
}

/* Left: image column */
.about-image-wrap {
    flex: 0 0 50%;
    width: 50%;
    height: 100vh;
    overflow: hidden;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-top-right-radius: 40%;
}

/* Right: content column */
.about-content {
    flex: 0 0 50%;
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 70px 80px 50px;
    gap: 28px;
    text-align: center;
}

.about-title {
    font-family: 'Athelas', Georgia, serif;
    font-size: clamp(38px, 4vw, 68px);
    font-weight: 400;
    font-style: italic;
    color: #5c1a1a;
    letter-spacing: 0.02em;
    line-height: 1.1;
    margin-bottom: 12px;
}

.about-text {
    font-family: 'ArgentumSans', Arial, sans-serif;
    font-size: clamp(14px, 1.1vw, 20px);
    font-weight: 400;
    color: #3a2020;
    line-height: 1.85;
    letter-spacing: 0.01em;
    max-width: 560px;
}

/* =============================================
   RESPONSIVE - MOBILE (About Us + Book)
   ============================================= */
@media (max-width: 767px) {
    /* --- ABOUT US --- */
    .about-section {
        flex-direction: column;
        min-height: auto;
        padding: 32px 20px 40px;
    }

    .about-image-wrap {
        flex: none;
        width: 100%;
        height: auto;
        border: 3px solid #6b1212;
        border-radius: 18px;
        overflow: hidden;
        padding: 12px;
        background-color: #f5ede3;
    }

    .about-img {
        width: 100%;
        height: auto;
        border-top-right-radius: 0;
        border-radius: 12px;
        aspect-ratio: 4 / 3;
    }

    .about-content {
        flex: none;
        width: 100%;
        padding: 28px 8px 0;
        gap: 14px;
        text-align: center;
        align-items: center;
    }

    .about-title {
        font-size: 32px;
        margin-bottom: 6px;
    }

    .about-text {
        font-size: 13px;
        line-height: 1.7;
        max-width: 100%;
    }

    /* --- BOOK SECTION --- */
    .book-section {
        flex-direction: column-reverse;
        min-height: auto;
        padding: 32px 20px 40px;
        gap: 24px;
    }

    .book-content {
        flex: none;
        width: 100%;
        padding: 0 8px;
        gap: 16px;
        align-items: center;
        text-align: center;
    }

    .book-title {
        font-size: 28px;
        letter-spacing: 0.04em;
    }

    .book-text {
        font-size: 13px;
        line-height: 1.7;
        max-width: 100%;
    }

    .book-btn {
        font-size: 12px;
        padding: 14px 42px;
    }

    .book-menu-link {
        font-size: 10px;
    }

    .book-image-wrap {
        flex: none;
        width: 100%;
    }

    .book-main-img {
        max-width: 280px;
        margin: 0 auto;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    /* --- ABOUT US --- */
    .about-section {
        flex-direction: column;
        min-height: auto;
        padding: 48px 40px 56px;
    }

    .about-image-wrap {
        flex: none;
        width: 85%;
        height: auto;
        border: 3px solid #6b1212;
        border-radius: 22px;
        overflow: hidden;
        padding: 14px;
        background-color: #f5ede3;
    }

    .about-img {
        width: 100%;
        height: auto;
        border-top-right-radius: 0;
        border-radius: 14px;
        aspect-ratio: 16 / 10;
    }

    .about-content {
        flex: none;
        width: 100%;
        padding: 36px 16px 0;
        gap: 18px;
        text-align: center;
        align-items: center;
    }

    .about-title {
        font-size: 40px;
        margin-bottom: 8px;
    }

    .about-text {
        font-size: 15px;
        line-height: 1.75;
        max-width: 580px;
    }

    /* --- BOOK SECTION --- */
    .book-section {
        flex-direction: column-reverse;
        min-height: auto;
        padding: 40px 32px 48px;
        gap: 28px;
    }

    .book-content {
        flex: none;
        width: 100%;
        padding: 0 16px;
        gap: 18px;
        align-items: center;
        text-align: center;
    }

    .book-title {
        font-size: 34px;
    }

    .book-text {
        font-size: 14px;
        line-height: 1.75;
        max-width: 520px;
    }

    .book-btn {
        font-size: 13px;
        padding: 16px 48px;
    }

    .book-image-wrap {
        flex: none;
        width: 100%;
    }

    .book-main-img {
        max-width: 360px;
        margin: 0 auto;
    }
}

/* =============================================
   RESPONSIVE - PC ONLY
   ============================================= */

/* Small laptop: 1024px - 1279px */
@media (min-width: 1024px) and (max-width: 1279px) {
    .hero-content        { gap: 36px; }
    .logo-img            { width: 160px; }
    .hero-title          { font-size: 58px; }
    .hero-subtitle       { font-size: 24px; letter-spacing: 0.08em; }

    .about-content       { padding: 50px 36px; gap: 18px; }
    .about-title         { font-size: 40px; }
    .about-text          { font-size: 13px; max-width: 400px; }

    .services-section    { padding: 40px 0; }
    .services-slider-wrap{ padding: 0 30px; }
    .service-card        { flex: 0 0 calc(40% - 14px); min-width: 220px; }
    .service-card__label { font-size: 12px; padding: 14px 16px 16px; }

    .book-section        { padding: 50px 4vw; gap: 3vw; }
    .book-title          { font-size: 36px; }
    .book-text           { font-size: 13px; max-width: 400px; }
    .book-btn            { font-size: 13px; padding: 16px 48px; }
    .book-main-img       { max-width: 420px; }
}

/* Standard laptop: 1280px - 1439px */
@media (min-width: 1280px) and (max-width: 1439px) {
    .hero-content        { gap: 42px; }
    .logo-img            { width: 180px; }
    .hero-title          { font-size: 68px; }
    .hero-subtitle       { font-size: 30px; letter-spacing: 0.09em; }

    .about-content       { padding: 60px 50px; gap: 22px; }
    .about-title         { font-size: 50px; }
    .about-text          { font-size: 14px; max-width: 460px; }

    .services-section    { padding: 50px 0; }
    .services-slider-wrap{ padding: 0 50px; }
    .service-card__label { font-size: 13px; }

    .book-section        { padding: 60px 5vw; }
    .book-title          { font-size: 44px; }
    .book-text           { font-size: 14px; max-width: 460px; }
    .book-btn            { font-size: 14px; padding: 18px 56px; }
    .book-main-img       { max-width: 520px; }
}

/* HD laptop: 1440px - 1599px */
@media (min-width: 1440px) and (max-width: 1599px) {
    .hero-content        { gap: 46px; }
    .logo-img            { width: 200px; }
    .hero-title          { font-size: 76px; }
    .hero-subtitle       { font-size: 35px; letter-spacing: 0.10em; }

    .about-content       { padding: 70px 60px; gap: 24px; }
    .about-title         { font-size: 56px; }
    .about-text          { font-size: 15px; max-width: 500px; }

    .services-section    { padding: 55px 0; }
    .services-slider-wrap{ padding: 0 60px; }

    .book-section        { padding: 70px 5.5vw; }
    .book-title          { font-size: 52px; }
    .book-text           { font-size: 16px; }
    .book-main-img       { max-width: 580px; }
}

/* Full HD: 1600px - 1919px */
@media (min-width: 1600px) and (max-width: 1919px) {
    .hero-content        { gap: 50px; }
    .logo-img            { width: 214px; }
    .hero-title          { font-size: 86px; }
    .hero-subtitle       { font-size: 42px; letter-spacing: 0.11em; }

    .about-content       { padding: 80px 70px; gap: 26px; }
    .about-title         { font-size: 62px; }
    .about-text          { font-size: 17px; max-width: 540px; }

    .services-section    { padding: 60px 0; }
    .services-slider-wrap{ padding: 0 70px; }
    .service-card__label { font-size: 15px; }

    .book-section        { padding: 80px 6vw; }
    .book-title          { font-size: 58px; }
    .book-text           { font-size: 17px; }
    .book-btn            { font-size: 15px; padding: 20px 68px; }
    .book-main-img       { max-width: 620px; }
}

/* 2K / 4K: 1920px and up */
@media (min-width: 1920px) {
    .hero-content        { gap: 64px; }
    .logo-img            { width: 272px; }
    .hero-title          { font-size: 108px; letter-spacing: 0.14em; }
    .hero-subtitle       { font-size: 54px; letter-spacing: 0.12em; }

    .about-content       { padding: 100px 90px; gap: 32px; }
    .about-title         { font-size: 80px; }
    .about-text          { font-size: 22px; max-width: 680px; }

    .services-section    { padding: 80px 0; }
    .services-slider-wrap{ padding: 0 100px; }
    .service-card        { flex: 0 0 calc(30% - 20px); }
    .service-card__label { font-size: 18px; padding: 22px 24px 24px; }

    .book-section        { padding: 100px 7vw; }
    .book-title          { font-size: 72px; }
    .book-text           { font-size: 21px; max-width: 640px; }
    .book-btn            { font-size: 17px; padding: 24px 80px; }
    .book-main-img       { max-width: 780px; }
}

/* =============================================
   SERVICES SLIDER SECTION
   ============================================= */
.services-section {
    width: 100%;
    background-color: #6b1212;
    padding: 60px 0;
    overflow: hidden;
    position: relative;
}

.services-slider-wrap {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
    padding: 0 70px;
    gap: 0;
}

/* Track */
.services-track {
    display: flex;
    gap: 28px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    flex: 1;
    padding: 10px 4px 20px;
    user-select: none;
    -webkit-user-select: none;
    cursor: grab;
}

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

/* Card */
.service-card {
    flex: 0 0 calc(33.333% - 20px);
    min-width: 280px;
    background-color: #f5ede3;
    border-radius: 8%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    cursor: pointer;
}

.service-card__img-wrap {
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    position: relative;
}

.service-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Gradient overlay from transparent → cream over bottom of image */
.service-card__img-wrap::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 40%;
    background: linear-gradient(to bottom, rgba(245, 237, 227, 0) 0%, rgba(245, 237, 227, 1) 100%);
    pointer-events: none;
    z-index: 1;
}

.service-card__label {
    font-family: 'Bogart', Georgia, serif;
    font-size: clamp(13px, 1vw, 17px);
    font-weight: 400;
    color: #5c1a1a;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 18px 20px 20px;
    display: block;
    text-align: center;
}

/* Nav buttons */
.slider-btn {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.6);
    background: transparent;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, border-color 0.2s ease;
    z-index: 2;
}

.slider-btn:hover {
    background: rgba(255,255,255,0.15);
    border-color: #fff;
}

.slider-btn--prev { margin-right: 20px; }
.slider-btn--next { margin-left: 20px; }

/* Services slider — mobile override */
@media (max-width: 767px) {
    .services-section { padding: 28px 0; }
    .services-slider-wrap { padding: 0 16px; }
    .slider-btn { display: none; }
    .services-track { gap: 14px; padding: 8px 2px 14px; }
    .service-card {
        flex: 0 0 calc(42% - 8px);
        min-width: 160px;
        border-radius: 14px;
    }
    .service-card__img-wrap { aspect-ratio: 1 / 1.1; }
    .service-card__label {
        font-size: 10px;
        padding: 10px 8px 12px;
        letter-spacing: 0.04em;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .services-section { padding: 36px 0; }
    .services-slider-wrap { padding: 0 24px; }
    .slider-btn { width: 36px; height: 36px; font-size: 16px; }
    .slider-btn--prev { margin-right: 10px; }
    .slider-btn--next { margin-left: 10px; }
    .services-track { gap: 18px; padding: 8px 2px 16px; }
    .service-card {
        flex: 0 0 calc(38% - 12px);
        min-width: 200px;
        border-radius: 16px;
    }
    .service-card__label {
        font-size: 12px;
        padding: 12px 12px 14px;
    }
}

/* =============================================
   BOOK YOUR TREATMENTS SECTION
   ============================================= */
.book-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    min-height: 75vh;
    background-color: #f5ede3;
    overflow: hidden;
    padding: 80px 6vw;
    gap: 4vw;
}

/* Left: text content */
.book-content {
    flex: 0 0 46%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 28px;
    padding-left: 2vw;
}

.book-title {
    font-family: 'LamoricRowen', Georgia, serif;
    font-size: clamp(36px, 3.6vw, 62px);
    font-weight: 400;
    font-style: normal;
    color: #5c1a1a;
    line-height: 1.15;
    letter-spacing: 0.06em;
}

.book-text {
    font-family: 'ArgentumSans', Arial, sans-serif;
    font-size: clamp(14px, 1.1vw, 19px);
    font-weight: 300;
    color: #4a2e2e;
    line-height: 1.9;
    letter-spacing: 0.01em;
    max-width: 520px;
    text-align: center;
    text-decoration: none;
}

.book-btn {
    display: inline-block;
    font-family: 'ArgentumSans', Arial, sans-serif;
    font-size: clamp(15px, 1.2vw, 20px);
    font-weight: 300;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    color: #f5ede3;
    background-color: #5c1a1a;
    padding: 22px 72px;
    border-radius: 50px;
    margin-top: 12px;
    transition: background 0.25s ease, transform 0.2s ease;
}

.book-btn:hover {
    background-color: #7a2020;
    transform: translateY(-2px);
}

/* Right: images */
.book-image-wrap {
    flex: 0 0 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.book-main-img {
    width: 100%;
    max-width: 640px;
    height: auto;
    display: block;
    object-fit: contain;
}

/* Book section — mobile override (must come AFTER base styles) */
@media (max-width: 767px) {
    .book-section {
        flex-direction: column-reverse;
        min-height: auto;
        padding: 32px 20px 40px;
        gap: 24px;
    }
    .book-content {
        flex: none;
        width: 100%;
        padding: 0 8px;
        gap: 16px;
        align-items: center;
        text-align: center;
    }
    .book-title { font-size: 28px; letter-spacing: 0.04em; }
    .book-text { font-size: 13px; line-height: 1.7; max-width: 100%; }
    .book-btn { font-size: 12px; padding: 14px 42px; }
    .book-menu-link { font-size: 10px; }
    .book-image-wrap { flex: none; width: 100%; }
    .book-main-img { max-width: 280px; margin: 0 auto; }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .book-section {
        flex-direction: column-reverse;
        min-height: auto;
        padding: 40px 32px 48px;
        gap: 28px;
    }
    .book-content {
        flex: none;
        width: 100%;
        padding: 0 16px;
        gap: 18px;
        align-items: center;
        text-align: center;
    }
    .book-title { font-size: 34px; }
    .book-text { font-size: 14px; line-height: 1.75; max-width: 520px; }
    .book-btn { font-size: 13px; padding: 16px 48px; }
    .book-image-wrap { flex: none; width: 100%; }
    .book-main-img { max-width: 360px; margin: 0 auto; }
}

/* =============================================
   NOU NAILS STORIES SECTION
   ============================================= */
.stories-section {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    min-height: 75vh;
    background-color: #eee5d8;
    overflow: hidden;
    padding: 80px 6vw;
    gap: 4vw;
}

/* Left: image */
.stories-image-wrap {
    flex: 0 0 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stories-main-img {
    width: 100%;
    max-width: 640px;
    height: auto;
    display: block;
    object-fit: contain;
}

/* Right: content */
.stories-content {
    flex: 0 0 46%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
}

.stories-title {
    font-family: 'Athelas', Georgia, serif;
    font-size: clamp(36px, 3.6vw, 66px);
    font-weight: 400;
    font-style: italic;
    color: #5c1a1a;
    line-height: 1.1;
    letter-spacing: 0.01em;
}

.stories-text {
    font-family: 'ArgentumSans', Arial, sans-serif;
    font-size: clamp(14px, 1.1vw, 19px);
    font-weight: 300;
    color: #4a2e2e;
    line-height: 1.9;
    letter-spacing: 0.01em;
    max-width: 520px;
    text-decoration: none;
}

.stories-divider {
    width: 100%;
    max-width: 480px;
    border: none;
    border-top: 1.5px solid #5c1a1a;
    margin: 4px 0;
    opacity: 0.5;
}

.stories-address {
    font-family: 'ArgentumSans', Arial, sans-serif;
    font-size: clamp(14px, 1.1vw, 18px);
    font-weight: 300;
    color: #4a2e2e;
    line-height: 1.9;
    text-align: center;
    letter-spacing: 0.01em;
}

.stories-btn {
    display: inline-block;
    font-family: 'ArgentumSans', Arial, sans-serif;
    font-size: clamp(15px, 1.2vw, 20px);
    font-weight: 300;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    color: #f5ede3;
    background-color: #5c1a1a;
    padding: 22px 72px;
    border-radius: 50px;
    margin-top: 8px;
    transition: background 0.25s ease, transform 0.2s ease;
}

.stories-btn:hover {
    background-color: #7a2020;
    transform: translateY(-2px);
}

/* Flower decoration below Stories button */
.stories-deco {
    margin-top: -40px;
    pointer-events: none;
    display: flex;
    justify-content: center;
}

.stories-deco__img {
    width: clamp(340px, 30vw, 560px);
    height: auto;
    opacity: 0.85;
}

/* Stories section — mobile override */
@media (max-width: 767px) {
    .stories-section {
        flex-direction: column;
        min-height: auto;
        padding: 0 0 32px;
        gap: 0;
    }

    .stories-image-wrap {
        flex: none;
        width: 100%;
        position: relative;
        padding: 28px 20px 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-image: url('../10065118.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
    .stories-image-wrap::before {
        content: '';
        position: absolute;
        inset: 0;
        background-color: rgba(238, 229, 216, 0.55);
        z-index: 0;
    }
    .stories-main-img {
        position: relative;
        z-index: 1;
        max-width: 320px;
        width: 85%;
    }

    .stories-content {
        flex: none;
        width: 100%;
        padding: 28px 20px 0;
        gap: 14px;
        text-align: center;
        align-items: center;
    }
    .stories-title { font-size: 30px; }
    .stories-text { font-size: 13px; line-height: 1.7; max-width: 100%; }
    .stories-divider { max-width: 280px; }
    .stories-address { font-size: 13px; }
    .stories-btn { font-size: 12px; padding: 14px 42px; }
    .stories-deco { margin-top: -20px; }
    .stories-deco__img { width: 200px; }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .stories-section {
        flex-direction: column;
        min-height: auto;
        padding: 0 0 40px;
        gap: 0;
    }

    .stories-image-wrap {
        flex: none;
        width: 100%;
        position: relative;
        padding: 40px 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-image: url('../10065118.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
    .stories-image-wrap::before {
        content: '';
        position: absolute;
        inset: 0;
        background-color: rgba(238, 229, 216, 0.55);
        z-index: 0;
    }
    .stories-main-img {
        position: relative;
        z-index: 1;
        max-width: 420px;
        width: 80%;
    }

    .stories-content {
        flex: none;
        width: 100%;
        padding: 36px 32px 0;
        gap: 18px;
        text-align: center;
        align-items: center;
    }
    .stories-title { font-size: 36px; }
    .stories-text { font-size: 14px; line-height: 1.75; max-width: 520px; }
    .stories-divider { max-width: 360px; }
    .stories-address { font-size: 14px; }
    .stories-btn { font-size: 13px; padding: 16px 48px; }
    .stories-deco { margin-top: -28px; }
    .stories-deco__img { width: 260px; }
}

/* Responsive for stories section */
@media (min-width: 1024px) and (max-width: 1279px) {
    .stories-section   { padding: 50px 4vw; gap: 3vw; }
    .stories-title     { font-size: 36px; }
    .stories-text      { font-size: 13px; max-width: 400px; }
    .stories-address   { font-size: 13px; }
    .stories-divider   { max-width: 360px; }
    .stories-btn       { font-size: 13px; padding: 16px 48px; }
    .stories-main-img  { max-width: 420px; }
    .stories-deco__img { width: 280px; }
}

@media (min-width: 1280px) and (max-width: 1439px) {
    .stories-section   { padding: 60px 5vw; }
    .stories-title     { font-size: 44px; }
    .stories-text      { font-size: 14px; max-width: 460px; }
    .stories-address   { font-size: 14px; }
    .stories-divider   { max-width: 400px; }
    .stories-btn       { font-size: 14px; padding: 18px 56px; }
    .stories-main-img  { max-width: 520px; }
    .stories-deco__img { width: 320px; }
}

@media (min-width: 1440px) and (max-width: 1599px) {
    .stories-section   { padding: 70px 5.5vw; }
    .stories-title     { font-size: 52px; }
    .stories-text      { font-size: 15px; max-width: 500px; }
    .stories-address   { font-size: 15px; }
    .stories-divider   { max-width: 440px; }
    .stories-btn       { font-size: 15px; padding: 20px 64px; }
    .stories-main-img  { max-width: 580px; }
    .stories-deco__img { width: 360px; }
}

@media (min-width: 1600px) and (max-width: 1919px) {
    .stories-section   { padding: 80px 6vw; }
    .stories-title     { font-size: 60px; }
    .stories-text      { font-size: 17px; max-width: 540px; }
    .stories-address   { font-size: 17px; }
    .stories-divider   { max-width: 460px; }
    .stories-btn       { font-size: 15px; padding: 20px 68px; }
    .stories-main-img  { max-width: 620px; }
    .stories-deco__img { width: 400px; }
}

@media (min-width: 1920px) {
    .stories-section   { padding: 100px 7vw; }
    .stories-title     { font-size: 76px; }
    .stories-text      { font-size: 21px; max-width: 640px; }
    .stories-address   { font-size: 20px; }
    .stories-divider   { max-width: 540px; }
    .stories-btn       { font-size: 17px; padding: 24px 80px; }
    .stories-main-img  { max-width: 780px; }
    .stories-deco__img { width: 460px; }
}

/* =============================================
   POLICIES & SERVICES PAGE
   ============================================= */
.policies-page {
    background-color: #f0e6d8;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: clamp(50px, 5vw, 100px) clamp(20px, 5vw, 80px);
}

/* A4 proportions: 794px wide × 1123px tall at 96dpi (210mm × 297mm) */
.policies-wrap {
    width: 90vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.policies-box {
    width: 100%;
    min-height: calc(90vw * 1.4142);
    border: 3px solid #6b1212;
    border-radius: 4px;
    padding: clamp(36px, 4vw, 72px) clamp(32px, 5vw, 80px) 0;
    background-color: #f0e6d8;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Star icon */
.policies-star {
    margin-bottom: clamp(10px, 1vw, 18px);
}

.policies-star__img {
    width: clamp(44px, 4vw, 64px);
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Title */
.policies-title {
    font-family: 'MeaCulpa', Georgia, serif;
    font-weight: normal;
    font-size: clamp(36px, 3.5vw, 58px);
    color: #6b1212;
    text-align: center;
    margin-bottom: clamp(24px, 2.5vw, 44px);
    line-height: 1.2;
}

/* Body text */
.policies-body {
    width: 100%;
    font-family: 'ArgentumSans', Arial, sans-serif;
    font-weight: 300;
    font-size: clamp(28px, 2.2vw, 36px);
    color: #6b1212;
    line-height: 1.8;
    text-align: left;
}

.policies-body p {
    margin-bottom: 1.4em;
}

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

/* Flower decoration — inside box, centered, pushed to bottom */
.policies-flower {
    margin-top: auto;
    padding-top: clamp(12px, 1.2vw, 24px);
    display: flex;
    justify-content: center;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.policies-flower__img {
    width: clamp(200px, 28vw, 440px);
    height: auto;
    opacity: 0.88;
}

/* Policies — mobile responsive */
@media (max-width: 767px) {
    .policies-page { padding: 24px 12px; }
    .policies-wrap { width: 95vw; }
    .policies-box { padding: 24px 18px 0; min-height: auto; border-width: 2px; }
    .policies-star__img { width: 32px; }
    .policies-title { font-size: 28px; margin-bottom: 14px; }
    .policies-body { font-size: 13px; line-height: 1.7; }
    .policies-body p { margin-bottom: 1em; }
    .policies-flower__img { width: 150px; }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .policies-page { padding: 32px 20px; }
    .policies-wrap { width: 92vw; }
    .policies-box { padding: 30px 28px 0; }
    .policies-star__img { width: 38px; }
    .policies-title { font-size: 34px; margin-bottom: 18px; }
    .policies-body { font-size: 18px; line-height: 1.75; }
    .policies-flower__img { width: 180px; }
}

/* Policies responsive */
@media (min-width: 1024px) and (max-width: 1279px) {
    .policies-box       { padding: 36px 40px 0; }
    .policies-title     { font-size: 38px; }
    .policies-body      { font-size: 26px; }
    .policies-star__img { width: 44px; }
    .policies-flower__img { width: 200px; }
}

@media (min-width: 1280px) and (max-width: 1439px) {
    .policies-box       { padding: 44px 52px 0; }
    .policies-title     { font-size: 44px; }
    .policies-body      { font-size: 28px; }
    .policies-star__img { width: 50px; }
    .policies-flower__img { width: 260px; }
}

@media (min-width: 1440px) and (max-width: 1599px) {
    .policies-box       { padding: 52px 64px 0; }
    .policies-title     { font-size: 50px; }
    .policies-body      { font-size: 30px; }
    .policies-star__img { width: 54px; }
    .policies-flower__img { width: 300px; }
}

@media (min-width: 1600px) and (max-width: 1919px) {
    .policies-box       { padding: 60px 72px 0; }
    .policies-title     { font-size: 54px; }
    .policies-body      { font-size: 32px; }
    .policies-star__img { width: 58px; }
    .policies-flower__img { width: 340px; }
}

@media (min-width: 1920px) {
    .policies-box       { padding: 72px 88px 0; }
    .policies-title     { font-size: 64px; }
    .policies-body      { font-size: 36px; }
    .policies-star__img { width: 64px; }
    .policies-flower__img { width: 400px; }
}

/* =============================================
   BOOKING PAGE
   ============================================= */
.booking-page {
    width: 100%;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

/* Hero + Form Section */
.booking-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.booking-hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(30, 10, 10, 0.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1;
}

.booking-hero__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: clamp(60px, 6vw, 120px) clamp(20px, 3vw, 40px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(30px, 3vw, 50px);
}

/* Title block */
.booking-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(12px, 1.2vw, 20px);
}

.booking-title {
    font-family: 'LamoricRowen', Georgia, serif;
    font-style: normal;
    font-weight: normal;
    font-size: clamp(32px, 3.2vw, 56px);
    color: #f5ede3;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    line-height: 1.2;
}

.booking-subtitle {
    font-family: 'ArgentumSans', Arial, sans-serif;
    font-weight: 300;
    font-size: clamp(12px, 1vw, 16px);
    color: #f5ede3;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    line-height: 1.6;
    max-width: 600px;
}

/* Form wrapper — board1.svg as inline <img> background */
.booking-form-wrap {
    width: 100%;
    position: relative;
    padding: 3%;
    box-sizing: border-box;
}

.booking-form-wrap__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 0;
    pointer-events: none;
}

/* Inner border — sits above the SVG background */
.booking-form-inner {
    position: relative;
    z-index: 1;
    border: 1.5px solid #6A3138;
    padding: clamp(24px, 2.4vw, 40px) clamp(24px, 2.4vw, 40px);
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: clamp(16px, 1.6vw, 26px);
}

.booking-form__field {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.booking-form__label {
    font-family: 'ArgentumSans', Arial, sans-serif;
    font-weight: 600;
    font-size: clamp(12px, 0.9vw, 15px);
    color: #2a2a2a;
    letter-spacing: 0.01em;
}

.booking-form__input {
    background: transparent;
    border: none;
    border-bottom: 1px solid #bbb;
    padding: clamp(6px, 0.5vw, 10px) 0;
    font-family: 'ArgentumSans', Arial, sans-serif;
    font-weight: 300;
    font-size: clamp(12px, 0.9vw, 15px);
    color: #2a2a2a;
    outline: none;
    border-radius: 0;
    width: 100%;
    transition: border-color 0.2s ease;
}

.booking-form__input:focus {
    border-bottom-color: #6A3138;
}

.booking-form__input::placeholder {
    color: #aaa;
    font-weight: 300;
}

.booking-form__submit-wrap {
    margin-top: clamp(12px, 1.2vw, 20px);
}

.booking-form__submit {
    display: block;
    width: 100%;
    font-family: 'ArgentumSans', Arial, sans-serif;
    font-weight: 500;
    font-size: clamp(13px, 1vw, 16px);
    letter-spacing: 0.06em;
    color: #fff;
    background-color: #6A3138;
    border: none;
    padding: clamp(12px, 1vw, 18px) 0;
    border-radius: 0;
    cursor: pointer;
    text-align: center;
    transition: background 0.2s ease;
}

.booking-form__submit:hover {
    background-color: #58272e;
}

/* Operating Time Section */
.booking-optime {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: clamp(60px, 6vw, 120px) 0;
}

.booking-optime__overlay {
    position: absolute;
    inset: 0;
    background: rgba(30, 10, 10, 0.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1;
}

.booking-optime__inner {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    padding: 0 clamp(20px, 3vw, 40px);
}

/* Outer card — same notched corners as booking form */
/* Optime box — board2.svg as inline <img> background */
.booking-optime__box {
    padding: 3%;
    width: 100%;
    position: relative;
    box-sizing: border-box;
}

.booking-optime__box-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 0;
    pointer-events: none;
}

.booking-optime__box-inner {
    position: relative;
    z-index: 1;
    border: 1.5px solid #6A3138;
    padding: clamp(28px, 2.8vw, 48px) clamp(32px, 3.5vw, 60px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(24px, 2.4vw, 40px);
}

.booking-optime__title {
    font-family: 'Athelas', Georgia, serif;
    font-style: italic;
    font-weight: normal;
    font-size: clamp(22px, 2vw, 34px);
    color: #6A3138;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: center;
}

.booking-optime__hours {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: clamp(20px, 2vw, 40px);
}

.booking-optime__col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex: 1;
}

.booking-optime__day {
    font-family: 'ArgentumSans', Arial, sans-serif;
    font-weight: 600;
    font-size: clamp(12px, 0.95vw, 15px);
    color: #2a2a2a;
    letter-spacing: 0.04em;
    text-align: center;
    text-transform: uppercase;
}

.booking-optime__time {
    font-family: 'ArgentumSans', Arial, sans-serif;
    font-weight: 300;
    font-size: clamp(12px, 0.9vw, 15px);
    color: #2a2a2a;
    letter-spacing: 0.02em;
    text-align: center;
}

/* Booking notice (success / error) */
.booking-notice {
    width: 100%;
    padding: clamp(14px, 1.4vw, 20px) clamp(20px, 2vw, 32px);
    border-radius: 4px;
    font-family: 'ArgentumSans', Arial, sans-serif;
    font-size: clamp(13px, 1vw, 16px);
    font-weight: 500;
    letter-spacing: 0.02em;
    text-align: center;
    box-sizing: border-box;
}
.booking-notice--success {
    background: rgba(247, 239, 225, 0.92);
    border: 1.5px solid #6A3138;
    color: #3a1a1a;
}
.booking-notice--error {
    background: rgba(180, 60, 60, 0.12);
    border: 1.5px solid #b43c3c;
    color: #7a1a1a;
}

/* Booking Page Responsive */
@media (min-width: 1024px) and (max-width: 1279px) {
    .booking-hero__inner   { max-width: 680px; padding: 50px 20px; }
    .booking-title         { font-size: 30px; }
    .booking-subtitle      { font-size: 11px; }
    .booking-form__label   { font-size: 12px; }
    .booking-form__input   { font-size: 13px; }
    .booking-form__submit  { font-size: 13px; padding: 12px 0; }
    .booking-optime__box-inner   { padding: 22px 26px; gap: 20px; }
    .booking-optime__title       { font-size: 20px; }
    .booking-optime__day         { font-size: 11px; }
    .booking-optime__time        { font-size: 11px; }
}

@media (min-width: 1280px) and (max-width: 1439px) {
    .booking-hero__inner   { max-width: 760px; padding: 56px 24px; }
    .booking-title         { font-size: 36px; }
    .booking-subtitle      { font-size: 12px; }
    .booking-form__label   { font-size: 14px; }
    .booking-form__input   { font-size: 14px; }
    .booking-form__submit  { font-size: 14px; padding: 13px 0; }
    .booking-optime__box-inner   { padding: 24px 32px; gap: 22px; }
    .booking-optime__title       { font-size: 22px; }
    .booking-optime__day         { font-size: 12px; }
    .booking-optime__time        { font-size: 12px; }
}

@media (min-width: 1440px) and (max-width: 1599px) {
    .booking-hero__inner   { max-width: 820px; padding: 64px 28px; }
    .booking-title         { font-size: 42px; }
    .booking-subtitle      { font-size: 13px; }
    .booking-form__label   { font-size: 15px; }
    .booking-form__input   { font-size: 15px; }
    .booking-form__submit  { font-size: 15px; padding: 14px 0; }
    .booking-optime__box-inner   { padding: 26px 36px; gap: 26px; }
    .booking-optime__title       { font-size: 24px; }
    .booking-optime__day         { font-size: 13px; }
    .booking-optime__time        { font-size: 13px; }
}

@media (min-width: 1600px) and (max-width: 1919px) {
    .booking-hero__inner   { max-width: 880px; padding: 80px 32px; }
    .booking-title         { font-size: 48px; }
    .booking-subtitle      { font-size: 14px; }
    .booking-form__label   { font-size: 16px; }
    .booking-form__input   { font-size: 16px; }
    .booking-form__submit  { font-size: 16px; padding: 16px 0; }
    .booking-optime__box-inner   { padding: 30px 44px; gap: 30px; }
    .booking-optime__title       { font-size: 26px; }
    .booking-optime__day         { font-size: 13px; }
    .booking-optime__time        { font-size: 13px; }
}

@media (min-width: 1920px) {
    .booking-hero__inner   { max-width: 960px; padding: 100px 40px; }
    .booking-title         { font-size: 56px; }
    .booking-subtitle      { font-size: 16px; }
    .booking-form__label   { font-size: 18px; }
    .booking-form__input   { font-size: 18px; }
    .booking-form__submit  { font-size: 18px; padding: 18px 0; }
    .booking-optime__box-inner   { padding: 36px 52px; gap: 36px; }
    .booking-optime__title       { font-size: 30px; }
    .booking-optime__day         { font-size: 14px; }
    .booking-optime__time        { font-size: 14px; }
}

/* =============================================
   STORIES PAGE
   ============================================= */
.stories-page {
    min-height: 100vh;
    background-color: #F7EFE1;
}

.stories-header {
    width: 100%;
    background-color: #6A3138;
    padding: clamp(40px, 5vw, 80px) clamp(20px, 3vw, 40px);
    text-align: center;
    border-top: 1px solid rgba(247, 239, 225, 0.25);
}

.stories-header__title {
    font-family: 'Athelas', Georgia, serif;
    font-style: italic;
    font-weight: normal;
    font-size: clamp(32px, 4vw, 56px);
    color: #F7EFE1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0;
}

.stories-content {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: clamp(40px, 4vw, 70px) clamp(20px, 3vw, 40px);
    box-sizing: border-box;
}

/* ─── Grid shell ─── */
.stories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(16px, 1.6vw, 24px);
    align-items: stretch;
}

.stories-col {
    display: grid;
    grid-template-rows: auto auto auto auto 1fr auto;
    gap: clamp(14px, 1.4vw, 20px);
}

/* Ô ảnh hàng dưới cùng (phần tử thứ 5): đáy căn cùng một hàng ngang */
.stories-col .stories-block--img:nth-child(5) {
    align-self: end;
}

/* Text cuối mỗi cột đẩy xuống đáy → cùng một hàng ngang */
.stories-block--text-last {
    margin-top: auto;
}

/* ─── Image block ─── */
.stories-block--img {
    width: 100%;
    border: 1px solid #2a2a2a;
    overflow: hidden;
    position: relative;
    box-sizing: border-box;
}

/* Fixed heights matching design mockup */
.stories-block--img.h-xl { height: clamp(280px, 28vw, 420px); }  /* very tall portrait  */
.stories-block--img.h-lg { height: clamp(220px, 22vw, 340px); }  /* tall portrait        */
.stories-block--img.h-md { height: clamp(160px, 16vw, 260px); }  /* medium               */
.stories-block--img.h-sm { height: clamp(120px, 12vw, 200px); }  /* short / square-ish   */

/* Ô 1 hàng 1: cao thêm 30% cho khít */
.stories-col:first-child .stories-block--img:first-child {
    height: clamp(364px, 36.4vw, 546px);
}

/* Ô 2 hàng 1: cao hơn mặc định nhưng thấp hơn ô 1 */
.stories-col:nth-child(2) .stories-block--img:first-child {
    height: clamp(260px, 26vw, 400px);
}

/* Ô 3 hàng 2: dài ra cho kín */
.stories-col:nth-child(3) .stories-block--img:nth-child(3) {
    height: clamp(240px, 24vw, 380px);
}

.stories-block__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.stories-block__placeholder {
    position: absolute;
    inset: 0;
    display: block;
    background: transparent;
}

/* ─── Text block (no background, no border) ─── */
.stories-block--text {
    width: 100%;
    padding: clamp(14px, 1.4vw, 22px) 0;
    box-sizing: border-box;
}

.stories-block__title {
    font-family: 'ArgentumSans', Arial, sans-serif;
    font-weight: 700;
    font-size: clamp(11px, 0.9vw, 14px);
    color: #2a2a2a;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin: 0 0 8px 0;
    line-height: 1.35;
}

.stories-block__excerpt {
    font-family: 'ArgentumSans', Arial, sans-serif;
    font-weight: 300;
    font-size: clamp(10px, 0.85vw, 13px);
    color: #2a2a2a;
    line-height: 1.55;
    margin: 0;
}

/* ─── More / Home nav ─── */
.stories-more {
    text-align: center;
    margin-top: clamp(36px, 3.6vw, 56px);
    padding-top: clamp(20px, 2vw, 32px);
    border-top: 1px solid #2a2a2a;
}

.stories-more a {
    font-family: 'ArgentumSans', Arial, sans-serif;
    font-weight: 600;
    font-size: clamp(11px, 0.9vw, 13px);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #2a2a2a;
    text-decoration: none;
}

.stories-more a:hover {
    text-decoration: underline;
}

.stories-home {
    text-align: center;
    margin-top: clamp(24px, 2.4vw, 36px);
    padding: clamp(16px, 1.6vw, 24px) 0;
    border-top: 1px solid #2a2a2a;
}

.stories-home a {
    font-family: 'ArgentumSans', Arial, sans-serif;
    font-weight: 600;
    font-size: clamp(11px, 0.9vw, 13px);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #2a2a2a;
    text-decoration: none;
}

.stories-home a:hover {
    text-decoration: underline;
}

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

@media (max-width: 599px) {
    .stories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 0 12px;
    }
    .stories-header { padding: 20px 16px 12px; }
    .stories-header__title { font-size: 28px; }
    .stories-block--img.h-xl,
    .stories-block--img.h-lg { height: clamp(160px, 42vw, 260px); }
    .stories-block--img.h-md,
    .stories-block--img.h-sm { height: clamp(120px, 34vw, 200px); }
    .stories-block__title { font-size: 11px; }
    .stories-block__excerpt { font-size: 10px; line-height: 1.5; }
    .stories-block--text { padding: 6px 6px 10px; gap: 4px; }
    .stories-home a { font-size: 12px; padding: 10px 32px; }
}

/* =============================================
   HOME INLINE BOOKING SECTION
   ============================================= */
.home-booking-section {
    width: 100%;
    background-color: #F5F0E6;
    padding: clamp(60px, 6vw, 120px) clamp(20px, 3vw, 40px);
}

.home-booking-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(30px, 3vw, 50px);
}

.home-booking-header {
    text-align: center;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
    background-color: #5c1a1a;
    padding: clamp(40px, 4vw, 70px) clamp(40px, 5vw, 100px);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1600px;
    margin: 0 auto;
    gap: 4vw;
}

/* Column 1 – Info */
.footer-col--info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}

.footer-logo__img {
    width: clamp(80px, 8vw, 150px);
    height: auto;
    margin-bottom: clamp(16px, 1.5vw, 28px);
}

.footer-address {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 500;
    font-size: clamp(14px, 1.15vw, 21px);
    color: #f5ede3;
    line-height: 1.7;
    margin-bottom: clamp(20px, 2vw, 36px);
}

.footer-policies-btn {
    display: inline-block;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 500;
    font-size: clamp(11px, 0.8vw, 14px);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    color: #5c1a1a;
    background-color: #f5ede3;
    padding: clamp(10px, 0.8vw, 16px) clamp(20px, 1.8vw, 36px);
    border-radius: 50px;
    transition: background 0.25s ease, transform 0.2s ease;
}

.footer-policies-btn:hover {
    background-color: #ede1d1;
    transform: translateY(-2px);
}

/* Column 2 – Hours */
.footer-col--hours {
    display: flex;
    flex-direction: column;
    gap: clamp(20px, 2vw, 36px);
    padding-top: 10px;
}

.footer-hours-block {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-hours__day {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 500;
    font-size: clamp(16px, 1.2vw, 22px);
    color: #f5ede3;
    letter-spacing: 0.06em;
}

.footer-hours__time {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 500;
    font-size: clamp(18px, 1.5vw, 28px);
    color: #f5ede3;
    letter-spacing: 0.02em;
}

/* Column 3 – Contact & Social */
.footer-col--contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: clamp(10px, 0.8vw, 16px);
    padding-top: 10px;
}

.footer-contact-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-icon {
    width: clamp(20px, 1.5vw, 28px);
    height: clamp(20px, 1.5vw, 28px);
    color: #f5ede3;
    flex-shrink: 0;
}

.footer-contact-text {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 500;
    font-size: clamp(14px, 1.1vw, 20px);
    color: #f5ede3;
    letter-spacing: 0.02em;
}

.footer-divider {
    width: 100%;
    max-width: clamp(200px, 16vw, 300px);
    border: none;
    border-top: 1px solid rgba(245, 237, 227, 0.4);
    margin: clamp(6px, 0.5vw, 12px) 0;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: clamp(12px, 1vw, 20px);
    margin-top: clamp(4px, 0.3vw, 8px);
}

.footer-social__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(36px, 2.8vw, 48px);
    height: clamp(36px, 2.8vw, 48px);
    border-radius: 50%;
    background-color: #f5ede3;
    color: #5c1a1a;
    transition: background 0.25s ease, transform 0.2s ease;
}

.footer-social__link:hover {
    background-color: #ede1d1;
    transform: translateY(-2px);
}

.footer-social__link svg {
    width: 50%;
    height: 50%;
}

.footer-social__handle {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 500;
    font-size: clamp(14px, 1.2vw, 22px);
    color: #f5ede3;
    letter-spacing: 0.06em;
    margin-top: clamp(6px, 0.5vw, 12px);
}

/* Footer — mobile override */
@media (max-width: 767px) {
    .site-footer { padding: 32px 20px; }
    .footer-inner {
        flex-direction: column;
        align-items: center;
        gap: 28px;
        text-align: center;
    }
    .footer-col--info {
        align-items: center;
    }
    .footer-logo__img { width: 60px; }
    .footer-address { font-size: 13px; line-height: 1.6; }
    .footer-policies-btn { font-size: 10px; padding: 8px 18px; }

    .footer-col--hours {
        align-items: center;
        gap: 16px;
    }
    .footer-hours-block { text-align: center; }
    .footer-hours__day { font-size: 14px; }
    .footer-hours__time { font-size: 16px; }

    .footer-col--contact {
        align-items: center;
    }
    .footer-contact-row { justify-content: center; }
    .footer-contact-text { font-size: 13px; }
    .footer-icon { width: 18px; height: 18px; }
    .footer-divider { width: 80%; }
    .footer-social { gap: 12px; }
    .footer-social__link { width: 32px; height: 32px; }
    .footer-social__handle { font-size: 12px; }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .site-footer { padding: 36px 28px; }
    .footer-inner {
        flex-direction: column;
        align-items: center;
        gap: 32px;
        text-align: center;
    }
    .footer-col--info { align-items: center; }
    .footer-logo__img { width: 75px; }
    .footer-address { font-size: 14px; }
    .footer-policies-btn { font-size: 11px; padding: 10px 22px; }

    .footer-col--hours {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 24px;
    }
    .footer-hours-block { text-align: center; }
    .footer-hours__day { font-size: 16px; }
    .footer-hours__time { font-size: 18px; }

    .footer-col--contact { align-items: center; }
    .footer-contact-row { justify-content: center; }
    .footer-contact-text { font-size: 14px; }
    .footer-social__link { width: 36px; height: 36px; }
    .footer-social__handle { font-size: 14px; }
}

/* Footer Responsive */
@media (min-width: 1024px) and (max-width: 1279px) {
    .site-footer         { padding: 30px 4vw; }
    .footer-inner        { gap: 3vw; }
    .footer-logo__img    { width: 70px; }
    .footer-address      { font-size: 13px; }
    .footer-policies-btn { font-size: 10px; padding: 8px 18px; }
    .footer-hours__day   { font-size: 14px; }
    .footer-hours__time  { font-size: 16px; }
    .footer-contact-text { font-size: 13px; }
    .footer-icon         { width: 18px; height: 18px; }
    .footer-social__link { width: 32px; height: 32px; }
    .footer-social__handle { font-size: 13px; }
}

@media (min-width: 1280px) and (max-width: 1439px) {
    .site-footer         { padding: 36px 5vw; }
    .footer-logo__img    { width: 85px; }
    .footer-address      { font-size: 14px; }
    .footer-policies-btn { font-size: 11px; padding: 10px 22px; }
    .footer-hours__day   { font-size: 16px; }
    .footer-hours__time  { font-size: 18px; }
    .footer-contact-text { font-size: 14px; }
    .footer-icon         { width: 20px; height: 20px; }
    .footer-social__link { width: 36px; height: 36px; }
    .footer-social__handle { font-size: 14px; }
}

@media (min-width: 1440px) and (max-width: 1599px) {
    .site-footer         { padding: 44px 5.5vw; }
    .footer-logo__img    { width: 100px; }
    .footer-address      { font-size: 16px; }
    .footer-policies-btn { font-size: 12px; padding: 12px 26px; }
    .footer-hours__day   { font-size: 18px; }
    .footer-hours__time  { font-size: 22px; }
    .footer-contact-text { font-size: 16px; }
    .footer-icon         { width: 22px; height: 22px; }
    .footer-social__link { width: 40px; height: 40px; }
    .footer-social__handle { font-size: 16px; }
}

@media (min-width: 1600px) and (max-width: 1919px) {
    .site-footer         { padding: 52px 6vw; }
    .footer-logo__img    { width: 120px; }
    .footer-address      { font-size: 18px; }
    .footer-policies-btn { font-size: 13px; padding: 14px 30px; }
    .footer-hours__day   { font-size: 20px; }
    .footer-hours__time  { font-size: 26px; }
    .footer-contact-text { font-size: 18px; }
    .footer-icon         { width: 24px; height: 24px; }
    .footer-social__link { width: 44px; height: 44px; }
    .footer-social__handle { font-size: 18px; }
}

@media (min-width: 1920px) {
    .site-footer         { padding: 60px 7vw; }
    .footer-inner        { max-width: 1800px; }
    .footer-logo__img    { width: 150px; }
    .footer-address      { font-size: 21px; }
    .footer-policies-btn { font-size: 14px; padding: 16px 36px; }
    .footer-hours__day   { font-size: 22px; }
    .footer-hours__time  { font-size: 28px; }
    .footer-contact-text { font-size: 20px; }
    .footer-icon         { width: 28px; height: 28px; }
    .footer-social__link { width: 48px; height: 48px; }
    .footer-social__handle { font-size: 22px; }
}

/* =============================================
   BOOK SECTION — Menu link under button
   ============================================= */
.book-menu-link {
    display: inline-block;
    font-family: 'ArgentumSans', Arial, sans-serif;
    font-size: clamp(11px, 0.85vw, 14px);
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    text-decoration: none;
    color: #5c1a1a;
    border-bottom: 1px solid rgba(92,26,26,0.4);
    padding-bottom: 1px;
    margin-top: -6px;
    transition: color 0.2s ease, border-color 0.2s ease;
}
.book-menu-link:hover {
    color: #7a2020;
    border-color: #7a2020;
}

/* =============================================
   MENU PAGE
   ============================================= */
.menu-page {
    background-color: #f0e6d8;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: clamp(50px, 5vw, 100px) clamp(20px, 5vw, 80px);
}

.menu-wrap {
    width: 90vw;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.menu-box {
    width: 100%;
    border: 3px solid #6b1212;
    border-radius: 4px;
    padding: clamp(36px, 4vw, 72px) clamp(32px, 5vw, 80px) 0;
    background-color: #f0e6d8;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.menu-star {
    margin-bottom: clamp(10px, 1vw, 18px);
}
.menu-star__img {
    width: clamp(44px, 4vw, 64px);
    height: auto;
    display: block;
    margin: 0 auto;
}

.menu-title {
    font-family: 'MeaCulpa', Georgia, serif;
    font-weight: normal;
    font-size: clamp(36px, 3.5vw, 58px);
    color: #6b1212;
    text-align: center;
    margin-bottom: clamp(28px, 3vw, 52px);
    line-height: 1.2;
}

.menu-grid {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: clamp(24px, 4vw, 72px);
    align-items: flex-start;
}

.menu-col {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    gap: clamp(20px, 2vw, 36px);
}

.menu-section {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.menu-section__title {
    font-family: 'Athelas', Georgia, serif;
    font-weight: 400;
    font-style: italic;
    font-size: clamp(22px, 2vw, 36px);
    color: #6b1212;
    text-align: center;
    margin-bottom: clamp(12px, 1vw, 20px);
    letter-spacing: 0.01em;
}

.menu-item {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    padding: clamp(8px, 0.7vw, 14px) 0;
    border-bottom: 1px solid rgba(107,18,18,0.12);
}
.menu-item:last-child {
    border-bottom: none;
}

.menu-item__name {
    font-family: 'BogartCopy', 'Bogart', Georgia, serif;
    font-weight: 400;
    font-size: clamp(14px, 1.15vw, 20px);
    color: #3a2020;
    line-height: 1.6;
    flex: 1 1 auto;
}

.menu-item__note {
    font-family: 'BogartCopy', 'Bogart', Georgia, serif;
    font-size: 0.75em;
    color: #6b4040;
    font-weight: 400;
    margin-left: 4px;
}

.menu-item__price {
    font-family: 'BogartCopy', 'Bogart', Georgia, serif;
    font-weight: 400;
    font-size: clamp(14px, 1.15vw, 20px);
    color: #3a2020;
    white-space: nowrap;
    flex: 0 0 auto;
    text-align: right;
    min-width: 80px;
}

.menu-social-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: clamp(16px, 3vw, 48px);
    margin-top: clamp(24px, 2.5vw, 44px);
    padding: clamp(14px, 1.4vw, 24px) 0;
    border-top: 1.5px solid rgba(107,18,18,0.2);
    width: 100%;
}

.menu-social-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'BogartCopy', 'Bogart', Georgia, serif;
    font-weight: 400;
    font-size: clamp(13px, 1.05vw, 18px);
    color: #3a2020;
    letter-spacing: 0.02em;
}

.menu-social-item svg {
    width: clamp(15px, 1.1vw, 19px);
    height: clamp(15px, 1.1vw, 19px);
    flex-shrink: 0;
    color: #6b1212;
}

.menu-flower {
    margin-top: auto;
    padding-top: clamp(12px, 1.2vw, 24px);
    display: flex;
    justify-content: center;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}
.menu-flower__img {
    width: clamp(200px, 28vw, 440px);
    height: auto;
    opacity: 0.88;
}

@media (max-width: 767px) {
    .menu-grid { flex-direction: column; }
    .menu-social-row { gap: 14px; }
}

@media (min-width: 1024px) and (max-width: 1279px) {
    .menu-box { padding: 36px 40px 0; }
    .menu-title { font-size: 38px; }
    .menu-section__title { font-size: 22px; }
    .menu-item__name, .menu-item__price { font-size: 14px; }
    .menu-flower__img { width: 200px; }
}

@media (min-width: 1280px) and (max-width: 1439px) {
    .menu-box { padding: 44px 52px 0; }
    .menu-title { font-size: 44px; }
    .menu-section__title { font-size: 20px; }
    .menu-flower__img { width: 260px; }
}

@media (min-width: 1440px) and (max-width: 1599px) {
    .menu-box { padding: 52px 64px 0; }
    .menu-title { font-size: 50px; }
    .menu-flower__img { width: 300px; }
}

@media (min-width: 1600px) and (max-width: 1919px) {
    .menu-box { padding: 60px 72px 0; }
    .menu-title { font-size: 54px; }
    .menu-flower__img { width: 340px; }
}

@media (min-width: 1920px) {
    .menu-box { padding: 72px 88px 0; }
    .menu-title { font-size: 64px; }
    .menu-flower__img { width: 400px; }
}

/* =============================================
   SITE HEADER / NAVIGATION (Sub-pages only)
   ============================================= */
.site-header {
    position: relative;
    z-index: 9999;
    background-color: rgba(92, 26, 26, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 12px 40px;
}

.site-header__logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.site-header__logo-img {
    height: 42px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: opacity 0.2s ease;
}

.site-header__logo-img:hover {
    opacity: 0.8;
}

.site-header__nav {
    display: flex;
    align-items: center;
    gap: 36px;
}

.site-header__nav-link {
    font-family: 'ArgentumSans', Arial, sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 6px 0;
    position: relative;
    transition: color 0.2s ease;
}

.site-header__nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #f5ede3;
    transition: width 0.25s ease;
}

.site-header__nav-link:hover {
    color: #fff;
}

.site-header__nav-link:hover::after {
    width: 100%;
}

/* Hamburger button (mobile only) */
.site-header__hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    padding: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 10001;
}

.site-header__hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #fff;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.2s ease;
}

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

.site-header__hamburger.is-active span:nth-child(2) {
    opacity: 0;
}

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

/* Mobile nav overlay */
.site-header__mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    background-color: rgba(92, 26, 26, 0.97);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.site-header__mobile-nav.is-open {
    opacity: 1;
    pointer-events: auto;
}

.site-header__mobile-link {
    font-family: 'LamoricRowen', Georgia, serif;
    font-size: 28px;
    color: #f5ede3;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: color 0.2s ease;
}

.site-header__mobile-link:hover {
    color: #fff;
}


/* --- Mobile: show hamburger, hide desktop nav --- */
@media (max-width: 767px) {
    .site-header__inner {
        padding: 10px 20px;
    }

    .site-header__logo-img {
        height: 32px;
    }

    .site-header__nav {
        display: none;
    }

    .site-header__hamburger {
        display: flex;
    }

    .site-header__mobile-nav {
        display: flex;
    }

    .site-header__mobile-link {
        font-size: 22px;
    }
}

/* --- Tablet --- */
@media (min-width: 768px) and (max-width: 1023px) {
    .site-header__inner {
        padding: 12px 28px;
    }

    .site-header__logo-img {
        height: 36px;
    }

    .site-header__nav {
        gap: 24px;
    }

    .site-header__nav-link {
        font-size: 11px;
    }
}

/* --- Large screens --- */
@media (min-width: 1920px) {
    .site-header__inner {
        max-width: 1800px;
        padding: 14px 60px;
    }

    .site-header__logo-img {
        height: 50px;
    }

    .site-header__nav {
        gap: 48px;
    }

    .site-header__nav-link {
        font-size: 15px;
    }
}
