/* ===== GLOBAL TYPOGRAPHY SYSTEM (Unified Titles & Subtitles) ===== */

:root {
    --title-font: "Cormorant Garamond", serif;
    --subtitle-font: "Work Sans", sans-serif;
    --title-size: clamp(32px, 3.2vw, 48px);
    --subtitle-size: clamp(14px, 1.6vw, 20px);
    --body-size: clamp(14px, 1.4vw, 18px);
}

h1, h2, h3, .section-title {
    font-family: var(--title-font);
    font-weight: 500;
    font-size: var(--title-size);
    line-height: 1.2;
    letter-spacing: 0.4px;
}

p, .section-subtitle {
    font-family: var(--subtitle-font);
    font-size: var(--subtitle-size);
    line-height: 1.6;
}

/* Ensure all main images scale perfectly */
img {
    max-width: 100%;
    height: auto;
}

/* ===== RESPONSIVE IMPROVEMENTS ===== */

/* Improve section spacing consistency */
section {
    width: 100%;
}

.container {
    max-width: 1320px;
}

/* Tablet optimization */
@media (max-width: 1024px) {

    .timeline {
        width: clamp(200px, 40vw, 260px);
    }

    .excl-inner,
    .story-inner,
    .tarc-awards__wrap,
    .contact-wrap {
        width: 94vw;
    }

    .experience-title,
    .experience-copy {
        width: min(90vw, 520px);
    }
}

/* Mobile improvements */
@media (max-width: 768px) {

    h1, h2, h3 {
        font-size: clamp(24px, 6vw, 32px);
    }

    p {
        font-size: 15px;
    }

    .excl-text,
    .story-inner,
    .downloads-wrap,
    .tarc-awards__wrap {
        padding-left: 16px;
        padding-right: 16px;
    }

    .contact-top {
        gap: 30px;
    }

    .footer-bottom {
        text-align: left;
    }
    .tarc-about {
        padding: 60px 25px;
    }
}

/* Small phones */
@media (max-width: 480px) {

    .excl-progress,
    .story-progress {
        height: 3px;
    }

    .excl-progress-fill,
    .story-progress-fill {
        height: 6px;
    }

    .office-text {
        font-size: 16px;
    }

    .office-title {
        font-size: 18px;
    }
}

/* Improve frame alignment consistency */
.frame,
.frame-wrap,
.excl-frame-wrap {
    max-width: 100%;
}

/* Ensure no horizontal overflow anywhere */
body {
    overflow-x: hidden;
}
:root {
    --headerH: clamp(110px, 20vh, 220px);

    /* Timeline */
    --timelineW: clamp(220px, 22vw, 300px);
    --dotSize: 10px;
    --lineX: 12px;
    --dotX: 8px;
    --itemPadLeft: 42px;
    --itemGap: 52px;

    --aboutMax: 1100px;
}

html,
body {
    height: 100%
}

body {
    margin: 0;
    background: #000;
}

img {
    display: block;
    max-width: 100%;
}

/* ===== HEADER ===== */
.top-strip {
    height: var(--headerH);
    width: 100%;
    /* UPDATE PATH */
    background: url("assets/images/Rectangle 138.png") center/cover no-repeat;
    position: relative;
    z-index: 10;

    display: flex;
    align-items: center;
    justify-content: center;
}

.top-strip .logo {
    width: clamp(180px, 18vw, 299px);
    height: auto;
    position: relative;
    left: auto;
    top: auto;
    transform: none;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    /* use svh to avoid mobile address-bar jump (fallback to vh) */
    min-height: calc(100vh - var(--headerH));
    min-height: calc(100svh - var(--headerH));
    width: 100%;
    overflow: hidden;
    background: #000;
}

.hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

.tint-full {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 2;
    pointer-events: none;
}

/* ===== TIMELINE ===== */
.timeline {
    position: fixed;
    left: clamp(20px, 3.5vw, 56px);
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: var(--timelineW);
    font-family: "Cormorant Garamond", serif;
    user-select: none;
    transition: all 0.4s ease;
}
.timeline.hide {
    opacity: 0;
    visibility: hidden;
}

.timeline ul {
    margin: 0;
    padding: 0;
    list-style: none;
    position: relative;
}

.timeline ul::before {
    content: "";
    position: absolute;
    left: var(--lineX);
    top: 4px;
    bottom: 4px;
    width: 2px;
    background: rgba(255, 255, 255, .45);
    opacity: .9;
}

.timeline li {
    position: relative;
    padding-left: var(--itemPadLeft);
    margin: 0 0 var(--itemGap) 0;
    font-size: clamp(20px, 2vw, 28px);
    line-height: 1.0;
    font-weight: 500;
    color: rgba(255, 255, 255, .86);
    text-shadow: 0 2px 14px rgba(0, 0, 0, .45);
}

