/* the complete styles.css */
/* --- VARIABLES & RESET --- */
:root {
    --bg: #141414;
    --surface: #1F1F1F;
    --ink: #EAEAEA;
    --muted: #8A8A8A;
    --line: #333333;
    --accent: #FFB800;

    --font-display: 'Syne', sans-serif;
    --font-body: 'Sora', sans-serif;

    --ease-out: cubic-bezier(0.25, 1, 0.5, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg);
    color: var(--ink);
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    position: relative;
    overflow-x: hidden;
}

/* Add subtle noise texture */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><filter id="n"><feTurbulence type="fractalNoise" baseFrequency="0.75" numOctaves="3" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23n)"/></svg>');
    opacity: 0.03;
    pointer-events: none;
    z-index: -1;
}

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

h1, h2, h3 {
    font-family: var(--font-display);
    font-weight: 800;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    line-height: 1.1;
    color: var(--ink);
}

h1 {
    font-size: clamp(2.5rem, 6vw + 1rem, 4.5rem);
}

h2 {
    font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
    margin-bottom: 0.5em;
}

h3 {
    font-size: clamp(1.25rem, 2vw + 0.5rem, 1.5rem);
    font-weight: 700;
    margin-bottom: 0.5em;
}

p {
    max-width: 65ch;
}

a {
    color: var(--accent);
    text-decoration: none;
}

/* --- UTILITIES & COMPONENTS --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.cta-button {
    display: inline-block;
    background-color: var(--accent);
    color: var(--bg);
    font-family: var(--font-display);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 1rem 2.5rem;
    border: 2px solid var(--accent);
    border-radius: 2px;
    transition: background-color 0.3s var(--ease-out), color 0.3s var(--ease-out);
    cursor: pointer;
    text-align: center;
    min-height: 44px; /* Ensure minimum tap target size */
}

.cta-button:hover, .cta-button:focus-visible {
    background-color: transparent;
    color: var(--accent);
}

.cta-button--large {
    font-size: clamp(1rem, 2vw, 1.25rem);
    padding: 1.25rem 3rem;
}

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

.section-header p {
    color: var(--muted);
    margin-left: auto;
    margin-right: auto;
}

:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 4px;
    border-radius: 2px;
}

/* --- SCROLL REVEAL ANIMATION --- */
.reveal.is-animating {
    opacity: 0;
    transform: translateY(20px);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

@media (prefers-reduced-motion: reduce) {
    .reveal.is-animating {
        opacity: 1;
        transform: none;
    }
    .reveal.is-visible {
        transition: none;
    }
}

/* --- HERO --- */
.hero {
    min-height: 100svh;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 2rem;
    background-image: linear-gradient(rgba(20, 20, 20, 0.7), rgba(20, 20, 20, 0.7)), url('assets/hero.png');
    background-size: cover;
    background-position: center;
}

.hero__body {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--ink);
    opacity: 0.9;
    margin: 1.5rem auto 2.5rem;
}

/* --- STATEMENT SECTION --- */
.statement-section {
    padding: clamp(4rem, 10vw, 6rem) 0;
}

.statement-grid {
    display: grid;
    gap: 4rem;
    align-items: center;
}

.statement-text p {
    color: var(--muted);
    margin-bottom: 1rem;
}

.statement-image-wrapper {
    border: 1px solid var(--line);
    padding: 1rem;
}

.statement-image-wrapper img {
    width: 100%;
}

@media (min-width: 768px) {
    .statement-grid {
        grid-template-columns: 1fr 1fr;
    }
    .statement-image-wrapper {
        padding: 1.5rem;
    }
}

/* --- GALLERY SECTION --- */
.gallery-section {
    padding: clamp(4rem, 10vw, 6rem) 0;
    background-color: var(--surface);
}

.gallery-grid {
    display: grid;
    gap: 1.5rem;
}

.gallery-item {
    overflow: hidden;
    border: 1px solid var(--line);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s var(--ease-out);
}

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

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        align-items: center;
    }
    .gallery-item:nth-child(2) {
        transform: translateY(2rem);
    }
}

/* --- SERVICES SECTION --- */
.services-section {
    padding: clamp(4rem, 10vw, 6rem) 0;
}

.services-grid {
    display: grid;
    gap: 1.5rem;
}

.service-card {
    background-color: var(--surface);
    border: 1px solid var(--line);
    padding: 2rem;
}

.service-card p {
    color: var(--muted);
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* --- THE SPACE SECTION --- */
.space-section {
    position: relative;
    min-height: 70vh;
    display: grid;
    align-items: center;
}

.space-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.space-image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--bg) 0%, rgba(20, 20, 20, 0.6) 50%, rgba(20, 20, 20, 0) 100%);
}

.space-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.space-text-wrapper {
    padding: clamp(4rem, 10vw, 6rem) 0;
}

.space-text {
    max-width: 450px;
}

.space-text p {
    color: var(--muted);
}

@media (min-width: 768px) {
    .space-image-wrapper::after {
        background: linear-gradient(90deg, var(--bg) 0%, rgba(20, 20, 20, 0.7) 40%, rgba(20, 20, 20, 0) 70%);
    }
}

/* --- BOOKING CTA / FOOTER --- */
.booking-cta {
    padding: clamp(4rem, 10vw, 6rem) 0;
    background-color: var(--bg);
    text-align: center;
    border-top: 1px solid var(--line);
}

.booking-cta p {
    color: var(--muted);
    margin: 1rem auto 2.5rem;
}