/* ===== Design tokens: spacing, transitions, alignment ===== */
:root {
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 32px;
  --space-xl: 48px;
  --space-2xl: 64px;
  --space-3xl: 80px;
  --space-4xl: 100px;
  --container: 1170px;
  --header-height: 72px;
  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --transition-fast: 0.2s var(--ease-out);
  --transition-base: 0.3s var(--ease-out);
  --transition-slow: 0.45s var(--ease-in-out);
}

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #333;
  background: #fff;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 0 auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast), opacity var(--transition-fast), transform var(--transition-fast);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  transition: transform var(--transition-slow);
  vertical-align: middle;
}

/* Keep exact design: reserve space so images don’t shift layout */
.about-figure img,
.blog-img {
  width: 100%;
  object-fit: cover;
}

button,
input {
  font-family: inherit;
}

/* Focus visible for accessibility */
:focus-visible {
  outline: 2px solid #1a1a1a;
  outline-offset: 2px;
}

/* ===== Layout ===== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

.section-title {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
  color: #1a1a1a;
  line-height: 1.25;
  text-align: left;
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
  transition: background var(--transition-base), box-shadow var(--transition-base);
}

/* Home/hero: transparent navbar */
.header:not(.scrolled) {
  background: transparent;
  box-shadow: none;
}

/* After scroll (other sections): solid white navbar */
.header.scrolled {
  background: #fff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.logo {
  display: flex;
  align-items: center;
  line-height: 0;
  transition: opacity var(--transition-fast);
}

.logo:hover {
  opacity: 0.9;
}

.logo:focus-visible {
  outline-offset: 4px;
}

.logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
  position: absolute;
  transition: opacity var(--transition-base);
}

/* Home/hero: white logo on transparent bar */
.logo-dark {
  opacity: 0;
  pointer-events: none;
}
.logo-light {
  opacity: 1;
}

/* After scroll: gray logo on white bar */
.header.scrolled .logo-dark {
  opacity: 1;
  pointer-events: auto;
}
.header.scrolled .logo-light {
  opacity: 0;
  pointer-events: none;
}

.logo {
  position: relative;
  width: 120px;
  height: 36px;
}

.logo .logo-img {
  position: absolute;
  top: 0;
  left: 0;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav-list a {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  padding: var(--space-xs) 0;
  position: relative;
}

.header.scrolled .nav-list a {
  color: #333;
}

.nav-list a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width var(--transition-base);
}

.nav-list a:hover::after,
.nav-list a:focus-visible::after,
.nav-list a.active::after {
  width: 100%;
}

.nav-list a:hover {
  color: #b8860b;
}

.header.scrolled .nav-list a:hover {
  color: #b8860b;
}

.nav-list a.active {
  font-weight: 600;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: opacity var(--transition-fast);
}

.nav-toggle:hover {
  opacity: 0.8;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: transform var(--transition-base), opacity var(--transition-base);
  margin: 0 auto;
}

.header.scrolled .nav-toggle span {
  background: #1a1a1a;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 768px) {
  .nav-list {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(300px, 85vw);
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: calc(var(--header-height) + var(--space-lg)) var(--space-lg) var(--space-lg);
    gap: 0;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.12);
    transform: translateX(100%);
    transition: transform var(--transition-slow);
  }

  .nav-list.open {
    transform: translateX(0);
  }

  .nav-list a {
    color: #333;
    padding: var(--space-sm) 0;
    font-size: 14px;
  }

  .nav-toggle {
    display: flex;
  }
}