.timeline li::before {
    content: "";
    position: absolute;
    left: var(--dotX);
    top: 0.35em;
    width: var(--dotSize);
    height: var(--dotSize);
    border-radius: 999px;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, .25);
}

.timeline a {
    color: inherit;
    text-decoration: none;
    display: inline-block;
}

.timeline li.active {
    color: rgba(255, 255, 255, .98);
}

.timeline li.active::before {
    transform: scale(1.15);
    box-shadow:
        0 0 0 3px rgba(0, 0, 0, .25),
        0 0 18px rgba(255, 255, 255, .25);
}

.timeline .wrap {
    display: inline-block;
    max-width: 12ch;
}

.impression {
    position: absolute;
    right: 16px;
    bottom: 14px;
    z-index: 3;
    color: rgba(255, 255, 255, .86);
    font-size: 14px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, .45);
    font-family: "Work Sans", sans-serif;
}

/* ===== ABOUT SECTION ===== */
.about {
    position: relative;
    /* UPDATE PATH */
    background: url("assets/images/Rectangle 140.png") center/cover no-repeat;
    color: #fff;
}

.about-inner {
    max-width: var(--aboutMax);
    margin: 0 auto;
    padding: clamp(34px, 4.5vw, 70px) 0 clamp(40px, 5vw, 90px);
    text-align: center;
}

.title-img {
    width: min(620px, 92vw);
    margin: 0 auto 14px;
    padding-top: 60px; /* top padding for title image */
    display: block;
}

.subtitle-img {
    width: min(915px, 96vw);
    margin: clamp(18px, 3.2vw, 34px) auto 18px;
    padding-top: 30px; /* top padding for subtitle image */
    display: block;
}

.about-copy {
    max-width: 920px;
    margin: 0 auto;
    font-family: "Work Sans", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: clamp(14px, 1.6vw, 20px);
    line-height: 1.6;
    color: rgba(255, 255, 255, .84);
    padding-top: 10px;
    padding-bottom: 80px;
}

.frame {
    width: min(860px, 92vw);
    margin: clamp(16px, 2.5vw, 26px) auto clamp(20px, 3vw, 34px);
    position: relative;
    padding: clamp(10px, 1.6vw, 18px);
    padding-bottom: 40px; /* added bottom padding */
}

.frame .ornate {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 16px 40px rgba(0, 0, 0, .35));
}

.frame .frame-impression {
    position: absolute;
    right: clamp(0px, 9vw, 70px);
    bottom: clamp(10px, 6.6vw, 72px);
    z-index: 3;
    color: rgba(255, 255, 255, .86);
    font-size: 14px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, .45);
    font-family: "Work Sans", sans-serif;
    pointer-events: none;
}

/* Optional image inside frame if you want */
.frame .media {
    position: absolute;
    left: 6.5%;
    right: 6.5%;
    top: 18%;
    bottom: 18%;
    overflow: hidden;
    border-radius: 2px;
}

.frame .media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== BOOTSTRAP-FRIENDLY PLACEHOLDER SECTIONS ===== */
.block {
    min-height: 100vh;
    background: #111;
    color: #fff;
    padding: 80px 0;
}

.block:nth-of-type(even) {
    background: #151515;
}

.block h2 {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(34px, 4vw, 52px);
}

/* ===== EXPERIENCE THE EXCLUSIVITIES (SECTION) ===== */
.experience-exclusivities {
    position: relative;
    /* UPDATE PATH */
    background: url("assets/images/Rectangle 138 (3).png") center/cover no-repeat;
    height: clamp(480px, 100vh, 780px);
    overflow: hidden;
}

.experience-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
}

/* LEFT title placement */
.experience-title {
    position: absolute;
    left: clamp(28px, 5.5vw, 80px);
    top: clamp(40px, 28vh, 160px);
    width: clamp(360px, 65vw, 655px);
    height: auto;
}

/* RIGHT text placement */
.experience-copy {
    position: absolute;
    right: clamp(90px, 12vw, 180px);
    top: clamp(260px, 90vh, 500px);
    width: clamp(240px, 54vw, 430px);
    height: auto;
}

/* Arrow far right */
.experience-arrow {
    position: absolute;
    right: clamp(24px, 5vw, 70px);
    top: clamp(360px, 100vh, 600px);
    width: clamp(18px, 2.2vw, 28px);
    height: auto;
}

.experience-arrow-2 {
    position: absolute;
    right: clamp(24px, 5vw, 70px);
    top: clamp(300px, 95vh, 550px);
    width: clamp(18px, 2.2vw, 28px);
    height: auto;
}

