:root{
  /* Tuned from screenshot */
  --nav-bg: rgb(197,158,146);
  --nav-text: rgba(125, 78, 60, 0.95);
  --brand: rgba(140, 88, 70, 0.98);

  --cta: rgb(145,110,83);          /* contact button */
  --cta-text: #ffffff;

  --btn-fill: rgb(248,237,227);    /* “Our Vision” */
  --btn-fill-text: rgba(135, 82, 64, 0.95);

  --btn-outline: rgba(255,255,255,0.55);
  --btn-outline-bg: rgba(255,255,255,0.06);

  --shadow: 0 10px 28px rgba(0,0,0,0.16);
}

*{ box-sizing: border-box; }
html,body{ height: 100%; }
body{
  margin: 0;
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: #111;
  background: #0b0b0b;
}

/* HERO */
.hero{
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 110px 20px 70px;

  background:
    linear-gradient(rgba(0,0,0,0.10), rgba(0,0,0,0.35)),
    url("assets/hero.webp") center / cover no-repeat;
}

.hero::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background: radial-gradient(60% 65% at 50% 45%,
    rgba(210, 155, 115, 0.20) 0%,
    rgba(0,0,0,0.00) 55%,
    rgba(0,0,0,0.22) 100%);
}

/* helper for your updated HTML heading */
.nowrap{ white-space: nowrap; }

/* NAV BAR */
.nav{
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(780px, 92vw);
  height: 56px;

  display: flex;
  align-items: center;
  gap: 12px;

  padding: 10px 18px;
  border-radius: 14px;

  background: rgba(246, 236, 228, 0.92);
  border: 1px solid rgba(255,255,255,0.55);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  z-index: 5;
}

.brand{
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.2px;
  color: var(--brand);
  padding: 6px 10px;
  border-radius: 10px;
}

/* Desktop: center About/Projects/News; reserve space for Contact */
.nav__links{
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 38px;

  position: relative;
  padding-right: 160px; /* space for right-side Contact button */
}

/* Only style normal nav links (not the button) */
.nav__links > a:not(.btn){
  text-decoration: none;
  color: var(--nav-text);
  font-weight: 500;
  font-size: 14px;
  opacity: 0.95;
  transition: opacity .2s ease, transform .2s ease;
}

.nav__links > a:not(.btn):hover{
  opacity: 1;
  transform: translateY(-1px);
}

/* Buttons */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 10px;
  padding: 10px 18px;
  font-weight: 600;
  font-size: 14px;
  transition: transform .18s ease, filter .18s ease, background .18s ease, border-color .18s ease;
  will-change: transform;
}

.btn:active{ transform: translateY(0px) scale(0.99); }

/* Contact button (desktop pinned right) */
.btn--nav{
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);

  background: var(--cta);
  color: var(--cta-text);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 12px;

  padding: 10px 18px;
  margin-left: 0;
}

.btn--primary{
  background: var(--btn-fill);
  color: var(--btn-fill-text);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 8px 20px rgba(0,0,0,0.14);
}

.btn--secondary{
  background: var(--btn-outline-bg);
  color: #fff;
  border: 1px solid var(--btn-outline);
}

.btn:hover{ transform: translateY(-1px); filter: brightness(1.02); }

/* HERO CONTENT */
.hero__content{
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 980px;
}

.hero__title{
  margin: 0;
  color: #fff;
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.03;
  font-size: clamp(44px, 5.6vw, 92px);
  text-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.hero__actions{
  margin-top: 22px;
  display: inline-flex;
  gap: 16px;
}

/* MOBILE MENU TOGGLE (desktop hidden) */
.nav__toggle{
  display: none;
  margin-left: auto;
  width: 44px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.55);
  cursor: pointer;
}

.nav__toggle span{
  display:block;
  height: 2px;
  width: 18px;
  margin: 4px auto;
  background: rgba(125, 78, 60, 0.9);
  border-radius: 999px;
}

