:root {
  --green-dark: #0d2b1a;
  --green-mid: #1a4a2e;
  --green-light: #2d6a47;
  --gold: #c9a84c;
  --gold-light: #e0c070;
  --gold-pale: #f5e6b8;
  --white: #ffffff;
  --cream: #faf6ee;
  --text-light: rgba(255,255,255,0.82);
  --walnut: #4a2c0a;
}

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

body {
font-family: 'Montserrat', sans-serif;
background: var(--green-mid);
color: var(--white);
overflow-x: hidden;
line-height: 1.6;
}

/* ── HEADER / NAV ── */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(13,43,26,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201,168,76,0.2);
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 60px;
    width: 100%;
    max-width: none;
}

.logo img {
    height: 140px;
    width: auto;
}

nav {
  display: flex;
  list-style: none;
  gap: 36px;
}

header nav a {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  transition: color 0.3s;
  margin-left: 0;
}

header nav a:hover {
  color: var(--gold);
}

header nav a.active,
header nav a[aria-current="page"] {
    color: var(--gold);
}

header nav a.active::after,
header nav a[aria-current="page"]::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background: var(--gold);
    margin-top: 6px;
}

/* ── HERO ── */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    overflow: hidden;
    padding: 120px 40px 80px;
    background:none;    
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;

    background:
        linear-gradient(
            90deg,
            rgba(7,17,14,.82) 0%,
            rgba(7,17,14,.62) 38%,
            rgba(7,17,14,.28) 65%,
            rgba(7,17,14,.10) 100%
        ),
        url("../assets/images/hero/arena-clean-v1.jpg");

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.hero-grid {
    display: none;
}

/*
.hero-grid div { background-size: cover; background-position: center; }
.hero-grid div:nth-child(1) { background: linear-gradient(135deg, #1a4a2e, #2d6a47); }
.hero-grid div:nth-child(2) { background: linear-gradient(135deg, #4a2c0a, #7a5020); }
.hero-grid div:nth-child(3) { background: linear-gradient(135deg, #1a4a2e, #0d2b1a); }
.hero-grid div:nth-child(4) { background: linear-gradient(135deg, #7a5020, #4a2c0a); }
.hero-grid div:nth-child(5) { background: linear-gradient(135deg, #2d6a47, #1a4a2e); }
.hero-grid div:nth-child(6) { background: linear-gradient(135deg, #0d2b1a, #1a4a2e); }
*/

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,.18) 0%,
            rgba(0,0,0,.05) 30%,
            rgba(0,0,0,.28) 100%
        );
}

.wood-texture {
    display: none;
}
/*
.wood-texture {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.04;
  background-image: repeating-linear-gradient(
    88deg, transparent 0px, transparent 18px, rgba(201,168,76,0.3) 18px, rgba(201,168,76,0.3) 19px
  );
}
*/
/*
.hero-content {
    position: relative;
    z-index: 5;
    max-width: 900px;
}
*/

.hero-content {
    position: relative;
    z-index: 5;

    width: min(720px, 100%);
    margin-right: auto;
    margin-left: 0;

    text-align: left;
}


.hero-badge {
    display: inline-block;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(201,168,76,0.4);
    padding: 8px 20px;
    margin-bottom: 36px;
    border-radius: 2px;
}

.hero-badge span {
  font-size: 10px;
  letter-spacing: 2.5px;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 600;
}

.hero-badge::before,
.hero-badge::after {
  content: '◆';
  font-size: 6px;
  color: var(--gold);
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 600;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.hero h1 em {
  color: var(--gold);
  font-style: italic;
}

.tagline {
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 28px;
}

.hero-content > p:not(.tagline) {
  font-size: 15.5px;
  line-height: 1.8;
  color: var(--text-light);
  max-width: 640px;
  margin: 0 auto 44px;
  font-weight: 300;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn,
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--green-dark);
  padding: 10px 30px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.3s;
  text-decoration: none;
}

.btn:hover,
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--white);
  padding: 16px 38px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.4);
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.3s;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn:focus-visible,
.btn-outline:focus-visible {
    outline: 3px solid var(--gold-light);
    outline-offset: 4px;
}

.credentials {
    background: linear-gradient(180deg,#0d2b1a,#0a1f11);
}

.credentials-inner{
    display:grid;
    grid-template-columns:320px 1fr;
    gap:60px;
    align-items:start;
}

.credentials-list {
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:24px;
    margin-top:48px;
}

.credentials-list div{
    padding:28px;
    border-top:2px solid rgba(201,168,76,.4);
    background:rgba(255,255,255,.04);
}

.credentials dt{
    font-size:11px;
    text-transform:uppercase;
    letter-spacing:2px;
    color:var(--gold);
    margin-bottom:8px;
}

.credentials dd{
    font-size:15px;
    color:white;
}

.hero-value-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: min(100%, 980px);
  margin: 48px auto 0;
}