/* MOBILE: stack nicely */
@media (max-width: 768px) {
    .experience-exclusivities {
        min-height: auto;
        height: auto;
    }

    .experience-title {
        position: relative;
        left: 0;
        top: 0;
        margin: 40px auto 0;
        display: block;
        width: min(520px, 86vw);
    }

    .experience-copy {
        position: relative;
        right: 0;
        top: 0;
        margin: 16px auto 0;
        display: block;
        width: min(360px, 86vw);
    }

    .experience-arrow {
        position: relative;
        right: 0;
        top: 0;
        margin: 12px auto 40px;
        display: block;
    }

    .experience-arrow-2 {
        position: relative;
        right: 0;
        top: 0;
        margin: 12px auto 40px;
        display: block;
    }
}

/* ===== MOBILE ===== */
@media (max-width: 640px) {
    .timeline {
        position: fixed;
        left: 14px;
        right: 14px;
        width: auto;
        top: auto;
        bottom: 14px;
        padding: 12px 12px;
        background: rgba(0, 0, 0, .35);
        border-radius: 12px;
        backdrop-filter: blur(4px);
    }

    .timeline ul::before {
        left: 12px;
    }

    .timeline li {
        font-size: 26px;
        margin-bottom: 18px;
        padding-left: 40px;
    }

    .timeline li::before {
        left: 8px;
        top: .38em;
    }

    .impression {
        bottom: auto;
        top: 12px;
        right: 12px;
    }

    .frame-impression {
        bottom: auto;
        top: 12px;
        right: 12px;
    }

    .frame .media {
        left: 7.5%;
        right: 7.5%;
        top: 19%;
        bottom: 19%;
    }
}

/* ===== EXCLUSIVITIES SLIDER ===== */
.excl-slider {
    position: relative;
    /* UPDATE PATH */
    background: url("assets/images/Rectangle 141.png") center/cover no-repeat;
    /* red textured bg */
    padding: clamp(18px, 3vw, 36px) 0 clamp(22px, 3vw, 40px);
    color: #fff;
    overflow: hidden;
}

.excl-inner {
    position: relative;
    width: min(1400px, 96vw);
    margin: 40px auto;
}

/* Image frame */
/* Frame wrapper */
.excl-frame-wrap {
    position: relative;
    width: 100%;
    margin: 0 auto;
}

/* The ornamental gold frame image */
.excl-frame-img {
    width: 100%;
    height: auto;
    display: block;
    pointer-events: none;
    user-select: none;
}

/* Area INSIDE the frame where image sits */
.excl-photo-wrap {
    position: absolute;

    /* THESE control how much inset from frame edges */
    top: 5%;
    left: 3%;
    right: 3%;
    bottom: 5%;

    overflow: hidden;
    border-radius: 8px;
}

/* Slider image */
.excl-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity .35s ease;
}

/* Artistic Impression text */
.excl-impression {
    position: absolute;
    right: 16px;
    bottom: 12px;
    font-family: "Work Sans", sans-serif;
    font-size: 14px;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .6);
}

/* Text */
.excl-text {
    text-align: center;
    padding-top: clamp(18px, 2.4vw, 26px);
}

.excl-title {
    font-family: "Cormorant Garamond", serif;
    font-weight: 400;
    font-size: clamp(30px, 3vw, 44px);
    margin: 0 0 10px;
}

.excl-desc {
    font-family: "Work Sans", sans-serif;
    font-weight: 300;
    font-size: clamp(14px, 1.6vw, 20px);
    line-height: 1.4;
    margin: 0 auto;
    max-width: 760px;
    opacity: .92;
}

/* Bottom area */
.excl-bottom {
    margin-top: clamp(18px, 3vw, 30px);
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    align-items: center;
}

/* ===== UNIFIED PROGRESS BAR STYLE ===== */
.excl-progress,
.story-progress {
    position: relative;
    height: 4px;
    background: rgba(255, 255, 255, .4); /* not filled */
    overflow: hidden;
}

.excl-progress-fill,
.story-progress-fill {
    position: absolute;
    left: 0;
    top: -2px;
    height: 8px;                 /* thicker filled line */
    width: 0%;
    background: #ffffff;         /* pure white filled */
    transition: width .6s ease;
}

.excl-count {
    text-align: center;
    font-family: "Work Sans", sans-serif;
    font-size: 18px;
    opacity: .9;
}

/* Optional prev/next click zones (invisible) */
.excl-nav {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 18%;
    background: transparent;
    border: 0;
    cursor: pointer;
}

.excl-prev {
    left: 0;
}

.excl-next {
    right: 0;
}

/* Mobile tweaks */
@media (max-width: 768px) {
    .excl-nav {
        width: 26%;
    }
}

@media (max-width: 992px) {
    .experience-grid {
        grid-template-columns: 1fr;
    }

    .experience-right {
        align-items: flex-start;
    }
}

.story-slider {
    /* UPDATE PATH */
    background: url("assets/images/StoryBackGround.png") center/cover no-repeat;
    padding: 60px 0 90px;
    color: #fff;
    overflow: hidden;
    position: relative;
}


