.intro {
  padding: clamp(5rem, 10vw, 9rem) clamp(1.5rem, 6vw, 7rem);
  background: var(--ivory);
}

.home-entry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 54vh;
  background: var(--ink);
}

.home-tile {
  position: relative;
  display: grid;
  min-height: 54vh;
  place-items: end start;
  overflow: hidden;
  color: var(--ivory);
}

.home-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.64));
}

.home-tile img {
  position: absolute;
  inset: 0;
  filter: brightness(0.78) saturate(0.9);
  transition: transform 1s ease, filter 0.5s ease;
}

.home-tile:hover img {
  transform: scale(1.06);
  filter: brightness(0.62) saturate(0.95);
}

.home-tile span {
  position: relative;
  z-index: 2;
  padding: 2rem;
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 3.2vw, 4rem);
  font-weight: 300;
  line-height: 1;
}

.home-store-location {
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(420px, 1.08fr);
  gap: clamp(3rem, 6vw, 7rem);
  align-items: center;
  padding: clamp(5rem, 8vw, 7rem) clamp(1.4rem, 5vw, 5rem);
  color: var(--ivory);
  background: var(--ink);
  overflow: hidden;
}

.home-map-card {
  display: grid;
  place-items: center;
}

.home-map-circle {
  position: relative;
  width: min(100%, 560px);
  aspect-ratio: 1;
  padding: clamp(2rem, 3.4vw, 3rem);
  border: 15px solid #ecbe82;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 42%, rgba(236, 190, 130, 0.14), transparent 42%),
    var(--ink);
  overflow: hidden;
}

.home-map-layer {
  position: relative;
  width: 100%;
  height: 100%;
}

.home-map-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  filter: brightness(0.96) contrast(1.08);
  mix-blend-mode: screen;
  opacity: 0.3;
}

.state-marker {
  position: absolute;
  left: var(--x);
  top: var(--y);
  z-index: 2;
  width: 14px;
  height: 14px;
  background: var(--accent);
  border: 3px solid var(--ivory);
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(236, 190, 130, 0.16);
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.state-marker::before {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 1px solid rgba(236, 190, 130, 0.34);
  animation: markerPulse 2.3s ease-out infinite;
}

.state-marker::after {
  content: attr(data-state);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 14px);
  min-width: max-content;
  padding: 0.45rem 0.72rem;
  color: var(--ink);
  background: var(--accent);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.state-marker:hover,
.state-marker:focus {
  background: var(--ivory);
  box-shadow: 0 0 0 10px rgba(236, 190, 130, 0.22), 0 0 28px rgba(236, 190, 130, 0.72);
  outline: none;
  transform: translate(-50%, -50%) scale(1.3);
}

.state-marker:hover::after,
.state-marker:focus::after {
  opacity: 1;
  transform: translate(-50%, 0);
}

@keyframes markerPulse {
  0% {
    opacity: 0.7;
    transform: scale(0.55);
  }

  80%,
  100% {
    opacity: 0;
    transform: scale(1.65);
  }
}

.home-store-copy {
  max-width: 760px;
}

.home-store-copy h2 {
  font-family: 'Syne', sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.home-store-copy h2 span {
  color: var(--accent);
}

.home-store-copy p {
  max-width: 720px;
  margin-top: 1.6rem;
  color: rgba(247, 243, 235, 0.72);
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.7;
}

.home-state-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  max-width: 720px;
  margin-top: 1.55rem;
}

.home-state-list li {
  padding: 0.58rem 0.9rem;
  color: rgba(247, 243, 235, 0.9);
  background: rgba(236, 190, 130, 0.1);
  border: 1px solid rgba(236, 190, 130, 0.28);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
}

.home-store-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: min(100%, 340px);
  margin-top: clamp(2rem, 3vw, 2.6rem);
  padding: 1.2rem 2rem;
  color: var(--ivory);
  background: var(--accent);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  transition: color 0.3s ease, background 0.3s ease, outline 0.3s ease;
}

.home-store-btn:hover {
  color: var(--accent);
  background: transparent;
  outline: 1px solid var(--accent);
}

.home-testimonials {
  padding: clamp(5rem, 8vw, 7rem) clamp(1.1rem, 5vw, 5rem);
  color: var(--ivory);
  background: var(--ink);
  overflow: hidden;
}

.home-testimonials-head {
  display: grid;
  justify-items: center;
  margin-bottom: clamp(3rem, 5vw, 4.8rem);
  text-align: center;
}

.home-testimonials-head h2 {
  font-family: 'Syne', sans-serif;
  font-size: 54.4px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.035em;
}

.home-testimonials-head span {
  display: block;
  width: min(280px, 48vw);
  height: 48px;
  margin-top: 1rem;
  border-top: 4px solid var(--accent);
  border-radius: 50% 50% 0 0;
  transform: rotate(-7deg);
  opacity: 0.88;
}

.home-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.2rem, 2vw, 1.8rem);
}

.home-testimonial-card {
  position: relative;
  min-height: 380px;
  padding: clamp(3.5rem, 5vw, 5.6rem) clamp(1.8rem, 3vw, 3rem) clamp(2rem, 3vw, 3rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #0f141d;
  border-left: 2px solid var(--accent);
}

.home-testimonial-quote {
  color: var(--accent);
  font-family: Georgia, serif;
  font-size: clamp(4rem, 6vw, 6.8rem);
  line-height: 0.6;
  margin-bottom: clamp(1rem, 2vw, 1.6rem);
}

.home-testimonial-card h3 {
  font-family: 'Syne', sans-serif;
  color: var(--ivory);
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.6rem;
}

.home-testimonial-card p {
  max-width: 430px;
  color: rgba(247, 243, 235, 0.78);
  font-size: clamp(0.98rem, 1.15vw, 1.16rem);
  line-height: 1.55;
}

.home-testimonial-author {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: auto;
  padding-top: 2.2rem;
  color: var(--accent);
}

.home-testimonial-author span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #050505;
  background: var(--ivory);
  font-family: 'Syne', sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
}

.home-testimonial-author strong {
  color: var(--accent);
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 500;
}

.page-hero {
  position: relative;
  display: grid;
  min-height: 92vh;
  place-items: center;
  overflow: hidden;
  color: var(--ivory);
  background: var(--ink);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  /* background:
    radial-gradient(circle at 50% 40%, rgba(236, 190, 130, 0.16), rgba(0, 0, 0, 0.62) 72%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.72)); */
}

.page-hero>img {
  position: absolute;
  inset: 0;
  filter: brightness(0.66) saturate(0.88);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1120px;
  padding: clamp(6rem, 12vw, 10rem) clamp(1.5rem, 6vw, 7rem) clamp(4rem, 8vw, 7rem);
  text-align: center;
}

.page-hero-content span {
  display: block;
  margin-bottom: 1.2rem;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(247, 243, 235, 0.7);
}

.page-hero-content h1 {
  max-width: 980px;
  margin: 0 auto;
  font-family: 'Syne', sans-serif;
  font-size: 65px;
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: 0.01em;
}

.who-hero-content {
  max-width: 1180px;
  text-align: center;
}

.who-hero-content h1 {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.who-hero-content p {
  max-width: 1040px;
  margin: 1.8rem auto 0;
  color: rgba(247, 243, 235, 0.76);
  font-size: clamp(1rem, 1.35vw, 1.22rem);
  line-height: 1.55;
}

.editorial-page {
  padding: clamp(5rem, 10vw, 9rem) clamp(1.5rem, 6vw, 7rem);
  background: var(--ivory);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(3rem, 7vw, 8rem);
  align-items: start;
}

.intro h2,
.split-copy h2,
.journal-head h2,
.join h2,
.contact-copy h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.7rem, 5.6vw, 6.8rem);
  font-weight: 300;
  line-height: 0.96;
}

.intro-copy {
  display: grid;
  gap: 1.4rem;
  max-width: 560px;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.85;
}

.story-accordion {
  width: 100%;
}

.story-item {
  border-bottom: 1px solid rgba(0, 0, 0, .12);
}

.story-item input {
  display: none;
}

/* Heading */

.story-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 22px 0;
  font-size: 1.05rem;
  font-weight: 500;
  color: #222;
}

/* Plus Icon */

.icon {
  width: 20px;
  height: 20px;
  position: relative;
  flex-shrink: 0;
}

.icon::before,
.icon::after {
  content: "";
  position: absolute;
  background: #222;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: .35s ease;
}

.icon::before {
  width: 18px;
  height: 2px;
}