/* Dummy sections */
.section{
  height: 60vh;
  display: grid;
  place-items: center;
  font-size: 28px;
  color: #fff;
  background: #111;
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* MOBILE */
@media (max-width: 820px){
  /* NAV matches reference mobile */
  .nav{
    width: min(520px, 92vw);
    height: 58px;
    top: 16px;
    padding: 10px 12px;
    border-radius: 14px;
  }

  .nav__toggle{
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-left: auto;
    width: 58px;
    height: 46px;

    background: var(--cta);
    border: 2px solid rgba(242, 190, 120, 0.95);
    border-radius: 10px;
  }

  .nav__toggle span:nth-child(2){ display: none; }

  .nav__toggle span{
    background: #fff;
    width: 20px;
    height: 2px;
    margin: 6px auto;
    border-radius: 999px;
  }

  /* dropdown */
  .nav__links{
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;

    display: none;
    flex-direction: column;
    gap: 14px;

    padding: 14px;
    background: rgba(246, 236, 228, 0.94);
    border-radius: 14px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(12px);
  }

  .nav__links.is-open{ display: flex; }
  .nav__links > a:not(.btn){ font-size: 15px; }

  .btn--nav{
    position: static;
    transform: none;
    width: 100%;
  }

  .hero{
    padding: 96px 16px 48px;
  }

  .hero__content{
    text-align: left;
    width: min(520px, 92vw);
  }

  .hero__title{
    font-size: clamp(40px, 9.2vw, 58px);
    line-height: 1.06;
  }

  .hero__actions{
    margin-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
  }

  .hero__actions .btn{
    width: 100%;
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 16px;
  }
}


/* =========================
   ABOUT SECTION
========================= */
.about{
  background: #f7ebe2;
  padding: 100px 0 56px;
}

.about__wrap{
  width: min(1760px, 92vw);
  margin: 0 auto;

  display: grid;
  grid-template-columns: 0.98fr 1.02fr;
  gap: 74px;
  align-items: start;
}

.about__content{ padding-top: 6px; }

.about__kicker{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(122, 70, 54, 0.92);
  font-weight: 500;
  font-size: 16px;
  margin: 0 0 22px;
}

.about__dot{
  font-size: 18px;
  line-height: 1;
  transform: translateY(-1px);
}

.about__title{
  margin: 0;
  color: rgb(140, 80, 60);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.02;
  font-size: clamp(56px, 4.5vw, 88px);
}

.about__text{
  margin-top: 26px;
  max-width: 640px;
}

.about__text p{
  margin: 0 0 18px;
  color: rgba(122, 70, 54, 0.90);
  font-size: 18px;
  line-height: 1.65;
}

.about__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin-top: 18px;
  padding: 14px 28px;

  background: rgb(140, 80, 60);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;

  border-radius: 6px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 10px 22px rgba(0,0,0,0.10);
  transition: transform .18s ease, filter .18s ease;
}

.about__btn:hover{
  transform: translateY(-1px);
  filter: brightness(1.03);
}

.about__media{
  display: grid;
  align-self: start;
}

.about__img{
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  background: #ead9cd;
  box-shadow: 0 16px 34px rgba(0,0,0,0.14);
  aspect-ratio: 16 / 13;
  margin-top: -10px;
}

.about__img img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 55% 45%;
}

@media (max-width: 1220px){
  .about__wrap{
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .about__img{
    aspect-ratio: 16 / 10;
    margin-top: 0;
  }

  .about__title{
    font-size: clamp(44px, 7.2vw, 64px);
  }
}

@media (max-width: 520px){
  .about__text p{ font-size: 16px; }
  .about__btn{
    font-size: 16px;
    padding: 12px 20px;
  }
}


/* =========================
   STEP 1 -> STEP 2 -> STEP 3 (TEXT)  ✅ FIXED
   - Uses your JS variable --t
   - --s drives cards (finishes earlier)
   - --copy drives text (final step)
========================= */
.galleryScroll{
  background: #f7ebe2;

  /* give enough space for 3 phases */
  height: 320vh;
  position: relative;
}

.galleryScroll__sticky{
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;

  display: grid;
  place-items: center;

  padding: 0 16px;
}

.galleryScroll__canvas{
  /* JS writes --t: 0..1 */
  --t: 0;

  /* cards finish spreading at ~66% scroll */
  --s: clamp(0, calc(var(--t) / 0.66), 1);

  /* text fades in during the last ~34% */
  --copy: clamp(0, calc((var(--t) - 0.66) / 0.34), 1);

  width: min(1760px, 92vw);
  aspect-ratio: 2048 / 985;
  max-height: 86vh;
  height: auto;

  margin-inline: auto;
  position: relative;
  isolation: isolate;

  /* compact stack -> full spread (matches reference feel) */
  transform: translateY(-10px) scale(calc(0.62 + 0.38 * var(--s)));
  transform-origin: 50% 50%;
  will-change: transform;
}

/* Card base */
.gCard{
  position: absolute;
  margin: 0;

  border-radius: 18px;
  overflow: hidden;
  background: #ead9cd;

  box-shadow: 0 16px 36px rgba(0,0,0,0.14);

  /* IMPORTANT: use --s (not --t) so cards stop moving when text appears */
  left:   calc((var(--x0) + (var(--x1) - var(--x0)) * var(--s)) * 1%);
  top:    calc((var(--y0) + (var(--y1) - var(--y0)) * var(--s)) * 1%);
  width:  calc((var(--w0) + (var(--w1) - var(--w0)) * var(--s)) * 1%);
  height: calc((var(--h0) + (var(--h1) - var(--h0)) * var(--s)) * 1%);

  z-index: var(--z, 1);
  will-change: left, top, width, height;
}

.gCard img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 50% 50%;
}