.story-inner {
    width: min(1400px, 96vw);
    margin: auto;
    text-align: center;
}

.story-title-img {
    width: min(700px, 90vw);
    margin: 0 auto 12px;
    display: block;
    margin-top: 70px;
}

.story-title-img--mid {
    margin-top: 80px;
    width: min(660px, 90vw);
}

.story-top-sub {
    font-family: "Work Sans", sans-serif;
    font-size: clamp(14px, 1.6vw, 20px);;
    margin-top: 30px;
    margin-bottom: 60px;
}

.story-mid-desc {
    font-family: "Work Sans", sans-serif;
    font-size: 15px;
    max-width: 820px;
    margin: 10px auto 30px;
    padding-top: 30px;
    padding-bottom: 60px;
    line-height: 1.6;
}

/* Frame */
.frame-wrap {
    position: relative;
    margin: 10px auto 0;
}

.frame-img {
    width: 100%;
    height: auto;
    display: block;
    pointer-events: none;
    user-select: none;
}

.frame-hole {
    position: absolute;

    /* THESE control how much inset from frame edges */
    top: 5%;
    left: 2.5%;
    right: 2.5%;
    bottom: 5%;

    overflow: hidden;
    border-radius: 8px;
}

.frame-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity .35s ease;
}

.frame-impression {
    position: absolute;
    bottom: 12px;
    right: 16px;
    font-size: 14px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, .6);
}

/* Progress */
.story-progress-area {
    margin: 40px 0 30px;
}


.story-count {
    margin-top: 12px;
    font-size: 18px;
}

/* Nav zones */
.story-nav,
.excl-nav {
    position: absolute;
    top: 48%;
    bottom: auto;
    width: 30px;
    height: 46px;
    border: 0;
    cursor: pointer;
    background: rgb(158 18 17 / 75%);
}
.story-nav img,
.excl-nav img {
    height: auto;
    width: 100%;
}

.story-prev {
    left: 40px;
} 
.story-next  {
    right: 40px;
}
.excl-prev  {
    left: 60px;
}
.excl-next {
    right: 60px;
}
.frame-wrap-wrapper {
    position: relative;
}


/* ===== LOCATION (EXACT LIKE YOUR IMAGE) ===== */
.location-exact {
    position: relative;
    /* UPDATE PATH */
    background: url("assets/images/Rectangle 138 (3).png") center/cover no-repeat;
    /* beige floral texture */
    overflow: hidden;
}

/* wide artboard feel */
.location-exact__wrap {
    position: relative;
    width: min(1400px, 100vw);
    margin: 0 auto;
    padding: clamp(18px, 2.5vw, 32px) clamp(14px, 2.2vw, 28px);
    display: grid;
    grid-template-columns: 1fr clamp(170px, 18vw, 250px);
    column-gap: clamp(20px, 3.5vw, 60px);
    align-items: start;
}

/* Map should look “printed” on the same beige bg */
.location-exact__map {
    width: auto;
    height: 700px;
    display: block;
    /* This makes the map blend into the beige like the reference */
    opacity: 0.97;
    mix-blend-mode: multiply;
}

/* Legend sits a bit down from the top (like screenshot) */
.location-exact__legend {
    width: auto;
    height: 500px;
    display: block;
    margin-top: clamp(36px, 6vw, 188px);
    mix-blend-mode: multiply;
    opacity: 0.98;
}

/* “Map not to Scale” bottom-left */
.location-exact__note {
    position: absolute;
    left: clamp(18px, 2.4vw, 34px);
    bottom: clamp(16px, 12.2vw, 72px);
    font-family: "Work Sans", sans-serif;
    font-size: 14px;
    color: #8c0d10;
    letter-spacing: .2px;
    mix-blend-mode: multiply;
}

/* Mobile: stack */
@media (max-width: 900px) {
    .location-exact__wrap {
        grid-template-columns: 1fr;
        row-gap: 18px;
    }

    /* Keep the map from becoming overly tall on small screens */
    .location-exact__map {
        width: 100%;
        height: auto;
        max-height: 70vh;
    }

    .location-exact__legend {
        width: min(240px, 76vw);
        margin: 8px auto 0;
    }
}

/* ===== DOWNLOADS SECTION ===== */
.downloads-sec {
    /* UPDATE PATH */
    background: url("assets/images/Rectangle 138 (3).png") center/cover no-repeat;
    padding: clamp(34px, 5vw, 72px) 0 clamp(34px, 5vw, 72px);
    overflow: hidden;
}

.downloads-wrap {
    margin: 0 auto;
    text-align: center;
}

.downloads-title {
    margin: 0 0 clamp(16px, 3vw, 28px);
    font-family: "Cormorant Garamond", serif;
    font-weight: 400;
    color: #8c0d10;
    font-size: clamp(42px, 5.4vw, 72px);
    letter-spacing: 0.4px;
}