.icon::after {
  width: 2px;
  height: 18px;
}

/* Minus */

.story-item input:checked+.story-title .icon::after {
  transform: translate(-50%, -50%) scaleY(0);
}

/* Content */

.story-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: .45s ease;
}

.story-content p {
  overflow: hidden;
  margin: 0;
  padding: 0 0 22px;
  color: #666;
  line-height: 1.8;
  font-size: 16px;
}

/* Open */

.story-item input:checked+.story-title+.story-content {
  grid-template-rows: 1fr;
}

.image-statement {
  position: relative;
  min-height: 82vh;
  overflow: hidden;
}

.statement-card {
  position: absolute;
  right: clamp(1.5rem, 7vw, 7rem);
  bottom: clamp(1.5rem, 7vw, 7rem);
  max-width: 430px;
  padding: 2rem;
  color: var(--ivory);
  border-top: 1px solid var(--accent);
}

.statement-card span {
  display: block;
  margin-bottom: 1rem;
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(247, 243, 235, 0.58);
}

.statement-card p {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.7rem);
  line-height: 1.08;
}

.create {
  padding: clamp(5rem, 10vw, 9rem) clamp(1.5rem, 6vw, 7rem);
  background: var(--paper);
}

.page-create {
  background: var(--ivory);
}

.create-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.create-item {
  display: grid;
  grid-template-columns: 80px 0.75fr 1fr;
  gap: 2rem;
  padding: 2.6rem 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}

.create-item span {
  color: var(--clay);
  font-size: 0.72rem;
  letter-spacing: 0.25em;
}

.create-item h3 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 3.5vw, 4rem);
  font-weight: 300;
  line-height: 1;
}

.create-item p,
.split-copy p,
.contact-copy p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.85;
}

.split-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 86vh;
  background: var(--ivory);
}

.split-media {
  min-height: 620px;
}

.split-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(4rem, 8vw, 8rem);
}

.split-copy h2 {
  margin-bottom: 1.6rem;
  font-size: clamp(2.6rem, 4.8vw, 5.6rem);
}

.values-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 2.2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.values-list li {
  position: relative;
  padding-left: 1.3rem;
}

.values-list li::before {
  content: "";
  position: absolute;
  top: 0.78em;
  left: 0;
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
}

.atelier-band {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 78vh;
  overflow: hidden;
  color: var(--ivory);
  text-align: center;
  background: var(--ink);
}

.atelier-band img {
  position: absolute;
  inset: 0;
  filter: brightness(0.45) saturate(0.8);
}

.atelier-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 3rem 1.5rem;
}

.atelier-content span {
  display: block;
  margin-bottom: 1.4rem;
  font-size: 0.68rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(247, 243, 235, 0.64);
}

.atelier-content h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(3.5rem, 8vw, 9rem);
  font-weight: 300;
  line-height: 0.9;
}

.journal {
  padding: clamp(5rem, 10vw, 9rem) clamp(1.5rem, 6vw, 7rem);
  background: var(--ivory);
}

.page-journal {
  background: var(--paper);
}

.journal-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
}

.journal-head h2 {
  max-width: 680px;
  font-size: clamp(2.8rem, 5vw, 5.8rem);
}

.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.journal-card {
  display: grid;
  gap: 1.2rem;
}

.journal-card img {
  aspect-ratio: 4 / 5;
}

.journal-card span {
  display: block;
  margin-bottom: 0.6rem;
  font-size: 0.66rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--clay);
}

.journal-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.5rem, 2vw, 2rem);
  font-weight: 300;
  line-height: 1.12;
}

.product-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: var(--ink);
}

.product-gallery img {
  aspect-ratio: 3 / 4;
  filter: brightness(0.86) saturate(0.92);
}

.accent-band {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  min-height: 68vh;
  background: var(--accent);
  color: var(--ink);
}

.accent-band-media {
  min-height: 520px;
}

.accent-band-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(4rem, 8vw, 8rem);
}

.accent-band-copy span,
.process-card span,
.material-card span,
.role-card span,
.studio-note span {
  display: block;
  margin-bottom: 1rem;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(38, 50, 69, 0.58);
}

.accent-band-copy h2,
.studio-note h2,
.page-cta h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(3rem, 6vw, 7rem);
  font-weight: 300;
  line-height: 0.92;
}

.accent-band-copy p,
.material-card p,
.role-card p,
.studio-note p,
.page-cta p {
  margin-top: 1.5rem;
  max-width: 620px;
  color: rgba(38, 50, 69, 0.7);
  font-size: 1rem;
  line-height: 1.85;
}

.process-section,
.materials-section,
.roles-section {
  padding: clamp(5rem, 10vw, 9rem) clamp(1.5rem, 6vw, 7rem);
  background: var(--ivory);
}

.process-grid,
.materials-grid,
.roles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.process-card,
.material-card,
.role-card {
  min-height: 300px;
  padding: clamp(1.5rem, 3vw, 3rem);
  background: var(--ivory);
}

.process-card h3,
.material-card h3,
.role-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 300;
  line-height: 1;
}

.process-card p,
.role-card p {
  margin-top: 1.2rem;
  color: var(--muted);
  line-height: 1.8;
}

.fragrance-mosaic {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  min-height: 72vh;
  background: var(--ink);
}

.fragrance-mosaic img {
  min-height: 72vh;
  filter: brightness(0.84) saturate(0.92);
}

.studio-note {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(4rem, 8vw, 8rem) clamp(1.5rem, 6vw, 7rem);
  background: var(--paper);
}

.page-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: end;
  padding: clamp(5rem, 9vw, 8rem) clamp(1.5rem, 6vw, 7rem);
  color: var(--ivory);
  background: var(--ink);
}

.page-cta p {
  color: rgba(251, 244, 232, 0.66);
}

.page-cta .btn {
  color: var(--ink);
  background: var(--accent);
}

.page-cta .btn:hover {
  color: var(--accent);
  background: transparent;
}

.who-newsletter-cta {
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.86fr);
  align-items: start;
  gap: clamp(3rem, 8vw, 9rem);
  padding: clamp(4.5rem, 7vw, 6.5rem) clamp(1.2rem, 5vw, 5rem);
  background: var(--ink);
}

.who-newsletter-cta h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.035em;
  /* text-transform: uppercase; */
}

.who-newsletter-cta p {
  max-width: 680px;
  margin-top: 1.35rem;
  color: rgba(247, 243, 235, 0.74);
  font-size: clamp(1rem, 1.15vw, 1.2rem);
  line-height: 1.55;
}

.who-newsletter-stroke {
  display: block;
  width: min(280px, 48vw);
  height: 52px;
  margin-top: 1.2rem;
  border-top: 4px solid var(--accent);
  border-radius: 50% 50% 0 0;
  transform: rotate(-7deg);
  opacity: 0.88;
}

.who-newsletter-form {
  display: grid;
  gap: 1.5rem;
  width: 100%;
}

.who-newsletter-form input,
.who-newsletter-form button {
  width: 100%;
  min-height: 58px;
  font-family: 'Syne', sans-serif;
}

.who-newsletter-form input {
  padding: 0 1.8rem;
  color: var(--ivory);
  background: transparent;
  border: 1px solid rgba(247, 243, 235, 0.22);
  font-size: 0.95rem;
  font-weight: 600;
}

.who-newsletter-form input::placeholder {
  color: rgba(247, 243, 235, 0.72);
}

.who-newsletter-form button {
  color: var(--ivory);
  background: var(--accent);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  transition: color 0.3s ease, background 0.3s ease, outline 0.3s ease;
}

.who-newsletter-form button:hover {
  color: var(--accent);
  background: transparent;
  outline: 1px solid var(--accent);
}

.contact-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--ink);
}

.contact-visual img {
  min-height: 62vh;
  filter: brightness(0.82) saturate(0.9);
}

.join {
  padding: clamp(5rem, 10vw, 9rem) clamp(1.5rem, 6vw, 7rem);
  color: var(--ivory);
  background: var(--smoke);
}

.join-inner {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 3rem;
}

.join h2 {
  max-width: 920px;
  font-size: clamp(2.6rem, 5vw, 5.8rem);
}

.join .btn-dark {
  color: var(--ink);
  background: var(--ivory);
}

.contact-section {
  padding: clamp(5rem, 10vw, 9rem) clamp(1.5rem, 6vw, 7rem);
  background: var(--paper);
}

.contact-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(3rem, 7vw, 7rem);
}

.contact-copy h2 {
  margin-bottom: 1.4rem;
  font-size: clamp(2.8rem, 5vw, 5.8rem);
}