/* ===== Hero (match live vyom.ai: full viewport, dark, optional bg image) ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #0a0a0a;
  color: #fff;
  padding: 72px 20px 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: #0a0a0a;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-label {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  margin-bottom: var(--space-md);
  opacity: 0.92;
  color: #fff;
}

.hero-title {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: clamp(24px, 4.2vw, 40px);
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0.06em;
  line-height: 1.15;
  margin-bottom: var(--space-sm);
  color: #fff;
}

.hero-subtitle {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  opacity: 0.88;
  margin-bottom: var(--space-lg);
  color: rgba(255,255,255,0.9);
}

.hero-cta {
  display: inline-block;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.85);
  padding: var(--space-xs) 0;
  position: relative;
}

.hero-cta::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width var(--transition-base), left var(--transition-base);
}

.hero-cta:hover {
  color: #fff;
}

.hero-cta:hover::after {
  width: 100%;
  left: 0;
}

/* ===== About ===== */
.about {
  background: #f5f5f5;
}

.about .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.about .hero-title {
  font-size: clamp(14px, 2vw, 20px);
  color: #1a1a1a;
  margin-bottom: 12px;
}

.about .section-title {
  font-size: clamp(16px, 1.8vw, 22px);
  margin-bottom: 20px;
  text-align: center;
}

.about-p {
  max-width: 720px;
  margin: 0 auto 16px;
  color: #444;
  line-height: 1.65;
  font-size: 13px;
  text-align: center;
}

.about-p:last-of-type {
  margin-bottom: 0;
}

.about-figure {
  margin: 40px auto 0;
  width: 100%;
  max-width: 900px;
  overflow: hidden;
  background: #e8e8e8;
}

.about-figure img {
  width: 100%;
  height: auto;
  min-height: 180px;
  object-fit: cover;
  display: block;
}

.about-figure:hover img {
  transform: scale(1.02);
}

/* ===== Services ===== */
.services {
  background: #fff;
  padding: 80px 0;
}

.services .container {
  max-width: 94%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.services .section-title {
  font-size: clamp(16px, 1.8vw, 22px);
  margin-bottom: 16px;
  text-align: center;
}

.services-p {
  max-width: 860px;
  margin: 0 auto 10px;
  color: #444;
  line-height: 1.6;
  font-size: 13px;
  text-align: center;
}

.services-p:last-of-type {
  margin-bottom: 0;
}

.services-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  align-items: center;
  margin: 28px 0 32px 0;
  width: 100%;
}

.services-icons img {
  width: 88px;
  height: 88px;
  object-fit: contain;
  display: block;
}

.services-icons img:hover {
  transform: scale(1.08);
  opacity: 0.9;
}

.areas {
  padding-top: 36px;
  margin-top: 36px;
  border-top: 1px solid #e2e2e2;
  width: 100%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.services .areas-h {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 10px 0;
  color: #1a1a1a;
}

.services .areas-p,
.services .areas-tags {
  font-size: 12px;
  color: #555;
  margin: 0 0 10px 0;
  line-height: 1.7;
  text-align: center;
}

.services .areas-tags {
  font-size: 11px;
  color: #666;
}

/* ===== We Are The Future (layout like live: image left, text right, dots under image) ===== */
.future {
  padding: 0;
  color: #1a1a1a;
}

.future-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}

@media (max-width: 900px) {
  .future-split {
    grid-template-columns: 1fr;
  }

  .future-slider-inner,
  .future-slide img {
    min-height: 320px;
  }

  .future-content {
    padding: 36px 24px;
  }
}

/* Left: large image carousel – horizontal slide like vyom.ai (Timber-style) */
.future-slider {
  position: relative;
  background: #000;
  overflow: hidden;
}

.future-slider-inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 420px;
  overflow: hidden;
}

.future-slider-track {
  display: flex;
  width: 100%;
  height: 100%;
  min-height: 420px;
  transition: transform 0.5s ease-out;
  will-change: transform;
}

.future-slide {
  flex: 0 0 100%;
  width: 100%;
  min-height: 420px;
}

.future-slide img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}

/* Dots: like vyom.ai .tms-pagination / .tms-bullet-nav – white, bottom */
.future-slider-dots {
  position: absolute;
  bottom: 2rem;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.future-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  padding: 0;
  transition: background 0.25s ease, transform 0.2s ease;
}

.future-dot:hover {
  background: rgba(255, 255, 255, 0.7);
}