/* Links row */
.downloads-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: clamp(14px, 4vw, 44px);
    width: min(980px, 92vw);
    margin: 0 auto;
    padding: clamp(8px, 1.4vw, 14px) 0 clamp(18px, 2.4vw, 24px);
}

.dl-link {
    flex: 1;
    text-decoration: none;
    font-family: "Work Sans", sans-serif;
    font-weight: 400;
    color: #8c0d10;
    font-size: clamp(16px, 2vw, 22px);
    letter-spacing: 0.2px;
    transition: opacity .2s ease, transform .2s ease;
}

.dl-link:hover {
    opacity: .85;
    transform: translateY(-1px);
}

/* vertical separators */
.dl-sep {
    width: 1px;
    height: clamp(22px, 3.4vw, 36px);
    background: rgba(140, 13, 16, 0.55);
}

/* thin horizontal red line */
.downloads-rule {
    width: 100%;
    height: 1px;
    background: rgba(140, 13, 16, 0.55);
    margin: clamp(10px, 1.2vw, 14px) 0 clamp(22px, 3vw, 36px);
}

/* tagline */
.downloads-tagline {
    margin: 0 0 clamp(18px, 3vw, 34px);
    font-family: "Cormorant Garamond", serif;
    font-weight: 400;
    color: #8c0d10;
    font-size: clamp(22px, 3vw, 40px);
    padding-top: 20px;
    padding-bottom: 20px;
    letter-spacing: 0.2px;
}

/* logos image */
.downloads-logos {
    width: min(980px, 92vw);
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Mobile: stack links */
@media (max-width: 640px) {
    .downloads-links {
        flex-direction: column;
        gap: 14px;
    }

    .dl-sep {
        width: 80%;
        height: 1px;
    }

    .dl-link {
        width: 100%;
    }
}

/* ===== DESIGN PARTNERS LOGOS ===== */
.design-partners {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: clamp(18px, 4vw, 60px);
    margin: 0 auto;
    padding-top: clamp(10px, 2vw, 20px);
    padding-bottom: 50px;
}

.design-partners img {
    width: auto;
    object-fit: contain;
    filter: contrast(1.05);
    transition: transform .2s ease, opacity .2s ease;
}

.design-partners img:hover {
    transform: translateY(-2px);
    opacity: .9;
}

/* ===== ACHIEVERS + ABOUT TARC SECTION ===== */
.tarc-awards {
    position: relative;
    /* UPDATE PATH */
    background: url("assets/images/Rectangle 141.png") center/cover no-repeat;
    /* padding: clamp(25px, 3vw, 36px) 0 clamp(22px, 3vw, 40px);
    color: #fff; */
    overflow: hidden;
    width: 100%;
    /* max-width: 1000px; */
    padding: 80px 0;

}

.tarc-awards__wrap {
    width: min(1200px, 92vw);
    margin: 0 auto;
    text-align: center;
}

/* title image */
.tarc-awards__title {
    width: min(820px, 96vw);
    height: auto;
    display: block;
    margin: 0 auto clamp(15px, 2vw, 18px);
    padding-top: 100px;
}

/* intro paragraph under heading */
.tarc-awards__intro {
    margin: 0 auto clamp(26px, 4vw, 44px);
    font-family: "Work Sans", sans-serif;
    font-weight: 400;
    font-size: clamp(25px, 1.5vw, 30px);
    line-height: 1.6;
    color: rgba(255, 255, 255, .80);
}

/* awards grid image */
.tarc-awards__grid {
    height: auto;
    display: block;
    margin: 0 auto clamp(30px, 5vw, 56px);
}

/* ===== About TARC Framed Card (Enhanced) ===== */
.tarc-about {
    position: relative;
    margin: clamp(40px, 6vw, 90px) auto;
    aspect-ratio: 15/7;
    overflow: visible;
}

.tarc-about-frame {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: fill;
    pointer-events: none;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,.35));
    z-index: 1;
}

/* content sits perfectly centered inside frame */
/* .tarc-about-inner {
    position: relative;
    inset: 12% 10%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
     z-index: 2;
} */

.tarc-about-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: 80%;
    max-width: 900px;

    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    z-index: 2;
}


.tarc-about-title {
    width: min(420px, 80%);
    margin: 0 auto 24px;
}

.tarc-about-text {
    font-family: "Work Sans", sans-serif;
    font-size: clamp(15px, 1.35vw, 20px);
    line-height: 1.75;
    color: rgba(255, 255, 255, .88);
    max-width: 820px;
    margin: 0 auto;
    letter-spacing: .2px;
    /* padding-top: 60px; */
}