/* ✅ FINAL STEP CENTER TEXT (exact placement + fade) */
.galleryScroll__copy{
  position: absolute;
  left: 50%;
  top: 50.65%;
  transform:
    translate(-50%, -50%)
    translateY(calc((1 - var(--copy)) * 18px));

  width: min(720px, 36.5%);
  text-align: center;

  margin: 0;
  color: rgb(140, 80, 60);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.18;

  font-size: clamp(28px, 2.2vw, 54px);

  opacity: var(--copy);
  pointer-events: none;
  z-index: 10;
}

/* =========================
   CARD TARGET POSITIONS
   Step 1 = your stacked pyramid
   Step 2/3 = extracted from your reference screenshot (no overlap with text)
========================= */

/* 1) collage-1 (dark room) */
.gCard--1{
  --z: 1;

  /* Step 1 (stack) */
  --x0: 31;  --y0: 6;   --w0: 38;  --h0: 44;

  /* Step 2/3 (spread) */
  --x1: 10.21; --y1: 0.10; --w1: 18.26; --h1: 38.07;
}

/* 2) collage-2 (chair closeup) */
.gCard--2{
  --z: 4;

  --x0: 44;  --y0: 14;  --w0: 34;  --h0: 30;

  --x1: 43.31; --y1: 3.05; --w1: 18.65; --h1: 26.40;
}

/* 3) collage-3 (bright room) */
.gCard--3{
  --z: 2;

  --x0: 55;  --y0: 18;  --w0: 44;  --h0: 44;

  --x1: 72.70; --y1: 7.61; --w1: 23.29; --h1: 35.23;
}

/* 4) collage-4 (left room) */
.gCard--4{
  --z: 2;

  --x0: 13;  --y0: 36;  --w0: 40;  --h0: 44;

  --x1: 3.22; --y1: 56.75; --w1: 18.65; --h1: 29.44;
}

/* 5) collage-5 (brown interior) */
.gCard--5{
  --z: 3;

  --x0: 35;  --y0: 28;  --w0: 46;  --h0: 44;

  --x1: 42.38; --y1: 62.44; --w1: 18.65; --h1: 37.46;
}

/* 6) collage-6 (circle wall) */
.gCard--6{
  --z: 5;

  --x0: 41;  --y0: 42;  --w0: 54;  --h0: 48;

  --x1: 73.14; --y1: 59.49; --w1: 20.50; --h1: 25.99;
}

/* =========================
   MOBILE (centered, no strips)
========================= */
@media (max-width: 680px){
  .galleryScroll{
    height: 300vh;
  }

  .galleryScroll__canvas{
    width: min(420px, 92vw);
    height: min(420px, 58vh);
    aspect-ratio: auto;
    max-height: none;

    transform: translateY(-6px) scale(calc(0.90 + 0.10 * var(--s)));
  }

  .gCard{
    border-radius: 14px;
    box-shadow: 0 14px 34px rgba(0,0,0,0.14);
  }

  .galleryScroll__copy{
    width: min(340px, 86vw);
    font-size: clamp(20px, 4.6vw, 30px);
    line-height: 1.22;
    top: 52%;
  }
}

