/* ─── Chatbot Button ─── */
.chatbot-btn {
    position: fixed;
    bottom: 72px;
    right: 28px;
    width: 56px;
    height: 56px;
    background: #e74c3c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0,0,0,0.35);
    z-index: 9000;
    transition: transform 0.2s ease, background 0.2s ease;
}
.chatbot-btn:hover {
    transform: scale(1.1);
    background: #c0392b;
}

/* ─── Intro Splash ─── */
body.intro-active { overflow: hidden; }

.intro {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.35s ease;
}
.intro--out {
    opacity: 0;
    pointer-events: none;
}

.intro__line {
    position: relative;
    overflow: hidden;
    line-height: 1;
}

.intro__dim,
.intro__lit {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1rem, 2.6vw, 2.4rem);
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    white-space: nowrap;
}

.intro__dim { color: #2a2a2a; }

.intro__lit {
    position: absolute;
    top: 0;
    left: 0;
    color: #fff;
    animation: introReveal 1.8s cubic-bezier(0.77, 0, 0.175, 1) both;
}

.intro__bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: #d4a843;
    animation: introBar 1.8s cubic-bezier(0.77, 0, 0.175, 1) both;
}

@keyframes introReveal {
    from { clip-path: inset(0 100% 0 0); }
    to   { clip-path: inset(0 0%   0 0); }
}

@keyframes introBar {
    from { left: 0%;               opacity: 1; }
    92%  { left: calc(100% - 3px); opacity: 1; }
    to   { left: calc(100% - 3px); opacity: 0; }
}

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

:root {
    --bg:     #ffffff;
    --bg2:    #f5f5f5;
    --bg3:    #ebebeb;
    --white:  #111111;
    --grey:   #777777;
    --accent: #d4a843;
    --font:   'Montserrat', sans-serif;
}

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
    background: var(--bg);
    color: var(--white);
    font-family: var(--font);
    font-size: 24px;
    line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
img { width: 100%; display: block; }

/* ─── Label ─── */
.label {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
}

/* ─── Section Header ─── */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}
.section-header h2 {
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1.05;
}
.section-header p {
    margin-top: 1rem;
    color: var(--grey);
    font-size: 1.2rem;
}

/* ─── Buttons ─── */
.btn {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    font-family: var(--font);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    border: 2px solid transparent;
}
.btn--primary {
    background: var(--accent);
    color: #000;
    border-color: var(--accent);
}
.btn--primary:hover { background: transparent; color: var(--accent); }

.btn--outline {
    background: var(--accent);
    color: #000;
    border-color: var(--accent);
}
.btn--outline:hover { background: transparent; color: var(--accent); }

.btn--dark {
    background: #000;
    color: var(--accent);
    border-color: #000;
}
.btn--dark:hover { background: transparent; color: #000; border-color: #000; }

/* ─── Nav ─── */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.6rem 5%;
    transition: padding 0.3s, background 0.3s;
}
.nav--scrolled {
    padding: 1rem 5%;
    background: #000;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav--scrolled .nav__links a { color: #fff; }
.nav--scrolled .nav__links a:hover { color: var(--accent); }
.nav__logo {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 1.25rem;
    font-weight: 900;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    text-decoration: none;
    line-height: 1;
}

.nav__logo .logo-sam {
    color: var(--accent);
}

.nav__logo .logo-divider {
    width: 1px;
    height: 1.1em;
    background: var(--accent);
    opacity: 0.7;
    flex-shrink: 0;
}

.nav__logo .logo-fit {
    color: var(--accent);
}
.nav__links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}
.nav__links a {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff;
    transition: color 0.2s;
}
.nav__links a:hover { color: var(--accent); }
.nav__cta { font-size: 0.88rem; padding: 0.65rem 1.6rem; }

/* ─── Hero ─── */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
}
.hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.75;
}
.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
        rgba(0,0,0,0.35) 0%,
        rgba(0,0,0,0.5) 50%,
        rgba(0,0,0,0.85) 100%
    );
}
.hero__content {
    position: relative;
    padding: 0 1.5rem;
    max-width: 860px;
}
.hero__headline {
    font-size: clamp(3.5rem, 9vw, 8rem);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    margin-bottom: 1.8rem;
}
.hero__sub {
    font-size: clamp(1.1rem, 2vw, 1.45rem);
    font-weight: 300;
    color: rgba(255,255,255,0.7);
    margin-bottom: 2.8rem;
    line-height: 1.75;
}

/* ─── Pillars ─── */
.pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: var(--bg2);
    border-top: 1px solid rgba(0,0,0,0.07);
}
.pillar {
    padding: 4rem 3rem;
    border-right: 1px solid rgba(0,0,0,0.07);
    transition: background 0.25s;
}
.pillar:last-child { border-right: none; }
.pillar:hover { background: var(--bg3); }
.pillar__icon { font-size: 2.2rem; margin-bottom: 1.3rem; }
.pillar h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.8rem;
}
.pillar p { color: var(--grey); font-size: 1.15rem; line-height: 1.75; }

