
:root {
    
    --bg-dark: #1C1F24; 
    --secondary: #3A4452; 
    --charcoal: #2C2A28; 
    --gold: #C79C5A; 
    --crema: #F7F3ED; 
    --white: #F5F7FA; 
    --text-muted: #9AA3AD; 
    
    --font-main: 'Montserrat', sans-serif;
    --font-heading: 'Playfair Display', serif; 
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: var(--font-main);
    color: var(--charcoal);
    background-color: var(--white);
    overflow-x: hidden;
}



.bg-crema { background-color: var(--crema) !important; }
.bg-secondary { background-color: var(--bg-dark) !important; }
.bg-white { background-color: var(--white) !important; }
.text-gold { color: var(--gold) !important; }
.text-white { color: var(--white) !important; }
.text-center { text-align: center; }
.mt-4 { margin-top: 2rem; }


body.dragging * { cursor: grabbing !important; user-select: none; }
.cursor { pointer-events: none; position: fixed; top: 0; left: 0; z-index: 9999; display: none; }
@media (hover: hover) and (pointer: fine) { .cursor { display: block; } }
.cursor-dot {
    width: 10px; height: 10px; background: var(--gold);
    border-radius: 50%; position: absolute; transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s;
}
.cursor-hand {
    position: absolute; width: 36px; height: 36px;
    transform: translate(-50%, -50%) scale(0); opacity: 0;
    transition: transform 0.3s, opacity 0.3s;
}
body.hovering-cylinder .cursor-dot { width: 40px; height: 40px; background: rgba(197, 160, 89, 0.2); }
body.hovering-cylinder .cursor-hand { transform: translate(-50%, -50%) scale(1); opacity: 1; }
body.dragging .cursor-hand { transform: translate(-50%, -50%) scale(0.9); }


.bespoke-header {
    position: fixed; top: 0; left: 0; width: 100vw;
    height: 85px; display: flex; justify-content: space-between; align-items: center;
    padding: 0 5%; z-index: 100;
    background: transparent;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: background 0.4s, backdrop-filter 0.4s, border-color 0.4s;
}
.bespoke-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 4px 30px rgba(0,0,0,0.03);
}

.main-logo {
    height: 90px; width: auto; object-fit: contain; display: block;
    transition: height 0.3s, transform 0.3s;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5)); 
}
.bespoke-header.scrolled .main-logo { height: 75px; }

.main-nav { display: flex; gap: 10px; }
.pill-nav {
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 40px; padding: 4px 8px; backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.pill-nav a {
    text-decoration: none; color: rgba(255,255,255,0.95); 
    font-weight: 500; font-size: 13px; text-transform: capitalize; letter-spacing: 0.5px;
    padding: 8px 16px; border-radius: 30px; transition: background 0.3s, color 0.3s;
}
.bespoke-header.scrolled .pill-nav {
    background: rgba(0,0,0,0.03); border-color: rgba(0,0,0,0.05);
}
.bespoke-header.scrolled .pill-nav a { color: var(--bg-dark); font-weight: 600; }
.pill-nav a:hover { background: rgba(255,255,255,0.1); color: #fff; }
.bespoke-header.scrolled .pill-nav a:hover { background: rgba(0,0,0,0.05); color: var(--gold); }

.header-actions { display: flex; align-items: center; gap: 20px; }
.menu-icon { display: none; cursor: pointer; color: #fff; transition: color 0.4s; }
.bespoke-header.scrolled .menu-icon { color: var(--bg-dark); }

.btn-primary {
    background: var(--gold); color: #fff; padding: 12px 28px;
    border-radius: 4px; text-decoration: none; font-weight: 600; font-size: 14px; text-transform: uppercase; letter-spacing: 0.5px;
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
    border: none; cursor: pointer;
}
.btn-primary:hover { 
    background: var(--primary-gold-hover); transform: translateY(-2px); 
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.3);
}
.btn-primary.full-width { width: 100%; }

@media (max-width: 768px) {
    .desktop-only { display: none !important; }
    .menu-icon { display: block; }
    .bespoke-header { padding: 0 20px; height: 85px; }
    .main-logo { height: 65px; }
}


.video-hero {
    position: relative; width: 100vw; height: 100svh; 
    display: flex; justify-content: center; align-items: center;
    overflow: hidden;
}
.hero-bg-video {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover; z-index: 1;
}
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
}
.video-hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.65); 
    z-index: 2;
}
.video-hero-content {
    position: relative; z-index: 3; text-align: center;
    max-width: 1000px; padding: 0 20px;
    display: flex; flex-direction: column; align-items: center;
    animation: fadeInDown 1.2s ease-out;
}
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}