@media (prefers-reduced-motion: reduce){
  .galleryScroll__canvas,
  .gCard,
  .galleryScroll__copy{
    transition: none !important;
  }
}


:root{
  --vh: 1vh; /* set by JS */
}

/* SECTION MUST NOT have overflow hidden (it can break sticky) */
.scrollSlider{
  position: relative;
  background: #000;
}

/* sticky viewport */
.scrollSlider__sticky{
  position: sticky;
  top: 0;
  height: 100vh;              /* desktop fallback */
  height: 100dvh;             /* modern browsers */
  overflow: hidden;           /* keep clipping here */
}

/* stage holds absolute slides */
.scrollSlider__stage{
  position: relative;
  height: 100%;
  width: 100%;
}

/* slides are ABSOLUTE inside stage (NOT fixed) */
.scrollSlider .scrollSlide{
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  transform: translate3d(0, 100%, 0); /* start below */
  will-change: transform;
}

/* readability overlay */
.scrollSlider .scrollSlide::before{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(20, 14, 10, .35);
}

/* centered content */
.scrollSlide__inner{
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 48px);
  text-align: center;
  color: #fff;
  z-index: 2;
}

.scrollSlide__kicker{
  margin: 0 0 10px 0;
  font-weight: 700;
  letter-spacing: .25em;
  opacity: .85;
  font-size: .9rem;
}

.scrollSlide__title{
  margin: 0;
  line-height: 1.05;
  font-weight: 800;
  font-size: clamp(2.2rem, 6vw, 4.6rem);
  text-shadow: 0 18px 30px rgba(0,0,0,.25);
}

.scrollSlide__sub{
  margin: 12px auto 22px;
  max-width: 60ch;
  opacity: .92;
  font-size: clamp(1rem, 1.8vw, 1.15rem);
}

.scrollSlide__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 10px;

  background: rgba(246, 238, 231, .95);
  color: #6a3b2d;
  text-decoration: none;
  font-weight: 750;
  min-width: 160px;

  border: 1px solid rgba(255,255,255,.25);
  backdrop-filter: blur(4px);
}

/* mobile */
@media (max-width: 680px){
  .scrollSlide__title{ font-size: clamp(2rem, 9vw, 3.2rem); }
  .scrollSlide__sub{ max-width: 38ch; }
}

@media (prefers-reduced-motion: reduce){
  .scrollSlider .scrollSlide{ will-change: auto; }
}

/* ===== EXPERTISE HOVER SECTION (pixel-style) ===== */
.servicesHover{
  background: #f8ede3;                 /* matches your screenshot bg */
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 44px 0 56px;
}

.servicesHover__wrap{
  width: min(1760px, 92vw);
  margin: 0 auto;

  display: grid;
  grid-template-columns: 0.98fr 1.02fr;
  gap: 96px;
  align-items: center;
}

/* LEFT IMAGE */
.servicesHover__media{
  border-radius: 18px;
  overflow: hidden;
  background: #e7d7cc;
  width: 100%;
  aspect-ratio: 1 / 1;                 /* square like your reference */
  max-height: 86vh;
}

.servicesHover__media img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 50% 50%;
  transform: translateZ(0);
  transition: opacity 220ms ease;
}

/* RIGHT LIST */
.servicesHover__list{
  width: 100%;
  max-width: 920px;                    /* keeps the long lines like reference */
}

.servicesHover__item{
  width: 100%;
  display: grid;
  grid-template-columns: 56px 1fr;     /* number column + label column */
  align-items: center;

  padding: 0;
  margin: 0;

  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;

  border-bottom: 2px solid rgba(141, 73, 58, 0.32); /* divider lines */
}

.servicesHover__num{
  color: rgb(140, 80, 60);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.02em;
  padding-left: 8px;
  transform: translateY(-1px);
}

/* label text area (bar lives here, NOT under the number) */
.servicesHover__label{
  display: block;
  padding: 14px 22px;
  border-radius: 4px;

  color: rgb(140, 80, 60);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.05;
  font-size: clamp(22px, 2.05vw, 34px);

  transition: background 160ms ease, color 160ms ease;
}

/* active / hovered row (brown bar) */
.servicesHover__item.is-active .servicesHover__label,
.servicesHover__item:hover .servicesHover__label,
.servicesHover__item:focus-visible .servicesHover__label{
  background: rgb(141, 73, 58);        /* bar color from screenshot */
  color: #fff;
}