.future-dot.future-dot-active {
  background: #fff;
}

/* Right: light grey panel with text */
.future-content {
  background: #e8e8e8;
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.future-content .section-title {
  color: #1a1a1a;
  font-size: clamp(20px, 2.2vw, 26px);
  text-align: left;
  margin-bottom: 12px;
}

.future-lead {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0 0 16px 0;
  color: #1a1a1a;
}

.future-p {
  font-size: 13px;
  color: #333;
  line-height: 1.7;
  margin: 0;
  text-align: left;
  max-width: 100%;
}

/* Second row: text blocks left (dark teal), image carousel right (sticky notes style) with dots */
.future-cards-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
}

@media (max-width: 900px) {
  .future-cards-split {
    grid-template-columns: 1fr;
  }
}

.future-cards-text {
  background: #2d3d3d;
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 36px;
}

.future-card-block h3 {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 8px 0;
  color: #fff;
  line-height: 1.3;
}

.future-card-block p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin: 0;
  text-align: left;
}

.future-slider-2 .future-slider-inner,
.future-slider-2 .future-slider-track {
  min-height: 420px;
}

.future-slider-2 .future-slide,
.future-slider-2 .future-slide img {
  min-height: 420px;
}

@media (max-width: 900px) {
  .future-slider-2 .future-slider-inner,
  .future-slider-2 .future-slide img {
    min-height: 320px;
  }

  .future-cards-text {
    padding: 36px 24px;
  }
}

/* ===== Mission: carousel left, text right (like original) ===== */
.mission {
  padding: 0;
  background: #fff;
}

.mission-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 440px;
}

@media (max-width: 900px) {
  .mission-split {
    grid-template-columns: 1fr;
  }
}

.mission-slider {
  background: #f0f0f0;
  overflow: hidden;
}

.mission-slider .future-slider-inner,
.mission-slider .future-slider-track {
  min-height: 440px;
}

.mission-slider .future-slide,
.mission-slider .future-slide img {
  min-height: 440px;
}

/* Mission carousel: dark dots (visible on light images) */
.mission-slider-dots .mission-dot {
  background: rgba(0, 0, 0, 0.25);
}

.mission-slider-dots .mission-dot:hover {
  background: rgba(0, 0, 0, 0.5);
}

.mission-slider-dots .mission-dot.future-dot-active {
  background: #1a1a1a;
}

@media (max-width: 900px) {
  .mission-slider .future-slider-inner,
  .mission-slider .future-slider-track,
  .mission-slider .future-slide,
  .mission-slider .future-slide img {
    min-height: 320px;
  }
}

.mission-content {
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #f8f8f8;
}

.mission-content .section-title {
  font-size: clamp(20px, 2.2vw, 26px);
  color: #1a1a1a;
  text-align: left;
  margin-bottom: 20px;
}

.mission-p {
  font-size: 13px;
  color: #444;
  line-height: 1.7;
  margin: 0 0 16px 0;
  text-align: left;
}

.mission-p:last-child {
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .mission-image img {
    min-height: 280px;
  }

  .mission-content {
    padding: 36px 24px;
  }
}

/* ===== Design Mind ===== */
.design-mind {
  background: #fff;
}

.design-mind .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.design-mind-h {
  text-transform: none;
  font-size: clamp(16px, 1.8vw, 20px);
  text-align: center;
  margin-bottom: 24px;
}

