/* Lenis Smooth Scroll Viewport */
html.lenis, html.lenis body {
    height: auto;
}
.lenis.lenis-smooth {
    scroll-behavior: auto;
}
.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600;1,700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html, body {
    max-width: 100vw;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #FFFDF9;
    color: #111111;
    overflow-x: hidden;
    overflow-y: hidden; /* Lock scroll during preloader */
}

body.loaded {
    overflow-y: auto;
}

/* Custom Premium Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background-color: #222222;
    border-radius: 20px;
    border: 3px solid #FFFFFF; /* Gives a perfectly slim seamless padding effect */
}

::-webkit-scrollbar-thumb:hover {
    background-color: #000000;
}

html {
    scrollbar-width: thin;
    scrollbar-color: #222222 #FFFFFF;
    scrollbar-gutter: stable; /* Permanently reserves scrollbar space to prevent width calc jumping */
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #FFFDF9;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.preloader.done {
    opacity: 0;
    pointer-events: none;
}

.preloader-line {
    width: 0;
    height: 3px;
    background-color: #111111;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: none;
}

/* Animation helper class */
.anim-hidden {
    opacity: 0 !important;
    transform: translateY(-40px) !important;
    filter: blur(6px) !important;
}

.anim-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
    filter: blur(0px) !important;
    transition: opacity 1.4s cubic-bezier(0.2, 0.8, 0.2, 1),
                transform 1.4s cubic-bezier(0.2, 0.8, 0.2, 1),
                filter 1.4s ease-out !important;
}

/* Global Scroll Reveal */
.scroll-reveal {
    opacity: 0 !important;
    transform: translateY(40px) !important;
    filter: blur(5px) !important;
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), 
                filter 1.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
    will-change: opacity, transform, filter;
}

.scroll-reveal.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
    filter: blur(0px) !important;
}

/* Navbar */
.navbar {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.5); /* Deeply frosted look */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: background-color 0.3s ease;
}

.nav-border {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: calc((100% - 280px) * 0.6); /* Perfectly matches the 60% preloader track */
    height: 2px; /* Thicker, bolder */
    background-color: #111111; /* Strong contrast */
    transform-origin: center;
    transition: width 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar.nav-scrolled .nav-border {
    width: calc(100% - 120px); /* Smoothly expands to the outer padding edge */
}

.nav-container {
    max-width: 1600px; /* Fluid up to large displays */
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 60px;
}

.logo img {
    height: 42px;
    display: block;
}

.nav-links {
    display: flex;
    gap: 56px;
}

.nav-links a {
    display: inline-block; /* Crucial: fixes transform blinking bug on anchor tags */
    text-decoration: none;
    color: #444444; 
    font-weight: 500;
    font-size: 22px; 
    transition: color 0.2s ease; /* Removed opacity transition here so the entrance animation takes priority */
}

.nav-links a.active {
    font-weight: 700;
    color: #111111;
}

.nav-links a:hover {
    color: #111111;
}

/* Hero Section */
.hero {
    width: 100%;
    padding: 0 60px;
    position: relative;
    padding-bottom: 100px;
    overflow-x: hidden; /* Prevent cta-anim from blowing out viewport! */
}

.fullscreen-trigger {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    opacity: 0;
    cursor: default;
    z-index: 100;
    padding: 0;
    outline: none;
    transition: opacity 0.3s ease;
}

.fullscreen-trigger:hover {
    opacity: 0.3;
    cursor: pointer;
}

.fullscreen-trigger::after {
    content: '⛶';
    font-size: 20px;
    color: #111111;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

/* Staggered Typographic Fade & Slide */
.mask-wrap {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
}

.hero-text-anim {
    display: inline-block;
    transform: translateY(115%);
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

body.loaded .hero-text-anim {
    transform: translateY(0);
}

.cta-anim {
    opacity: 0;
    transform: translateX(120px); /* Deep slide in from right */
    filter: blur(8px);
    transition: opacity 1.8s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 2.2s cubic-bezier(0.16, 1, 0.3, 1),
                filter 1.8s ease-out;
    will-change: transform, opacity, filter;
}

body.loaded .cta-anim {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0px);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }

.hero-container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.hero-image-carousel {
    align-self: flex-end; /* right align */
    width: 61%; 
    height: 58vh; 
    min-height: 450px;
    max-height: 600px;
    background-color: #DDE0E2; 
    margin-top: 30px;
    z-index: 1;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateX(80px);
    transition: opacity 1.6s cubic-bezier(0.16, 1, 0.3, 1) 0.35s, transform 1.6s cubic-bezier(0.16, 1, 0.3, 1) 0.35s;
}

body.loaded .hero-image-carousel {
    opacity: 1;
    transform: translateX(0);
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    /* Out of focus state (zoomed in, darkened) */
    transform: scale(1.08); 
    filter: brightness(0.6);
    z-index: 1;
    /* Exit transition: smooth crossfade */
    transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1),
                transform 1.5s cubic-bezier(0.4, 0, 0.2, 1),
                filter 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, opacity, filter;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 2;
    /* In focus state: settles down to native size */
    transform: scale(1);
    filter: brightness(1);
    /* Entrance transition: fast fade, extremely slow scale settling */
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1),
                transform 8s cubic-bezier(0.16, 1, 0.3, 1),
                filter 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.indicator.active {
    background-color: #FFFDF9;
}

.hero-content {
    margin-top: 40px; /* Precise gap between box bottom and text top */
    width: 100%;
    z-index: 2;
}

.hero-title {
    font-size: clamp(60px, 6.5vw, 105px); 
    font-weight: 400; /* Dialed back a bit from 500 */
    letter-spacing: -0.04em;
    line-height: 1.05;
    color: #111111;
    width: 100%;
}

.line-1 {
    display: block;
}

.line-2-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: 2px;
}