.hero-value-card {
  min-height: 150px;
  padding: 22px 20px;
  border: 1px solid rgba(201,168,76,0.24);
  border-left: 2px solid rgba(201,168,76,0.55);
  background: rgba(13,43,26,0.56);
  text-align: left;
}

.hero-value-card h2 {
  font-size: 11px;
  letter-spacing: 1.7px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  font-weight: 700;
}

.hero-value-card p {
  font-size: 13px;
  line-height: 1.75;
  color: var(--text-light);
  font-weight: 300;
}

@media (max-width: 768px) {
  .hero-value-cards {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 36px;
  }

  .hero-value-card {
    min-height: auto;
    padding: 18px 18px;
  }
}  
/* ── SECTION COMMONS ── */
section {
  padding: 100px 60px;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.section-tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(201,168,76,0.3);
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 600;
  line-height: 1.18;
  margin-bottom: 20px;
}

.section-sub {
  font-size: 14.5px;
  line-height: 1.9;
  color: var(--text-light);
  max-width: 580px;
  font-weight: 300;
}

.gold-line {
  display: block;
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 20px 0;
}

/* ── TRUST BAND ── */
.trust-band {
  background: var(--green-mid);
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  padding: 28px 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
}

/* Sprint 3A.4 Trust Strip */
/*
.trust-strip{
    background:var(--green-mid);
    border-top:1px solid rgba(201,168,76,.15);
    border-bottom:1px solid rgba(201,168,76,.15);
    padding:30px 0;
}

.trust-strip svg{
    fill:none;
    stroke:var(--gold);
    stroke-width:1.8;
    stroke-linecap:round;
    stroke-linejoin:round;
}

.trust-strip-inner{
    display:grid;
    grid-template-columns:220px 1fr;
    gap:40px;
    align-items:center;
}

.trust-strip-label{
    color:#fff;
    font-size:15px;
    line-height:1.6;
}

.trust-strip-list{
    list-style:none;
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:22px;
    margin:0;
    padding:0;
}

.trust-strip-list li{
    display:flex;
    align-items:center;
    gap:12px;
}

.trust-strip-list svg{
    width:22px;
    height:22px;
    stroke:var(--gold);
    stroke-width:1.6;
    fill:none;
    flex-shrink:0;
}

.trust-strip-list span{
    font-size:11px;
    letter-spacing:1.4px;
    color:var(--gold);
    text-transform:uppercase;
    line-height:1.5;
}
*/
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-icon { font-size: 18px; }

.trust-text {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

/* ── INTRO ── */
.intro {
  background: linear-gradient(135deg, #0a1f11 0%, #0d2b1a 100%);
  text-align: center;
}

.intro h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 24px;
}

.intro p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto 20px;
  font-weight: 300;
}

