/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --orange: #ff7800;
    --orange-glow: rgba(255, 120, 0, 0.35);
    --orange-dim: rgba(255, 120, 0, 0.12);
    --black: #080808;
    --dark: #0e0e0e;
    --dark-2: #141414;
    --dark-3: #1c1c1c;
    --white: #ffffff;
    --gray: #777777;
    --light-gray: #c8c8c8;
    --nav-height: 72px;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
    background: var(--black);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.02em;
    line-height: 1;
}

em {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 300;
}

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

.section-title {
    font-size: clamp(2.6rem, 5vw, 4rem);
    line-height: 1.0;
    margin-bottom: 1.5rem;
}

.section-title em {
    font-size: 1.1em;
}

.body-text {
    color: var(--light-gray);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-weight: 300;
}

.accent-text { color: var(--orange); }

/* ===== LAYOUT ===== */
.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section { padding: 7rem 0; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    transition: all 0.3s var(--ease);
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--orange);
    color: var(--black);
}

.btn-primary:hover {
    background: #ff8e1a;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px var(--orange-glow);
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-ghost:hover {
    border-color: var(--orange);
    color: var(--orange);
}

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

/* ===== NAVBAR ===== */
#navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    padding: 0 2rem;
    transition: background 0.4s var(--ease), backdrop-filter 0.4s var(--ease), border-color 0.4s var(--ease);
    border-bottom: 1px solid transparent;
}

#navbar.scrolled {
    background: rgba(8, 8, 8, 0.9);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom-color: rgba(255, 255, 255, 0.06);
}

.nav-inner {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.nav-logo img { display: block; }

.logo-divider {
    width: 1px;
    height: 22px;
    background: rgba(255,255,255,0.2);
    flex-shrink: 0;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--light-gray);
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: color 0.25s var(--ease);
}

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

.nav-cta {
    color: var(--black) !important;
    background: var(--orange);
    padding: 0.55rem 1.3rem !important;
    border-radius: 2px;
}

.nav-cta:hover {
    background: #ff8e1a;
    box-shadow: 0 4px 20px var(--orange-glow);
    transform: translateY(-1px);
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s var(--ease);
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== MOBILE MENU ===== */
.mobile-menu {
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0; bottom: 0;
    background: var(--black);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: transform 0.45s cubic-bezier(0.76, 0, 0.24, 1);
}

.mobile-menu.open { transform: translateX(0); }

.mobile-menu ul {
    list-style: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mobile-menu a {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 8vw, 3rem);
    color: var(--white);
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: color 0.25s var(--ease);
}

.mobile-menu a:hover { color: var(--orange); }

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: var(--nav-height);
}

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

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 90% 70% at 65% 55%, rgba(255, 120, 0, 0.09) 0%, transparent 60%),
        radial-gradient(ellipse 50% 70% at 15% 85%, rgba(255, 120, 0, 0.06) 0%, transparent 55%),
        linear-gradient(160deg, #0a0a0a 0%, #080808 100%);
}

@keyframes gradientBreath {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* Subtle noise texture overlay */
.hero-noise {
    position: absolute;
    inset: 0;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 200px;
}

/* Animated orange orb accent */
.hero-bg::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,120,0,0.06) 0%, transparent 70%);
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    animation: orbFloat 12s ease-in-out infinite;
}

@keyframes orbFloat {
    0%, 100% { transform: translateY(-50%) scale(1); }
    50% { transform: translateY(-55%) scale(1.1); }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 1.5rem;
    display: block;
}

.hero-title {
    font-size: clamp(2.8rem, 11vw, 10rem);
    line-height: 0.92;
    margin-bottom: 1.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.05em;
}

.hero-line { display: block; }

.hero-sub {
    color: var(--gray);
    font-size: 0.95rem;
    font-weight: 300;
    letter-spacing: 0.08em;
    margin-bottom: 2.5rem;
    max-width: 480px;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-scroll-hint {
    position: absolute;
    bottom: 2.5rem;
    left: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    z-index: 1;
}

.hero-scroll-hint span {
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gray);
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

.scroll-line {
    width: 1px;
    height: 56px;
    background: linear-gradient(to bottom, var(--orange), transparent);
    animation: scrollDrop 2.2s ease-in-out infinite;
    transform-origin: top;
}

@keyframes scrollDrop {
    0% { opacity: 0; transform: scaleY(0); }
    40% { opacity: 1; transform: scaleY(1); }
    100% { opacity: 0; transform: scaleY(1) translateY(20px); }
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== ABOUT ===== */
.about { background: var(--dark); }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 5rem;
    align-items: center;
}

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

.photo-placeholder {
    position: relative;
    aspect-ratio: 3/4;
    max-width: 420px;
    background: var(--dark-2);
    border: 1px solid rgba(255, 120, 0, 0.15);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    color: var(--gray);
    text-transform: uppercase;
    line-height: 1.8;
    overflow: hidden;
}

/* When you add a real img tag, it fills this naturally */
.photo-placeholder img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-image-border {
    position: absolute;
    bottom: -16px;
    right: -16px;
    width: 55%;
    height: 55%;
    border: 2px solid rgba(255, 120, 0, 0.25);
    border-radius: 2px;
    z-index: -1;
    pointer-events: none;
}

.about-text {
    display: flex;
    flex-direction: column;
}

/* ===== MARQUEE DIVIDER ===== */
.marquee-wrap {
    overflow: hidden;
    background: var(--orange);
    padding: 0.85rem 0;
    cursor: default;
}

.marquee {
    display: flex;
    width: max-content;
    animation: marqueeScroll 28s linear infinite;
}

.marquee:hover { animation-play-state: paused; }

.marquee span {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--black);
    white-space: nowrap;
    padding-right: 0;
}

