/* ============================================================
   THE CUT — style.css
   Full visual design by Antigravity — Claude Sonnet 4.6 Thinking
   ============================================================ */

/* --- Google Fonts imported via index.html <head> --- */

/* --- CSS Variables --- */
:root {
    --color-bg:      #0D0D0D;
    --color-gold:    #C9A84C;
    --color-text:    #F2EFE9;
    --color-accent:  #B85C2A;
    --color-mid:     #1A1A1A;
    --color-border:  #2A2A2A;
    --color-muted:   #6B6B6B;
    --color-subtle:  #3A3A3A;

    --font-display:  'Bebas Neue', sans-serif;
    --font-body:     'Inter', sans-serif;

    --max-width:       1200px;
    --section-padding: 130px 0;
    --container-pad:   0 48px;

    --transition-base: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

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

ul { list-style: none; }

address { font-style: normal; }

/* --- Container --- */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--container-pad);
}

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: 0.04em;
}

.section-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 16px;
}

.section-header {
    margin-bottom: 72px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 6vw, 5.2rem);
    color: var(--color-text);
    line-height: 1.0;
    letter-spacing: 0.04em;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 15px 40px;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    transition: background var(--transition-base), color var(--transition-base),
                border-color var(--transition-base), transform var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.06);
    opacity: 0;
    transition: opacity var(--transition-base);
}
.btn:hover::after { opacity: 1; }
.btn:active { transform: scale(0.98); }

.btn-primary {
    background-color: var(--color-gold);
    color: var(--color-bg);
}
.btn-primary:hover {
    background-color: #d4b460;
    color: var(--color-bg);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-text);
    border: 1px solid var(--color-border);
}
.btn-outline:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.btn-full { width: 100%; text-align: center; }

/* ============================================================
   NAV
============================================================ */
#nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: transparent;
    transition: background-color var(--transition-slow),
                border-bottom var(--transition-slow);
}

.nav-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 26px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.65rem;
    letter-spacing: 0.14em;
    color: var(--color-text);
    flex-shrink: 0;
    transition: color var(--transition-base);
}
.nav-logo:hover { color: var(--color-gold); }

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

.nav-link {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-text);
    transition: color var(--transition-base);
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 1px;
    background-color: var(--color-gold);
    transition: width var(--transition-base);
}
.nav-link:hover { color: var(--color-gold); }
.nav-link:hover::after { width: 100%; }

.nav-cta-item { margin-left: 8px; }

.nav-book-btn {
    padding: 11px 28px;
    font-size: 0.72rem;
}

/* Hamburger — hidden on desktop */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    width: 32px;
    height: 32px;
    z-index: 1001;
}
.nav-hamburger span {
    display: block;
    height: 1px;
    background-color: var(--color-text);
    transition: transform var(--transition-base), opacity var(--transition-base), width var(--transition-base);
    transform-origin: center;
}
.nav-hamburger span:nth-child(3) { width: 60%; align-self: flex-end; }
.nav-hamburger--open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-hamburger--open span:nth-child(2) { opacity: 0; }
.nav-hamburger--open span:nth-child(3) { width: 100%; transform: translateY(-6px) rotate(-45deg); }

/* ============================================================
   HERO
============================================================ */
#hero {
    position: relative;
}

#hero-sticky {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

#hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Dark gradient overlay — subtle, lets canvas breathe */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(13,13,13,0.35) 0%,
        rgba(13,13,13,0.15) 40%,
        rgba(13,13,13,0.55) 100%
    );
    z-index: 1;
}

.hero-content {
    position: absolute;
    bottom: 12vh;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10;
    width: 100%;
    padding: 0 24px;
    /* Guard: never let content grow taller than the safe viewport zone */
    max-height: calc(100vh - 100px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}

.hero-eyebrow {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 20px;
    opacity: 0.9;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(4.5rem, 13vw, 9.5rem);
    color: var(--color-text);
    line-height: 0.9;
    letter-spacing: 0.04em;
    text-shadow: 0 2px 40px rgba(0,0,0,0.5);
}

.hero-sub {
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin: 22px 0 42px;
    opacity: 0.92;
}

.hero-cta { min-width: 200px; }

/* Scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 36px;
    right: 48px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.6;
}
.hero-scroll-line {
    display: block;
    width: 1px;
    height: 52px;
    background: linear-gradient(to bottom, var(--color-gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}
.hero-scroll-label {
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-text);
    writing-mode: vertical-rl;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.4; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.1); }
}

/* ============================================================
   SECTIONS BASE
============================================================ */
#services,
#about,
#gallery,
#booking,
#contact {
    padding: var(--section-padding);
}