/* ── OUR STORY ── DESKTOP */
.story {
  background: linear-gradient(135deg, #0a1f11 0%, #0d2b1a 100%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-block { position: relative; }

.about-img-main {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 3px;
  overflow: hidden;
  background: linear-gradient(145deg, #1a4a2e, #2d6a47);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-img-main picture,
.about-img-main img,
.about-img-overlay picture,
.about-img-overlay img {
  width: 100%;
  height: 100%;
  display: block;
}

.about-img-main img,
.about-img-overlay img {
  object-fit: cover;
}

.about-img-main img { object-position: center; }
.about-img-overlay img { object-position: center; }

.about-img-overlay {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 55%;
  aspect-ratio: 4/3;
  background: linear-gradient(145deg, var(--walnut), #7a5020);
  border-radius: 3px;
  border: 4px solid var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.img-placeholder {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  color: rgba(201,168,76,0.6);
  text-align: center;
  padding: 20px;
}

.story h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.18;
  margin-bottom: 20px;
}

.story p {
  font-size: 14.5px;
  line-height: 1.9;
  color: var(--text-light);
  max-width: 580px;
  font-weight: 300;
  margin-bottom: 16px;
}

/* ── MOBILE FIX ── */
@media (max-width: 768px) {

  /* Section ka padding kam kiya */
  section {
    padding: 60px 24px;
  }

  /* Story section: 2 column se 1 column */
  .story {
    grid-template-columns: 1fr;   /* dono columns ek ke neeche ek */
    gap: 80px;                    /* image aur text ke beech space —
                                     overlay ke liye jagah chahiye */
  }

  /* Image block ko thoda chhota kiya */
  .about-img-main {
    aspect-ratio: 3/2;            /* lambi image mobile par achhi nahi lagti */
  }

  /* Overlay image: position theek ki */
  .about-img-overlay {
    bottom: -32px;                /* thoda aur neeche */
    right: 16px;                  /* right edge se andar */
    width: 48%;                   /* thodi chhoti */
    border: 3px solid var(--green-dark);
  }

  /* Heading font thodi chhoti */
  .story h2 {
    font-size: 28px;
  }

  /* Paragraph font readable size */
  .story p {
    font-size: 14px;
    line-height: 1.8;
  }

}



.pillars {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 36px;
}

.pillar {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  border-left: 2px solid rgba(201,168,76,0.3);
  background: rgba(45,106,71,0.1);
}

.pillar-icon { font-size: 22px; margin-top: 2px; }

.pillar h4 {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
  font-weight: 600;
}

.pillar p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.7;
  font-weight: 300;
  max-width: none;
  margin-bottom: 0;
}

/* ── WHAT WE DO / SERVICES ── DESKTOP */
.services {
  background: var(--green-dark);
  text-align: center;
}

.services h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 14px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Teen columns side by side */
  gap: 24px;
  margin-top: 60px;
  justify-content: center;
}

.service-card {
  padding: 44px 36px;
  border: 1px solid rgba(201,168,76,0.15);
  background: rgba(26,74,46,0.25);
  border-radius: 3px;
  text-align: left;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
  flex: unset;
  box-shadow: none;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

.service-card:hover {
  background: rgba(45,106,71,0.3);
  transform: translateY(-4px);
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  font-size: 36px;
  margin-bottom: 20px;
  display: block;
}

.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 14px;
}

.service-card p {
  font-size: 13.5px;
  color: var(--text-light);
  line-height: 1.8;
  font-weight: 300;
}

/* ── MOBILE FIX ── */
@media (max-width: 768px) {

  /* Section ka padding kam kiya —
     100px zyada tha, mobile par 60px kaafi hai */
  .services {
    padding: 60px 20px;
  }

  /* Heading ki size thodi kam ki —
     clamp() mobile par bhi badi ho sakti thi */
  .services h2 {
    font-size: 28px;
    max-width: 100%; /* Puri width use karo mobile par */
  }

  /* Section-sub text ko left align kiya —
     Mobile par centered text padhna mushkil lagta hai */
  .services .section-sub {
    text-align: left;
    margin: 16px 0 0 0; /* Auto margin hataya, left se shuru */
  }

  /* Teen columns se ek column —
     Mobile par teen cards side by side nahi aate,
     isliye ek ke neeche ek kiya */
  .service-grid {
    grid-template-columns: 1fr;
    gap: 16px;          /* Gap bhi kam kiya — space bachane ke liye */
    margin-top: 36px;   /* Upar ka margin bhi kam kiya */
  }

  /* Card ka padding kam kiya —
     44px bahut zyada tha chhoti screen par */
  .service-card {
    padding: 28px 24px;
    text-align: left; /* Text left hi rahe */
  }

  /* Icon thoda chhota kiya */
  .service-icon {
    font-size: 28px;
    margin-bottom: 14px;
  }

  /* Card heading chhoti ki */
  .service-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
  }

  /* Paragraph font readable rakhi */
  .service-card p {
    font-size: 13px;
    line-height: 1.7;
  }

  /* Hover effect mobile par band kiya —
     Mobile mein hover nahi hota, touch hota hai.
     translateY se card upar uthta tha jo mobile par
     achha nahi lagta */
  .service-card:hover {
    transform: none;
    background: rgba(26,74,46,0.25);
  }

}

/* ── Contact page: 4 cards → 4 columns (desktop) ── */
.services--contact .service-grid {
  grid-template-columns: repeat(4, 1fr);
}

/* ══════════════════════════════════════
   768px — Tablet: 4 → 2 columns
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  .services--contact .service-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 36px;
  }
}

/* ══════════════════════════════════════
   480px — Mobile: 2 → 1 column
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  .services--contact .service-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* ── SPECIES ── */
.species {
  background: linear-gradient(160deg, #0d2b1a, #0a1f11);
}

.species h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}

.species-title-accent {
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
}

.species-sub {
  margin-top: 12px;
}

.species-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 50px;
}

.species-card {
  aspect-ratio: 3/4;
  border-radius: 3px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.4s;
}

.species-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.35);
}

.species-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
}

.pine .species-bg {
    background: linear-gradient(
        160deg,
        #d8b36b,
        #b67a2f
    );
}

.white-ash .species-bg {
    background: linear-gradient(
        160deg,
        #efe4d1,
        #cab49a
    );
}

.steam-beech .species-bg {
    background: linear-gradient(
        160deg,
        #e6cfba,
        #c59d7f
    );
}