.contact-details {
  display: grid;
  gap: 1.2rem;
  margin-top: 2.4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  line-height: 1.75;
}

.contact-form {
  display: grid;
  gap: 1.2rem;
}

.contact-form label {
  display: grid;
  gap: 0.6rem;
}

.contact-form span {
  font-size: 0.66rem;
  font-weight: 400;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--soft);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  outline: 0;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--ink);
}

.site-footer {
  background: var(--ink);
  color: var(--ivory);
  padding: clamp(4rem, 7vw, 6rem) clamp(1.5rem, 6vw, 7rem) 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: clamp(2rem, 5vw, 5rem);
  padding-bottom: clamp(3rem, 5vw, 4.5rem);
  border-bottom: 1px solid rgba(236, 190, 130, 0.18);
}

.footer-col-brand .footer-logo {
  display: block;
  height: clamp(38px, 4.5vw, 52px);
  width: auto;
  object-fit: contain;
  margin-bottom: 1.4rem;
}

.footer-col-brand p {
  font-size: 0.9rem;
  line-height: 1.75;
  color: rgba(247, 243, 235, 0.55);
  max-width: 300px;
  margin-bottom: 1.6rem;
}

.footer-col-brand .footer-social {
  display: flex;
  gap: 0.7rem;
}

.footer-col-brand .footer-social a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(236, 190, 130, 0.35);
  border-radius: 50%;
  color: var(--ivory);
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
}

.footer-col-brand .footer-social a:hover {
  border-color: var(--accent);
  background: rgba(236, 190, 130, 0.12);
  transform: translateY(-2px);
}

.footer-col-brand .footer-social svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-col h4 {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ivory);
  margin-bottom: 1.6rem;
  letter-spacing: 0.04em;
}

.footer-col ul {
  list-style: none;
  display: grid;
  gap: 1rem;
}

.footer-col ul li a {
  font-size: 0.92rem;
  color: rgba(247, 243, 235, 0.58);
  transition: color 0.25s;
  letter-spacing: 0.01em;
}

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

.footer-col-contact ul {
  gap: 1.1rem;
}

.footer-col-contact ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.88rem;
  color: rgba(247, 243, 235, 0.58);
  line-height: 1.6;
}

.footer-col-contact ul li svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 3px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-col-contact ul li a {
  color: rgba(247, 243, 235, 0.58);
  font-size: 0.88rem;
  transition: color 0.25s;
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 0;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: var(--ivory);
  letter-spacing: 0.08em;
}

.footer-bottom a {
  color: var(--accent);
  font-weight: 600;
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ── who-we-are: stat strip ── */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--ink);
  color: var(--ivory);
  border-top: 1px solid rgba(247, 243, 235, 0.1);
}

.stat-item {
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 4vw, 3.5rem);
  border-right: 1px solid rgba(247, 243, 235, 0.1);
}

.stat-item:last-child {
  border-right: none;
}

.stat-item strong {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: clamp(3.5rem, 7vw, 8rem);
  font-weight: 300;
  line-height: 1;
  color: var(--accent);
}

.stat-item p {
  margin-top: 0.8rem;
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(247, 243, 235, 0.55);
}

/* ── who-we-are: quote band ── */
.quote-band {
  padding: clamp(6rem, 12vw, 11rem) clamp(1.5rem, 6vw, 7rem);
  background: var(--paper);
  text-align: center;
}

.quote-band blockquote {
  max-width: 900px;
  margin: 0 auto;
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.4rem, 5vw, 5.5rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.1;
  color: var(--ink);
}

.quote-band cite {
  display: block;
  margin-top: 2.4rem;
  font-size: 0.68rem;
  font-style: normal;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink);
}

/* ── what-we-create: horizontal cards ── */
.showcase-section {
  padding: clamp(5rem, 10vw, 9rem) 0 clamp(5rem, 10vw, 9rem) clamp(1.5rem, 6vw, 7rem);
  background: var(--ink);
  overflow: hidden;
}

.showcase-section .section-kicker {
  color: rgba(247, 243, 235, 0.85);
  margin-bottom: 3rem;
  padding-right: clamp(1.5rem, 6vw, 7rem);
  background: linear-gradient(to right, rgba(236, 190, 130, 0.14), transparent);
  border-left-color: var(--accent);
}

.showcase-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding-right: clamp(1.5rem, 6vw, 7rem);
  padding-bottom: 1rem;
  scrollbar-width: none;
  cursor: grab;
}

.showcase-track::-webkit-scrollbar {
  display: none;
}

.showcase-card {
  flex: 0 0 clamp(280px, 32vw, 420px);
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}

.showcase-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.72) saturate(0.88);
  transition: transform 0.9s ease;
}

.showcase-card:hover img {
  transform: scale(1.06);
}

.showcase-card-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.8rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72), transparent);
  color: var(--ivory);
}

.showcase-card-label span {
  display: block;
  font-size: 0.64rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.showcase-card-label h3 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  font-weight: 300;
  line-height: 1;
}

/* ── what-drives-us: manifesto ── */
.manifesto-section {
  padding: clamp(6rem, 12vw, 11rem) clamp(1.5rem, 6vw, 7rem);
  background: var(--ink);
  color: var(--ivory);
}

.manifesto-lines {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(247, 243, 235, 0.14);
}

.manifesto-line {
  display: flex;
  align-items: baseline;
  gap: 2rem;
  padding: 2.2rem 0;
  border-bottom: 1px solid rgba(247, 243, 235, 0.14);
}

.manifesto-line em {
  flex: 0 0 3rem;
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.8rem, 5vw, 5.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--accent);
  line-height: 1;
}

.manifesto-line p {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 4rem);
  font-weight: 300;
  line-height: 1.05;
  color: rgba(247, 243, 235, 0.88);
}

/* ── what-drives-us: pillars ── */
.pillars-section {
  padding: clamp(5rem, 10vw, 9rem) clamp(1.5rem, 6vw, 7rem);
  background: var(--ivory);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(3rem, 6vw, 6rem);
  margin-top: 3rem;
}

.pillar-card {
  border-top: 2px solid var(--accent);
  padding-top: 2rem;
}

.pillar-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3.8rem);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 1.2rem;
}

.pillar-card p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.85;
}

.pillar-card .pillar-tag {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.64rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--clay);
  background: linear-gradient(to right, rgba(236, 190, 130, 0.18), transparent);
  padding: 0.3em 0.8em 0.3em 0;
  border-left: 2px solid var(--accent);
  padding-left: 0.7em;
}

/* ── Our Values ── */
.our-values {
  padding: clamp(5rem, 10vw, 9rem) clamp(1.5rem, 6vw, 7rem);
  background: var(--ink);
  color: var(--ivory);
}

.our-values .section-kicker {
  color: rgba(247, 243, 235, 0.85);
  margin-bottom: 3rem;
  background: linear-gradient(to right, rgba(236, 190, 130, 0.14), transparent);
  border-left-color: var(--accent);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(247, 243, 235, 0.1);
  border: 1px solid rgba(247, 243, 235, 0.1);
}

.value-item {
  padding: clamp(2rem, 4vw, 3.5rem);
  background: var(--ink);
  transition: background 0.3s ease;
}

.value-item:hover {
  background: #2e3f56;
}

.value-num {
  display: block;
  margin-bottom: 1.4rem;
  font-size: 0.64rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
}

.value-item h3 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 1.2rem;
}

.value-item p {
  color: rgba(247, 243, 235, 0.6);
  font-size: 0.95rem;
  line-height: 1.85;
  max-width: 480px;
}

/* Jesper-inspired expertise cards */
.our-values:not(.rd-section) {
  position: relative;
  padding: clamp(5rem, 9vw, 8rem) clamp(1.2rem, 4vw, 4.8rem);
  /* background:
    radial-gradient(circle at 4% 0%, rgba(255, 255, 255, 0.12), transparent 4rem),
    radial-gradient(circle at 80% 16%, rgba(236, 190, 130, 0.08), transparent 22rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 6px),
    #070707; */
  color: var(--ivory);
  overflow: hidden;
}

.our-values:not(.rd-section) .section-kicker {
  margin-left: clamp(0rem, 2vw, 2rem);
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
  color: rgba(247, 243, 235, 0.86);
  background: transparent;
  border-left-color: rgba(236, 190, 130, 0.68);
}

.our-values:not(.rd-section) .values-grid {
  display: flex;
  align-items: stretch;
  gap: 0;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 clamp(0rem, 1vw, 1rem) 1rem;
  background: transparent;
  border: 0;
  scrollbar-width: none;
}