@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ===== SERVICES ===== */
.services { background: var(--black); }

.section-header {
    margin-bottom: 4rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.04);
}

.service-card {
    background: var(--dark);
    padding: 2.5rem 2rem;
    transition: background 0.3s var(--ease), border-bottom-color 0.3s var(--ease);
    border-bottom: 2px solid transparent;
    cursor: default;
}

.service-card:hover {
    background: var(--dark-2);
    border-bottom-color: var(--orange);
}

.service-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: rgba(255, 120, 0, 0.15);
    line-height: 1;
    margin-bottom: 1.5rem;
    transition: color 0.3s var(--ease);
}

.service-card:hover .service-number {
    color: var(--orange);
}

.service-card h3 {
    font-size: 1.45rem;
    margin-bottom: 0.85rem;
    letter-spacing: 0.04em;
}

.service-card p {
    color: var(--gray);
    font-size: 0.88rem;
    line-height: 1.75;
    font-weight: 300;
}

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--dark); }

.testimonials-slider {
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    transition: transform 0.55s cubic-bezier(0.76, 0, 0.24, 1);
}

.testimonial-card {
    min-width: 100%;
    padding: 3.5rem;
    background: var(--dark-2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 2px;
}

.stars {
    color: var(--orange);
    font-size: 1rem;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
}

blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.25rem, 2.5vw, 1.65rem);
    font-weight: 300;
    font-style: italic;
    line-height: 1.65;
    color: var(--light-gray);
    margin-bottom: 1.5rem;
}

cite {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gray);
    font-style: normal;
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.t-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.25s var(--ease);
    display: flex;
    align-items: center;
    justify-content: center;
}

.t-btn:hover {
    border-color: var(--orange);
    color: var(--orange);
}

.t-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.t-dot {
    width: 6px;
    height: 6px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.18);
    cursor: pointer;
    border: none;
    transition: all 0.3s var(--ease);
}

.t-dot.active {
    background: var(--orange);
    width: 22px;
}

/* ===== GALLERY ===== */
.gallery { background: var(--black); }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 280px;
    gap: 6px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    background: var(--dark-2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s var(--ease);
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s var(--ease);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Wide item spans 2 columns */
.gallery-item--wide {
    grid-column: span 2;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 220px;
    }

    .gallery-item--wide {
        grid-column: span 2;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 240px;
    }

    .gallery-item--wide {
        grid-column: span 1;
    }
}

/* ===== CONTACT ===== */
.contact { background: var(--black); }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 5rem;
    align-items: start;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-top: 2rem;
}

.contact-link {
    color: var(--orange);
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    transition: opacity 0.2s var(--ease);
    width: fit-content;
}

.contact-link:hover { opacity: 0.65; }

/* HoneyBook widget wrapper */
.honeybook-wrap {
    width: 100%;
    min-height: 400px;
}

/* FORM */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gray);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--dark-2);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 2px;
    color: var(--white);
    padding: 0.875rem 1rem;
    font-size: 0.92rem;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.18);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(255, 120, 0, 0.1);
}

/* Custom select arrow */
.form-group select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%23777' d='M5 6L0 0h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-group select option {
    background: var(--dark-2);
    color: var(--white);
}

.form-group textarea { resize: vertical; }

/* date input calendar icon color */
input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(0.4);
    cursor: pointer;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3rem 0;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
    text-align: center;
}

.footer-logos {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-logos img { display: block; }

.footer-tagline {
    color: var(--gray);
    font-size: 0.88rem;
    font-weight: 300;
}

.footer-copy {
    color: rgba(255, 255, 255, 0.18);
    font-size: 0.72rem;
    letter-spacing: 0.06em;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }
    .nav-logo img { height: 18px !important; }
    .logo-divider { height: 16px; }

    .container { padding: 0 1.25rem; }

    .section { padding: 4rem 0; }

    .section-title { font-size: clamp(2rem, 8vw, 3rem); }

    .hero { min-height: 85vh; }
    .hero-content { padding: 0 1.25rem; }
    .hero-title { font-size: clamp(3rem, 14.5vw, 10rem); margin-bottom: 1.2rem; }
    .hero-sub { margin-bottom: 1.5rem; font-size: 0.85rem; }
    .hero-ctas { flex-direction: column; gap: 0.75rem; }
    .hero-ctas .btn { text-align: center; width: 100%; }
    .hero-scroll-hint { display: none; }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-image-wrap { justify-content: center; }
    .about-image-border { display: none; }

    .photo-placeholder {
        max-width: 100%;
        aspect-ratio: 4/5;
    }

    .services-grid { grid-template-columns: 1fr; gap: 1rem; }

    .service-card { padding: 1.5rem; }

    .testimonial-card { padding: 1.75rem 1.25rem; }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .footer-logos { justify-content: center; }
}