.white-oak .species-bg {
    background: linear-gradient(160deg, #d8c4a8, #b69474);
}

.european-oak .species-bg {
    background: linear-gradient(160deg, #c8ae8b, #9d7854);
}

.teak .species-bg {
    background: linear-gradient(160deg, #b8793d, #7a4b1c);
}

.cumaru .species-bg {
    background: linear-gradient(160deg, #8b5a2b, #5e3a18);
}

.sapele .species-bg {
    background: linear-gradient(160deg, #9b5b3a, #6a3d28);
}

.maple .species-bg {
    background: linear-gradient(160deg, #f0dec4, #d2b48c);
}

.walnut .species-bg {
    background: linear-gradient(160deg, #6b4a34, #3f291d);
}

.syp .species-bg {
    background: linear-gradient(160deg, #d2a55a, #a9742a);
}

.cherry .species-bg {
    background: linear-gradient(160deg, #f4c2b0, #d98a6a);
}

.species-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(13,43,26,0.95) 0%, transparent 100%);
  padding: 30px 20px 20px;
}

.species-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
}

.species-origin {
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 4px;
}

.wood-grain {
    position: absolute;
    inset: 0;
    opacity: 0.18;

    background:
        repeating-linear-gradient(
            85deg,
            transparent 0px,
            transparent 8px,
            rgba(0,0,0,0.08) 9px,
            rgba(255,255,255,0.05) 10px,
            transparent 11px
        ),

        repeating-linear-gradient(
            92deg,
            transparent 0px,
            transparent 22px,
            rgba(0,0,0,0.05) 23px,
            transparent 24px
        );
}

/* ── SOURCING / MAP ── */
.sourcing {
  background: var(--green-dark);
}

.sourcing h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 14px;
}

.sourcing p {
  font-size: 14.5px;
  line-height: 1.9;
  color: var(--text-light);
  font-weight: 300;
  margin-bottom: 20px;
}

.country-grid {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-start;
}

.country-grid div {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 2px;
  font-size: 10px;
  letter-spacing: 1.5px;
  color: var(--gold-pale);
  text-transform: uppercase;
  font-weight: 500;
  background: transparent;
}

.country-grid div::before {
  content: '●';
  font-size: 6px;
  color: var(--gold);
}

/* ── MANUFACTURING ── DESKTOP */
.manufacturing {
  background: linear-gradient(135deg, var(--walnut) 0%, #2a1505 100%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.manufacturing h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.18;
  margin-bottom: 20px;
  text-align: left;
}

.manufacturing p {
  font-size: 14.5px;
  line-height: 1.9;
  color: var(--text-light);
  font-weight: 300;
  max-width: 560px;
  margin-bottom: 16px;
  text-align: left;
}

.mfg-visual {
  aspect-ratio: 4/3;
  background: rgba(0,0,0,0.2);
  border-radius: 3px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mfg-photo {
  margin: 0;
  display: block;
}

.mfg-photo picture,
.mfg-photo img {
  display: block;
  width: 100%;
  height: 100%;
}

.mfg-photo img {
  object-fit: cover;
}

.mfg-photo figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 28px 22px 18px;
  background: linear-gradient(transparent, rgba(6, 15, 8, 0.88));
  color: rgba(255,255,255,0.9);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.mfg-visual--details{
    background: linear-gradient(
        135deg,
        rgba(255,255,255,.05),
        rgba(255,255,255,.02)
    );

    border:1px solid rgba(201,168,76,.18);

    padding:42px;

    display:flex;
    align-items:center;
    justify-content:center;
}

.mfg-visual-inner { text-align: center; width:100%;}
.mfg-visual-inner .big-icon { font-size: 64px; opacity: 0.4; }

/* Mfg features — 2x2 grid desktop par */
.mfg-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
}

.mfg-feat {
  padding: 18px 16px;
  background: rgba(255,255,255,0.06);
  border-top: 2px solid rgba(201,168,76,0.4);
  border-radius: 2px;
}

.mfg-feat h3 {
  font-size: 10px;
  letter-spacing: 1.5px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 6px;
  font-weight: 600;
}

.mfg-feat p {
  font-size: 12.5px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  font-weight: 300;
  max-width: none;
  text-align: left;
}

/* ── MOBILE FIX ── */
@media (max-width: 768px) {

  /* Do column se ek column —
     Text pehle, visual baad mein */
  .manufacturing {
    grid-template-columns: 1fr;
    gap: 40px;              /* Gap kam kiya — do sections ke beech */
    padding: 60px 20px;     /* Section padding kam ki */
  }

  /* Visual ko text ke baad dikhana hai —
     HTML mein visual doosre number par hai,
     isliye order: 2 diya — natural order sahi hai */
  .mfg-visual {
    order: 2;               /* Visual neeche rahega */
    aspect-ratio: 16/9;     /* Mobile par lambi height avoid ki —
                               4/3 se 16/9 kiya, thoda납작 */
  }

  /* Text wala div pehle dikhega */
  .manufacturing > div:first-child {
    order: 1;               /* Text upar rahega */
  }

  /* Heading font mobile par chhoti */
  .manufacturing h2 {
    font-size: 28px;
  }

  /* Paragraph max-width hataya —
     Mobile par full width use hogi */
  .manufacturing p {
    max-width: 100%;
    font-size: 14px;
  }

  /* Features grid — 2 column se 1 column —
     Mobile par 2 column cramped lagta hai */
  .mfg-features {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 28px;
  }

  /* Feature card ka padding thoda kam kiya */
  .mfg-feat {
    padding: 16px 14px;
  }

  /* Feature heading letter-spacing thodi kam ki —
     Chhoti screen par zyada spacing crowded lagti hai */
  .mfg-feat h3 {
    letter-spacing: 1px;
    font-size: 10px;
  }

  /* Visual ke andar icon chhota kiya */
  .mfg-visual-inner .big-icon {
    font-size: 44px;
  }

  /* Visual ke andar heading chhoti ki */
  .mfg-visual-inner h3 {
    font-size: 22px !important; /* inline style override karne ke liye */
    margin-top: 12px !important;
  }

}

.location-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 12px 20px;
  border-radius: 2px;
  margin-bottom: 28px;
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
}


/* ── FOOTER ── */
footer {
  background: #060f08;
  border-top: 1px solid rgba(201,168,76,0.2);
  padding: 60px 60px 36px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  font-weight: 300;
}

.footer-col h2 {
  font-size: 10px;
  letter-spacing: 2.5px;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-logo {
  height: 100px;
  margin-bottom: 20px;
}

.footer-col ul { list-style: none; }

.footer-col ul li { margin-bottom: 10px; }

.footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col ul li a:hover { color: var(--gold); }

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
}

.card-index{
    display:block;
    color:var(--gold);
    font-size:12px;
    letter-spacing:2px;
    margin-bottom:18px;
}

.contact-icon { font-size: 14px; margin-top: 2px; flex-shrink: 0; }

.contact-text {
  font-size: 12.5px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.5px;
}

.footer-tagline {
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  footer {
    padding: 40px 20px 28px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 32px;
  }

  .footer-brand {
    text-align: center;
  }

  .footer-logo {
    height: 75px;
    margin-bottom: 14px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 6px;
  }
}

@media (max-width: 480px) {
  footer {
    padding: 28px 16px 20px;
  }

  .footer-top {
    gap: 24px;
  }

  .footer-logo {
    height: 60px;
  }
}


.why-grid {
    display: grid;
    gap: 40px;
}

.why-grid--four{
    grid-template-columns:repeat(4,1fr);
}

@media(max-width:900px){
    .why-grid--four{
        grid-template-columns:1fr 1fr;
    }
}

@media(max-width:640px){
    .why-grid--four{
        grid-template-columns:1fr;
    }
}

.manufacturing-grid {
    grid-template-columns: 1fr;
}

.manufacturing-content{
    max-width:760px;
}

/* ── WHY CHOOSE US — DESKTOP ── */

.why-us {
    background: linear-gradient(160deg, #0a1f11, #0d2b1a);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.why-card {
    padding: 44px 24px;
    text-align: left;
    background: rgba(26,74,46,0.25);
    border: 1px solid rgba(201,168,76,0.15);
    border-top: 2px solid rgba(201,168,76,0.42);
    border-radius: 3px;
}

.why-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
}

.why-card p {
    font-size: 13.5px;
    line-height: 1.8;
    color: var(--text-light);
    font-weight: 300;
}
/* ── MOBILE FIX ── */
@media (max-width: 768px) {

  .why-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 36px;
  }

  .why-card {
    padding: 28px 16px;
  }

  .why-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .why-card p {
    font-size: 12px;
    line-height: 1.6;
  }

}

@media (max-width: 768px) {

    header .container {
        padding: 10px 20px;
    }

    .logo img {
        height: 60px;
    }

    nav {
        gap: 12px;
    }

    header nav a {
        font-size: 10px;
        letter-spacing: 1px;
    }
}

/* ===================================================
   Sports Flooring Highlight
=================================================== */

.sports-flooring {
    padding: 100px 0;
    background:
        linear-gradient(135deg, rgba(13,43,26,0.98), rgba(26,74,46,0.95)),
        var(--green-dark);
    text-align: left;
}

.sports-flooring-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 56px;
    align-items: center;
}

.sports-flooring-content {
    max-width: 560px;
}

.section-badge {
    display: inline-block;
    padding: 8px 18px;
    margin-bottom: 18px;
    background: #d4af37;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
}

.sports-flooring h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(38px, 4vw, 58px);
    line-height: 1.08;
    color: var(--white);
    margin-bottom: 20px;
}

.sports-flooring .section-intro {
    max-width: 540px;
    margin: 0 0 32px;
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.05rem;
    font-weight: 300;
}

.sports-image {
    position: relative;
}

.sports-image img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    display: block;
    border: 1px solid rgba(201,168,76,0.35);
    border-radius: 4px;
    box-shadow: 0 24px 60px rgba(0,0,0,.28);
}

.sports-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 0 0 34px;
}