.our-values:not(.rd-section) .values-grid::-webkit-scrollbar {
  display: none;
}

.our-values:not(.rd-section) .value-item {
  position: relative;
  flex: 0 0 clamp(190px, 16vw, 275px);
  min-height: clamp(420px, 42vw, 610px);
  margin-left: -1px;
  padding: clamp(3.8rem, 5vw, 5.2rem) clamp(1.8rem, 3vw, 3.2rem) clamp(2rem, 3vw, 3rem);
  overflow: hidden;
  color: rgba(247, 243, 235, 0.9);
  /* background: #050505; */
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0 34px 34px 0;
  transition: flex-basis 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.45s ease,
    color 0.45s ease,
    transform 0.45s ease;
}

.our-values:not(.rd-section) .value-item:first-child {
  flex-basis: clamp(430px, 34vw, 620px);
  margin-left: 0;
  color: #111;
  background: #ebe9e4;
  border-radius: 34px;
  z-index: 3;
}

.our-values:not(.rd-section) .values-grid:hover .value-item:first-child:not(:hover) {
  flex-basis: clamp(190px, 16vw, 275px);
  color: rgba(247, 243, 235, 0.9);
  background: var(--ink);
  border-radius: 34px 34px 34px 34px;
  z-index: 1;
}

.our-values:not(.rd-section) .value-item:hover {
  flex-basis: clamp(430px, 34vw, 620px);
  color: #111;
  background: #ebe9e4;
  border-radius: 34px;
  z-index: 4;
}

.our-values:not(.rd-section) .value-num {
  position: absolute;
  top: clamp(1.4rem, 2.5vw, 2rem);
  right: clamp(1.4rem, 2.5vw, 2rem);
  margin: 0;
  color: rgba(247, 243, 235, 0.28);
  font-size: clamp(2.4rem, 4vw, 4.2rem);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1;
}

.our-values:not(.rd-section) .value-item:first-child .value-num,
.our-values:not(.rd-section) .value-item:hover .value-num {
  color: var(--accent);
}

.our-values:not(.rd-section) .values-grid:hover .value-item:first-child:not(:hover) .value-num {
  color: rgba(247, 243, 235, 0.28);
}

.our-values:not(.rd-section) .values-grid:hover .value-item:first-child:not(:hover) h3,
.our-values:not(.rd-section) .values-grid:hover .value-item:first-child:not(:hover) p {
  color: rgba(247, 243, 235, 0.9);
}

.our-values:not(.rd-section) .value-item h3 {
  max-width: 420px;
  margin: 0 0 clamp(2rem, 4vw, 3rem);
  color: currentColor;
  font-size: clamp(2.6rem, 4.2vw, 5.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 0.86;
  text-transform: uppercase;
}

.our-values:not(.rd-section) .value-item p {
  max-width: 500px;
  color: currentColor;
  font-size: clamp(1rem, 1.35vw, 1.5rem);
  font-weight: 400;
  line-height: 1.35;
  opacity: 0.72;
  transition: opacity 0.35s ease;
}

.our-values:not(.rd-section) .value-item:not(:first-child):not(:hover) p {
  opacity: 0.66;
}

.our-values:not(.rd-section) .value-item:first-child p,
.our-values:not(.rd-section) .value-item:hover p {
  opacity: 0.78;
}

.our-values:not(.rd-section) .values-grid:hover .value-item:first-child:not(:hover) p {
  opacity: 0.66;
}

.our-values:not(.rd-section) .value-item {
  flex-basis: clamp(160px, 15vw, 250px);
  min-height: clamp(460px, 44vw, 640px);
  padding: clamp(3.9rem, 5vw, 5.1rem) clamp(1.4rem, 2.4vw, 2.8rem) clamp(2rem, 3vw, 3rem);
}

.our-values:not(.rd-section) .value-item:first-child,
.our-values:not(.rd-section) .value-item:hover {
  flex-basis: clamp(360px, 33vw, 600px);
}

.our-values:not(.rd-section) .values-grid:hover .value-item:first-child:not(:hover) {
  flex-basis: clamp(160px, 15vw, 250px);
}

.our-values:not(.rd-section) .value-item h3 {
  width: min(360px, 100%);
  margin-top: 0.35rem;
  margin-bottom: clamp(2.1rem, 4vw, 3.4rem);
  font-size: clamp(2rem, 3.1vw, 4.2rem);
  letter-spacing: 0.01em;
  line-height: 0.94;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.our-values:not(.rd-section) .value-item:not(:first-child):not(:hover) h3,
.our-values:not(.rd-section) .values-grid:hover .value-item:first-child:not(:hover) h3 {
  width: 330px;
  max-width: none;
}

.our-values:not(.rd-section) .value-item:first-child h3,
.our-values:not(.rd-section) .value-item:hover h3 {
  width: min(390px, 100%);
}

.our-values:not(.rd-section) .value-item p {
  width: min(420px, 100%);
  font-size: clamp(0.92rem, 1.05vw, 1.18rem);
  line-height: 1.45;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.our-values:not(.rd-section) .value-item:not(:first-child):not(:hover) p,
.our-values:not(.rd-section) .values-grid:hover .value-item:first-child:not(:hover) p {
  width: 220px;
  max-width: none;
}

.our-values:not(.rd-section) {
  padding-inline: clamp(1.2rem, 3vw, 3.2rem);
}

.our-values:not(.rd-section) .values-grid {
  padding-right: 0;
}

.our-values:not(.rd-section) .value-item {
  flex-basis: clamp(142px, 12vw, 205px);
  min-height: clamp(390px, 39vw, 560px);
  padding: clamp(3.2rem, 4.2vw, 4.4rem) clamp(1.1rem, 1.8vw, 2rem) clamp(1.7rem, 2.4vw, 2.4rem);
}

.our-values:not(.rd-section) .value-item:first-child,
.our-values:not(.rd-section) .value-item:hover {
  flex-basis: clamp(335px, 30vw, 520px);
}

.our-values:not(.rd-section) .values-grid:hover .value-item:first-child:not(:hover) {
  flex-basis: clamp(142px, 12vw, 205px);
}

.our-values:not(.rd-section) .value-num {
  top: clamp(1.1rem, 2vw, 1.6rem);
  right: clamp(1.1rem, 2vw, 1.6rem);
  font-size: clamp(2rem, 3.2vw, 3.3rem);
}

.our-values:not(.rd-section) .value-item h3 {
  width: min(300px, 100%);
  margin-bottom: clamp(1.7rem, 3vw, 2.6rem);
  font-size: clamp(1.55rem, 2.45vw, 3.1rem);
  line-height: 0.94;
}

.our-values:not(.rd-section) .value-item:first-child h3,
.our-values:not(.rd-section) .value-item:hover h3 {
  width: min(340px, 100%);
}

.our-values:not(.rd-section) .value-item:not(:first-child):not(:hover) h3,
.our-values:not(.rd-section) .values-grid:hover .value-item:first-child:not(:hover) h3 {
  width: 250px;
}

.our-values:not(.rd-section) .value-item p {
  width: min(340px, 100%);
  font-size: clamp(0.82rem, 0.88vw, 1rem);
  line-height: 1.4;
}

.our-values:not(.rd-section) .value-item:not(:first-child):not(:hover) p,
.our-values:not(.rd-section) .values-grid:hover .value-item:first-child:not(:hover) p {
  width: 175px;
}

.our-values:not(.rd-section) .values-grid {
  overflow: hidden;
}

.our-values:not(.rd-section) {
  padding-inline: clamp(0.6rem, 1.6vw, 2rem);
}

.our-values:not(.rd-section) .section-kicker {
  margin-left: clamp(0.4rem, 2vw, 2rem);
}

.our-values:not(.rd-section) .value-item {
  flex: 0 0 clamp(255px, 17.4vw, 315px);
  min-height: 320px;
  margin-left: -65px;
  padding: clamp(2.5rem, 3.2vw, 3.4rem) clamp(1.05rem, 1.55vw, 1.7rem) clamp(1.25rem, 1.8vw, 1.8rem);
  border-radius: 0 28px 28px 0;
}

.our-values:not(.rd-section) .value-item:first-child {
  flex-basis: clamp(360px, 26vw, 465px);
  margin-left: 0;
  border-radius: 28px;
  z-index: 8;
}

.our-values:not(.rd-section) .value-item:nth-child(2) {
  z-index: 7;
}

.our-values:not(.rd-section) .value-item:nth-child(3) {
  z-index: 6;
}

.our-values:not(.rd-section) .value-item:nth-child(4) {
  z-index: 5;
}

.our-values:not(.rd-section) .value-item:nth-child(5) {
  z-index: 4;
}

.our-values:not(.rd-section) .value-item:nth-child(6) {
  z-index: 3;
}

.our-values:not(.rd-section) .value-item:hover {
  flex-basis: clamp(360px, 26vw, 465px);
  border-radius: 28px;
  z-index: 20;
}

.our-values:not(.rd-section) .values-grid:hover .value-item:first-child:not(:hover) {
  flex-basis: clamp(255px, 17.4vw, 315px);
  border-radius: 28px;
  z-index: 8;
}

.our-values:not(.rd-section) .value-item h3 {
  width: min(245px, 100%);
  margin-bottom: clamp(1.25rem, 2.1vw, 1.9rem);
  font-size: clamp(1.28rem, 1.75vw, 2.25rem);
  line-height: 0.92;
}

.our-values:not(.rd-section) .value-item:first-child h3,
.our-values:not(.rd-section) .value-item:hover h3 {
  width: min(285px, 100%);
  color: var(--accent);
}

.our-values:not(.rd-section) .value-item:not(:first-child):not(:hover) h3,
.our-values:not(.rd-section) .values-grid:hover .value-item:first-child:not(:hover) h3 {
  width: 230px;
}

.our-values:not(.rd-section) .value-item p {
  width: min(285px, 100%);
  font-size: clamp(0.72rem, 0.72vw, 0.84rem);
  line-height: 1.34;
}

.our-values:not(.rd-section) .value-item:not(:first-child):not(:hover) p,
.our-values:not(.rd-section) .values-grid:hover .value-item:first-child:not(:hover) p {
  width: 180px;
}

/* Smooth Jesper-style motion */
.our-values:not(.rd-section) .values-grid {
  --expertise-ease: cubic-bezier(0.16, 1, 0.3, 1);
  isolation: isolate;
}

.our-values:not(.rd-section) .value-item {
  will-change: flex-basis, transform, background-color, color;
  transition:
    flex-basis 1s var(--expertise-ease),
    margin-left 1s var(--expertise-ease),
    border-radius 1s var(--expertise-ease),
    background-color 0.75s var(--expertise-ease),
    color 0.75s var(--expertise-ease),
    border-color 0.75s var(--expertise-ease),
    box-shadow 0.75s var(--expertise-ease),
    transform 0.75s var(--expertise-ease);
}

.our-values:not(.rd-section) .value-item:hover {
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.26);
}

.our-values:not(.rd-section) .value-num,
.our-values:not(.rd-section) .value-item h3,
.our-values:not(.rd-section) .value-item p {
  transition:
    color 0.75s var(--expertise-ease),
    opacity 0.75s var(--expertise-ease),
    transform 0.75s var(--expertise-ease),
    width 1s var(--expertise-ease);
}



.our-values:not(.rd-section) .value-item.reveal {
  transform: translateY(38px);
}

.our-values:not(.rd-section) .value-item.reveal.is-visible {
  animation: expertiseCardIn 1s var(--expertise-ease) both;
}

.our-values:not(.rd-section) .value-item.reveal.is-visible:nth-child(2) {
  animation-delay: 0.08s;
}

.our-values:not(.rd-section) .value-item.reveal.is-visible:nth-child(3) {
  animation-delay: 0.16s;
}

.our-values:not(.rd-section) .value-item.reveal.is-visible:nth-child(4) {
  animation-delay: 0.24s;
}

.our-values:not(.rd-section) .value-item.reveal.is-visible:nth-child(5) {
  animation-delay: 0.32s;
}

.our-values:not(.rd-section) .value-item.reveal.is-visible:nth-child(6) {
  animation-delay: 0.4s;
}

@keyframes expertiseCardIn {
  from {
    opacity: 0;
    transform: translateY(42px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Through the World ── */
.through-world {
  padding: clamp(5rem, 10vw, 9rem) clamp(1.5rem, 6vw, 7rem);
  /* background: var(--paper); */
}

.through-world-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(4rem, 8vw, 9rem);
  align-items: center;
}

.through-world-copy .section-kicker {
  margin-bottom: 1.4rem;
}

.through-world-copy h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.6rem, 5vw, 5.5rem);
  font-weight: 300;
  line-height: 0.96;
  margin-bottom: 2rem;
}

.through-world-copy p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.85;
  max-width: 560px;
}

.through-world-copy p+p {
  margin-top: 1.2rem;
}

.through-world-map {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.world-stat {
  padding: clamp(1.8rem, 3vw, 2.8rem);
  background: var(--ivory);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.world-stat strong {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 300;
  line-height: 1;
  color: var(--ink);
}

.world-stat span {
  font-size: 0.64rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--clay);
}

/* ── Mission Vision Values ── */
.mvv-section {
  background: var(--ink);
  color: var(--ivory);
}

.mvv-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(247, 243, 235, 0.1);
  border-bottom: 1px solid rgba(247, 243, 235, 0.1);
}

.mvv-block {
  padding: clamp(4rem, 8vw, 7rem) clamp(2rem, 5vw, 5rem);
  background: var(--ink);
  border-top: 2px solid transparent;
  transition: border-color 0.4s ease;
}

.mvv-block:hover {
  border-top-color: var(--accent);
}

.mvv-label {
  display: inline-block;
  margin-bottom: 2rem;
  font-size: 0.66rem;
  font-weight: 400;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--accent);
  background: linear-gradient(to right, rgba(236, 190, 130, 0.18), transparent);
  padding: 0.3em 0.8em 0.3em 0;
  border-left: 2px solid var(--accent);
  padding-left: 0.7em;
}