/* accessibility */
.servicesHover__item:focus-visible{
  outline: none;
}

/* MOBILE: stack image + list */
@media (max-width: 980px){
  .servicesHover__wrap{
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .servicesHover__media{
    aspect-ratio: 16 / 14;            /* more natural on phones */
    max-height: none;
  }

  .servicesHover__list{
    max-width: 100%;
  }

  .servicesHover__label{
    padding: 14px 18px;
    font-size: clamp(18px, 4.8vw, 26px);
  }
}

@media (prefers-reduced-motion: reduce){
  .servicesHover__media img,
  .servicesHover__label{
    transition: none !important;
  }
}


/* ===== CTA SECTION (match reference) ===== */

.ctaSection{
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 84px 24px;

  background: var(--bg) center / cover no-repeat;
  overflow: hidden;
}

/* subtle vignette like reference */
.ctaSection::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(70% 70% at 50% 50%,
      rgba(0,0,0,0.00) 0%,
      rgba(0,0,0,0.22) 100%);
  pointer-events:none;
}

.ctaSection__card{
  position: relative;
  z-index: 1;

  /* reference card is not full-width */
  width: min(800px, 86vw);
  padding: clamp(34px, 4vw, 76px) clamp(26px, 5vw, 88px);

  background: #f7ebe2;
  border-radius: 12px;

  /* softer shadow (your version was too strong/big) */
  box-shadow: 0 20px 60px rgba(0,0,0,0.22);

  text-align: center;
}

.ctaSection__text{
  margin: 0;
  color: rgb(140, 80, 60);

  /* closer to reference */
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.25;

  font-size: clamp(18px, 1.80vw, 34px);
}

.ctaSection__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin-top: clamp(18px, 2.2vw, 34px);
  padding: 12px 34px;

  background: rgb(140, 80, 60);
  color: #fff;
  text-decoration: none;

  border-radius: 6px;              /* reference is squarer than pill */
  font-weight: 600;
  font-size: 16px;

  /* reference button has little-to-no shadow */
  box-shadow: 0 10px 20px rgba(0,0,0,0.12);
  transition: transform .18s ease, filter .18s ease;
}

.ctaSection__btn:hover{
  transform: translateY(-1px);
  filter: brightness(1.03);
}

/* Mobile: card gets smaller, padding tighter */
@media (max-width: 680px){
  .ctaSection{
    padding: 64px 16px;
  }

  .ctaSection__card{
    width: min(520px, 92vw);
    padding: 26px 18px;
    border-radius: 12px;
  }

  .ctaSection__text{
    font-size: 18px;
    line-height: 1.28;
  }

  .ctaSection__btn{
    margin-top: 18px;
    width: auto;
    padding: 12px 26px;
    font-size: 15px;
  }
}


.news{
  background: #f7ebe2;
  padding: 34px 0 40px;
}

.news__wrap{
  width: min(1760px, 92vw);
  margin: 0 auto;
}

.news__head{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 26px;
}

.news__kicker{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(122, 70, 54, 0.92);
  font-weight: 500;
  font-size: 16px;
  margin: 0 0 14px;
}

.news__dot{
  font-size: 18px;
  line-height: 1;
  transform: translateY(-1px);
}

.news__title{
  margin: 0;
  color: rgb(140, 80, 60);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.02;
  font-size: clamp(44px, 3.2vw, 84px);
}

.news__cta{
  margin-top: 54px; /* aligns like screenshot next to headline */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  padding: 0 22px;

  background: rgb(140, 80, 60);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;

  border-radius: 8px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 10px 20px rgba(0,0,0,0.10);
  transition: transform .18s ease, filter .18s ease;
}

.news__cta:hover{
  transform: translateY(-1px);
  filter: brightness(1.03);
}

.news__grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.newsCard{
  min-width: 0;
}

.newsCard__media{
  display: block;
  border-radius: 16px;
  overflow: hidden;
  background: #ead9cd;
  box-shadow: 0 16px 34px rgba(0,0,0,0.10);
  aspect-ratio: 16 / 10;
}

.newsCard__media img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.newsCard__meta{
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;

  color: rgba(122, 70, 54, 0.85);
  font-size: 14px;
  font-weight: 500;
}