.feature-item {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(201,168,76,0.22);
    color: var(--text-light);
    padding: 12px 16px;
    border-radius: 2px;
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.sports-flooring .btn {
    margin-top: 0;
}

@media (max-width:768px) {

    .sports-flooring {
        padding: 60px 20px;
    }

    .sports-flooring-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .sports-flooring h2 {
        font-size: 2rem;
    }

    .sports-flooring .section-intro {
        font-size: 1rem;
    }

    .sports-features {
        flex-direction: column;
    }

    .feature-item {
        width: 100%;
    }

}

.contact-cta {
    background: linear-gradient(135deg, #0a1f11 0%, #0d2b1a 100%);
    text-align: center;
}

.contact-cta p {
    max-width: 680px;
    margin: 0 auto 34px;
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.8;
    font-weight: 300;
}

.trust-indicators {
    background: linear-gradient(160deg, #0d2b1a, #0a1f11);
}

.trust-indicators .section-sub {
    max-width: 720px;
}

.trust-card-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 44px;
}

.trust-card {
    min-height: 210px;
    padding: 30px 24px;
    background: rgba(13,43,26,0.52);
    border: 1px solid rgba(201,168,76,0.18);
    border-top: 2px solid rgba(201,168,76,0.42);
    border-radius: 3px;
    box-shadow: 0 18px 42px rgba(0,0,0,0.14);
}

.trust-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    line-height: 1.18;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
}

.trust-card p {
    font-size: 13.5px;
    line-height: 1.75;
    color: var(--text-light);
    font-weight: 300;
}

.mfg-kicker{
    display:block;
    color:var(--gold);
    font-size:10px;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:18px;
}

.mfg-visual--details{
    padding:48px;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(201,168,76,.18);
}

.mfg-visual--details h3{
    font-family:'Cormorant Garamond',serif;
    font-size:34px;
    margin-bottom:20px;
}

.mfg-visual--details p{
    line-height:2;
    color:var(--text-light);
}
/* ===================================================
   Phase 2B.5 - Homepage Visual Polish
=================================================== */

.btn,
.btn-primary,
.btn-outline {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 30px;
    font-size: 11px;
    line-height: 1.2;
    letter-spacing: 1.6px;
    text-decoration: none;
    transition: none;
}

.btn:hover,
.btn-primary:hover {
    transform: none;
}

.hero {
    padding: 150px 40px 96px;
}

.hero-content {
    width: min(100%, 1040px);
}

.hero h1 {
    font-size: clamp(46px, 5.2vw, 74px);
    margin-bottom: 22px;
}

.hero-content > p:not(.tagline) {
    max-width: 700px;
    margin-bottom: 38px;
}

.hero-buttons {
    gap: 14px;
}

.hero-value-cards,
.why-grid,
.mfg-features {
    gap: 18px;
}

.hero-value-card,
.why-card,
.mfg-feat {
    background: rgba(13,43,26,0.52);
    border: 1px solid rgba(201,168,76,0.18);
    border-top: 2px solid rgba(201,168,76,0.42);
    box-shadow: 0 18px 42px rgba(0,0,0,0.14);
}

.hero-value-card {
    min-height: 142px;
    padding: 24px 22px;
    border-left: 1px solid rgba(201,168,76,0.18);
}

.why-us,
.species,
.sourcing,
.manufacturing,
.trust-indicators,
.contact-cta {
    padding-top: 112px;
    padding-bottom: 112px;
}

.section-title,
.species h2,
.sourcing h2,
.manufacturing h2,
.sports-flooring h2,
.trust-indicators h2 {
    letter-spacing: 0;
}

.section-sub,
.sourcing p,
.manufacturing p,
.sports-flooring .section-intro,
.trust-indicators .section-sub,
.contact-cta p {
    max-width: 680px;
}

.why-card {
    min-height: 220px;
    padding: 34px 28px;
}

.why-card h3,
.hero-value-card h2,
.mfg-feat h3 {
    letter-spacing: 1.4px;
}

.sports-flooring {
    padding-top: 118px;
    padding-bottom: 118px;
}

.sports-image img {
    border-radius: 3px;
    box-shadow: 0 28px 70px rgba(0,0,0,0.32);
}

.sports-features {
    gap: 10px;
}

.feature-item,
.country-grid div {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
}

.species-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 44px;
}