.mvv-block h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.2rem, 3.8vw, 4.2rem);
  font-weight: 300;
  line-height: 1.02;
  margin-bottom: 1.6rem;
  color: var(--ivory);
}

.mvv-block p {
  color: rgba(247, 243, 235, 0.55);
  font-size: 0.98rem;
  line-height: 1.9;
  max-width: 520px;
}

.mvv-values {
  padding: clamp(4rem, 8vw, 7rem) clamp(2rem, 5vw, 5rem);
}

.mvv-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(247, 243, 235, 0.1);
  border: 1px solid rgba(247, 243, 235, 0.1);
}

.mvv-value-card {
  padding: clamp(2rem, 3.5vw, 3rem);
  background: var(--ink);
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease;
}

.mvv-value-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.mvv-value-card:hover {
  background: #2e3f56;
}

.mvv-value-card:hover::after {
  transform: scaleX(1);
}

.mvv-num {
  display: block;
  margin-bottom: 1.6rem;
  font-size: 0.62rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(247, 243, 235, 0.28);
}

.mvv-value-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 40px;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 1rem;
  color: var(--ivory);
}

.mvv-value-card p {
  color: rgba(247, 243, 235, 0.5);
  font-size: 0.9rem;
  line-height: 1.85;
}

/* ── Why Choose ── */
.why-choose {
  padding: clamp(5rem, 10vw, 9rem) clamp(1.5rem, 6vw, 7rem);
  background: var(--ink);
  color: var(--ivory);
}

.why-choose-head {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.why-choose-head .section-kicker {
  color: var(--accent);
  margin-bottom: 1rem;
}

.why-choose-head h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(3rem, 6vw, 7rem);
  font-weight: 300;
  line-height: 0.92;
  margin-bottom: 1.2rem;
}

.why-choose-head p {
  font-size: 1rem;
  color: rgba(247, 243, 235, 0.55);
  letter-spacing: 0.08em;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(247, 243, 235, 0.1);
  border: 1px solid rgba(247, 243, 235, 0.1);
}

.why-card {
  padding: clamp(2rem, 4vw, 3rem);
  background: var(--ink);
  border-top: 2px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.why-card:hover {
  background: #2e3f56;
  border-top-color: var(--accent);
}

.why-card-icon {
  font-size: 1.4rem;
  color: var(--accent);
  margin-bottom: 1.4rem;
  line-height: 1;
}

.why-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 0.9rem;
}

.why-card p {
  color: rgba(247, 243, 235, 0.55);
  font-size: 0.92rem;
  line-height: 1.8;
}

/* ── Expertise Alternating Rows ── */
.expertise-alt {
  background: var(--ink);
  color: var(--ivory);
}

.expertise-alt-header {
  padding: 50px 85px 40px;
  border-bottom: 1px solid rgba(236, 190, 130, 0.14);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}