.design-mind .blog-grid {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

@media (max-width: 900px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

.blog-card {
  border: 1px solid #e5e5e5;
  border-radius: 0;
  overflow: hidden;
  transition: box-shadow var(--transition-base), border-color var(--transition-base), transform var(--transition-fast);
}

.blog-card:hover {
  border-color: #ccc;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.blog-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
}

.blog-img-wrap {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.blog-img {
  width: 100%;
  height: 200px;
  min-height: 200px;
  object-fit: cover;
  display: block;
  background: #eee;
  transition: transform var(--transition-base);
}

.blog-card:hover .blog-img {
  transform: scale(1.05);
}

/* Design Mind: little shadow on image + small title in middle on hover; slower transitions */
.design-mind .blog-img {
  transition: transform 0.55s ease-out;
}

.design-mind .blog-img-wrap {
  transition: box-shadow 0.55s ease-out;
}

.design-mind .blog-card:hover .blog-img-wrap {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.design-mind .blog-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  opacity: 0;
  transition: opacity 0.55s ease-out;
}

.design-mind .blog-card:hover .blog-card-overlay {
  opacity: 1;
}

.blog-link h3 {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 16px;
  font-weight: 600;
  margin: 20px 20px 0;
  color: #1a1a1a;
  line-height: 1.3;
  flex: 1;
}

.blog-link p {
  font-size: 13px;
  color: #666;
  margin: 8px 20px 20px;
  line-height: 1.5;
}

/* Design Mind: shadow on hover + small centered text (e.g. "Asymmetry in Design") */
.design-mind .blog-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.design-mind .blog-link h3 {
  font-size: 13px;
  margin: 16px 16px 0;
  text-align: center;
}

.design-mind .blog-link p {
  font-size: 12px;
  margin: 6px 16px 16px;
  text-align: center;
}

/* ===== Get in Touch ===== */
.contact {
  background: #f5f5f5;
}

.contact .container {
  display: block;
  text-align: left;
}

.contact .section-title {
  font-size: clamp(16px, 1.8vw, 22px);
  text-align: left;
  margin-bottom: 24px;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  max-width: 100%;
}

@media (max-width: 768px) {
  .contact-wrap {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
}

.contact-info {
  display: block;
}

.contact-address {
  font-size: 13px;
  color: #444;
  line-height: 1.7;
  margin: 0 0 12px 0;
}

.contact-email a {
  font-size: 14px;
  font-weight: 500;
  color: #1a1a1a;
  transition: color var(--transition-fast), opacity var(--transition-fast);
}

.contact-email a:hover {
  opacity: 0.85;
}

.newsletter {
  max-width: 420px;
}

.newsletter h3 {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 8px 0;
  color: #1a1a1a;
}

.newsletter p {
  font-size: 13px;
  color: #555;
  margin: 0 0 16px 0;
  line-height: 1.5;
}

.newsletter-form {
  display: flex;
  gap: var(--space-xs);
  flex-wrap: wrap;
}

.newsletter-form input {
  flex: 1;
  min-width: 200px;
  padding: var(--space-sm) var(--space-md);
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 15px;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.newsletter-form input:focus {
  outline: none;
  border-color: #1a1a1a;
  box-shadow: 0 0 0 3px rgba(26, 26, 26, 0.08);
}

.newsletter-form button {
  padding: var(--space-sm) var(--space-md);
  background: #1a1a1a;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.newsletter-form button:hover {
  background: #333;
}

.newsletter-form button:active {
  transform: scale(0.98);
}

/* ===== Footer ===== */
.footer {
  background: #0a0a0a;
  color: #fff;
  padding: var(--space-lg) 0;
}

.footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 0 20px;
}

.footer-copy {
  font-size: 13px;
  opacity: 0.9;
  margin: 0;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-top,
.footer-back {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  padding: var(--space-xs) 0;
  transition: opacity var(--transition-fast);
  text-decoration: none;
}

.footer-top:hover,
.footer-back:hover {
  opacity: 0.85;
}

/* ===== Article pages (Design Mind posts) - same layout as live ===== */
.article-page {
  /* No padding-top: hero extends behind fixed header so transparent nav is visible over hero */
}

.article .container {
  max-width: 720px;
}

.article-title {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: var(--space-sm);
  color: #1a1a1a;
}

.article-lead {
  font-size: 18px;
  color: #555;
  margin-bottom: var(--space-lg);
  line-height: 1.6;
}

.article-body p {
  margin-bottom: var(--space-md);
  color: #444;
  line-height: 1.7;
}

.article-back {
  margin-top: var(--space-xl);
  padding-top: var(--space-md);
  border-top: 1px solid #eee;
}

.article-back a {
  color: #1a1a1a;
  font-weight: 500;
}

.article-back a:hover {
  color: #b8860b;
}

.future-back {
  margin-top: var(--space-xl);
  border-top-color: rgba(255, 255, 255, 0.2);
}

.future-back a {
  color: #fff;
}

.future-back a:hover {
  color: rgba(255, 255, 255, 0.85);
}

/* ===== Asymmetry (and article) page: hero + two-column layout with sidebar ===== */
.article-hero {
  min-height: 55vh;
  align-items: flex-end;
  justify-content: flex-start;
  padding-bottom: 48px;
}

.article-hero-bg {
  background: #1a1a1a;
}

.article-hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.85;
}

.article-hero-bg::after {
  background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.7) 100%);
}

.article-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
  text-align: left;
}

.article-hero-title {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: #fff;
  margin: 0;
  text-transform: none;
  letter-spacing: 0.02em;
}

.article-intro {
  padding: var(--space-lg) 0 var(--space-md);
  background: #fff;
  border-bottom: 1px solid #eee;
}

.article-intro-title {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}

.article-layout {
  padding: var(--space-xl) 0;
  background: #fff;
}

.article-layout .container-wide {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
}

.article-main .article .article-lead {
  margin-top: 0;
}

.article-figure {
  margin: var(--space-lg) 0;
}

.article-figure img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
}