.species-card {
    aspect-ratio: 4 / 5;
    cursor: default;
    transition: none;
    border: 1px solid rgba(201,168,76,0.18);
    box-shadow: 0 22px 50px rgba(0,0,0,0.18);
}

.species-photo,
.species-photo img {
  display: block;
  width: 100%;
  height: 100%;
}

.species-photo {
  position: absolute;
  inset: 0;
}

.species-photo img {
  object-fit: cover;
  object-position: center;
}

label {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.25px;
  text-transform: uppercase;
}

input:focus-visible,
textarea:focus-visible,
button:focus-visible,
header nav a:focus-visible,
.logo:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 4px;
}

.species-card:hover {
    transform: none;
    box-shadow: 0 22px 50px rgba(0,0,0,0.18);
}

.species-name {
    font-size: 26px;
    line-height: 1.08;
}

.sourcing .container,
.contact-cta .container {
    max-width: 980px;
}

.country-grid {
    gap: 10px;
    margin-top: 30px;
}



.mfg-visual {
    border: 1px solid rgba(201,168,76,0.18);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
}

.contact-cta {
    padding-top: 124px;
    padding-bottom: 124px;
    border-top: 1px solid rgba(201,168,76,0.14);
}

@media (max-width: 900px) {
    .hero {
        padding: 124px 24px 72px;
    }

    .hero h1 {
        font-size: clamp(40px, 11vw, 58px);
    }

    .hero-value-cards,
    .why-grid,
    .trust-card-grid,
    .species-grid,
    .manufacturing-grid,
    .sports-flooring-grid {
        grid-template-columns: 1fr;
    }

    .why-us,
    .species,
    .sourcing,
    .manufacturing,
    .trust-indicators,
    .sports-flooring,
    .contact-cta {
        padding-top: 72px;
        padding-bottom: 72px;
    }

    .hero-value-card,
    .why-card,
    .trust-card {
        min-height: auto;
    }

    .species-grid {
        gap: 16px;
    }

    .species-card {
        aspect-ratio: 16 / 10;
    }
}