.newsCard__dot{
  font-size: 18px;
  line-height: 1;
  transform: translateY(-1px);
}

.newsCard__title{
  margin: 10px 0 6px;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  font-weight: 600;
  color: rgb(140, 80, 60);
}

.newsCard__title a{
  color: inherit;
  text-decoration: none;
}

.newsCard__title a:hover{
  text-decoration: underline;
}

.newsCard__sub{
  margin: 0;
  color: rgba(122, 70, 54, 0.86);
  font-size: 15px;
  line-height: 1.45;
  max-width: 46ch;
}

/* Responsive */
@media (max-width: 1020px){
  .news__cta{ margin-top: 20px; }
  .news__head{ align-items: flex-start; }
  .news__grid{ grid-template-columns: 1fr; gap: 20px; }
  .newsCard__media{ aspect-ratio: 16 / 9; }
}

@media (max-width: 520px){
  .news{
    padding: 28px 0 34px;
  }

  .news__head{
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .news__cta{
    margin-top: 0;
    width: 100%;
    justify-content: center;
  }

  .newsCard__title{ font-size: 20px; }
  .newsCard__sub{ font-size: 14px; }
}


/* =========================
   FOOTER (matches reference)
========================= */
.tFooter{
  background: rgb(140, 80, 60); /* reference brick */
  color: #fff;
  padding: 120px 0 56px;
}

.tFooter__wrap{
  width: min(1720px, 92vw);     /* IMPORTANT: wide like reference */
  margin: 0 auto;
}

.tFooter__brand{
  display: block;
  text-align: center;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -0.01em;
  margin: 0 0 86px;
}

/* Wide 3-column layout with big gaps (your missing piece) */
.tFooter__grid{
  width: min(1560px, 92vw);     /* this is what spreads columns out */
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: clamp(64px, 10vw, 220px);
  row-gap: 56px;

  align-items: start;
}

.tFooter__label{
  margin: 0 0 22px;
  font-size: 18px;
  font-weight: 500;
  color: rgba(255, 235, 226, 0.78); /* soft pink/cream like reference */
}

.tFooter__link{
  display: block;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.95);

  font-size: 20px;             /* reference large links */
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.18;

  margin: 0 0 14px;
}

.tFooter__link:hover{
  color: #fff;
}

/* Divider + copyright should match the wide width */
.tFooter__bottom{
  width: min(1560px, 92vw);
  margin: 86px auto 0;
  text-align: center;
}

.tFooter__rule{
  height: 1px;
  background: rgba(255,255,255,0.22);
}

.tFooter__copy{
  margin: 26px 0 0;
  font-size: 16px;
  color: rgba(255,255,255,0.78);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 980px){
  .tFooter{ padding: 90px 0 46px; }

  .tFooter__brand{
    margin-bottom: 56px;
    font-size: 26px;
  }

  .tFooter__grid{
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
    row-gap: 44px;
  }

  .tFooter__label{
    margin-bottom: 14px;
    font-size: 16px;
  }

  .tFooter__link{
    font-size: clamp(30px, 5.5vw, 42px);
    margin-bottom: 12px;
  }

  .tFooter__bottom{
    margin-top: 56px;
  }
}