/* ─── About ─── */
.about {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--bg2);
    padding: 8rem 2rem;
    overflow: hidden;
    min-height: 820px;
}

.about__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.about__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, #f5f5f5 0%, transparent 20%, transparent 65%, #f5f5f5 100%);
    z-index: 1;
    pointer-events: none;
}

.about__bg img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    opacity: 0.08;
    filter: contrast(1.1) grayscale(0.3);
    transform: scale(1.6) translateY(-20%);
}

.about__text {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.4rem;
    max-width: 680px;
}

.about__text .label {
    font-size: 1.2rem;
    letter-spacing: 0.28em;
}
.about__text h2 {
    font-size: clamp(2.2rem, 3.8vw, 3.4rem);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.05;
    letter-spacing: -0.02em;
}
.about__text p { color: #222222; font-size: 1.25rem; line-height: 1.85; font-weight: 500; }

/* ─── Services ─── */
.services { padding: 8rem 5%; background: var(--bg); }
.services__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}
.service-card {
    padding: 3.5rem;
    background: var(--bg2);
    border: 1px solid rgba(0,0,0,0.07);
    display: flex;
    flex-direction: column;
    gap: 1.3rem;
    transition: border-color 0.2s;
}
.service-card:hover { border-color: rgba(212,168,67,0.6); }
.service-card--accent {
    background: var(--accent);
    border-color: var(--accent);
    color: #000;
}
.service-card--accent:hover { border-color: var(--accent); }
.service-card h3 {
    font-size: 1.35rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.service-card p {
    font-size: 1.1rem;
    line-height: 1.85;
    color: var(--grey);
    flex: 1;
}
.service-card--accent p { color: rgba(0,0,0,0.65); }

/* ─── Results ─── */
.results { padding: 8rem 5%; background: var(--bg2); }
.results__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
}
.result-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
    background: var(--bg3);
}
.result-item img,
.result-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease, opacity 0.35s ease;
}
.result-item:hover img,
.result-item:hover video { transform: scale(1.06); opacity: 0.5; }
.result-item__play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    color: var(--white);
    opacity: 0;
    transition: opacity 0.3s;
}
.result-item:hover .result-item__play { opacity: 1; }

/* ─── Contact ─── */
.contact { padding: 8rem 5%; background: var(--bg); text-align: center; }
.contact__options {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}
.contact-card {
    background: var(--bg2);
    border: 1px solid rgba(0,0,0,0.07);
    padding: 2.5rem 3rem;
    min-width: 190px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    transition: border-color 0.2s, transform 0.2s;
}
.contact-card:hover { border-color: var(--accent); transform: translateY(-5px); }
.contact-card__icon { font-size: 2rem; margin-bottom: 0.6rem; }
.contact-card h4 {
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}
.contact-card p { font-size: 1rem; color: var(--grey); }

/* ─── Footer ─── */
.footer {
    background: var(--bg2);
    padding: 2rem 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(0,0,0,0.07);
}

/* ─── Booking Section ─── */
.booking {
    padding: 8rem 5%;
    background: var(--bg2);
    text-align: center;
}
.booking .section-header { margin-bottom: 3rem; }

.booking-choices {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}
.booking-choice {
    flex: 1;
    max-width: 320px;
    padding: 3rem 2rem;
    background: var(--bg);
    border: 2px solid rgba(0,0,0,0.08);
    border-radius: 4px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.2s, transform 0.2s;
}
.booking-choice:hover { border-color: var(--accent); transform: translateY(-4px); }
.booking-choice--active { border-color: var(--accent); background: var(--bg3); }
.booking-choice__icon { font-size: 2.4rem; margin-bottom: 1rem; }
.booking-choice h3 { font-size: 1.2rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.6rem; }
.booking-choice p { font-size: 0.95rem; color: var(--grey); line-height: 1.6; }

#booking-form-wrap { margin-top: 1rem; }

.booking-form {
    max-width: 680px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: left;
}
.booking-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    background: var(--bg);
    border: 1px solid rgba(0,0,0,0.12);
    color: var(--white);
    font-family: var(--font);
    font-size: 0.88rem;
    outline: none;
    transition: border-color 0.2s;
    appearance: none;
}
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus { border-color: var(--accent); }
.booking-form input::placeholder,
.booking-form textarea::placeholder { color: var(--grey); }
.booking-form textarea { resize: vertical; }
.booking-form .btn { align-self: center; margin-top: 0.5rem; padding: 1rem 3rem; }

.booking-note {
    margin-top: 1.5rem;
    font-size: 0.82rem;
    color: var(--grey);
}

/* ─── Inline Calendar Widget ─── */
.cal-widget {
    background: var(--bg);
    border: 1px solid rgba(0,0,0,0.12);
    padding: 1.6rem;
    user-select: none;
}