.article-body h3 {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  margin: var(--space-lg) 0 var(--space-sm);
}
.article-body h3:first-child {
  margin-top: 0;
}

.article-table-wrap {
  overflow-x: auto;
  margin: var(--space-lg) 0;
}
.article-table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  font-size: 14px;
}
.article-table th,
.article-table td {
  border: 1px solid #e0e0e0;
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
}
.article-table thead th {
  background: #f5f5f5;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 600;
  color: #1a1a1a;
}
.article-table tbody th {
  background: #fafafa;
  font-weight: 600;
  color: #333;
}
.article-table tbody tr:nth-child(even) td {
  background: #fafafa;
}
.article-table td {
  color: #444;
}

/* Sidebar */
.article-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 24px);
}

.widget {
  margin-bottom: 32px;
}

.widget:last-child {
  margin-bottom: 0;
}

.widget-title {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.widget-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.widget-list li {
  margin-bottom: 6px;
}

.widget-list a {
  color: #444;
  text-decoration: none;
  font-size: 14px;
}

.widget-list a:hover {
  color: #b8860b;
}

.widget-about p {
  font-size: 13px;
  line-height: 1.65;
  color: #555;
  margin: 0;
}

@media (max-width: 960px) {
  .article-layout .container-wide {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .article-main {
    order: -1;
  }

  .article-sidebar {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}

@media (max-width: 600px) {
  .article-sidebar {
    grid-template-columns: 1fr;
  }
}

/* Article page: gallery/slider placeholder (like original) */
.article-gallery {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 200px;
  background: #e8e8e8;
  padding: 32px 20px;
  margin-top: 0;
}

.article-gallery-inner {
  flex: 1;
  max-width: 900px;
  min-height: 160px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 4px;
}

.article-gallery-btn {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: #fff;
  border-radius: 50%;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}

.article-gallery-btn:hover {
  background: #1a1a1a;
  color: #fff;
  border-color: #1a1a1a;
}

/* Asymmetry footer: Mannan Impex + Terms & Cookie + LinkedIn */
.footer-asymmetry .footer-copy {
  font-size: 13px;
}

.footer-asymmetry .footer-copy a {
  color: #fff;
  opacity: 0.9;
  text-decoration: none;
}

.footer-asymmetry .footer-copy a:hover {
  opacity: 1;
  text-decoration: underline;
}

.footer-social {
  font-size: 14px;
  font-weight: 600;
  text-transform: lowercase;
}