#services  { background-color: var(--color-bg); }
#about     { background-color: var(--color-mid); }
#gallery   { background-color: var(--color-bg); }
#booking   { background-color: var(--color-mid); }
#contact   { background-color: var(--color-bg); }

/* ============================================================
   SERVICES
============================================================ */
.services-wrapper {
    display: flex;
    flex-direction: column;
    gap: 72px;
}

.services-category {}

.services-category-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    letter-spacing: 0.18em;
    color: var(--color-gold);
    margin-bottom: 0;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--color-border);
    text-transform: uppercase;
}

.services-list {
    display: flex;
    flex-direction: column;
}

.service-item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    padding: 22px 0;
    border-bottom: 1px solid var(--color-border);
    cursor: default;
    transition: background var(--transition-base);
    position: relative;
}
.service-item::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--color-gold);
    transform: scaleY(0);
    transition: transform var(--transition-base);
    transform-origin: bottom;
}
.service-item:hover::before { transform: scaleY(1); }
.service-item:hover .service-name { color: var(--color-gold); }

.service-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.service-name {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text);
    letter-spacing: 0.04em;
    transition: color var(--transition-base);
}

.service-desc {
    font-size: 0.78rem;
    color: var(--color-muted);
    font-weight: 300;
    letter-spacing: 0.02em;
}

.service-price {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--color-gold);
    letter-spacing: 0.06em;
    flex-shrink: 0;
    line-height: 1;
    padding-top: 2px;
}

.service-item--featured {
    background-color: rgba(201,168,76,0.04);
    padding-left: 14px;
    padding-right: 14px;
    margin: 0 -14px;
    border-color: rgba(201,168,76,0.25);
}
.service-item--featured .service-name { color: var(--color-gold); }

/* ============================================================
   ABOUT
============================================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.about-text {}

.about-copy {
    margin: 36px 0 48px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.about-copy p {
    font-size: 0.97rem;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(242,239,233,0.82);
}

.about-image-wrap {
    position: relative;
}

.about-image-placeholder {
    width: 100%;
    aspect-ratio: 3 / 4;
    background-color: var(--color-subtle);
    position: relative;
    overflow: hidden;
}
.about-image-inner {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 28px,
        rgba(255,255,255,0.015) 28px,
        rgba(255,255,255,0.015) 29px
    );
}
.about-image-label {
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-muted);
    text-align: center;
    line-height: 2;
}
.about-image-accent {
    position: absolute;
    bottom: -16px;
    right: -16px;
    width: 50%;
    height: 50%;
    border-right: 1px solid var(--color-gold);
    border-bottom: 1px solid var(--color-gold);
    opacity: 0.35;
    pointer-events: none;
}

/* ============================================================
   GALLERY
============================================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto;
    gap: 10px;
}

.gallery-item {
    background-color: var(--color-mid);
    aspect-ratio: 1 / 1;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}
.gallery-item--tall {
    grid-row: span 2;
    aspect-ratio: unset;
}
.gallery-item--wide {
    grid-column: span 2;
}

.gallery-item-inner {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-mid);
    transition: background var(--transition-base);
    overflow: hidden;
}
.gallery-item-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(201,168,76,0.07);
    opacity: 0;
    transition: opacity var(--transition-base);
}
.gallery-item:hover .gallery-item-inner::before { opacity: 1; }
.gallery-item:hover .gallery-placeholder-label { color: var(--color-gold); }

.gallery-placeholder-label {
    font-family: var(--font-display);
    font-size: 2.8rem;
    color: var(--color-border);
    letter-spacing: 0.1em;
    transition: color var(--transition-base);
    user-select: none;
    position: relative;
    z-index: 1;
}

/* ============================================================
   BOOKING FORM
============================================================ */
.booking-wrap {
    max-width: 720px;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.form-row--two {
    flex-direction: row;
    gap: 24px;
}
.form-row--submit {
    gap: 16px;
    margin-top: 12px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.form-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-muted);
}
.form-label-optional {
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    color: var(--color-border);
    font-size: 0.68rem;
}

.form-input {
    width: 100%;
    background-color: var(--color-bg);
    border: 1px solid var(--color-border);
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 300;
    padding: 14px 18px;
    outline: none;
    transition: border-color var(--transition-base), box-shadow var(--transition-base);
    appearance: none;
    -webkit-appearance: none;
    border-radius: 0;
}
.form-input::placeholder { color: var(--color-muted); }
.form-input:focus {
    border-color: var(--color-gold);
    box-shadow: 0 0 0 1px var(--color-gold), 0 4px 24px rgba(201,168,76,0.08);
}
.form-input:hover:not(:focus) { border-color: var(--color-subtle); }