.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.15);
    padding: 8px 20px; border-radius: 40px; font-size: 13px; color: #fff;
    margin-bottom: 24px; backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    font-weight: 500; letter-spacing: 0.5px;
}
.badge-icon { font-size: 16px; }


.bespoke-title {  
    font-size: clamp(36px, 6vw, 75px);
    font-weight: 700; line-height: 1.05; letter-spacing: -0.03em;
    margin-bottom: 20px; text-shadow: 0 4px 30px rgba(0,0,0,0.6);
}
.bespoke-subtitle {
    font-size: clamp(16px, 2vw, 22px);
    opacity: 0.9; max-width: 650px; margin: 0 auto;
    font-weight: 300; line-height: 1.6; text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}


.hero-actions { display: flex; gap: 15px; justify-content: center; margin-top: 40px; }
.btn-outline {
    background: transparent; border: 1px solid rgba(255,255,255,0.4); color: #fff;
    padding: 12px 28px; border-radius: 4px; text-decoration: none; font-weight: 600; font-size: 14px; text-transform: uppercase; letter-spacing: 0.5px; 
    transition: background 0.3s, border-color 0.3s;
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; }


.hero-bottom-metrics {
    position: absolute; bottom: 40px; left: 0; width: 100%;
    display: flex; justify-content: space-between; padding: 0 5%;
    z-index: 4; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px;
}
.hero-metric { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,0.7); font-size: 13px; font-weight: 400; }
.hero-metric span { color: #fff; font-weight: 700;  font-size: 18px; }


.logo-marquee-section {
    padding: 20px 0; overflow: hidden;
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
}
.clients-marquee { width: 100%; overflow: hidden; white-space: nowrap; display: flex; align-items: center; }
.marquee-track {
    display: inline-flex; animation: scroll-left 30s linear infinite; align-items: center;
}
.marquee-track img { height: 40px; margin: 0 40px; object-fit: contain; filter: grayscale(10%) contrast(1.2); }
@keyframes scroll-left { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }


.bespoke-section { padding: 70px 0 55px; overflow: hidden; }
.vision-360-heading { max-width: 850px; margin: 0 auto 32px; text-align: center; }
.vision-360-heading .section-title { margin-bottom: 16px; }
.vision-360-heading p { max-width: 760px; margin: 0 auto; color: #555; font-size: 16px; line-height: 1.75; }
.bespoke-scene {
    position: relative; width: 100vw; height: clamp(430px, 48vw, 560px); min-height: 430px;
    display: flex; justify-content: center; align-items: center;
    perspective: 1500px; 
    margin-bottom: 45px;
}
.bespoke-cylinder {
    position: relative; width: 100%; height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out; 
}
.bespoke-panel {
    position: absolute; top: 10%; left: 50%;
    height: 80%; width: 280px; margin-left: -140px;
    border-radius: 8px; overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    -webkit-clip-path: url(#arch-mask); clip-path: url(#arch-mask);
    backface-visibility: hidden;
    transition: filter 0.4s;
    background: #000;
}
.bespoke-panel img {
    width: 100%; height: 100%; object-fit: cover;
    opacity: 0.7; transition: opacity 0.4s, transform 0.6s;
}
.bespoke-panel:hover img { opacity: 1; transform: scale(1.05); }


@media (min-width: 1024px) {
    .bespoke-scene { height: clamp(460px, 48vw, 580px); perspective: 2000px; }
    .bespoke-panel { width: 340px; margin-left: -170px; }
}

.bespoke-info { text-align: center; max-width: 600px; margin: 0 auto; padding: 0 20px; }
.bespoke-desc { font-size: 16px; color: #555; line-height: 1.6; margin-bottom: 30px; font-weight: 400; }
.btn-text-link {
    display: inline-block; text-decoration: none; color: var(--gold);
    font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px;
    border-bottom: 1px solid var(--gold); padding-bottom: 4px;
    transition: color 0.3s, border-color 0.3s;
}
.btn-text-link:hover { color: var(--bg-dark); border-color: var(--bg-dark); }


.container { max-width: 1200px; margin: 0 auto; padding: 0 5%; }
.section-title {  font-weight: 600; letter-spacing: -0.5px;  font-size: clamp(32px, 4vw, 48px); margin-bottom: 20px; color: var(--bg-dark); }


.about-section { padding: 80px 0 40px; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-slogan { font-size: 24px; color: var(--bg-dark); margin-bottom: 24px; font-weight: 400; }
.about-text { font-size: 16px; color: #555; line-height: 1.8; margin-bottom: 20px; }
.about-metrics { display: grid; grid-template-columns: 1fr; gap: 40px; }
.metric-item { display: flex; flex-direction: column; border-left: 2px solid var(--gold); padding-left: 20px; }
.metric-number { font-size: 48px; font-weight: 700;  line-height: 1; margin-bottom: 8px; }
.metric-label { font-size: 14px; text-transform: uppercase; letter-spacing: 1px; color: #777; font-weight: 600; }

@media (max-width: 768px) {
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-metrics { grid-template-columns: 1fr; gap: 30px; }
    .metric-item { 
        border-left: none; 
        border-bottom: 1px solid rgba(197,160,89,0.3);
        padding-left: 0; 
        padding-bottom: 20px;
        align-items: center; 
        text-align: center; 
    }
    .metric-item:last-child {
        border-bottom: none;
    }
}


.services-interactive { padding: 60px 0 100px; background: var(--bg-dark); overflow: hidden; }
.accordion-container {
    display: flex; width: 100%; height: 60vh; min-height: 500px; max-height: 800px;
    gap: 15px; padding: 0 5%;
}
.acc-item {
    flex: 1; position: relative; border-radius: 12px; overflow: hidden;
    background-size: cover; background-position: center;
    transition: flex 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: pointer;
}
.acc-item:hover { flex: 4; }
.acc-overlay {
    position: absolute; inset: 0; 
    background: linear-gradient(0deg, rgba(26,28,32,0.95) 0%, rgba(26,28,32,0.3) 100%);
    transition: background 0.6s;
}
.acc-item:hover .acc-overlay { 
    background: linear-gradient(0deg, rgba(26,28,32,0.85) 0%, rgba(26,28,32,0.4) 100%); 
}
.acc-content {
    position: absolute; bottom: 30px; left: 30px; right: 30px; color: #fff;
    display: flex; flex-direction: column; justify-content: flex-end;
    height: 100%;
}
.acc-num {
     font-size: 24px; color: var(--gold);
    margin-bottom: 10px; font-weight: 700; transition: transform 0.4s;
}
.acc-title {  font-weight: 600; 
    font-size: 22px; font-weight: 700; white-space: nowrap; writing-mode: vertical-rl;
    transform: rotate(180deg); transition: 0.6s; margin: 0; 
}
.acc-item:hover .acc-title {  font-weight: 600; 
    writing-mode: horizontal-tb; transform: none; white-space: normal;
    font-size: 32px; margin-bottom: 15px; text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.acc-desc {
    opacity: 0; max-height: 0; overflow: hidden; font-size: 15px; line-height: 1.6;
    transition: opacity 0.4s, max-height 0.4s; color: rgba(255,255,255,0.9);
}
.acc-item:hover .acc-desc { opacity: 1; max-height: 150px; transition-delay: 0.2s; }




.thesis-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    align-items: stretch;
}

.thesis-card {
    flex: 1 1 300px;
    max-width: 350px;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.03);
    border-radius: 24px;
    padding: 40px 35px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    text-align: left;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.thesis-card:hover {
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.card-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(197,160,89,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.card-icon svg {
    color: var(--gold);
}

.thesis-card h3 {
    font-size: 21px;
    font-weight: 700;
    letter-spacing: -0.3px;
    margin-bottom: 12px;
    color: var(--charcoal);
    font-family: var(--font-main);
}

.thesis-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    font-weight: 400;
    margin: 0;
}


@media (max-width: 900px) {
    .thesis-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;
        padding-bottom: 24px;
    }
    
    .thesis-grid .thesis-card {
        position: static;
        flex: 0 0 auto;
        min-height: 0;
        width: 100%;
        max-width: none;
        margin: 0;
        padding: 28px 26px;
        border-radius: 20px; 
        box-shadow: 0 10px 30px rgba(0,0,0,0.05); 
    }
    .thesis-grid .card-icon { width: 52px; height: 52px; margin-bottom: 18px; }
    .thesis-grid .thesis-card h3 { margin-bottom: 8px; }
    .thesis-grid .thesis-card p { line-height: 1.6; }
}

@media(max-width: 900px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .contact-form-container {
        padding: 30px 20px;
    }
}

@media(max-width: 600px) {
    .bespoke-form {
        grid-template-columns: 1fr;
    }
    #wa-email, #wa-phone {
        grid-column: 1 / -1;
    }
}


.contact-section {
    padding: 140px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.contact-info h2 {
    font-size: clamp(40px, 6vw, 64px);
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -1.5px;
}

.contact-info p {
    font-size: 18px;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
    max-width: 400px;
}

.contact-form-container {
    background: transparent;
    padding: 0;
    box-shadow: none;
    border: none;
}

.apple-form {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.apple-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.apple-form-group {
    position: relative;
    width: 100%;
}

.apple-form-group input, 
.apple-form-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 20px;
    padding: 10px 0;
    font-family: var(--font-main);
    outline: none;
    resize: none;
    transition: 0.3s ease;
}

.apple-form-group label {
    position: absolute;
    top: 12px;
    left: 0;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.4);
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    font-family: var(--font-main);
}

.focus-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}


.apple-form-group input:focus ~ label,
.apple-form-group input:not(:placeholder-shown) ~ label,
.apple-form-group textarea:focus ~ label,
.apple-form-group textarea:not(:placeholder-shown) ~ label {
    top: -24px;
    font-size: 13px;
    color: var(--gold);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
}

.apple-form-group input:focus ~ .focus-border,
.apple-form-group textarea:focus ~ .focus-border {
    width: 100%;
}

.btn-apple {
    background: #fff;
    color: #111;
    border: none;
    border-radius: 40px;
    padding: 20px 40px;
    font-size: 15px;
    font-weight: 600;
    font-family: var(--font-main);
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    width: fit-content;
}

.btn-apple:hover {
    transform: scale(1.03);
    background: var(--gold);
    color: #fff;
    box-shadow: 0 20px 40px rgba(197, 160, 89, 0.2);
}

@media(max-width: 900px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .apple-form-row {
        grid-template-columns: 1fr;
    }
    .btn-apple {
        width: 100%;
        justify-content: center;
    }
}


.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}
.lightbox.active {
    display: flex;
}
.lightbox-img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
}
.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    cursor: pointer;
    z-index: 10000;
}

.project-card-link { display: block; height: 100%; color: inherit; text-decoration: none; }
.project-card-link img, .lightbox-img { -webkit-user-drag: none; user-select: none; }
.project-card-link:focus-visible { outline: 3px solid var(--gold, #c5a059); outline-offset: 4px; }
.wa-honeypot { position:absolute !important; width:1px; height:1px; overflow:hidden; clip:rect(1px,1px,1px,1px); white-space:nowrap; }
@media (max-width: 700px) {
    #site-footer { padding: 108px 0 28px !important; margin-top: -56px !important; clip-path: polygon(0 54px, 50% 0, 100% 54px, 100% 100%, 0 100%) !important; }
    #site-footer .footer-main { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; gap: 34px 26px !important; margin-bottom: 36px !important; padding: 0 24px; align-items: start; }
    #site-footer .footer-main > div:first-child { grid-column: 1 / -1; max-width: 430px; margin: 0 auto; text-align: center; }
    #site-footer .footer-main > div:nth-child(2) { text-align: left; }
    #site-footer .footer-main > div:nth-child(3) { text-align: left; }
    #site-footer .footer-main h4 { margin-bottom: 14px !important; }
    #site-footer .footer-main p { line-height: 1.65 !important; }
    #site-footer .footer-main a { overflow-wrap: anywhere; }
    #site-footer .footer-bottom { display: flex !important; flex-direction: column; align-items: center !important; gap: 14px !important; margin: 0 24px; padding-top: 22px !important; text-align: center; }
    #site-footer .footer-legal { justify-content: center; gap: 18px !important; flex-wrap: wrap; }
    #site-footer .footer-credit { margin-top: 20px !important; padding: 15px 24px 2px; gap: 9px !important; }
    #site-footer .footer-credit img { width: 118px !important; max-height: 36px !important; }
}

.privacy-consent { display:flex; align-items:flex-start; gap:10px; color:rgba(255,255,255,.72); font-size:12px; line-height:1.55; cursor:pointer; }
.privacy-consent input { width:16px; height:16px; margin:2px 0 0; accent-color:var(--gold); flex:0 0 auto; }
.privacy-link,.footer-privacy-link { appearance:none; border:0; background:transparent; padding:0; color:inherit; font:inherit; cursor:pointer; text-decoration:underline; text-underline-offset:3px; }
.privacy-link { color:#e3c17c; font-weight:600; }
.footer-privacy-link { color:rgba(255,255,255,.3); font-size:12px; transition:color .3s; }
.footer-privacy-link:hover,.footer-privacy-link:focus-visible { color:#fff; }
.ai-disclosure { position:relative; z-index:2; max-width:780px; margin:18px auto 0; padding:0 24px; color:rgba(255,255,255,.38); font-size:10px; line-height:1.5; text-align:center; letter-spacing:.01em; }
body.privacy-modal-open { position:fixed !important; width:100%; overflow:hidden !important; overscroll-behavior:none; }
.privacy-modal { position:fixed; z-index:10050; inset:0; display:none; padding:24px; overscroll-behavior:contain; }
.privacy-modal.is-open { display:grid; place-items:center; }
.privacy-modal__backdrop { position:absolute; inset:0; background:rgba(9,12,17,.76); backdrop-filter:blur(10px); }
.privacy-modal__panel { position:relative; width:min(780px,100%); height:min(84dvh,820px); max-height:calc(100dvh - 48px); overflow:hidden; display:flex; flex-direction:column; border:1px solid rgba(213,178,106,.3); border-radius:22px; background:linear-gradient(145deg,#1c222b,#11151b); box-shadow:0 30px 90px rgba(0,0,0,.45); color:#e9e6df; outline:none; }
.privacy-modal__header { display:flex; align-items:flex-start; justify-content:space-between; gap:20px; padding:28px 30px 22px; border-bottom:1px solid rgba(255,255,255,.1); }
.privacy-modal__eyebrow { display:block; color:#d8b26a; font-size:11px; font-weight:700; letter-spacing:.16em; margin-bottom:8px; }
.privacy-modal h2 { margin:0; color:#fff; font:600 clamp(25px,4vw,34px) var(--font-heading); }
.privacy-modal__close { width:38px; height:38px; border:1px solid rgba(255,255,255,.16); border-radius:50%; background:rgba(255,255,255,.04); color:#fff; font-size:27px; line-height:1; cursor:pointer; }
.privacy-modal__close:hover { background:#d8b26a; border-color:#d8b26a; }
.privacy-modal__content { min-height:0; overflow-y:auto; overscroll-behavior:contain; touch-action:pan-y; -webkit-overflow-scrolling:touch; padding:26px 30px 34px; font-size:14px; line-height:1.7; }
.privacy-modal__content p { margin:0 0 18px; color:rgba(255,255,255,.8); }
.privacy-modal__content a { color:#e3c17c; }
.privacy-modal__content h3 { margin:25px 0 8px; color:#fff; font:600 16px var(--font-heading); }
.privacy-modal__updated { color:#d8b26a !important; font-size:12px; letter-spacing:.04em; }
.privacy-modal__notice { border-left:3px solid #d8b26a; padding:12px 14px; background:rgba(216,178,106,.1); border-radius:0 8px 8px 0; }
.privacy-modal__legal { padding-top:16px; border-top:1px solid rgba(255,255,255,.1); font-size:12px; color:rgba(255,255,255,.58) !important; }
@media (max-width: 480px) {
    #site-footer .footer-main { grid-template-columns: 1fr !important; gap: 30px !important; }
    #site-footer .footer-main > div:first-child { grid-column: auto; }
    #site-footer .footer-main > div:nth-child(2), #site-footer .footer-main > div:nth-child(3) { text-align: center; }
}
@media (max-width: 900px) {
    .bespoke-section { padding: 55px 0 40px; }
    .vision-360-heading { margin-bottom: 20px; }
    .vision-360-heading p { font-size: 15px; line-height: 1.65; }
    .bespoke-scene { height: 440px; min-height: 440px; margin-bottom: 30px; }
    .team-section > .container { padding-left: 24px !important; padding-right: 24px !important; }
    .team-cards { display: flex !important; flex-direction: column; align-items: stretch; gap: 20px !important; margin-bottom: 46px !important; }
    .team-card { flex: 0 0 auto; min-height: 0; width: 100%; max-width: none; padding: 28px 26px !important; border-radius: 20px !important; }
    .team-card > div:first-child { width: 52px !important; height: 52px !important; margin-bottom: 18px !important; }
    .team-card h3 { margin-bottom: 8px !important; }
    .team-card p { line-height: 1.6 !important; }
}
