:root {
    --bg: #F4F3EF; /* Sophisticated warm off-white */
    --text: #111111;
    --card-bg: #FFFFFF;
    --card-dark: #1F201D;
    --accent: #D25E38; /* Muted Terracotta */
    --border: rgba(17, 17, 17, 0.1);
}

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

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Subtle grain texture overlay */
.noise-overlay {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Typography */
h1, h2, h3, .nav-brand {
    font-family: 'DM Serif Display', serif;
    font-weight: 400;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 6rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
}

/* Layout */
main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4vw;
}

nav {
    display: flex;
    justify-content: space-between;
    padding: 2rem 4vw;
    font-size: 1.1rem;
    position: sticky;
    top: 0;
    z-index: 100;
    mix-blend-mode: difference;
    color: white; /* Difference mode makes this work on light and dark bg */
}

.nav-brand {
    font-size: 1.5rem;
}

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

.hover-underline {
    position: relative;
}

.hover-underline::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: currentColor;
    transform-origin: bottom right;
    transition: transform 0.3s cubic-bezier(0.86, 0, 0.07, 1);
}

.hover-underline:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

/* Hero */
.hero {
    padding: 15vh 0 10vh;
    max-width: 900px;
}

.hero-label {
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    color: var(--accent);
}

.hero-sub {
    font-size: 1.25rem;
    line-height: 1.6;
    max-width: 600px;
    color: #555;
}

/* Bento Grid */
.bento-section {
    padding: 5vh 0 15vh;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 400px;
    gap: 1.5rem;
}

.bento-card {
    background-color: var(--card-bg);
    border-radius: 24px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-card:hover {
    transform: translateY(-5px);
}

.span-2 {
    grid-column: span 2;
}

.tag {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #888;
    margin-bottom: 1rem;
    display: block;
}

.bento-card h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.bento-card p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.5;
    max-width: 400px;
}

/* Specific Card Styling */
.bento-card[style*="--card-dark"] p {
    color: #aaa;
}

.highlight-card {
    background-color: var(--accent);
    color: white;
}

.highlight-card p {
    color: rgba(255,255,255,0.9);
}

.abstract-lines {
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 60%;
    height: 80%;
    background: radial-gradient(circle at center, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

/* Booking Section */
.booking {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    padding: 10vh 0 15vh;
    border-top: 1px solid var(--border);
}

.booking h2 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.booking p {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 3rem;
    max-width: 500px;
}

.minimal-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 500px;
}

.minimal-form input {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
    font-size: 1.1rem;
    font-family: inherit;
    color: var(--text);
    transition: border-color 0.3s;
}

.minimal-form input:focus {
    outline: none;
    border-color: var(--text);
}

/* Magnetic Button Effect */
.btn-magnetic {
    background: var(--text);
    color: var(--bg);
    border: none;
    border-radius: 50px;
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
    font-family: inherit;
    cursor: pointer;
    align-self: flex-start;
    margin-top: 1rem;
    position: relative;
    overflow: hidden;
}

.founder-card {
    background-color: var(--card-bg);
    border-radius: 24px;
    padding: 3rem;
    display: flex;
    align-items: flex-end;
}

.founder-info {
    font-size: 1.1rem;
}

.founder-info strong {
    display: block;
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

footer {
    padding: 2rem 4vw;
    text-align: center;
    font-size: 0.9rem;
    color: #888;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Responsive */
@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: 1fr 1fr;
    }
    .booking {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }
    .span-2 {
        grid-column: span 1;
    }
    .bento-card {
        padding: 2rem;
    }
}