.expertise-alt-kicker {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.2rem;
}

.expertise-alt-header h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.2rem, 3.4vw, 3.8rem);
  font-weight: 600;
  line-height: 1;
  color: var(--ivory);
}

.expertise-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: clamp(2rem, 5vw, 5rem);
  min-height: 70vh;
  border-bottom: 1px solid rgba(236, 190, 130, 0.1);
  padding: clamp(2rem, 4vw, 4rem) clamp(2rem, 7vw, 8rem);
}

.expertise-row--reverse {
  direction: rtl;
}

.expertise-row--reverse>* {
  direction: ltr;
}

.expertise-row-media {
  position: relative;
  padding: clamp(0.65rem, 1.2vw, 1rem);
  overflow: hidden;
  border: 1px solid var(--accent);
  background: #080c11;
}

.expertise-row-media img {
  position: absolute;
  inset: clamp(0.65rem, 1.2vw, 1rem);
  width: calc(100% - (clamp(0.65rem, 1.2vw, 1rem) * 2));
  height: calc(100% - (clamp(0.65rem, 1.2vw, 1rem) * 2));
  object-fit: cover;
  filter: brightness(0.6) saturate(0.85);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.6s ease;
}

/* .expertise-row:hover .expertise-row-media img {
  transform: scale(1.05);
  filter: brightness(0.72) saturate(0.9);
} */

.expertise-row-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(4rem, 7vw, 7rem) clamp(3rem, 6vw, 6rem);
  position: relative;
}

.expertise-row-copy::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(236, 190, 130, 0.3), transparent);
}

.expertise-row--reverse .expertise-row-copy::before {
  left: auto;
  right: 0;
}

.expertise-row-num {
  font-family: 'Syne', sans-serif;
  font-size: clamp(3.5rem, 6vw, 7rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #fbf4e8;
  margin-bottom: 1.2rem;
  display: block;
  transition: color 0.5s ease;
}

.expertise-row:hover .expertise-row-num {
  color: var(--accent);
}

.expertise-row-copy h3 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 2.8vw, 3.2rem);
  font-weight: 600;
  line-height: 1.05;
  color: var(--ivory);
  margin-bottom: 1.4rem;
  transition: color 0.4s ease;
}

.expertise-row:hover .expertise-row-copy h3 {
  color: var(--accent);
}

.expertise-row-copy p {
  font-size: 0.96rem;
  line-height: 1.9;
  text-align: justify;
  color: rgba(247, 243, 235, 0.5);
  max-width: 480px;
  transition: color 0.4s ease;
}

.expertise-row:hover .expertise-row-copy p {
  color: rgba(247, 243, 235, 0.72);
}

@media (max-width: 860px) {
  .expertise-alt-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .expertise-row,
  .expertise-row--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 2rem;
    min-height: auto;
    padding: 2rem 1.2rem;
  }

  .expertise-row-media {
    min-height: 56vw;
  }

  .expertise-row--reverse .expertise-row-copy::before {
    left: 0;
    right: auto;
  }
}

/* ── Our Value Split ── */
.value-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
  background: #080c11;
  color: var(--ivory);
}

.value-split-media {
  position: relative;
  overflow: hidden;
}

.value-split-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55) saturate(0.8);
  transition: transform 1.2s ease;
}

.value-split:hover .value-split-media img {
  transform: scale(1.04);
}

.value-split-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(4rem, 8vw, 7rem) clamp(3rem, 6vw, 6rem);
}

.value-split-kicker {
  display: inline-block;
  margin-bottom: 1.4rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--accent);
}

.value-split-copy h2 {
  font-family: 'Syne', sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.05;
  color: var(--ivory);
  margin-bottom: 1.6rem;
}

.value-split-copy>p {
  font-size: 0.96rem;
  line-height: 1.9;
  color: rgba(247, 243, 235, 0.52);
  max-width: 520px;
  margin-bottom: 30px;
}

.value-split-items {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(236, 190, 130, 0.15);
}

.value-split-item {
  display: flex;
  gap: 1.4rem;
  align-items: flex-start;
  padding: clamp(1.4rem, 3vw, 2rem) 0;
  border-bottom: 1px solid rgba(236, 190, 130, 0.15);
}

.value-split-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(236, 190, 130, 0.3);
  border-radius: 50%;
  color: var(--accent);
}

.value-split-item h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.4rem;
  letter-spacing: 0.04em;
}

.value-split-item p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(247, 243, 235, 0.52);
}

@media (max-width: 860px) {
  .value-split {
    grid-template-columns: 1fr;
  }

  .value-split-media {
    min-height: 50vw;
  }
}

/* ── R&D Section ── */
.rd-section {
  background: var(--ink);
  color: #fbf4e8;
}

.rd-section .section-kicker {
  color: var(--clay);
  margin-bottom: 3rem;
  background: linear-gradient(to right, rgba(236, 190, 130, 0.18), transparent);
  border-left-color: var(--accent);
}

.rd-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 7vw, 8rem);
  align-items: start;
}

.rd-copy h2 {
  font-family: 'Syne', sans-serif;
  font-size: 70px;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 1.4rem;
}

.rd-copy p {
  color: rgba(247, 243, 235, 0.52);
  font-size: 1rem;
  line-height: 1.85;
}

.rd-list {
  list-style: none;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
  padding-top: 0;
  margin-top: 1rem;
}

.rd-list li {
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(247, 243, 235, 0.52);
  font-size: 1rem;
  color: #fbf4e8;
  padding-left: 1.4rem;
  position: relative;
}

.rd-list li::before {
  content: "";
  position: absolute;
  top: 1.7rem;
  left: 0;
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
}

/* ── Industries We Serve ── */
.industries-section {
  padding: clamp(5rem, 10vw, 9rem) clamp(1.5rem, 6vw, 7rem);
  background: #0c1017;
}

.industries-heading {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.4rem, 4.5vw, 5rem);
  font-weight: 300;
  line-height: 1;
  margin-bottom: clamp(3rem, 6vw, 5rem);
  max-width: 720px;
  color: #fbf4e8;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.industry-card {
  padding: clamp(1.8rem, 3vw, 2.8rem);
  background: #0c1017;
  border-top: 2px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.industry-card:hover {
  background: var(--ivory);
  border-top-color: var(--accent);
}

.industry-icon {
  display: block;
  font-size: 1rem;
  color: var(--accent);
  margin-bottom: 1.2rem;
  line-height: 1;
}

.industry-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.2rem, 1.8vw, 1.6rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 0.8rem;
  color: #fbf4e8;
}

.industry-card:hover h3 {
  color: var(--ink);
}

.industry-card p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.8;
}

/* More Details For You */
.more-details-section {
  padding: clamp(5rem, 10vw, 9rem) clamp(1.5rem, 6vw, 7rem);
  background:
    radial-gradient(circle at 68% 28%, rgba(236, 190, 130, 0.16), transparent 30rem),
    #050505;
  color: var(--ivory);
  overflow: hidden;
}

.more-details-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.52fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: end;
  margin-bottom: clamp(3rem, 7vw, 5.5rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid rgba(236, 190, 130, 0.26);
}

.more-details-head span {
  grid-column: 1 / -1;
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(236, 190, 130, 0.78);
}

.more-details-head h2 {
  max-width: 900px;
  font-family: 'Syne', sans-serif;
  font-size: clamp(3.4rem, 8vw, 9rem);
  font-weight: 500;
  line-height: 0.9;
  color: var(--accent);
}

.more-details-head p {
  max-width: 460px;
  color: rgba(247, 243, 235, 0.62);
  font-size: 0.95rem;
  line-height: 1.9;
}

.more-details-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(236, 190, 130, 0.26);
  border: 1px solid rgba(236, 190, 130, 0.26);
}

.more-detail-card,
.more-details-media {
  min-height: clamp(300px, 28vw, 420px);
  background: #050505;
}

.more-detail-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(1.8rem, 3vw, 3rem);
  transition: background 0.35s ease;
}

.more-detail-card::after {
  content: "+";
  position: absolute;
  top: clamp(1.5rem, 2.5vw, 2.4rem);
  right: clamp(1.5rem, 2.5vw, 2.4rem);
  width: 2.4rem;
  height: 2.4rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(236, 190, 130, 0.42);
  border-radius: 50%;
  color: var(--accent);
  font-size: 1.2rem;
  font-weight: 300;
}

/* .more-detail-card:hover {
  background: #262e3aab;
} */