/* Select */
.form-select-wrap {
    position: relative;
}
.form-select {
    cursor: pointer;
    padding-right: 44px;
}
.form-select option, .form-select optgroup {
    background-color: #1c1c1c;
    color: var(--color-text);
}
.form-select-arrow {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-gold);
    pointer-events: none;
    font-size: 1.1rem;
    line-height: 1;
}

/* Date input */
input[type="date"].form-input {
    color-scheme: dark;
}

/* Textarea */
.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-disclaimer {
    font-size: 0.72rem;
    color: var(--color-muted);
    letter-spacing: 0.03em;
    text-align: center;
}

/* ============================================================
   CONTACT
============================================================ */
.gold-rule {
    border: none;
    border-top: 1px solid var(--color-gold);
    opacity: 0.3;
    margin-bottom: 72px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 64px;
}

.contact-block-title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    letter-spacing: 0.16em;
    color: var(--color-gold);
    text-transform: uppercase;
    margin-bottom: 24px;
}

.contact-address {
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 2;
    color: rgba(242,239,233,0.75);
    margin-bottom: 20px;
}

.contact-link {
    font-size: 0.82rem;
    font-weight: 400;
    color: rgba(242,239,233,0.65);
    letter-spacing: 0.04em;
    transition: color var(--transition-base);
    display: inline-block;
}
.contact-link:hover { color: var(--color-gold); }

.contact-hours-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.hours-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    font-size: 0.85rem;
    font-weight: 300;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--color-border);
}
.hours-row:last-child { border-bottom: none; }
.hours-row dt { color: rgba(242,239,233,0.65); }
.hours-row dd { color: var(--color-text); font-weight: 500; }

.contact-reach-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* ============================================================
   FOOTER
============================================================ */
#footer {
    padding: 40px 0;
    border-top: 1px solid var(--color-border);
    background-color: var(--color-bg);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.3rem;
    letter-spacing: 0.14em;
    color: var(--color-text);
    opacity: 0.6;
    transition: opacity var(--transition-base);
    flex-shrink: 0;
}
.footer-logo:hover { opacity: 1; }

.footer-copy {
    font-size: 0.7rem;
    letter-spacing: 0.06em;
    color: var(--color-muted);
    text-align: center;
}

.footer-links {
    display: flex;
    gap: 28px;
    flex-shrink: 0;
}
.footer-link {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-muted);
    transition: color var(--transition-base);
}
.footer-link:hover { color: var(--color-gold); }

/* ============================================================
   RESPONSIVE — 1024px
============================================================ */
@media (max-width: 1024px) {
    :root {
        --container-pad: 0 32px;
    }
    .about-grid {
        gap: 60px;
    }
    .contact-grid {
        gap: 40px;
    }
}

/* ============================================================
   RESPONSIVE — 768px
============================================================ */
@media (max-width: 768px) {
    :root {
        --section-padding: 88px 0;
        --container-pad: 0 24px;
    }

    /* Nav */
    .nav-inner {
        padding: 20px 24px;
        position: relative;
    }

    .nav-hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: min(320px, 85vw);
        background-color: rgba(13,13,13,0.98);
        border-left: 1px solid var(--color-border);
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 32px;
        padding: 40px 40px;
        transform: translateX(100%);
        transition: transform var(--transition-slow);
        backdrop-filter: blur(12px);
    }
    .nav-links--open {
        transform: translateX(0);
    }

    .nav-link {
        font-size: 0.85rem;
        letter-spacing: 0.14em;
    }

    .nav-cta-item { margin-left: 0; margin-top: 12px; }
    .nav-book-btn { padding: 13px 32px; font-size: 0.78rem; }

    /* Hero */
    .hero-content {
        bottom: 10vh;
    }
    .hero-scroll-indicator { display: none; }

    /* Services */
    .services-wrapper { gap: 52px; }
    .service-item { padding: 18px 0; }

    /* About */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .about-image-wrap {
        order: -1;
    }
    .about-image-placeholder {
        aspect-ratio: 4 / 3;
    }
    .about-image-accent { display: none; }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    .gallery-item--tall { grid-row: span 1; aspect-ratio: 1 / 1; }
    .gallery-item--wide { grid-column: span 2; }

    /* Booking */
    .form-row--two {
        flex-direction: column;
        gap: 28px;
    }

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    /* Footer */
    .footer-inner {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    .footer-links {
        gap: 20px;
    }

    /* Section header */
    .section-header { margin-bottom: 48px; }
}

/* ============================================================
   RESPONSIVE — 480px
============================================================ */
@media (max-width: 480px) {
    .hero-title {
        font-size: clamp(5.5rem, 25vw, 7rem);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery-item--wide {
        grid-column: span 1;
    }
}