/* =========================
   2560 x 1600 (Large Desktop / 16:10)
========================= */
@media (min-width: 2500px) and (min-height: 1500px){

  /* ---------- HERO / NAV ---------- */
  .nav{
    width: min(900px, 92vw);
    height: 60px;
    padding: 12px 20px;
    border-radius: 16px;
    top: 22px;
  }

  .nav__links{
    gap: 44px;
    padding-right: 176px;
  }

  .nav__links > a:not(.btn){
    font-size: 15px;
  }

  .btn{
    padding: 11px 20px;
    font-size: 15px;
  }

  .btn--nav{
    padding: 11px 20px;
    border-radius: 14px;
  }

  .hero{
    padding: 140px 24px 86px;
  }

  .hero__content{
    max-width: 1180px;
  }

  /* lock to a slightly larger “max” on 2560 */
  .hero__title{
    font-size: clamp(54px, 4.8vw, 104px);
    line-height: 1.02;
  }

  .hero__actions{
    margin-top: 28px;
    gap: 18px;
  }

  /* ---------- ABOUT ---------- */
  .about{
    padding: 120px 0 76px;
  }

  .about__wrap{
    width: min(2100px, 92vw);
    gap: 110px;
  }

  .about__kicker{
    font-size: 17px;
    margin-bottom: 26px;
  }

  .about__title{
    font-size: clamp(64px, 4.0vw, 96px);
  }

  .about__text{
    max-width: 720px;
  }

  .about__text p{
    font-size: 19px;
    line-height: 1.7;
  }

  .about__btn{
    margin-top: 22px;
    padding: 16px 34px;
    font-size: 19px;
    border-radius: 8px;
  }

  .about__img{
    border-radius: 18px;
    box-shadow: 0 18px 44px rgba(0,0,0,0.14);
  }

  /* ---------- GALLERY SCROLL ---------- */
  .galleryScroll__canvas{
    width: min(2100px, 92vw);
    max-height: 88vh;
    transform: translateY(-12px) scale(calc(0.62 + 0.38 * var(--s)));
  }

  .gCard{
    border-radius: 20px;
    box-shadow: 0 18px 44px rgba(0,0,0,0.14);
  }

  .galleryScroll__copy{
    font-size: clamp(32px, 2.0vw, 58px);
    width: min(820px, 36.5%);
  }

  /* ---------- SLIDER ---------- */
  .scrollSlide__title{
    font-size: clamp(2.6rem, 5.2vw, 5.2rem);
  }

  .scrollSlide__sub{
    font-size: clamp(1.05rem, 1.5vw, 1.25rem);
    max-width: 64ch;
  }

  .scrollSlide__btn{
    padding: 13px 22px;
    border-radius: 12px;
    min-width: 180px;
  }

  /* ---------- EXPERTISE HOVER ---------- */
  .servicesHover{
    padding: 64px 0 76px;
  }

  .servicesHover__wrap{
    width: min(2100px, 92vw);
    gap: 130px;
  }

  .servicesHover__media{
    border-radius: 20px;
    max-height: 88vh;
  }

  .servicesHover__list{
    max-width: 1040px;
  }

  .servicesHover__item{
    grid-template-columns: 64px 1fr;
  }

  .servicesHover__label{
    padding: 16px 26px;
    font-size: clamp(26px, 1.85vw, 38px);
  }

  /* ---------- CTA SECTION ---------- */
  .ctaSection{
    padding: 96px 28px;
  }

  .ctaSection__card{
    width: min(980px, 82vw);
    padding: 86px 110px;
    border-radius: 14px;
  }

  .ctaSection__text{
    font-size: clamp(20px, 1.55vw, 36px);
  }

  .ctaSection__btn{
    margin-top: 36px;
    padding: 13px 40px;
    font-size: 17px;
    border-radius: 8px;
  }

  /* ---------- NEWS ---------- */
  .news{
    padding: 52px 0 56px;
  }

  .news__wrap{
    width: min(2100px, 92vw);
  }

  .news__head{
    margin-bottom: 34px;
  }

  .news__title{
    font-size: clamp(56px, 3.0vw, 96px);
  }

  .news__cta{
    margin-top: 66px;
    height: 50px;
    padding: 0 26px;
    border-radius: 10px;
  }

  .news__grid{
    gap: 28px;
  }

  .newsCard__media{
    border-radius: 18px;
    box-shadow: 0 18px 44px rgba(0,0,0,0.10);
  }

  .newsCard__title{
    font-size: 24px;
  }

  .newsCard__sub{
    font-size: 16px;
  }

  /* ---------- FOOTER ---------- */
  .tFooter{
    padding: 150px 0 64px;
  }

  .tFooter__wrap{
    width: min(2100px, 92vw);
  }

  .tFooter__brand{
    font-size: 30px;
    margin-bottom: 96px;
  }

  .tFooter__grid{
    width: min(1900px, 92vw);
    column-gap: clamp(120px, 10vw, 320px);
    row-gap: 64px;
  }

  .tFooter__label{
    font-size: 18px;
    margin-bottom: 26px;
  }

  /* (Your screenshot footer uses BIG links) */
  .tFooter__link{
    font-size: 44px;
    line-height: 1.18;
    margin-bottom: 16px;
  }

  .tFooter__bottom{
    width: min(1900px, 92vw);
    margin-top: 96px;
  }

  .tFooter__copy{
    font-size: 16px;
    margin-top: 28px;
  }
}
