/* ===========================
   NAVBAR
   =========================== */
.site-header {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 2000;
    padding: 16px 40px 16px 134px; /* 134px from left screen to logo block */
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.85),
        rgba(0, 0, 0, 0.45) 40%,
        rgba(0, 0, 0, 0)
    );
    backdrop-filter: blur(10px) saturate(140%);
    -webkit-backdrop-filter: blur(10px) saturate(140%);
    transition:
        background 0.45s cubic-bezier(0.22, 0.61, 0.36, 1),
        backdrop-filter 0.45s cubic-bezier(0.22, 0.61, 0.36, 1),
        -webkit-backdrop-filter 0.45s cubic-bezier(0.22, 0.61, 0.36, 1),
        transform 0.35s ease;
}

/* No background when scroll starts */
.site-header--compact {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

/* When burger is opened, bring back the premium glass background */
.site-header--compact.site-header--menu-open {
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.9),
        rgba(0, 0, 0, 0.7) 40%,
        rgba(0, 0, 0, 0)
    );
    backdrop-filter: blur(18px) saturate(180%);
    -webkit-backdrop-filter: blur(18px) saturate(180%);
}

.site-header-inner {
    position: relative;
    max-width: 1883px;
    width: 100%;
    margin: 0 auto;
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
}

/* Brand / Logo */
.brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    transform-origin: left center;
    transform: scaleX(1);
    transition:
        opacity 0.45s cubic-bezier(0.22, 0.61, 0.36, 1),
        transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1),
        clip-path 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.brand-logo {
    height: 64px;
    width: auto;
    object-fit: contain;
}

/* Main nav links */
.main-nav {
    display: flex;
    align-items: center;
    margin-left: 815px;          /* 815px gap from logo to first nav link */
    column-gap: 67px;            /* 67px between each nav link */
    font-family: "Classy Vogue", "Times New Roman", serif;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0.04em;
    color: #ffffff;
    transform-origin: right center;
    transform: scaleX(1);
    transition:
        opacity 0.45s cubic-bezier(0.22, 0.61, 0.36, 1),
        transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1),
        clip-path 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.nav-link {
    position: relative;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    padding-bottom: 4px;
    cursor: pointer;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px;
    width: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, #f5e6c4, #ffffff);
    transform-origin: center;
    transform: scaleX(0.0);
    opacity: 0;
    transition:
        transform 0.28s ease,
        opacity 0.28s ease;
}

.nav-link:hover,
.nav-link:focus-visible {
    color: #ffffff;
}

.nav-link:hover::after,
.nav-link:focus-visible::after {
    transform: scaleX(1);
    opacity: 1;
}

/* Right side: burger */
.header-right {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin-left: 106px;          /* 106px gap from last nav link to burger */
}