.more-detail-card span {
  display: block;
  margin-bottom: 3rem;
  color: rgba(236, 190, 130, 0.86);
  font-size: 0.66rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.more-detail-card h3 {
  margin-bottom: 1.1rem;
  max-width: 320px;
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.7rem, 2.8vw, 3rem);
  font-weight: 400;
  line-height: 1;
  color: var(--ivory);
}

.more-detail-card p {
  max-width: 390px;
  color: rgba(247, 243, 235, 0.58);
  font-size: 0.94rem;
  line-height: 1.82;
}

.more-details-media {
  position: relative;
  grid-row: span 2;
  min-height: clamp(520px, 58vw, 760px);
  overflow: hidden;
}

.more-details-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 26%, rgba(236, 190, 130, 0.12), transparent 48%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.46));
}

.more-details-media img {
  filter: brightness(0.72) saturate(0.86);
  transition: transform 1s ease;
}

.more-details-media:hover img {
  transform: scale(1.05);
}

.more-details-badge {
  position: absolute;
  z-index: 2;
  right: 1.4rem;
  bottom: 1.4rem;
  width: 5.2rem;
  height: 5.2rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(236, 190, 130, 0.54);
  border-radius: 50%;
  color: var(--accent);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  background: rgba(5, 5, 5, 0.68);
}

.more-details-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(520px, 1.15fr);
  gap: clamp(4rem, 8vw, 7rem);
  align-items: start;
  padding: 80px;
  background: #0c1017;
}

.more-details-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: rgba(247, 243, 235, 0.78);
  text-align: center;
}

.more-details-left h2 {
  /* align-self: flex-start; */
  margin-bottom: clamp(2rem, 4vw, 3rem);
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.2rem, 3.4vw, 3.8rem);
  font-weight: 600;
  line-height: 1;
  color: var(--accent);
}

.more-details-left p {
  max-width: 660px;
  margin-top: clamp(2rem, 4vw, 2.7rem);
  color: rgba(247, 243, 235, 0.74);
  font-size: clamp(1rem, 1.35vw, 1.3rem);
  line-height: 1.7;
}

.more-details-media {
  width: min(100%, 430px);
  min-height: 0;
  aspect-ratio: 1 / 1;
  grid-row: auto;
  background: #111;
}

.more-details-media::after {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.24));
}

.more-details-media img {
  filter: brightness(0.62) saturate(0.78);
}

.more-details-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.more-detail-card {
  min-height: clamp(260px, 26vw, 320px);
  padding: clamp(3.9rem, 6vw, 4.9rem) clamp(2rem, 4vw, 3.2rem) clamp(2rem, 4vw, 3rem);
  background: var(--ink);
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.more-detail-card:nth-child(2n) {
  border-right: 0;
}

.more-detail-card:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.more-detail-card::after {
  content: none;
}

.more-detail-card span {
  position: absolute;
  top: -0.7em;
  left: clamp(2rem, 4vw, 3.2rem);
  margin: 0;
  padding: 0 1.6rem;
  background: var(--ink);
  color: var(--accent);
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
  text-transform: none;
}

.more-detail-card h3 {
  margin-bottom: 1.8rem;
  color: rgba(247, 243, 235, 0.94);
  font-size: 25px;
  font-weight: 600;
  line-height: 1.05;
}

.more-detail-card p {
  max-width: 340px;
  color: rgba(247, 243, 235, 0.72);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
}

.brand-reach {
  padding: clamp(5rem, 8vw, 7rem) clamp(1.2rem, 6vw, 6rem);
  color: var(--ivory);
  background: var(--ink);
}

.brand-reach-inner {
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
}

.brand-reach-kicker {
  display: block;
  margin-bottom: 1.3rem;
  color: var(--accent);
  font-size: clamp(0.95rem, 1.25vw, 1.18rem);
  font-weight: 400;
}

.brand-reach h2 {
  max-width: 1120px;
  margin: 0 auto;
  font-family: 'Syne', sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.brand-reach h2 span {
  color: var(--accent);
}

.brand-reach p {
  max-width: 900px;
  margin: 1.5rem auto 0;
  color: rgba(247, 243, 235, 0.72);
  font-size: clamp(1rem, 1.3vw, 1.22rem);
  line-height: 1.65;
}

.brand-reach-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: min(100%, 340px);
  margin-top: clamp(2rem, 3.5vw, 2.8rem);
  padding: 1.2rem 2rem;
  color: var(--ivory);
  background: var(--accent);
  font-size: clamp(0.78rem, 1vw, 0.95rem);
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  transition: color 0.3s ease, background 0.3s ease, outline 0.3s ease;
}

.brand-reach-btn:hover {
  color: var(--accent);
  background: transparent;
  outline: 1px solid var(--accent);
}

.results-highlight {
  padding: clamp(3.5rem, 6vw, 5rem) 0 clamp(4rem, 7vw, 6rem);
  color: var(--ivory);
  background: var(--ink);
  overflow: hidden;
}

.results-highlight-head {
  max-width: 1120px;
  margin: 0 auto clamp(2.8rem, 4vw, 3.8rem);
  padding: 0 clamp(1.2rem, 6vw, 6rem);
  text-align: center;
}

.results-highlight-head h2 {
  font-family: 'Syne', sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.035em;
}

.results-highlight-head p {
  max-width: 980px;
  margin: 1.8rem auto 0;
  color: rgba(247, 243, 235, 0.72);
  font-size: clamp(1rem, 1.18vw, 1.15rem);
  line-height: 1.65;
}

.results-highlight-body {
  display: grid;
  grid-template-columns: minmax(0, 0.73fr) minmax(260px, 0.27fr);
  gap: clamp(2.2rem, 4.8vw, 5rem);
  align-items: center;
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 clamp(1.2rem, 3.8vw, 4.6rem);
}

.results-highlight-media {
  aspect-ratio: 1.78 / 1;
  min-height: 0;
  overflow: hidden;
  border-radius: 50%;
  background: #111;
}

.results-highlight-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.58) saturate(0.82);
  transform: scale(1.04);
  transition: transform 1.1s ease;
}

.results-highlight:hover .results-highlight-media img {
  transform: scale(1);
}

.results-stats {
  display: grid;
  gap: clamp(2.4rem, 4.4vw, 4.4rem);
  padding-top: clamp(1rem, 3vw, 2.5rem);
}

.results-stat {
  position: relative;
  padding-left: clamp(3.2rem, 4.2vw, 4.7rem);
}

.results-stat::before {
  content: "";
  position: absolute;
  left: 30px;
  top: -3px;
  width: 132px;
  height: 85px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.92;
  transform: rotate(-18deg);
  transform-origin: center;
}

.results-stat span,
.results-stat strong {
  position: relative;
  z-index: 1;
  display: block;
  font-family: 'Syne', sans-serif;
}

.results-stat span {
  margin-bottom: 0.35rem;
  color: var(--ivory);
  font-size: clamp(1.18rem, 1.7vw, 1.75rem);
  font-weight: 700;
  line-height: 1.05;
  white-space: nowrap;
}

.results-stat strong {
  color: var(--ivory);
  font-size: clamp(2.7rem, 4.2vw, 4.5rem);
  font-weight: 800;
  line-height: 0.9;
}

/* ════════════════════════════════════════
   Premium Brand Story Section
════════════════════════════════════════ */

.brand-story {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 100vh;
  background: var(--ivory);
}

/* ── Left light panel ── */
.brand-story-left {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(4rem, 8vw, 7rem) clamp(2.5rem, 5vw, 5rem);
  background: var(--ivory);
  border-right: 1px solid var(--line);
  overflow: hidden;
}

.brand-story-kicker {
  display: inline-block;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 2rem;
  background: linear-gradient(to right, rgba(236, 190, 130, 0.18), transparent);
  padding: 0.3em 0.8em 0.3em 0.7em;
  border-left: 2px solid var(--accent);
}

.brand-story-heading {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.4rem, 3.8vw, 4.8rem);
  font-weight: 300;
  line-height: 0.96;
  color: var(--ink);
  max-width: 480px;
}

.brand-story-intro {
  margin-top: 2rem;
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  line-height: 1.9;
  color: var(--muted);
  /* max-width: 420px; */
  text-align: justify;
}

.brand-story-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2.4rem;
}

.brand-story-tags span {
  padding: 0.45rem 1.1rem;
  border: 1px solid rgba(38, 50, 69, 0.18);
  font-size: 0.64rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  border-radius: 0;
}

.brand-story-img {
  margin-top: auto;
  padding-top: 2.5rem;
  height: 220px;
  overflow: hidden;
}