.line-2 {
    display: block;
}

.line-2 em {
    font-style: italic;
    font-weight: 300; /* Atmosphere weight is very thin */
}

/* Scaled-up CTA Styles exactly matching the red pill with the attached 'o-' decorator */
.cta-container {
    display: flex;
    align-items: center;
    margin-right: 0; 
    margin-top: 14px; /* Balance optical vertical alignment */
    cursor: pointer;
    transition: transform 0.2s ease;
}

.cta-container:hover {
    transform: scale(1.02); /* Clean macro lift hover effect */
}

.cta-decoration {
    display: flex;
    align-items: center;
    z-index: 3;
}

.cta-decoration .circle-hollow {
    width: 16px;
    height: 16px;
    border: 2.5px solid #EA5841;
    border-radius: 50%;
    background-color: transparent;
    z-index: 3;
    transition: border-color 0.2s ease;
}

.cta-decoration .circle-solid {
    width: 28px;
    height: 28px;
    background-color: #EA5841;
    border-radius: 50%;
    margin-left: -5px; 
    margin-right: -12px; 
    z-index: 2;
    transition: background-color 0.2s ease;
}

.cta-button {
    background-color: #EA5841;
    color: #FFFFFF;
    border: none;
    padding: 18px 40px 18px 30px;
    border-radius: 60px;
    font-size: 20px;
    letter-spacing: 0.5px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    z-index: 1;
    transition: background-color 0.2s ease;
}

.cta-container:hover .cta-button,
.cta-container:hover .circle-solid {
    background-color: #D34C36;
}

.cta-container:hover .circle-hollow {
    border-color: #D34C36;
}

/* About Section */
.about-section {
    width: 100%;
    padding: 120px 60px;
    background-color: #FFFDF9;
}

.about-container {
    max-width: 1600px;
    margin: 0 auto;
}

.about-headline {
    font-size: clamp(40px, 4vw, 55px);
    font-weight: 500;
    color: #111111;
    margin-bottom: 50px;
    letter-spacing: -0.03em;
}

.about-text {
    max-width: 1100px;
    display: flex;
    flex-direction: column;
    gap: 35px;
    margin-bottom: 80px;
}

.about-text p {
    font-size: clamp(22px, 2.2vw, 32px);
    line-height: 1.5;
    color: #555555;
    font-weight: 300;
    letter-spacing: -0.01em;
}