/* 2-line burger toggle */
.nav-toggle {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 0;
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    outline: none;
    overflow: visible;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    transition:
        opacity 0.3s ease,
        transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.nav-toggle-line {
    position: absolute;
    width: 40px;
    height: 3px;
    border-radius: 999px;
    background: #ffffff;
    transition:
        top 0.45s cubic-bezier(0.22, 0.61, 0.36, 1),
        transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.nav-toggle-line-1 { top: 10px; }
.nav-toggle-line-2 { top: 21px; }

.site-header--compact .nav-toggle { transform: rotate(360deg); }

.site-header--compact:not(.site-header--menu-open) .main-nav,
.site-header--compact:not(.site-header--menu-open) .brand {
    opacity: 0;
    transform: scaleX(0.2) translateX(20px);
    pointer-events: none;
}

.site-header--compact.site-header--menu-open .main-nav,
.site-header--compact.site-header--menu-open .brand {
    opacity: 1;
    transform: scaleX(1) translateX(0);
    pointer-events: auto;
}

.site-header--menu-open .nav-toggle { transform: rotate(540deg); }
.site-header--menu-open .nav-toggle-line-1 { top: 22px; transform: rotate(45deg); }
.site-header--menu-open .nav-toggle-line-2 { top: 22px; transform: rotate(-45deg); }

/* ===========================
   GLOBAL / BODY BACKGROUND
   =========================== */

:root{
  /* Tunable offset for row-2 base right-shift (fixes alignment) */
  --fw-row2-offset: 300px; /* was 232px; moved further right per request */
}

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

html, body { height: 100%; }

body {
    font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #ffffff;
    background: linear-gradient(
                    rgba(0, 0, 0, 0.6),
                    rgba(0, 0, 0, 0.6)
                ),
                url("../img/site_bg.webp") center center no-repeat fixed;
    background-size: cover;
}

/* ===========================
   HERO SECTION (adds gentle blur-out + faster fade)
   =========================== */

.hero-section {
    position: relative;
    width: 100%;
    max-width: 1920px;
    height: 1002px;
    margin: 0 auto;
    overflow: hidden;
    background-color: #000;
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.hero-section::after {
    content: "";
    position: absolute;
    inset: -20%;
    background: radial-gradient(circle at 10% 0%, rgba(255, 255, 255, 0.09), transparent 55%),
                radial-gradient(circle at 90% 100%, rgba(255, 255, 255, 0.06), transparent 55%);
    mix-blend-mode: soft-light;
    opacity: 0.35;
    pointer-events: none;
    z-index: 1;
    animation: heroSheen 22s linear infinite;
}

@keyframes heroSheen {
    0%   { transform: translate3d(-4%, 0, 0) scale(1.05); opacity: 0.3; }
    50%  { transform: translate3d(4%, 0, 0) scale(1.08);  opacity: 0.45; }
    100% { transform: translate3d(-4%, 0, 0) scale(1.05); opacity: 0.3; }
}

/* Background slider */
.hero-bg-slider { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-bg {
    position: absolute; inset: 0;
    background-position: center; background-size: cover;
    opacity: 0; transform-origin: center; transform: scale(1.10);
    will-change: opacity, transform; animation: bgCycle 12s cubic-bezier(0.4, 0.0, 0.2, 1) infinite;
}
.hero-bg-1 { background-image: url("../img/hero_bg_1.webp"); animation-delay: 0s; }
.hero-bg-2 { background-image: url("../img/hero_bg_2.webp"); animation-delay: 4s; }
.hero-bg-3 { background-image: url("../img/hero_bg_3.webp"); animation-delay: 8s; }

@keyframes bgCycle {
    0% { opacity: 0; transform: scale(1.10); }
    3% { opacity: 1; transform: scale(1.08); }
    30% { opacity: 1; transform: scale(1.00); }
    36% { opacity: 0; transform: scale(0.98); }
    100% { opacity: 0; transform: scale(1.10); }
}

/* Foreground */
.hero-inner { position: relative; width: 100%; height: 100%; z-index: 2; }

/* Text slider (adds blur just before disappearing & speeds fade-out) */
.hero-text-slider {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%); max-width: 640px; width: 100%; text-align: center;
}
.hero-text-block {
    position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center;
    opacity: 0; transform: translate3d(0, 24px, 0); filter: blur(0px);
    will-change: opacity, transform, filter;
    animation: textCycle 12s cubic-bezier(0.33, 1, 0.68, 1) infinite;
}
.hero-text-block::after {
    content: ""; position: absolute; bottom: 32%; width: 120px; height: 1px;
    background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,0.75), rgba(255,255,255,0));
    opacity: 0; transform: scaleX(0.4); transform-origin: center; pointer-events: none; transition: opacity 0.3s ease;
}

/* NOTE: Shorter "on-stage" time, quick blur-out and fade to avoid overlap */
@keyframes textCycle {
    0%   { opacity: 0; transform: translate3d(0, 24px, 0); filter: blur(0px); }
    8%   { opacity: 1; transform: translate3d(0, 0, 0);   filter: blur(0px); }
    26%  { opacity: 1; transform: translate3d(0, 0, 0);   filter: blur(0px); }
    30%  { opacity: 0.8; transform: translate3d(0, 0, 0); filter: blur(1.5px); }
    34%  { opacity: 0; transform: translate3d(0, -8px, 0); filter: blur(2.5px); }
    100% { opacity: 0; transform: translate3d(0, -8px, 0); filter: blur(0px); }
}
.hero-text-1 { animation-delay: 0s; }
.hero-text-2 { animation-delay: 4s; }
.hero-text-3 { animation-delay: 8s; }

/* Accent timing tightened to match quicker fade */
.hero-text-1::after { animation: textAccent 12s cubic-bezier(0.33, 1, 0.68, 1) infinite; animation-delay: 0s; }
.hero-text-2::after { animation: textAccent 12s cubic-bezier(0.33, 1, 0.68, 1) infinite; animation-delay: 4s; }
.hero-text-3::after { animation: textAccent 12s cubic-bezier(0.33, 1, 0.68, 1) infinite; animation-delay: 8s; }

@keyframes textAccent {
    0%   { opacity: 0; transform: scaleX(0.3); }
    12%  { opacity: 1; transform: scaleX(1);   }
    28%  { opacity: 1; transform: scaleX(1);   }
    32%  { opacity: 0; transform: scaleX(0.5); }
    100% { opacity: 0; transform: scaleX(0.3); }
}

.hero-subtitle { font-family: "Poppins", sans-serif; font-weight: 500; font-size: 22px; line-height: 1.3; color: #fff; margin-bottom: 14px; white-space: nowrap; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.9; }
.hero-title    { font-family: "Classy Vogue", "Times New Roman", serif; font-weight: 400; font-size: 62px; line-height: 1.2; color: #fff; margin-bottom: 14px; white-space: nowrap; letter-spacing: 0.06em; }
.hero-description { font-family: "Poppins", sans-serif; font-weight: 400; font-size: 18px; line-height: 1.6; color: #fff; margin-bottom: 72px; max-width: 640px; }

/* Static hero button */
.hero-button-static-wrapper { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) translateY(160px); z-index: 3; }
.hero-button {
    display: inline-flex !important; align-items: center !important; justify-content: center !important;
    width: 142px !important; height: 40px !important; min-width: 142px !important; max-width: 142px !important; min-height: 40px !important; max-height: 40px !important;
    padding: 0 !important; box-sizing: border-box !important; border-radius: 30px; text-decoration: none;
    font-family: "Poppins", sans-serif; font-weight: 400; font-size: 16px; color: #fff;
    background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.32);
    backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.hero-button span { color: #fff; line-height: 1; }
.hero-button:hover { background: rgba(255, 255, 255, 0.18); border-color: rgba(255, 255, 255, 0.5); transform: translateY(-2px); box-shadow: 0 20px 50px rgba(0,0,0,0.65); }

/* Social icons */
.hero-social { position: absolute; top: 50%; right: 120px; transform: translateY(-50%); display: flex; flex-direction: column; gap: 20px; z-index: 3; }
.hero-social::before {
    content: ""; position: absolute; left: 50%; top: -60px; bottom: -60px; width: 2px; transform: translateX(-50%);
    background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,0.55), rgba(255,255,255,0));
    filter: blur(2px); opacity: 0.7; pointer-events: none; animation: railGlow 8s ease-in-out infinite alternate;
}
@keyframes railGlow { 0% { opacity: .4; filter: blur(2px);} 50%{opacity:.9;filter:blur(3px);} 100%{opacity:.5;filter:blur(2px);} }
.hero-social-icon { position: relative; display: flex; align-items: center; justify-content: center; text-decoration: none; background: transparent; border: none; padding: 0; width: 36px; height: 36px; top: 0; animation: iconFloat 6s ease-in-out infinite; transition: transform .25s ease, filter .25s ease; }
.hero-social-icon:nth-child(1){animation-delay:0s;} .hero-social-icon:nth-child(2){animation-delay:.4s;} .hero-social-icon:nth-child(3){animation-delay:.8s;}
@keyframes iconFloat { 0%,100%{top:0;} 50%{top:-4px;} }
.hero-social-icon::before { content:""; position:absolute; inset:-4px; border-radius:999px; background: radial-gradient(circle, rgba(255,255,255,0.16), rgba(255,255,255,0)); opacity:0; transform:scale(.7); transition: opacity .3s ease, transform .3s ease; pointer-events:none; }
.hero-social-icon i { color:#fff; font-size:24px; line-height:1; transition: opacity .25s ease, transform .25s ease, filter .25s ease; filter: drop-shadow(0 0 0 rgba(255,255,255,0)); animation: iconGlow 5s ease-in-out infinite; }
.hero-social-icon:nth-child(1) i{animation-delay:.1s;} .hero-social-icon:nth-child(2) i{animation-delay:.5s;} .hero-social-icon:nth-child(3) i{animation-delay:.9s;}
@keyframes iconGlow { 0%{filter:drop-shadow(0 0 0 rgba(255,255,255,0));opacity:.9;} 50%{filter:drop-shadow(0 0 8px rgba(255,255,255,.85));opacity:1;} 100%{filter:drop-shadow(0 0 0 rgba(255,255,255,0));opacity:.9;} }
.hero-social-icon:hover { transform: translateX(4px); filter: brightness(1.05); }
.hero-social-icon:hover::before { opacity: 1; transform: scale(1); }
.hero-social-icon:hover i { opacity: .95; transform: translateY(-1px); filter: drop-shadow(0 0 10px rgba(255,255,255,.95)); }

/* ===========================
   OUR PROCESS SECTION
   =========================== */

.process-section { position: relative; width: 100%; padding: 160px 0 200px; }
.process-inner { max-width: 1295px; margin: 0 auto 0 190px; padding: 0 40px; }
.process-header { margin-bottom: 80px; }
.process-title { font-family: "Classy Vogue", "Times New Roman", serif; font-weight: 400; font-size: 90px; line-height: .9; color: #fff; text-align: left; }
.process-title-line { display: inline-block; }
.process-subtext { margin-top: 24px; max-width: 520px; font-family: "Poppins", sans-serif; font-weight: 300; font-size: 18px; line-height: 1.6; color: rgba(255,255,255,.9); text-align: left; }

.process-tiles { position: relative; width: 100%; margin: 0 auto; height: 480px; }
.process-tile {
    position: absolute; top: 50%; left: 50%; width: 243px; border-radius: 10px; overflow: hidden; background-color: #111;
    box-shadow: 0 18px 45px rgba(0,0,0,.55); transform-origin: center; transform: translate3d(0,-50%,0);
    filter: saturate(1.04) contrast(1.02);
    transition: transform .7s cubic-bezier(0.33,1,0.68,1), opacity .7s cubic-bezier(0.33,1,0.68,1), height .7s cubic-bezier(0.33,1,0.68,1), box-shadow .7s cubic-bezier(0.33,1,0.68,1), filter .7s cubic-bezier(0.33,1,0.68,1);
}

/* positions */
.process-tile[data-pos="1"] { transform: translate3d(-526px, -50%, 0) scale(0.9);  opacity: .2;  height: 330px;   z-index: 1; }
.process-tile[data-pos="2"] { transform: translate3d(-263px, -50%, 0) scale(0.96); opacity: .55; height: 390.27px; z-index: 2; }
.process-tile[data-pos="3"] { transform: translate3d(0, -50%, 0) scale(1);        opacity: 1;   height: 480px;   z-index: 3; box-shadow: 0 26px 70px rgba(0,0,0,.8); filter: saturate(1.18) contrast(1.06); }
.process-tile[data-pos="4"] { transform: translate3d(263px, -50%, 0) scale(0.96);  opacity: .55; height: 390.27px; z-index: 2; }
.process-tile[data-pos="5"] { transform: translate3d(526px, -50%, 0) scale(0.9);   opacity: .2;  height: 330px;   z-index: 1; }

.process-tile-bg { position: absolute; inset: 0; background-position: center; background-size: cover; background-color: #000; filter: contrast(1.03) saturate(1.1); will-change: transform, opacity; }
.process-tile-overlay {
    position: absolute; left: 0; bottom: 0; width: 100%;
    background: rgba(0,0,0,.35); backdrop-filter: none; -webkit-backdrop-filter: none;
    border-radius: 10px; padding: 18px 18px 16px; display: flex; flex-direction: column; justify-content: flex-start; pointer-events: none;
}
.process-tile[data-pos="1"] .process-tile-overlay,
.process-tile[data-pos="3"] .process-tile-overlay,
.process-tile[data-pos="5"] .process-tile-overlay { height: 210.78px; }
.process-tile[data-pos="2"] .process-tile-overlay,
.process-tile[data-pos="4"] .process-tile-overlay { height: 201px; }

.process-tile-title { font-family: "Classy Vogue", "Times New Roman", serif; font-size: 20px; font-weight: 400; color: #fff; margin-bottom: 8px; text-align: left; }
.process-tile-text  { font-family: "Poppins", sans-serif; font-size: 14px; font-weight: 300; line-height: 1.6; color: rgba(255,255,255,.86); text-align: left; }
.process-tile:hover { box-shadow: 0 26px 65px rgba(0,0,0,.7); filter: saturate(1.24) contrast(1.08); }

/* ===========================
   INTERIOR SPLIT
   =========================== */

.interior-split-section { position: relative; width: 100%; max-width: 1920px; height: 1000px; margin: 0 auto 0 auto; overflow: hidden; border-radius: 0; }
.interior-split-inner { position: relative; width: 100%; height: 100%; display: grid; grid-template-columns: 1fr 1fr; }
.split-half { position: relative; width: 100%; height: 100%; overflow: hidden; }
.split-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.split-center { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: min(80%, 520px); display: flex; flex-direction: column; align-items: center; text-align: center; z-index: 2; }
.split-logo { display: block; object-fit: contain; }
.split-logo--black { width: 120px; height: 150px; margin-bottom: 40px; }
.split-logo--white { width: 155px; height: 155px; margin-bottom: 40px; }
.split-heading { font-family: "Classy Vogue", "Times New Roman", serif; font-weight: 400; font-size: 38px; line-height: 1.1; margin: 0 0 18px 0; letter-spacing: .02em; }
.split-heading--dark { color: #000; } .split-heading--light { color: #fff; }

/* ✅ Base style for interior glass buttons (black text) */
.glass-btn,
.glass-btn-black{
    display: inline-flex; align-items: center; justify-content: center; width: 142px; height: 40px; min-width: 142px; min-height: 40px;
    padding: 0; border-radius: 30px; text-decoration: none; font-family: "Poppins", sans-serif; font-weight: 400; font-size: 16px; line-height: 1;
    background: transparent; border: 1px solid rgba(0,0,0,.18);
    backdrop-filter: blur(14px) saturate(140%); -webkit-backdrop-filter: blur(14px) saturate(140%);
    box-shadow: 0 16px 40px rgba(0,0,0,.20); color: #000; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.glass-btn span,
.glass-btn-black span{ color:#000; }
.glass-btn:hover,
.glass-btn-black:hover { transform: translateY(-2px); border-color: rgba(0,0,0,.28); box-shadow: 0 22px 56px rgba(0,0,0,.28); }

/* Inverted (white-on-dark) variant for the black side */
.glass-btn--inverted { border-color: rgba(255,255,255,.35); color: #fff; box-shadow: 0 16px 40px rgba(0,0,0,.45); }
.glass-btn--inverted span{ color:#fff; }
.glass-btn--inverted:hover { border-color: rgba(255,255,255,.55); box-shadow: 0 24px 64px rgba(0,0,0,.6); }

.half-white::after, .half-black::after { content:""; position:absolute; inset:0; background: radial-gradient(ellipse at center, rgba(0,0,0,.10), rgba(0,0,0,0) 60%); pointer-events:none; mix-blend-mode:multiply; }
@media (max-width: 992px) { .interior-split-section { height: auto; } .interior-split-inner { grid-template-columns: 1fr; grid-auto-rows: 500px; } }
@media (max-width: 576px) { .interior-split-inner { grid-auto-rows: 420px; } .split-logo--black { width:110px; height:138px; } .split-logo--white { width:145px; height:145px; } }

/* ===========================
   FEATURED WORK SECTION + DOTS
   =========================== */

.featured-work-section { position: relative; width: 100%; padding: 160px 0 160px; }
.fw-inner { max-width: 1295px; margin: 0 auto 0 190px; padding: 0 40px; }
.fw-header { margin: 0; }
.fw-title { font-family: "Classy Vogue", "Times New Roman", serif; font-weight: 400; font-size: 90px; line-height: .9; color: #fff; text-align: left; }
.fw-subtext { margin-top: 24px; max-width: 560px; font-family: "Poppins", sans-serif; font-weight: 400; font-size: 18px; line-height: 1.6; color: #fff; text-align: left; }

/* Rows */
.fw-row { display: grid; grid-template-columns: 654px 1fr; align-items: center; column-gap: 84px; }
.fw-row-1 { margin-top: 144px; }
.fw-row-2 { margin-top: 200px; }
.fw-row-3 { margin-top: 200px; }
.fw-row--reverse { grid-template-columns: 1fr 654px; }

.fw-col { position: relative; }

/* Image */
.fw-col-image .fw-img { width: 654px; height: 400px; object-fit: cover; display: block; box-shadow: 0 22px 64px rgba(0,0,0,.45); }

/* Copy */
.fw-copy { max-width: 560px; }
.fw-copy--right { margin-left: auto; text-align: right; }
.fw-copy-title { font-family: "Classy Vogue", "Times New Roman", serif; font-weight: 400; font-size: 48px; line-height: 1.1; color: #fff; margin: 0 0 9px 0; }
.fw-copy-text { font-family: "Poppins", sans-serif; font-weight: 400; font-size: 18px; line-height: 1.6; color: #fff; margin: 0; }

.fw-glass-btn {
    display: inline-flex; align-items: center; justify-content: center; width: 142px; height: 40px; min-width: 142px; min-height: 40px;
    border-radius: 30px; margin-top: 39px; text-decoration: none; font-family: "Poppins", sans-serif; font-weight: 400; font-size: 14px; color: #fff;
    background: transparent; border: 1px solid rgba(255,255,255,.38);
    backdrop-filter: blur(14px) saturate(140%); -webkit-backdrop-filter: blur(14px) saturate(140%);
    box-shadow: 0 16px 40px rgba(0,0,0,.35);
    transition: transform .45s cubic-bezier(0.33,1,0.68,1), border-color .25s ease, box-shadow .25s ease, opacity .45s cubic-bezier(0.33,1,0.68,1);
}
.fw-left { text-align: left; } .fw-right { text-align: right; }
.fw-glass-btn:hover { transform: translateY(-2px); border-color: rgba(255,255,255,.6); box-shadow: 0 24px 64px rgba(0,0,0,.55); }

/* === NEW: Base offset + slide animation composition ===
   We compose a base layout offset (--base-shift) with a transient animation offset (--slideX).
   This avoids transform conflicts and keeps alignment perfect. */
.fw-col {
    --base-shift: 0px;   /* per-row base offset */
    --slideX: 0px;       /* per-animation delta (JS sets from ±80vw → 0) */
    transform: translateX(calc(var(--base-shift) + var(--slideX)));
    opacity: 1;
    will-change: transform, opacity;
    transition: transform .9s cubic-bezier(0.33,1,0.68,1), opacity .9s cubic-bezier(0.33,1,0.68,1);
}

/* DESKTOP-only right shift for row 2 (moved further right to fix alignment) */
@media (min-width: 993px) {
    .fw-row-2 { overflow: visible; }
    .fw-row-2 .fw-col-image,
    .fw-row-2 .fw-col-copy { --base-shift: var(--fw-row2-offset); }
}

/* When JS prepares rows, they start with opacity:0; we keep mobile safe */
@media (max-width: 992px){
    .fw-col { --base-shift: 0px !important; } /* no base shift on mobile */
}

/* Responsive rows */
@media (max-width: 1200px) { .fw-inner { margin-left: 100px; } }
@media (max-width: 992px) {
    .fw-inner { margin: 0 auto; padding: 0 24px; max-width: 940px; }
    .fw-row, .fw-row--reverse { grid-template-columns: 1fr; row-gap: 28px; }
    .fw-col-image .fw-img { width: 100%; height: auto; max-width: 654px; max-height: 400px; }
    .fw-copy, .fw-copy--right { margin-left: 0; text-align: left; }
}

/* Dots UI */
.fw-dots {
    position: fixed; top: 50%; right: 24px; transform: translateY(-50%);
    display: flex; flex-direction: column; gap: 12px;
    opacity: 0; pointer-events: none; transition: opacity .25s ease; z-index: 10;
}
.fw-dots.is-visible { opacity: 1; pointer-events: auto; }
.fw-dot {
    width: 10px; height: 10px; border-radius: 999px; background: #fff; border: none; padding: 0; cursor: pointer;
    opacity: 0.2; /* Inactive dots at 20% opacity */
    transition: transform .2s ease, opacity .2s ease, background-color .2s ease;
}
.fw-dot.is-active { background: #F8D7B3; opacity: 1; transform: scale(1.08); }

/* ================================
   CLIENT STORIES — WHITE CARDS
   ================================ */
.cs-section{ position:relative; width:100%; padding:160px 0 180px; }
.cs-inner{ max-width:1295px; margin:0 auto 0 190px; padding:0 40px; }
.cs-header{ text-align:left; }
.cs-title{
    font-family:"Classy Vogue","Times New Roman",serif;
    font-weight:400; font-size:90px; line-height:.9; color:#fff; text-align:left;
}
.cs-subtext{
    margin-top:9px;
    font-family:"Poppins",sans-serif; font-weight:300; font-size:18px; line-height:1.6; color:#fff; text-align:left;
    max-width:640px;
}
.cs-glass-btn{
    display:inline-flex; align-items:center; justify-content:center;
    width:142px; height:40px; border-radius:30px; margin-top:15px;
    text-decoration:none; font-family:"Poppins",sans-serif; font-weight:400; font-size:14px;
    background:transparent; border:1px solid rgba(255,255,255,.38); color:#fff;
    backdrop-filter: blur(14px) saturate(140%); -webkit-backdrop-filter: blur(14px) saturate(140%);
    box-shadow:0 16px 40px rgba(0,0,0,.35);
}
/* Spacer before cards */
.cs-spacer-163{ height:163px; }

/* Slider (center aligned, shifted to the RIGHT per your request) */
.cs-slider{
    --cs-shift: 140px; /* pushes carousel to the RIGHT */
    position:relative; width:100%; height: 350px; /* match tallest card */
}

/* Base card */
.cs-card{
    position:absolute; top:0; left:50%;
    width:334.67px; height:350px; /* base for middle */
    border-radius:10px;
    background:#FFFFFF;
    border:1px solid rgba(0,0,0,.08);
    box-shadow:0 18px 45px rgba(0,0,0,.15);
    overflow: visible; /* important: allow avatar half outside to show */
    transform: translateX(calc(-50% + var(--cs-shift)));
    transition: transform .9s cubic-bezier(0.33,1,0.68,1), box-shadow .9s cubic-bezier(0.33,1,0.68,1), opacity .4s ease, height .3s ease;
}

/* Positions with rightward bias */
.cs-card[data-pos="1"]{
    transform: translateX(calc(-50% + var(--cs-shift) - 390px));
    z-index:2;
    height:278px; /* LEFT = 278px */
}
.cs-card[data-pos="2"]{
    transform: translateX(calc(-50% + var(--cs-shift)));
    z-index:3;
    height:350px; /* CENTER = 350px */
}
.cs-card[data-pos="3"]{
    transform: translateX(calc(-50% + var(--cs-shift) + 390px));
    z-index:2;
    height:278px; /* RIGHT = 278px */
}

/* Stars (top-right) */
.cs-stars{
    position:absolute; top:10px; right:12px; display:flex; gap:4px; z-index:3;
}
.cs-stars .bi-star-fill{ font-size:14px; color:#F1AD54; }

/* Avatar — on TOP edge, slightly more left, half-outside visible */
.cs-avatar{
    position:absolute;
    top:0;                 /* anchor to very top edge */
    left:22px;            /* nudged further left */
    width:75.75px; height:75.75px; pointer-events:none;
    transform: translateY(-50%); /* half outside / half inside */
    z-index:3;
}
.cs-avatar img{
    width:75.75px; height:75.75px; border-radius:999px; display:block;
    box-shadow: 0 8px 20px rgba(0,0,0,.25);
}

/* Card body — added extra left padding to avoid crowding avatar */
.cs-card-body{ padding:56px 24px 74px 32px; }
.cs-card-text{
    font-family:"Poppins",sans-serif; font-weight:500; font-size:16px; line-height:1.75; color:#334155;
    text-align:left;
}

/* Bottom-center meta (raised slightly) */
.cs-meta{
    position:absolute; left:50%; bottom:28px; transform: translateX(-50%);
    text-align:center; width:90%; z-index:2;
}
.cs-name{
    font-family:"Poppins",sans-serif; font-weight:700; font-size:14px; line-height:1.3; color:#0F172A;
    margin-bottom:4px;
}
.cs-role{
    font-family:"Poppins",sans-serif; font-weight:400; font-size:10px; line-height:1.2; color:#475569;
}

/* Hover emphasis */
.cs-card:hover{ box-shadow:0 26px 65px rgba(0,0,0,.22); }

/* ===========================
   NEW: SHARE YOUR PROJECT
   =========================== */

.share-section{
    position: relative;
    width: 100%;
    padding: 120px 0; /* breathing space around centered image */
}
.share-wrap{
    position: relative;
    width: 1500px;           /* fixed width */
    height: 500px;           /* fixed height */
    margin: 0 auto;          /* center horizontally */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 22px 64px rgba(0,0,0,0.45);
}
.share-img{
    position: absolute;
    inset: 0;
    width: 1500px;           /* exact W */
    height: 500px;           /* exact H */
    object-fit: cover;
    display: block;
    z-index: 0;              /* behind overlay + dim */
}

/* NEW: dark overlay layer (under text, above image) */
.share-dim{
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55); /* 55% dark overlay */
    z-index: 1;
    pointer-events: none;
}

/* Overlay: grid with 138px space between columns */
.share-overlay{
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 0 60px;         /* safe padding inside image */
    z-index: 2;              /* above dim layer */
}
.share-grid{
    width: 100%;
    max-width: 1380px;       /* inner container */
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 138px;       /* EXACT spacing requested */
    align-items: center;
}

/* Left title */
.share-title{
    font-family: "Classy Vogue","Times New Roman",serif;
    font-weight: 400;
    font-size: 80px;
    line-height: .92;
    color: #FFFFFF;
    text-align: left;
    letter-spacing: .02em;
}
.share-title .share-title-second{
    display: inline-block;
}

/* Right content */
.share-right{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}
.share-text{
    font-family: "Poppins",sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.5;
    color: #FFFFFF;
    max-width: 560px;        /* encourages two-line wrap */
    margin: 0;
}

/* Buttons */
.share-actions{
    display: flex;
    gap: 16px;
    margin-top: 18px;
}
.share-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 142px;
    height: 40px;
    padding: 0 18px;
    border-radius: 30px;
    text-decoration: none;
    font-family: "Poppins",sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #fff;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.38);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    box-shadow: 0 16px 40px rgba(0,0,0,.35);
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.share-btn:hover{
    transform: translateY(-2px);
    border-color: rgba(255,255,255,.6);
    background: rgba(255,255,255,0.12);
    box-shadow: 0 24px 64px rgba(0,0,0,.55);
}

/* Responsive behavior for SHARE section */
@media (max-width: 1600px){
    .share-wrap{ width: 92vw; height: calc(92vw * (500/1500)); } /* preserve aspect ratio */
    .share-img{ width: 100%; height: 100%; }
    .share-grid{ max-width: 92%; }
}
@media (max-width: 992px){
    .share-grid{
        grid-template-columns: 1fr;
        row-gap: 18px;
        column-gap: 0;
    }
    .share-title{ font-size: 56px; }
    .share-text{ max-width: 100%; font-size: 18px; }
}
@media (max-width: 576px){
    .share-title{ font-size: 42px; }
    .share-actions{ flex-direction: column; align-items: stretch; }
}

/* ===========================
   NEW: CLIENTS SECTION
   =========================== */

.clients-section{
    position: relative;
    width: 100%;
    max-width: 1920px;
    height: 129px;                 /* exact H */
    margin: 0 auto;
    background: #FFFFFF;           /* white background */
}
.clients-inner{
    height: 100%;
    max-width: 1920px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;       /* center group */
    gap: 30px;                     /* 30px between logos */
}
.client-logo{
    width: 217px;                  /* exact W */
    height: 217px;                  /* exact H */
    object-fit: contain;
    display: block;
    filter: none;
}

/* ===========================
   NEW: FAQs SECTION
   =========================== */

.faqs-section{
    position: relative;
    width: 100%;
    padding: 160px 0;
}
.faqs-inner{
    max-width: 1295px;
    margin: 0 auto 0 190px;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 473px;  /* right column fixed at 573px */
    column-gap: 108px;                 /* keep visual rhythm with Share section */
    align-items: start;
}

/* Left: like client-stories header */
.faqs-title{
    font-family: "Classy Vogue","Times New Roman",serif;
    font-weight: 400;
    font-size: 90px;
    line-height: .9;
    color: #FFFFFF;
    text-align: left;
}
.faqs-subtext{
    margin-top: 9px;
    font-family: "Poppins",sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 1.6;
    color: #FFFFFF;
    max-width: 560px;
    text-align: left;
}
.faqs-btn{
    display: inline-flex; align-items: center; justify-content: center;
    width: 142px; height: 40px; border-radius: 30px; margin-top: 15px;
    text-decoration: none; font-family:"Poppins",sans-serif; font-weight:400; font-size:14px; color:#fff;
    background: transparent; border: 1px solid rgba(255,255,255,.38);
    backdrop-filter: blur(14px) saturate(140%); -webkit-backdrop-filter: blur(14px) saturate(140%);
    box-shadow: 0 16px 40px rgba(0,0,0,.35);
}
.faqs-btn:hover{ transform: translateY(-2px); border-color: rgba(255,255,255,.6); }

/* Right: FAQ Boxes */
.faqs-right{
    display: flex;
    flex-direction: column;
    gap: 20px; /* spacing between boxes */
}
.faq-item{
    height: 62px;               /* exact H */
    width: 573px;               /* exact W */
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 50px;        /* exact corner radius */
    display: grid;
    grid-template-columns: 72px 1fr;  /* left index area + question */
    align-items: center;
    padding: 0 18px 0 18px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.faq-index{
    font-family: "DM Sans", sans-serif;
    font-weight: 500;           /* Medium */
    font-size: 20px;
    color: #FFFFFF;
    text-align: left;
}
.faq-question{
    font-family: "Poppins", sans-serif;
    font-weight: 300;           /* Light */
    font-size: 16px;
    color: #FFFFFF;             /* exact white as requested */
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Responsive for FAQs */
@media (max-width: 1200px){
    .faqs-inner{
        margin: 0 auto;
        grid-template-columns: 1fr;
        row-gap: 28px;
    }
    .faq-item, .faqs-right{
        width: 100%;
    }
}
@media (max-width: 576px){
    .faqs-title{ font-size: 56px; }
    .faq-item{ grid-template-columns: 56px 1fr; }
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1200px) {
    .hero-social { right: 40px; }
    .process-inner { max-width: 100%; }
    .fw-inner { margin-left: 100px; }
    .cs-inner{ margin-left:100px; }
    .cs-slider{ --cs-shift: 100px; }
}

@media (max-width: 992px)  {
    .hero-section { height: 100vh; }
    .hero-title { font-size: 42px; white-space: normal; }
    .hero-subtitle { white-space: normal; font-size: 18px; }
    .hero-description { font-size: 16px; }
    .hero-social { right: 24px; }
    .hero-button-static-wrapper { transform: translate(-50%, -50%) translateY(140px); }

    .process-tiles { max-width: 100%; }
    .fw-inner { margin: 0 auto; padding: 0 24px; max-width: 940px; }
    .fw-row, .fw-row--reverse { grid-template-columns: 1fr; row-gap: 28px; }
    .fw-col-image .fw-img { width: 100%; height: auto; max-width: 654px; max-height: 400px; }
    .fw-copy, .fw-copy--right { margin-left: 0; text-align: left; }

    /* Process tiles stack nicely on mobile */
    .process-section { padding: 120px 0 140px; }
    .process-title { font-size: 56px; }
    .process-inner { padding: 0 24px; }
    .process-tiles { position: static; height: auto; display: flex; flex-direction: column; gap: 20px; align-items: center; }
    .process-tile { position: relative; top: auto; left: auto; transform: none !important; opacity: 1 !important; height: auto; width: 100%; max-width: 320px; }
    .process-tile-overlay { height: auto; }

    .cs-slider{ --cs-shift: 60px; height:350px; }
    .cs-card[data-pos="1"]{ transform: translateX(calc(-50% + var(--cs-shift) - 300px)); height:278px; }
    .cs-card[data-pos="2"]{ transform: translateX(calc(-50% + var(--cs-shift))); height:350px; }
    .cs-card[data-pos="3"]{ transform: translateX(calc(-50% + var(--cs-shift) + 300px)); height:278px; }

    /* Clients shrink spacing a bit */
    .clients-inner{ gap: 20px; }
}

@media (max-width: 768px)  {
    .process-title { font-size: 42px; }
    .cs-title{ font-size:56px; }
    .cs-subtext{ font-size:16px; }
    .cs-slider{ --cs-shift: 24px; }
    .cs-card[data-pos="1"]{ transform: translateX(calc(-50% + var(--cs-shift) - 180px)); height:278px; }
    .cs-card[data-pos="2"]{ transform: translateX(calc(-50% + var(--cs-shift))); height:350px; }
    .cs-card[data-pos="3"]{ transform: translateX(calc(-50% + var(--cs-shift) + 180px)); height:278px; }

    .clients-section{ height: auto; padding: 24px 0; }
}

@media (max-width: 576px) {
    .cs-title{ font-size:42px; }
    .cs-card{ width:88%; }
    .cs-slider{ --cs-shift: 0px; }
    .cs-card[data-pos="1"]{ transform: translateX(calc(-50% - 52%)); height:278px; }
    .cs-card[data-pos="2"]{ transform: translateX(-50%); height:350px; }
    .cs-card[data-pos="3"]{ transform: translateX(calc(-50% + 52%)); height:278px; }

    .clients-inner{ gap: 16px; }
}

/* ============================
   FOOTER (scoped)
   ============================ */
.site-footer{
  --foot-max-w: 1920px;
  --foot-h: 517.75px;
  --white: #FFFFFF;
  --text: #FFFFFF;
  --bg: #0B0B0B;

  width: 100%;
  max-width: var(--foot-max-w);
  height: var(--foot-h);
  margin: 0 auto;
  background: var(--bg);
  color: var(--text);
  position: relative;
  padding: 80px 120px 0 120px; /* internal breathing; numbers tuned to fit spec */
  box-sizing: border-box;
}

.footer-inner{
  width: 100%;
  height: calc(var(--foot-h) - 160px); /* leave room for bottom block */
  display: grid;
  grid-template-columns: auto 1fr auto; /* left / middle / right */
  align-items: start;
  column-gap: 0; /* exact gaps handled inside children per spec */
}

/* Left column */
.footer-left{
  width: 280px;
}
.footer-logo{
  width: 242.65px;
  height: 80px;
  object-fit: contain;
  display: block;
}
.footer-tagline{
  margin: 28px 0 0 0; /* 28px below logo */
  max-width: 420px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--white);
}
.footer-address{
  margin: 61px 0 0 0; /* 61px after tagline */
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 500; /* medium */
  color: var(--white);
}
.footer-phone{
  margin: 14px 0 0 0; /* 14px after address */
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 500; /* medium */
  color: var(--white);
}
.footer-email{
  margin: 14px 0 0 0; /* 14px after address */
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 500; /* medium */
  color: var(--white);
}

/* Middle cluster (Company + Pages/Social) */
.footer-mid{
  display: grid;
  grid-template-columns: auto auto;
  /* We emulate exact horizontal spacings:
     - 314px from left block to "Company"
     - 187px from Company to Pages
  */
  column-gap: 12px;
  margin-left: 234px; /* distance from left group (logo block) to "Company" */
}

/* Titles + lists */
.foot-title{
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 600; /* semibold */
  color: var(--white);
}
.foot-links{
  margin: 22px 0 0 0; /* 22px under 'Company' */
  padding: 0;
  list-style: none;
}
.foot-links li + li{ margin-top: 2px; } /* 2px vertical spacing */
.foot-links a{
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--white);
  text-decoration: none;
  opacity: .95;
}
.foot-links a:hover{ opacity: 1; text-decoration: underline; }

/* Pages + Social specifics */
.pages-gap-22{ height: 22px; }
.pages-gap-30{ height: 30px; }
.pages-link{
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 300; /* light */
  color: var(--white);
  text-decoration: none;
}
.pages-link:hover{ text-decoration: underline; }

.social-title{
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 500; /* medium */
  color: var(--white);
}
.social-gap-22{ height: 22px; }
.social-icons{
  display: flex;
  align-items: center;
  gap: 25px; /* 25px between icons */
}
.si{
  width: 24px; height: 24px;
  display: inline-flex; align-items: center; justify-content: center;
  text-decoration: none;
}
.si i{ font-size: 24px; color: var(--white); line-height: 1; }

/* Right CTA block */
.footer-right{
  max-width: 540px;
  margin-left: auto; /* push to the far right */
}
.cta-title{
  font-family: "Classy Vogue","Times New Roman", serif;
  font-weight: 400;
  font-size: 50px;
  line-height: 1.1;
  color: var(--white);
  margin: 0;
}

/* ✅ Scoped footer button styles so they don't override interior buttons */
.site-footer .glass-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 160px; /* allow slightly wider than 142 for this CTA */
  height: 40px;
  border-radius: 30px;
  margin-top: 33px; /* 33px under title */
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--white);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.38);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 16px 40px rgba(0,0,0,.35);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.site-footer .glass-btn:hover{
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.6);
  background: rgba(255,255,255,0.12);
  box-shadow: 0 24px 64px rgba(0,0,0,.55);
}

/* Ensure footer CTA text is white */
.site-footer .glass-btn,
.site-footer .glass-btn span {
  color: #FFFFFF !important;
}


/* Bottom block */
.footer-bottom{
  position: absolute;
  left: 120px;
  right: 120px;
  bottom: 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
}

/* Line + policies group */
.foot-line-and-links{
  display: flex;
  align-items: center;
  min-width: 0;
}
.foot-line{
  display: inline-block;
  width: 1088px;  /* exact width */
  height: 2px;    /* exact height */
  background: rgba(255,255,255,0.85);
  border-radius: 2px;
  flex: 0 0 auto;
}
.foot-policies{
  display: inline-flex;
  align-items: center;
  gap: 28px; /* comfortable gap between policy links */
  margin-left: 96px; /* exact 96px after the line */
}
.foot-policies a{
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 300; /* light */
  color: var(--white);
  text-decoration: none;
  white-space: nowrap;
}
.foot-policies a:hover{ text-decoration: underline; }

/* Back to top button */
.back-to-top{
  width: 44px; height: 44px;
  border-radius: 999px;
  border: none;
  background: #FFFFFF;
  color: #000000;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}
.back-to-top i{ font-size: 20px; line-height: 1; }

/* Under-footer white bar */
.footer-subbar{
  width: 100%;
  background: #ffffff;
}
.footer-subbar-inner{
  max-width: 1920px;
  margin: 0 auto;
  padding: 18px 20px;
  text-align: center;
  color: #000000;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1600px){
  .site-footer{
    padding-left: 80px; padding-right: 80px;
  }
  .footer-bottom{
    left: 80px; right: 80px;
  }
  .foot-line{
    width: min(1088px, 40vw);
  }
}
@media (max-width: 1200px){
  .footer-inner{
    grid-template-columns: 1fr; /* stack */
    row-gap: 48px;
    height: auto;
  }
  .site-footer{
    height: auto; /* allow grow on smaller screens */
    padding-bottom: 90px;
  }
  .footer-mid{
    margin-left: 0; /* relax the strict 314px on small screens */
  }
  .footer-right{
    margin-left: 0;
  }
  .foot-line{
    width: 55%;
  }
}
@media (max-width: 768px){
  .footer-mid{
    grid-template-columns: 1fr;
    row-gap: 32px;
    column-gap: 0;
  }
  .foot-policies{
    flex-wrap: wrap;
    gap: 16px;
    margin-left: 24px;
  }
  .footer-bottom{
    grid-template-columns: 1fr;
    row-gap: 16px;
    justify-items: start;
  }
}