.brand-story-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.88) saturate(0.9);
  transition: transform 0.8s ease;
}

.brand-story-left:hover .brand-story-img img {
  transform: scale(1.04);
}

/* ── Right light panels ── */
.brand-story-right {
  display: flex;
  flex-direction: column;
  background: #263245;
}

.bs-panel {
  flex: 1;
  padding: clamp(2.5rem, 5vw, 4.5rem) clamp(2.5rem, 5vw, 5rem);
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: background 0.35s ease;
}

.bs-panel::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #263245;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s ease;
}

.bs-panel:hover {
  background: var(--ivory);
}

.bs-panel:hover::before {
  transform: scaleY(1);
}

.bs-panel:last-child {
  border-bottom: none;
}

.bs-panel-head {
  display: flex;
  align-items: baseline;
  gap: 1.4rem;
  margin-bottom: 1.2rem;
}

.bs-panel-head em {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3.8rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1;
  color: rgb(255 255 255);
  transition: color 0.35s ease;
}

.bs-panel:hover .bs-panel-head em {
  color: var(--accent);
}

.bs-panel-head h3 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.4rem, 2.2vw, 2.2rem);
  font-weight: 300;
  line-height: 1;
  color: #fff;
}

.bs-panel-head h3:hover {
  color: var(--accent);
}

.bs-panel>p {
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  line-height: 1.9;
  color: #fff;
  /* max-width: 520px; */
  text-align: justify;
}

/* ── Responsive ── */
@media (max-width: 1024px) {

  .more-details-head,
  .more-details-layout {
    grid-template-columns: 1fr;
  }

  .more-details-media {
    grid-row: auto;
    min-height: 54vh;
  }

  .brand-story {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .brand-story-left {
    position: static;
    height: auto;
    min-height: auto;
    padding: clamp(4rem, 8vw, 6rem) clamp(1.5rem, 5vw, 4rem);
  }

  .brand-story-img {
    height: 260px;
  }

  .more-details-section {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .more-details-left h2 {
    align-self: center;
  }

  .more-details-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .more-details-media {
    min-height: 0;
  }
}

@media (max-width: 760px) {
  .more-details-section {
    padding: 4rem 1.2rem;
  }

  .brand-reach {
    padding: 4.2rem 1.2rem;
  }

  .brand-reach h2 {
    font-size: clamp(2.15rem, 10vw, 3.8rem);
    letter-spacing: -0.02em;
  }

  .brand-reach p {
    font-size: 0.98rem;
  }

  .brand-reach-btn {
    width: 100%;
    min-width: 0;
    letter-spacing: 0.18em;
  }

  .results-highlight {
    padding: 4.2rem 0;
  }

  .more-details-head {
    gap: 1.4rem;
    margin-bottom: 2.5rem;
  }

  .more-details-head h2 {
    font-size: clamp(3rem, 14vw, 5rem);
  }

  .more-detail-card {
    min-height: 260px;
  }

  .more-details-media {
    min-height: 0;
  }

  .more-details-left {
    align-items: flex-start;
    text-align: left;
  }

  .more-details-left h2 {
    align-self: flex-start;
  }

  .more-details-left p {
    font-size: 1rem;
    line-height: 1.7;
  }

  .more-details-layout {
    grid-template-columns: 1fr;
  }

  .more-detail-card,
  .more-detail-card:nth-child(2n),
  .more-detail-card:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .more-detail-card:last-child {
    border-bottom: 0;
  }

  .brand-story-left {
    padding: 3.5rem 1.2rem;
  }

  .brand-story-img {
    height: 200px;
  }

  .bs-panel {
    padding: 2.2rem 1.2rem;
  }

  .bs-panel-head {
    gap: 1rem;
  }
}

/* ── New Contact Section (Screenshot style) ── */
.contact-section-dark {
  background: var(--ink);
  padding: 80px;
}

.contact-inner-dark {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.contact-info-panel {
  background: #111820;
  padding: clamp(2.5rem, 4vw, 3.5rem);
  color: var(--ivory);
  height: 100%;
}

.contact-info-panel h2 {
  font-family: 'Syne', sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 1.8rem;
  color: var(--ivory);
}

.contact-divider {
  border: none;
  border-top: 1px solid rgba(247, 243, 235, 0.15);
  margin: 1.6rem 0 1.2rem;
}

.contact-info-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(247, 243, 235, 0.7);
  margin-bottom: 0.9rem;
}

.contact-info-list {
  list-style: none;
  display: grid;
  gap: 0.9rem;
}

.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 16px;
  color: rgba(247, 243, 235, 0.65);
  line-height: 1.6;
}

.contact-info-list li svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--accent);
}

/* New form */
.contact-form-new {
  display: grid;
  gap: 1.4rem;
  background: var(--ink);
  padding: clamp(2rem, 4vw, 3rem) 0;
}

.form-row-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}

.form-row-two label,
.form-row-full {
  display: grid;
  gap: 0.5rem;
}

.contact-form-new span {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(247, 243, 235, 0.75);
  text-transform: none;
}

.contact-form-new input,
.contact-form-new textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  background: #111820;
  border: 1px solid rgba(247, 243, 235, 0.12);
  color: var(--ivory);
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  resize: vertical;
  transition: border-color 0.25s ease;
}

.contact-form-new input::placeholder,
.contact-form-new textarea::placeholder {
  color: rgba(247, 243, 235, 0.3);
}

.contact-form-new input:focus,
.contact-form-new textarea:focus {
  border-color: var(--accent);
}

.btn-send-msg {
  width: 100%;
  max-width: 420px;
  padding: 1.1rem 2rem;
  background: var(--accent);
  color: var(--ink);
  font-family: 'Syne', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}

.btn-send-msg:hover {
  background: transparent;
  color: var(--accent);
  outline: 1px solid var(--accent);
}

/* ── Success Popup ── */
.success-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(12, 16, 23, 0.82);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.success-popup-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.success-popup {
  position: relative;
  max-width: 480px;
  width: calc(100% - 2.4rem);
  padding: clamp(2.5rem, 5vw, 3.5rem) clamp(2rem, 5vw, 3rem);
  background: var(--ink);
  border: 1px solid var(--accent);
  text-align: center;
  transform: translateY(24px);
  transition: transform 0.35s ease;
}

.success-popup-overlay.active .success-popup {
  transform: translateY(0);
}

.success-popup-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.6rem;
  border-radius: 50%;
  background: rgba(236, 190, 130, 0.12);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-popup-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.success-popup h3 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--ivory);
  margin-bottom: 0.8rem;
}

.success-popup p {
  color: rgba(247, 243, 235, 0.65);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.success-popup-close {
  display: inline-block;
  padding: 0.85rem 2.4rem;
  background: var(--accent);
  color: var(--ink);
  font-family: 'Syne', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: background 0.25s, color 0.25s, outline 0.25s;
}

.success-popup-close:hover {
  background: transparent;
  color: var(--accent);
  outline: 1px solid var(--accent);
}

.contact-map-section {
  padding: 80px;
  background: var(--ink);
}

.contact-map-frame {
  width: 100%;
  min-height: clamp(420px, 44vw, 620px);
  padding: clamp(0.65rem, 1.1vw, 1rem);
  border: 1px solid var(--accent);
  background: #080c11;
}

.contact-map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  border: 0;
  filter: grayscale(1) invert(0.9) contrast(0.9);
}

@media (max-width: 860px) {
  .contact-inner-dark {
    grid-template-columns: 1fr;
  }

  .contact-map-section {
    padding: 4rem 1.2rem;
  }

  .contact-map-frame {
    min-height: 340px;
  }

  .form-row-two {
    grid-template-columns: 1fr;
  }

  .btn-send-msg {
    max-width: 100%;
  }
}

/* ── Our Expertise: Jesper-style translateX slide-forward hover ── */
@media (min-width: 769px) {
  .our-values:not(.rd-section) .value-item.expertise-hovered {
    transform: translateX(22px) !important;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35) !important;
    z-index: 20 !important;
  }

  .our-values:not(.rd-section) .value-item.expertise-push {
    transform: translateX(16px) !important;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .our-values:not(.rd-section) .value-item.expertise-hovered {
    transform: translateX(14px) !important;
  }

  .our-values:not(.rd-section) .value-item.expertise-push {
    transform: translateX(10px) !important;
  }
}

@media (max-width: 768px) {

  .our-values:not(.rd-section) .value-item.expertise-hovered,
  .our-values:not(.rd-section) .value-item.expertise-push {
    transform: none !important;
  }
}