@media (max-width: 900px) {
    .tarc-about {
        /* let it grow naturally on small screens */
        aspect-ratio: auto;
        min-height: 500px;
    }

    /* .tarc-about-inner {
        inset: 12% 10%;
    } */
    /* .tarc-about-inner {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: 90%;
        margin: auto;
    } */

    .tarc-about-inner {
        /* Keep absolute positioning for perfect centering */
        width: 85%;
        padding: 20px 0;
    }

    .tarc-about-title {
        width: min(320px, 82%);
        margin: clamp(18px, 9vw, 64px) auto 12px;
    }

    .tarc-about-text {
        font-size: clamp(12px, 3.6vw, 16px);
        margin-top: clamp(8px, 4vw, 18px);
        line-height: 1.55;
    }
}

@media (max-width: 640px) {
    .tarc-awards__intro {
        margin-bottom: 22px;
    }

    .tarc-awards__grid {
        margin-bottom: 26px;
    }

    .tarc-about {
        padding: 20px 16px;
    }

    /* .tarc-about-inner {
        inset: 14% 9%;
    } */

    .tarc-about-inner {
        width: 88%;
        padding: 30px 0;
    }
}

/* ===== CONTACT / DISCLAIMER FOOTER ===== */
.contact-sec {
    /* UPDATE PATH */
    background: url("assets/images/Rectangle 138 (3).png") center/cover no-repeat;
    padding: clamp(18px, 3vw, 36px) 0 clamp(22px, 3vw, 40px);
    overflow: hidden;
}

.contact-wrap {
    width: min(1400px, 96vw);
    margin: 40px auto;
}

.contact-top {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: clamp(18px, 3.5vw, 70px);
    align-items: start;
}

/* Left block */
.contact-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* keeps text aligned left */
    gap: 16px; /* spacing between text and button */
}
.contact-title-img {
    width: min(420px, 88vw);
    height: auto;
    display: block;
    margin-bottom: clamp(14px, 2.2vw, 22px);
}
.contact-title-text {
    font-family: "Work Sans", sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 40px;
    line-height: 99%;
    letter-spacing: 0%;
    color: #981515;
    display: inline-block;
    text-align: left;
    vertical-align: middle;
    padding-bottom: 30px;
}
.contact-title-text div {
    margin: 4px 0; /* small spacing between lines */
}

.enquire-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 0 28px;
    background: #8c0d10;
    color: #fff;
    text-decoration: none;
    font-family: "Work Sans", sans-serif;
    font-size: 18px;
    letter-spacing: .4px;
    border-radius: 0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .15);
    transition: transform .18s ease, opacity .18s ease;
}

.enquire-btn:hover {
    transform: translateY(-1px);
    opacity: .95;
}

/* Right block */
.office-block {
    margin-bottom: clamp(18px, 3vw, 32px);
}

.office-title {
    font-family: "Work Sans", sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: #8c0d10;
    margin-bottom: 6px;
}

.office-text {
    font-family: "Work Sans", sans-serif;
    font-weight: 400;
    font-size: 20px;
    color: #8c0d10;
    line-height: 1.25;
}

/* Disclaimer paragraph */
.disclaimer {
    margin-top: clamp(18px, 4vw, 46px);
    font-family: "Work Sans", sans-serif;
    font-size: 12px;
    line-height: 1.35;
    color: #8c0d10;
    opacity: .92;
}

/* bottom footer row */
.footer-bottom {
    margin-top: clamp(14px, 2.6vw, 26px);
    display: flex;
    justify-content: space-between;
    gap: 14px;
    font-family: "Work Sans", sans-serif;
    font-size: 13px;
    color: #8c0d10;
    opacity: .95;
}

.footer-left {
    flex: 1;
}

.footer-right {
    white-space: nowrap;
}

/* Mobile */
@media (max-width: 900px) {
    .contact-top {
        grid-template-columns: 1fr;
    }

    .office-title {
        font-size: 20px;
    }

    .office-text {
        font-size: 18px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ===== MOBILE: HIDE HERO ===== */
@media (max-width: 768px) {
    .hero {
        display: none !important;
    }
}
/* ============================= */
/* HAMBURGER */
/* ============================= */

.hamburger {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 20px;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    background: none;
    border: none;
    z-index: 1001;
}

.hamburger span {
    display: block;
    height: 2px;
    width: 100%;
    background: #fff;
}


/* Show only on mobile */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
}

@media (max-width: 768px) {

    .top-strip {
        height: 80px;
        justify-content: center;
        padding: 0 16px;
    }

    .top-strip .logo {
        width: 180px;
        max-width: 70%;
    }

    .hamburger {
        display: flex;
        right: 16px;
    }
}


/* ============================= */
/* MOBILE SLIDE MENU */
/* ============================= */

/* .mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: #000;
    padding: 120px 30px 40px;
    transition: right 0.4s ease;
    z-index: 1000;
}

.mobile-menu.active {
    right: 0;
}
.mobile-menu {
    z-index: 9999;
} */

/* ============================= */
/* BLUR OVERLAY */
/* ============================= */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.35);
    backdrop-filter: blur(8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .4s ease;
    z-index: 9998;
}