@media (max-width: 520px) {
    header .container {
        padding-right: 16px;
        padding-left: 16px;
    }

    .logo img {
        height: 52px;
    }

    nav {
        gap: 8px;
    }

    header nav a {
        font-size: 8px;
        letter-spacing: 0.45px;
    }
    .btn,
    .btn-primary,
    .btn-outline {
        width: 100%;
        padding: 13px 18px;
    }

    .hero-buttons {
        width: 100%;
    }

    .tagline {
        letter-spacing: 2px;
    }

    .hero-value-card,
    .why-card,
    .trust-card,
    .mfg-feat {
        padding: 20px 18px;
    }

    .section-title,
    .species h2,
    .sourcing h2,
    .manufacturing h2,
    .sports-flooring h2,
    .trust-indicators h2 {
        font-size: 32px;
    }
}

/* ===================================================
   Sprint 3A.3 — Homepage navigation & hero polish
=================================================== */

.home-page header {
    background: linear-gradient(180deg, rgba(7, 17, 14, 0.42), rgba(7, 17, 14, 0));
    border-color: transparent;
    backdrop-filter: blur(0);
    -webkit-backdrop-filter: blur(0);
    box-shadow: none;
    transition: background-color 480ms ease, backdrop-filter 480ms ease,
        border-color 480ms ease, box-shadow 480ms ease;
}