.cal-widget__nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.4rem;
}

.cal-month-title {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white);
}

.cal-nav-btn {
    background: none;
    border: 1px solid rgba(0,0,0,0.12);
    color: var(--grey);
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    padding: 0.2rem 0.7rem 0.3rem;
    transition: border-color 0.2s, color 0.2s;
    font-family: var(--font);
}
.cal-nav-btn:hover { border-color: var(--accent); color: var(--accent); }

.cal-widget__dow {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    margin-bottom: 0.5rem;
}
.cal-widget__dow span {
    text-align: center;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--grey);
    padding: 0.4rem 0;
}

.cal-widget__grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 3px;
}

.cal-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font);
    font-size: 0.82rem;
    font-weight: 600;
    background: none;
    border: 1px solid transparent;
    cursor: pointer;
    color: var(--white);
    transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.cal-day:not(.cal-day--past):not(.cal-day--blank):hover {
    background: rgba(212,168,67,0.12);
    border-color: var(--accent);
    color: var(--accent);
}
.cal-day--today {
    border-color: var(--accent);
    color: var(--accent);
}
.cal-day--selected {
    background: var(--accent) !important;
    color: #000 !important;
    border-color: var(--accent) !important;
}
.cal-day--past {
    color: #ccc;
    cursor: default;
}
.cal-day--blank { visibility: hidden; pointer-events: none; }

.cal-widget__selected {
    margin-top: 1.2rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--grey);
    text-align: center;
    border-top: 1px solid rgba(0,0,0,0.07);
    padding-top: 1rem;
}
.cal-widget__selected--active { color: var(--accent); }
.footer p, .footer a { font-size: 0.78rem; color: var(--grey); letter-spacing: 0.05em; }
.footer a:hover { color: var(--accent); }

/* ─── Video Modal ─── */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 500;
    background: rgba(0,0,0,0.92);
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.modal.active { display: flex; }
.modal__video {
    max-width: 90vw;
    max-height: 88vh;
    cursor: default;
}

/* ─── Testimonials ─── */
.testimonials {
    padding: 6rem 2rem;
    background: #0a0a0a;
    text-align: center;
}

.testimonials .section-header h2 {
    color: #fff;
    opacity: 1;
    font-size: clamp(2.4rem, 5vw, 4rem);
    text-shadow: 0 0 40px rgba(255,255,255,0.08);
}

.testimonials .label {
    color: #c9a84c;
    opacity: 1;
}

.testimonials__rating {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: #fff;
    border-radius: 50px;
    padding: 0.6rem 1.4rem;
    margin-bottom: 2.5rem;
}

.testimonials__ig-logo {
    width: 22px;
    height: 22px;
}

.testimonials__rating-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: #111;
}

.testimonials__stars {
    color: #f39c12;
    font-size: 1rem;
    letter-spacing: 1px;
}

.testimonials__score {
    font-weight: 700;
    color: #111;
    font-size: 0.95rem;
}

.testimonials__track-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonials__track-clip {
    overflow: hidden;
    width: 100%;
}

.testimonials__track {
    display: flex;
    gap: 1.5rem;
    width: 100%;
}

.t-card {
    background: #141414;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 14px;
    padding: 1.8rem;
    flex: 0 0 calc((100% - 3rem) / 3);
    text-align: left;
    transition: border-color 0.3s;
}

.t-card:hover { border-color: rgba(255,255,255,0.18); }

.t-card__header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.t-card__avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #c9a84c;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.t-card__name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
}

.t-card__stars {
    color: #f39c12;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.t-card__ig {
    width: 20px;
    height: 20px;
    margin-left: auto;
    flex-shrink: 0;
    opacity: 0.8;
}

.t-card__text {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin: 0;
}

.testimonials__arrow {
    background: #1a1a1a;
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 1.6rem;
    cursor: pointer;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    line-height: 1;
}

.testimonials__arrow:hover { background: #c9a84c; border-color: #c9a84c; }

.testimonials__dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.8rem;
}

.t-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    cursor: pointer;
    transition: background 0.2s;
}

.t-dot--active { background: #c9a84c; }

@media (max-width: 768px) {
    .t-card { flex: 0 0 100%; }
}

/* ─── Responsive ─── */
@media (max-width: 900px) {
    .about { padding: 6rem 1.5rem; }
    .about__text { padding: 4rem 2rem; }
}
@media (max-width: 768px) {
    .nav__links { display: none; }
    .pillars { grid-template-columns: 1fr; }
    .pillar { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.05); }
    .services__grid { grid-template-columns: 1fr; }
    .results__grid { grid-template-columns: repeat(2, 1fr); }
    .footer { flex-direction: column; gap: 0.5rem; text-align: center; }
}
@media (max-width: 480px) {
    .results__grid { grid-template-columns: 1fr; }
    .contact-card { min-width: 100%; }
}