.mobile-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* ============================= */
/* GLASS MENU PANEL */
/* ============================= */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: rgba(20,20,20,.85);
    backdrop-filter: blur(20px);
    padding: 140px 30px 40px;
    transition: right .4s ease;
    z-index: 9999;
}

.mobile-menu.active {
    right: 0;
}

/* Close Button */
.mobile-close {
    position: absolute;
    top: 28px;
    right: 28px;
    font-size: 34px;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
}

/* Timeline Styling (keep yours if already added) */
.mobile-timeline ul {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
}

.mobile-timeline ul::before {
    content: "";
    position: absolute;
    left: 12px;
    top: 4px;
    bottom: 4px;
    width: 2px;
    background: rgba(255,255,255,.45);
}

.mobile-timeline li {
    position: relative;
    padding-left: 40px;
    margin-bottom: 32px;
    font-family: "Cormorant Garamond", serif;
    font-size: 28px;
    color: rgba(255,255,255,.95);
}

.mobile-timeline li::before {
    content: "";
    position: absolute;
    left: 8px;
    top: .45em;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #fff;
}

.mobile-timeline a {
    text-decoration: none;
    color: inherit;
}












.about-title {
    font-family: "Work Sans", sans-serif;
    font-size: 50px;
    font-weight: 400;
    text-align: center;
    color: white;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.about-subtitle {
    font-family: "Cormorant Garamond", serif;
    font-size: 80px;
    font-weight: 400;
    text-align: center;
    color: white;
    /* margin-bottom: 30px; */
}
@media (max-width: 768px) {
    .about-title {
        font-size: 35px;
    }

    .about-subtitle {
        font-size: 55px;
    }
}

.story-title-text {
    font-family: "Cormorant Garamond", serif;
    font-size: 80px;
    font-weight: 400;
    color: white;
    text-align: center;
    margin: 60px auto 20px auto;
    line-height: 1.1;
    max-width: 1000px;
}


/* Hamburger button design */
.hamburger {
    width: 45px;
    height: 45px;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: 0.3s ease;
    backdrop-filter: blur(6px);
}

.hamburger span {
    width: 22px;
    height: 2px;
    background: white;
    border-radius: 5px;
    transition: 0.3s ease;
}

/* Hover effect */
.hamburger:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}
/* ============================= */
/* LOGO SLIDER */
/* ============================= */

.design-partners {
    margin-top: 40px;
    overflow: hidden;
    position: relative;
}

.logo-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.logo-track {
    display: flex;
    align-items: center;
    gap: 60px;
    width: max-content;
    animation: logoScroll 30s linear infinite;
}
/* LOGO SLIDER */

.logo-track img {
    width: 270px;          /* Bigger width */
    height: 270px;         /* Bigger height */
    object-fit: contain;
    flex-shrink: 0;

    border-radius: 14px;   /* Corner radius */
    padding: 10px;         /* Space inside logo box */
    /* background: #ffffff;   Clean white background */
    
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Premium hover effect */
.logo-track img:hover {
    transform: scale(1.08);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}


/* Infinite smooth scroll */
@keyframes logoScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause on hover */
.logo-slider:hover .logo-track {
    animation-play-state: paused;
}

@media (max-width: 768px) {
    .logo-track img {
        width: 150px;
        height: 150px;
    }
}

/* ============================= */
/* FLOATING ENQUIRY BUTTON */
/* ============================= */

/* ============================= */
/* FLOATING ENQUIRY BUTTON (Refactored Minimal Version) */
/* ============================= */
/* ============================= */
/* FLOATING ENQUIRY BUTTON (Improved Version) */
/* ============================= */
.floating-enquiry {
    position: fixed;
    left: 24px;
    bottom: 40px;
    z-index: 9999;

    display: inline-flex;
    align-items: center;
    gap: 12px;

    background: linear-gradient(135deg, #8c0d10, #c11f24);
    color: #ffffff;
    border: none;
    padding: 14px 24px;
    cursor: pointer;

    border-radius: 60px;

    font-family: "Work Sans", sans-serif;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.5px;

    box-shadow: 0 18px 40px rgba(140, 13, 16, 0.35);
    transition: all 0.3s cubic-bezier(.22,.61,.36,1);
}

/* Hide old stacked letters */
.floating-enquiry span {
    display: none;
}

/* Phone icon circle */
.floating-enquiry::before {
    content: "☎";
    display: flex;
    align-items: center;
    justify-content: center;

    width: 34px;
    height: 34px;

    background: rgba(255,255,255,0.18);
    border-radius: 50%;

    font-size: 16px;
    font-weight: 700;
    line-height: 1;
}

/* Button text */
.floating-enquiry::after {
    content: "Enquire Now";
}

/* Hover */
.floating-enquiry:hover {
    transform: translateY(-5px);
    box-shadow: 0 28px 55px rgba(140, 13, 16, 0.45);
}

/* Click */
.floating-enquiry:active {
    transform: translateY(-2px) scale(0.98);
}

/* Mobile */
@media (max-width: 768px) {
    .floating-enquiry {
        right: 16px;
        bottom: 24px;
        padding: 12px 18px;
        font-size: 13px;
        gap: 8px;
    }

    .floating-enquiry::before {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
}

/* ============================= */
/* ENQUIRY MODAL */
/* ============================= */

.enquiry-modal {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 10000;
}

.enquiry-modal.active {
    display: block;
}

.enquiry-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(6px);
}

.enquiry-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 95%;
    max-width: 500px;

    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(15px);

    padding: 50px 40px;
    border-radius: 28px;

    box-shadow: 0 40px 80px rgba(0,0,0,0.25);

    transition: all 0.4s cubic-bezier(.22,.61,.36,1);
}

.enquiry-modal.active .enquiry-box {
    transform: translate(-50%, -50%) scale(1);
}

/* Close Button */
.enquiry-close {
    position: absolute;
    right: 20px;
    top: 18px;
    border: none;
    background: none;
    font-size: 28px;
    cursor: pointer;
}

/* Title */
.enquiry-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    margin-bottom: 30px;
    text-align: center;
}