.home-page header.is-scrolled {
    background: rgba(8, 24, 16, 0.78);
    border-bottom-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(18px) saturate(135%);
    -webkit-backdrop-filter: blur(18px) saturate(135%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
}

.home-page header .container {
    min-height: 104px;
    padding: 10px clamp(28px, 5vw, 80px);
    transition: min-height 480ms ease, padding 480ms ease;
}

.home-page header.is-scrolled .container {
    min-height: 78px;
    padding-top: 7px;
    padding-bottom: 7px;
}

.home-page .logo {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}

.home-page .logo img {
    height: 78px;
    transition: height 480ms ease, transform 240ms ease;
}

.home-page header.is-scrolled .logo img {
    height: 62px;
}

.home-page .logo a:focus-visible,
.home-page header nav a:focus-visible,
.home-page .btn:focus-visible,
.home-page .btn-outline:focus-visible {
    outline: 2px solid var(--gold-pale);
    outline-offset: 5px;
}

.home-page nav {
    align-items: center;
    gap: clamp(18px, 2.3vw, 36px);
}

.home-page header nav a {
    position: relative;
    padding: 12px 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    line-height: 1;
    transition: color 220ms ease;
}

.home-page header nav a::after {
    position: absolute;
    right: 0;
    bottom: 5px;
    left: 0;
    width: auto;
    height: 1px;
    margin: 0;
    background: currentColor;
    content: '';
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 260ms ease;
}

.home-page header nav a:hover,
.home-page header nav a:focus-visible,
.home-page header nav a[aria-current="page"] {
    color: var(--gold-light);
}

.home-page header nav a:hover::after,
.home-page header nav a:focus-visible::after,
.home-page header nav a[aria-current="page"]::after {
    transform: scaleX(1);
    transform-origin: left;
}

.home-page .hero {
    min-height: max(760px, 100svh);
    padding: 168px clamp(32px, 9vw, 150px) 104px;
}

.home-page .hero-bg {
    background-position: 61% center;
}

.home-page .hero-content {
    width: min(40vw, 660px);
    animation: hero-enter 760ms 110ms both cubic-bezier(0.22, 1, 0.36, 1);
}

.home-page .hero-eyebrow {
    margin-bottom: 24px;
    font-size: 10px;
    letter-spacing: 2.6px;
}

.home-page .hero h1 {
    max-width: 650px;
    font-size: clamp(50px, 5vw, 78px);
    line-height: 1.01;
    letter-spacing: -0.8px;
    margin-bottom: 27px;
}

.home-page .hero h1 em {
    font-weight: 500;
    letter-spacing: -1.1px;
}

.home-page .hero-content > .hero-intro {
    max-width: 535px;
    margin-bottom: 38px;
    font-size: 16px;
    line-height: 1.85;
}

.home-page .hero-buttons {
    gap: 14px;
}

.home-page .hero .btn,
.home-page .hero .btn-outline {
    min-height: 52px;
    padding: 15px 26px;
    border-radius: 1px;
    font-size: 10px;
    letter-spacing: 1.55px;
    transition: transform 220ms ease, box-shadow 220ms ease, background-color 220ms ease,
        border-color 220ms ease, color 220ms ease;
}

.home-page .hero .btn:hover {
    background: var(--gold-light);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
    transform: translateY(-2px);
}

.home-page .hero .btn-outline:hover {
    border-color: var(--gold-light);
    background: rgba(201, 168, 76, 0.1);
    color: var(--gold-pale);
    transform: translateY(-2px);
}

.home-page .hero-assurances {
    gap: 12px 22px;
    margin-top: 48px;
    padding-top: 19px;
}

@keyframes hero-enter {
    from { opacity: 0; transform: translateY(14px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
    .home-page .hero {
        min-height: 720px;
        padding: 148px 8vw 80px;
    }

    .home-page .hero-content {
        width: min(66vw, 600px);
        min-width: 0;
    }

    .home-page .hero-bg {
        background-position: 58% center;
    }
}

@media (max-width: 768px) {
    .home-page header .container,
    .home-page header.is-scrolled .container {
        min-height: 76px;
        padding: 8px 20px;
    }

    .home-page .logo img,
    .home-page header.is-scrolled .logo img {
        height: 56px;
    }

    .home-page nav {
        gap: clamp(9px, 2vw, 15px);
    }

    .home-page header nav a {
        font-size: 8.5px;
        letter-spacing: 0.7px;
    }

    .home-page .hero {
        min-height: 700px;
        padding: 132px 24px 62px;
    }

    .home-page .hero-content {
        width: min(100%, 560px);
    }

    .home-page .hero-bg {
        background-position: 57% center;
    }
}

@media (max-width: 520px) {
    .home-page .hero {
        min-height: 680px;
        padding: 122px 20px 52px;
    }

    .home-page .hero h1 {
        font-size: clamp(42px, 11vw, 56px);
        line-height: 1.04;
        letter-spacing: -0.5px;
    }

    .home-page .hero-content > .hero-intro {
        margin-bottom: 30px;
        font-size: 14.5px;
        line-height: 1.78;
    }

    .home-page .hero .btn,
    .home-page .hero .btn-outline {
        min-height: 50px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-page *,
    .home-page *::before,
    .home-page *::after {
        scroll-behavior: auto;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===================================================
   Sprint 3A.2 — Homepage hero and navigation refinement
=================================================== */

header .container {
    padding-top: 12px;
    padding-bottom: 12px;
}

.logo img {
    height: 92px;
}

nav {
    gap: 28px;
}

header nav a {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.35px;
}

.hero {
    min-height: 760px;
    padding-top: 178px;
    padding-bottom: 72px;
}

.hero-content {
    width: min(680px, 100%);
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: var(--gold);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.2px;
    text-transform: uppercase;
}

.hero-eyebrow::before {
    width: 28px;
    height: 1px;
    background: currentColor;
    content: '';
}

.hero h1 {
    max-width: 650px;
    font-size: clamp(46px, 5vw, 72px);
    line-height: 1.04;
    margin-bottom: 22px;
    text-wrap: balance;
}

.hero h1 em {
    color: var(--gold-light);
}

.hero-content > .hero-intro {
    max-width: 570px;
    margin: 0 0 32px;
    color: rgba(255,255,255,0.86);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
}

.hero-buttons {
    justify-content: flex-start;
}

.hero-assurances {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    margin-top: 44px;
    padding: 18px 0 0;
    border-top: 1px solid rgba(255,255,255,0.2);
    list-style: none;
}

.hero-assurances li {
    color: rgba(255,255,255,0.82);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.15px;
    text-transform: uppercase;
}

.hero-assurances li::before {
    margin-right: 8px;
    color: var(--gold);
    content: '◆';
    font-size: 7px;
}

@media (max-width: 900px) {
    .hero {
        min-height: 700px;
        padding-top: 150px;
    }
}

@media (max-width: 768px) {
    .logo img {
        height: 62px;
    }

    nav {
        gap: 12px;
    }

    header nav a {
        font-size: 9px;
        letter-spacing: 0.75px;
    }

    .hero {
        min-height: 680px;
        padding: 132px 24px 56px;
        background-position: 58% center;
    }

    .hero-bg {
        background-position: 59% center;
    }

    .hero h1 {
        font-size: clamp(42px, 11.5vw, 58px);
    }

    .hero-content > .hero-intro {
        max-width: 480px;
        font-size: 15px;
    }
}

@media (max-width: 520px) {
    .hero-assurances {
        display: grid;
        gap: 11px;
        margin-top: 32px;
    }

    .hero-eyebrow {
        margin-bottom: 16px;
        font-size: 9px;
        letter-spacing: 1.8px;
    }
}