/* Bento Grid */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1.4fr 1fr;
    gap: 24px;
    height: 75vh;
    min-height: 550px;
    max-height: 800px;
}

.grid-item {
    position: relative;
    overflow: hidden;
    background-color: #DDE0E2;
}

.grid-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.grid-tall {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

.grid-wide {
    grid-column: 2 / 4;
    grid-row: 1 / 2;
}

.grid-small-1 {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}

.grid-small-2 {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
}

/* Experiences Section */
.experiences-section {
    width: 100%;
    padding: 120px 60px 180px 60px;
    background-color: #FFFDF9; /* Absolute universal consistency */
}

.experiences-container {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 1fr;
    gap: 0 80px; /* column gap 80px, row gap 0 to keep items tight */
}

.experiences-content {
    display: contents; /* Allows title and list to become direct grid children */
}

.experiences-title {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    font-size: clamp(40px, 4vw, 55px);
    font-weight: 500;
    color: #111111;
    margin-bottom: 30px; /* Reduced from 60px to tightly group title and list */
    letter-spacing: -0.03em;
}

.experiences-list {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    list-style: none;
    border-top: 1px solid #EAEAEA; 
}

.experience-item {
    border-bottom: 1px solid #EAEAEA;
    padding: 35px 0;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

/* Progress indicator line — grows from center outward */
.experience-item::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #111111;
    transform: scaleX(0);
    transform-origin: center;
    transition: none;
}

.experience-item.active::before {
    animation: exp-progress 8s linear forwards;
}

@keyframes exp-progress {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

.experience-item:last-child {
    border-bottom: none;
}

.item-header {
    font-size: 26px;
    font-weight: 400;
    color: #A0A0A0;
    transition: color 0.3s ease, font-weight 0.4s ease;
}

.item-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #888888;
    margin-top: 8px;
    transition: color 0.3s ease;
}

/* Active State */
.experience-item.active .item-header {
    color: #111111;
    font-weight: 500;
}

.experience-item.active .item-desc {
    color: #555555;
}

/* Footer Link */
.experiences-footer {
    grid-column: 1 / -1; /* Forcibly spans across the entire CSS grid */
    grid-row: 3 / 4; /* Sits immediately under the list and visual */
    display: flex;
    align-items: center;
    margin-top: 0; /* Anchor securely to the bottom of the Creative Direction list item */
    padding-top: 0; 
}

.footer-line {
    flex-grow: 1;
    height: 1px;
    background-color: #EAEAEA;
    margin-right: 20px;
}

.footer-link {
    text-decoration: none;
    color: #555555;
    font-size: 15px;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.footer-link:hover {
    color: #111111;
}

.footer-link .arrow {
    display: inline-flex;
    align-items: center;
    transition: transform 0.2s ease;
    margin-top: 1px; /* Fine-tuned optical centering */
}

.footer-link:hover .arrow {
    transform: translateX(6px);
}

/* Visual Column */
.experiences-visual {
    grid-column: 2 / 3;
    grid-row: 1 / 3; /* Spans across row 1 (Title) and row 2 (List) perfectly aligning top edges */
    width: 100%;
    background-color: #DDE0E2;
    height: calc(100% - 24px); /* Tighter, more subtle gap above the footer line */
    position: relative;
    overflow: hidden;
}

.exp-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.08);
    filter: brightness(0.8) blur(4px);
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 1.2s cubic-bezier(0.4, 0, 0.2, 1),
                transform 1.2s cubic-bezier(0.4, 0, 0.2, 1),
                filter 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.exp-img.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    filter: brightness(1) blur(0px);
    z-index: 2;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 1.2s cubic-bezier(0.4, 0, 0.2, 1),
                transform 10s cubic-bezier(0.16, 1, 0.3, 1),
                filter 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Selected Experiences Section */
.selected-experiences-section {
    width: 100%;
    padding: 120px 60px;
    background-color: #FFFDF9;
}

.selected-experiences-container {
    max-width: 1600px;
    margin: 0 auto;
}

.selected-experiences-title {
    font-size: clamp(40px, 4vw, 55px);
    font-weight: 500;
    color: #111111;
    margin-bottom: 80px; /* Strong gap before Image A */
    margin-top: 0;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

/* Masonry Grid */
.masonry-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Absolute symmetry to enforce dimensional parity */
    gap: 0 40px; 
    align-items: start;
}

.masonry-col {
    display: flex;
    flex-direction: column;
}

/* Base image styling */
.masonry-img {
    width: 100%;
    object-fit: cover;
    background-color: #DDE0E2;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s ease;
}

.masonry-img:hover {
    transform: scale(0.98);
}

/* Image Geometry Matrix */

/* Image A (Top Left) */
.img-a {
    width: calc(100% + 40px); /* Dynamically expands outward 40px rightward into the center gap */
    aspect-ratio: 4 / 3; /* Strict ratio parity */
    margin-bottom: 80px; 
}

/* Image B (Top Right) */
.img-b {
    width: 65%;
    aspect-ratio: 1 / 1;
    margin-left: auto; /* Aligns strictly Right */
    margin-bottom: 60px; 
}

/* Image C (Bottom Left) */
.img-c {
    width: 55%;
    aspect-ratio: 3 / 4;
    margin-left: 15%; /* Distinct inset space */
}

/* Image D (Bottom Right) */
.img-d {
    width: calc(100% + 40px); /* Exactly identical rendering width as Image A */
    aspect-ratio: 4 / 3; /* Strict ratio parity */
    margin-left: -40px; /* Forces physical movement leftward over the gap, crashing into A */
}

/* =========================================
   FOUNDER PHILOSOPHY SECTION
   ========================================= */

.founder-section {
    width: 100%;
    padding: 140px 60px; /* Deep breathing room matching our About padding */
    background-color: #FFFDF9;
}

.founder-container {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr; /* Strict 50/50 balance */
    gap: 120px; /* Expansive central spacing gap */
    align-items: stretch; /* Forces both columns to identically match the tallest element (the image) */
}

.founder-content {
    display: flex;
    flex-direction: column;
}

.founder-title {
    font-size: clamp(40px, 4vw, 55px);
    font-weight: 500;
    color: #111111;
    margin-top: 0;
    margin-bottom: 60px;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.founder-text {
    flex-grow: 1; /* Instructs the text wrapper to aggressively fill all vertical space underneath the Title */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Magically distributes all paragraph spacing dynamically without fixed margins */
}

.founder-text p {
    font-size: clamp(20px, 1.8vw, 26px); /* Elegantly scaled back to be highly readable without overpowering the frame */
    line-height: 1.6;
    color: #555555;
    margin-top: 0;
    margin-bottom: 0; /* Let flexbox space-between handle ALL spacing dynamically! */
}

.founder-text p:last-child {
    margin-bottom: 0;
}

.founder-text p.manifesto-hook {
    font-weight: 500; 
    color: #111111; /* Off-black punch */
    margin-top: 0; /* Margins completely eliminated */
}

.founder-visual {
    width: 100%;
}

.founder-img {
    width: 100%;
    aspect-ratio: 1 / 1; /* Transformed to a perfect square */
    object-fit: cover;
    object-position: center top; /* Centers subject correctly if zoomed out */
    background-color: #DDE0E2;
}

/* =========================================
   CONTACT & FOOTER SECTION
   ========================================= */

.contact-section {
    width: 100%;
    padding: 120px 60px 0 60px; /* Pads up perfectly strictly to the footer component */
    background-color: #FFFDF9;
}

.contact-container {
    max-width: 1200px; /* Clamped tightly to perfectly align title and eliminate empty grid bloat */
    margin: 0 auto;
}

.contact-title {
    font-size: clamp(40px, 4vw, 55px);
    font-weight: 500;
    color: #111111;
    margin-top: 0;
    margin-bottom: 60px;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid #D0D0D0; /* The monumental brutalist bounding box */
    border-bottom: none; /* Leaves the bottom open to natively fuse with the footer boundary */
}

/* Left Form Column */
.contact-form-wrapper {
    padding: 60px 80px; /* Shifted to more side-breathing room, slightly tighter top */
    border-right: 1px solid #D0D0D0; /* Center vertical dividing line */
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 40px; /* Expanded heavily to space out the crushed inputs cleanly */
    max-width: 500px;
}

.input-group input,
.input-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #D0D0D0;
    padding: 8px 0; /* Crushed vertically to sharply snap the 1px stroke closely under the text */
    font-size: 20px; /* Upscaled aggressively to commanding premium weight */
    color: #111111;
    font-family: inherit;
    resize: none;
    outline: none;
    transition: border-color 0.3s ease;
}

.input-group input::placeholder,
.input-group textarea::placeholder {
    color: #888888;
}

.input-group input:focus,
.input-group textarea:focus {
    border-bottom-color: #111111;
}

.text-group textarea {
    height: 100px; /* Perfectly weighted empty space gap */
}

.text-group {
    margin-bottom: 40px; /* Pushes the submit button violently down to match proportion */
}

.submit-btn {
    align-self: flex-start;
    background-color: #E85D45; /* Coral punch button */
    color: #FFFFFF;
    font-family: inherit;
    font-size: 16px;
    font-weight: 500;
    padding: 14px 60px; /* Stretched wider to form a solid pill */
    border: none;
    border-radius: 40px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.submit-btn:hover {
    background-color: #d14d36;
    transform: translateY(-2px);
}

/* Right Info Rows */
.contact-info-wrapper {
    display: flex;
    flex-direction: column;
}

.info-row {
    padding: 30px 60px; /* Tightly compressed row framing */
    border-bottom: 1px solid #D0D0D0;
    /* Removed flex-grow: 1 to violently clamp the row heights based solely on padding and content natively */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-row:last-child {
    border-bottom: none; /* Flushes into the footer */
    flex-grow: 1; /* Assigning flex-grow only to the booking block correctly sucks down the void */
    justify-content: center; /* Horizontally balances into the huge empty vertical bounds */
    padding: 0; /* Remove top pushing so it truly centers */
}

.info-direct p {
    font-size: 20px; /* Upscaled authoritative scale */
    line-height: 1.4; /* Composed tightly together */
    margin: 0;
}

.info-text-dark {
    color: #111111;
    font-weight: 500;
}

.info-text-light {
    color: #888888;
    font-size: 16px; /* Retains separation hierarchy */
    margin-top: 20px !important; /* Pushes deeply below the email stack */
}

.info-social {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.social-text p {
    margin: 0;
    font-size: 20px; /* Matched massive weighting */
    color: #111111;
    line-height: 1.4; /* Squeezed cleanly */
}

.social-icons {
    display: flex;
    gap: 20px;
}

.social-link {
    color: #555555;
    transition: color 0.3s ease, transform 0.2s ease;
}

.social-link:hover {
    color: #111111;
    transform: translateY(-2px);
}

.info-booking {
    flex-direction: row;
    align-items: center;
    gap: 40px;
    cursor: pointer;
}

.info-booking:hover .calendar-icon svg {
    transform: scale(1.05) rotate(2deg);
}

.calendar-icon {
    flex-shrink: 0; 
}

.calendar-icon svg {
    width: 72px;
    height: 72px;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.booking-title {
    font-size: 24px;
    color: #111111;
    font-weight: 500;
    margin: 0 0 20px 0;
}

.booking-profile {
    display: flex;
    align-items: center;
    gap: 20px;
}

.profile-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
}

.profile-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.profile-name {
    font-size: 18px;
    font-weight: 600;
    color: #111111;
}

.profile-title {
    font-size: 14px;
    color: #888888;
}

/* =========================================
   Universal Booking Modal
   ========================================= */

.booking-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(17, 17, 17, 0.5);
    backdrop-filter: blur(12px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.booking-modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.booking-modal-container {
    background-color: #FFFDF9;
    width: 90%;
    max-width: 500px; /* Snug, mobile friendly profile width */
    border-radius: 24px;
    padding: 40px;
    position: relative;
    transform: translateY(30px) scale(0.98);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15); /* Extreme soft depth shadow */
}

.booking-modal-overlay.open .booking-modal-container {
    transform: translateY(0) scale(1);
}

.modal-close-btn {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: #888888;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.modal-close-btn:hover {
    background-color: #F0F0F0;
    color: #111111;
}

.modal-header {
    margin-bottom: 30px;
}

.modal-divider {
    width: 100%;
    height: 1px;
    background-color: #EAEAEA;
    margin-bottom: 30px;
}

.calendly-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 50px 0;
    border: 1px dashed #D0D0D0;
    border-radius: 12px;
}

.placeholder-icon {
    margin-bottom: 20px;
}

.placeholder-title {
    font-size: 20px;
    font-weight: 500;
    color: #111111;
    margin: 0 0 10px 0;
}

.placeholder-text {
    font-size: 14px;
    color: #888888;
    margin: 0;
}

/* Site Footer */
.site-footer {
    width: 100%;
    background-color: #FFFDF9;
    border-top: 1px solid #D0D0D0; /* Full Bleed Bounding Line */
}

.footer-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 40px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-container p,
.footer-links a,
.footer-links p {
    font-size: 14px;
    color: #555555;
    margin: 0;
    text-decoration: none;
}

.footer-links {
    display: flex;
    gap: 60px;
}

.footer-links a {
    text-decoration: underline;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #111111;
}

/* Responsive */
@media (max-width: 1200px) {
    .nav-container { padding: 24px 40px; }
    .hero { padding: 0 40px; }
    .hero-image-carousel { width: 70%; height: 50vh; }
    .about-section { padding: 80px 40px; }
    .about-grid { height: 60vh; gap: 16px; }
    .experiences-section { padding: 80px 40px 120px 40px; }
    .experiences-container { gap: 40px; }
    .experiences-content { padding-right: 0; }
    .selected-experiences-section { padding: 80px 40px; }
    
    .founder-section { padding: 100px 40px; }
    .founder-container { gap: 60px; }
    
    .contact-section { padding: 100px 40px 0 40px; }
    .contact-form-wrapper { padding: 60px 40px; }
    .info-row { padding: 60px 40px; }
    .footer-container { padding: 40px; }
}

@media (max-width: 900px) {
    /* Release the artificial scrollbar gutter on mobile to fix the leftward shift */
    html { scrollbar-gutter: auto; }

    /* Perfect true-center positioning respecting mobile browser toolbars */
    .preloader { height: 100dvh; }

    /* Stack Logo cleanly in absolute center on mobile */
    .nav-container { position: relative; padding: 20px 0; flex-direction: column; align-items: center; gap: 20px; }
    
    #navLogo { padding-left: 0; }
    
    /* Compact, centered nav underline */
    .nav-border { width: 60%; }
    .navbar.nav-scrolled .nav-border { width: calc(100% - 40px); }

    .hero { padding: 0 20px; }
    .hero-title { font-size: 50px; }
    .hero-image-carousel { width: 100%; height: clamp(220px, 38dvh, 380px); align-self: center; margin-top: 20px; }
    .hero-content { margin-top: 40px; }
    .line-2-wrapper { flex-direction: column; align-items: flex-start; gap: 30px; }
    .cta-container { margin-top: 10px; }

    /* Elegant Horizontal Swipe Navigation for Mobile/Tablets */
    .nav-links { 
        display: flex; 
        overflow-x: auto; 
        width: 100%;
        gap: 32px; 
        padding-bottom: 5px; 
        padding-left: 20px;
        padding-right: 40px;
        -webkit-overflow-scrolling: touch; 
        scrollbar-width: none; 
        
        /* Subtle swipe hint: Text gracefully fades into transparency at screen edges */
        -webkit-mask-image: linear-gradient(to right, transparent 0%, black 20px, black calc(100% - 30px), transparent 100%);
        mask-image: linear-gradient(to right, transparent 0%, black 20px, black calc(100% - 30px), transparent 100%);
    }
    .nav-links::-webkit-scrollbar { display: none; }
    .nav-links a { font-size: 16px; white-space: nowrap; }
    
    .about-section { padding: 60px 20px; }
    .about-grid { display: flex; flex-direction: column; height: auto; }
    .grid-item { height: 300px; }
    .experiences-section { padding: 60px 20px 80px 20px; }
    .experiences-container { 
        grid-template-columns: 1fr; 
        grid-template-rows: auto auto auto auto;
        gap: 0; 
    }
    .experiences-title { grid-column: auto; grid-row: auto; font-size: 40px; margin-bottom: 30px; }
    .experiences-list { grid-column: auto; grid-row: auto; margin-bottom: 40px; }
    .experiences-visual { grid-column: auto; grid-row: auto; height: 50vh; height: 50dvh; min-height: 280px; }
    
    /* Experiences Footer Double-Line Fix */
    .experiences-footer { grid-column: 1 / -1; grid-row: auto; padding-top: 30px; margin-top: 40px; border-top: 1px solid #EAEAEA; justify-content: center; }
    .footer-line { display: none; }
    
    .selected-experiences-section { padding: 60px 20px; }
    .selected-experiences-title { font-size: 40px; margin-bottom: 40px; }
    .masonry-grid { display: flex; flex-direction: column; gap: 40px; }
    .masonry-col { display: contents; }
    .img-a, .img-b, .img-c, .img-d { margin-left: 0; width: 100%; margin-bottom: 0px; }
    .img-a { order: 1; }
    .img-b { order: 2; }
    .img-c { order: 3; aspect-ratio: 4/3; }
    .img-d { order: 4; }
    
    .founder-section { padding: 80px 20px; }
    .founder-container { grid-template-columns: 1fr; gap: 60px; }
    .founder-title { font-size: 40px; margin-bottom: 40px; }
    .founder-text p { font-size: 18px; margin-bottom: 24px; }
    .founder-img { aspect-ratio: 1 / 1; }
    
    .contact-section { padding: 80px 20px 0 20px; }
    .contact-grid { grid-template-columns: 1fr; border-bottom: 1px solid #D0D0D0; }
    .contact-form-wrapper { border-right: none; border-bottom: 1px solid #D0D0D0; padding: 40px 20px; }
    .info-row { padding: 40px 20px; }
    
    .footer-container { 
        padding: 40px 20px; 
        flex-direction: column; 
        gap: 30px; 
        align-items: flex-start; 
    }
    .footer-links { flex-direction: column; gap: 15px; }
}

@media (max-width: 600px) {
    /* Extreme Phone Tuning with dvh for browser chrome awareness */
    .hero-title { font-size: clamp(34px, 10vw, 42px); }
    .hero-image-carousel { height: clamp(180px, 32dvh, 320px); }
    
    .cta-button { font-size: 16px; padding: 14px 30px; }
    .cta-decoration .circle-solid { width: 22px; height: 22px; margin-left: -3px; margin-right: -8px; }
    .cta-decoration .circle-hollow { width: 12px; height: 12px; border-width: 2px; }

    .about-headline { font-size: 34px; }
    .about-text p { font-size: 20px; }
    
    .experiences-title { font-size: 34px; }
    .item-header { font-size: 22px; }
    .experiences-visual { height: 40vh; height: 40dvh; min-height: 240px; }
    
    .selected-experiences-title { font-size: 34px; margin-bottom: 30px; }
    .masonry-grid { gap: 20px; }
    
    .founder-title { font-size: 34px; margin-bottom: 30px; }
    .founder-text p { font-size: 16px; }
    .founder-container { gap: 40px; }
    
    .contact-title { font-size: 34px; }
    .contact-form { gap: 30px; }
    
    /* Vertically Stack the Booking block */
    .info-booking { flex-direction: column; text-align: center; gap: 24px; padding: 50px 20px !important; }
    .booking-profile { flex-direction: column; gap: 12px; }
    .booking-title { font-size: 22px; }
    
    .booking-modal-container { padding: 30px 20px; margin: 15px; }
    .placeholder-title { font-size: 18px; }
    .calendly-placeholder { padding: 40px 10px; }
}