/* Form Styling */
.enquiry-form .form-group {
    margin-bottom: 20px;
}

.enquiry-form input,
.enquiry-form textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid #ddd;
    font-family: 'Work Sans', sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
}

.enquiry-form input:focus,
.enquiry-form textarea:focus {
    outline: none;
    border-color: #000;
    box-shadow: 0 0 0 3px rgba(0,0,0,0.08);
}

/* Submit Button */
.submit-enquiry {
    width: 100%;
    padding: 14px;
    border-radius: 14px;
    border: none;
    background: #000;
    color: #fff;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.submit-enquiry:hover {
    background: #333;
    transform: translateY(-2px);
}

/* ============================= */
/* LOCATION SECTION */
/* ============================= */
/* ============================= */
/* LOCATION SECTION */
/* ============================= */

.location-exact {
    padding: 60px 0;              /* Reduced spacing */
    background: #efe4d2;
}

.location-container {
    width: 94%;
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 70px;
}

/* ============================= */
/* GOOGLE MAP */
/* ============================= */

.location-map {
    flex: 2;
    position: relative;
}

/* Image Map Styling */
.location-map img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
    border-radius: 0;
}

/* Smooth fade + zoom animation */
.map-fade {
    opacity: 0;
    transform: scale(1.03);
    transition: opacity .5s ease, transform .5s ease;
}

.map-fade.show {
    opacity: 1;
    transform: scale(1);
}

/* ============================= */
/* RIGHT SIDE TIMELINE */
/* ============================= */

.location-info {
    flex: 1;
    position: relative;
}

.location-container {
    align-items: center;   /* This vertically centers children */
}

.location-info {
    display: flex;
    flex-direction: column;
    justify-content: center;  /* Centers timeline vertically */
}

.location-heading {
    font-family: "Cormorant Garamond", serif;
    font-size: 26px;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

/* Timeline container */

.location-timeline {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
}

/* Straight vertical line */

.location-timeline::before {
    content: "";
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #8c0d10;
}

/* Timeline items */

.location-timeline li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 30px;

    font-family: "Work Sans", sans-serif;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #8c0d10;
    cursor: pointer;
    transition: 0.3s ease;
}

/* Timeline dot */

.location-timeline li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    width: 16px;
    height: 16px;
    background: #8c0d10;
    border-radius: 50%;
    transition: 0.3s ease;
}

/* Hover */

.location-timeline li:hover {
    transform: translateX(6px);
}

/* Active state */

.location-timeline li.active {
    font-weight: 600;
    color: #000;
}

.location-timeline li.active::before {
    background: #000;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */
.btn-play-music {
    position: absolute;
    right: 40px;
    top: 30px;
    color: #FFF;
    font-size: 23px;
    background: #b31a1f;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 25px 0 rgb(0 0 0 / 58%);
}
.btn-play-music img {
    position: absolute;
    top: 11px;
    left: 9px;
    width: 23px;
}

.btn-play-music img:nth-child(2) {
    display: none;
}
.btn-play-music.sound-on img:nth-child(2) {
    display: block;
}
.btn-play-music.sound-on img:nth-child(1) {
    display: none;
}


@media (max-width: 992px) {

    .location-container {
        flex-direction: column;
        gap: 40px;
    }

    .location-map img {
        height: 450px;
    }

    
}

@media (max-width: 767px) {
.timeline {
        display: none;
    }
}



