:root {
  --bg-body: #ffffff;
  --bg-soft: #f7f5f4;
  --bg-soft-strong: #f1eeeb;

  --text-main: #111111;
  --text-muted: #5f5f5f;

  --accent: #c9c9c9;
  --accent-dark: #c9c9c9;

  --surface: #ffffff;
  --surface-dark: #151515;

  --border-soft: #e3dfda;

  --shadow-soft: 0 18px 45px rgba(0,0,0,0.08);
  --shadow-strong: 0 26px 70px rgba(0,0,0,0.30);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background: var(--bg-body);
  color: var(--text-main);
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, 100% - 2rem);
  margin: 0 auto;
}

/* ======================
   HEADER
====================== */

.site-header {
  position: absolute;
  inset-inline: 0;
  top: 0;
  z-index: 10;
  padding: 16px 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.45), transparent);
}

.site-header .container {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 80px;
  width: auto;
}

.header-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav a {
  font-size: 1rem;
  text-decoration: none;
  color: #ffffff;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.25s ease;
}

.nav a:hover::after {
  width: 100%;
}

.lang-switcher {
  position: relative;
  font-size: 0.9rem;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(0,0,0,0.25);
  color: #ffffff;
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.lang-flag-img {
  width: 18px;
  height: 12px;
  border-radius: 2px;
  object-fit: cover;
}

.lang-chevron {
  font-size: 0.7rem;
}

.lang-menu {
  position: absolute;
  top: 120%;
  right: 0;
  list-style: none;
  margin: 0;
  padding: 0.35rem 0;
  background: #ffffff;
  border-radius: 0.6rem;
  box-shadow: 0 14px 35px rgba(0,0,0,0.2);
  min-width: 170px;
  display: none;
  z-index: 20;
}

.lang-switcher.is-open .lang-menu {
  display: block;
}

.lang-menu li a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.9rem;
  text-decoration: none;
  color: #111;
  font-size: 0.9rem;
}

.lang-menu li a:hover {
  background: #f3f3f3;
}

/* ======================
   HERO
====================== */

.hero {
  position: relative;
  min-height: 620px;
  padding: 150px 0 110px;
  color: #ffffff;
  overflow: hidden;
}

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

.hero-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.6s ease-in-out;
  animation: heroZoom 22s linear infinite;
  filter: grayscale(50%) contrast(1.05) brightness(0.2);
}

.hero-bg-image.is-active {
  opacity: 1;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at top left,
      rgba(255,255,255,0.15),
      transparent 40%
    ),
    linear-gradient(
      to bottom right,
      rgba(0,0,0,0.8),
      rgba(0,0,0,0.35),
      rgba(0,0,0,0.9)
    );
  z-index: -1;
}

.hero-inner {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1.8rem;
}

.hero-main {
  max-width: 640px;
}

.hero-tag {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 0.75rem;
}

.hero-title {
  font-size: clamp(2.4rem, 3.4vw, 3rem);
  line-height: 1.1;
  margin: 0 0 1rem;
}

.hero-text {
  font-size: 1rem;
  line-height: 1.7;
  max-width: 30rem;
  opacity: 0.92;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.7rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: #111;
}

.btn-primary:hover {
  background: var(--accent-dark);
}

.btn-outline {
  border: 1.5px solid rgba(255,255,255,0.7);
  background: transparent;
  color: #ffffff;
}

.btn-outline:hover {
  background: rgba(255,255,255,0.12);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-top: 2rem;
}

.hero-meta-item {
  padding-left: 0.9rem;
  border-left: 2px solid rgba(255,255,255,0.5);
  max-width: 220px;
}

.hero-meta-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 0.3rem;
}

.hero-meta p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.9;
}

/* ======================
   SNAPSHOT SECTION
====================== */

.snapshot-section {
  width: 100%;
  background: #0b0b0b; 
}

.snapshot-card {
  max-width: none;
  width: 100%;
  border-radius: 0;
  box-shadow: none; 
  color:white;
}

.snapshot-inner {
  max-width: 900px;
  margin: 0 auto;
}


.snapshot-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.7;
  margin: 0 0 0.4rem;
}

.snapshot-card h2 {
  margin: 0 0 0.75rem;
  font-size: 1.35rem;
}

.snapshot-card p {
  opacity: 0.92;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.snapshot-card ul {
  margin: 0;
  padding-left: 1.2rem;
  opacity: 0.9;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ======================
   GENERIC SECTIONS
====================== */

.section {
  padding: 4.5rem 0;
}

.section-light {
  background: #ffffff;
}

.section-soft {
  background: var(--bg-soft);
}

.section-header {
  max-width: 640px;
  margin-bottom: 2.4rem;
}

.section-header h2 {
  margin: 0 0 0.6rem;
  font-size: 1.9rem;
}

.section-header p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.7;
}

.section-header-center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* ======================
   GRID 3 TILES
====================== */

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.7rem;
}

.tile {
  background: var(--surface);
  border-radius: 20px;
  padding: 1.8rem 1.6rem;
  box-shadow: var(--shadow-soft);
}

.tile h3 {
  margin: 0 0 0.6rem;
  font-size: 1.1rem;
}

.tile p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.7;
}

/* ======================
   SPLIT ABOUT
====================== */

.section-about {
  background: #ffffff;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.about-text h2 {
  margin: 0 0 0.9rem;
  font-size: 1.9rem;
}

.about-text p {
  margin: 0 0 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.bullets {
  list-style: none;
  padding: 0;
  margin: 1.1rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.bullets li {
  color: var(--text-muted);
  line-height: 1.7;
}

.bullets strong {
  color: var(--text-main);
}


.about-visual {
  position: relative;
  min-height: 500px;      
}

.about-photo {
  position: absolute;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-photo-main {
  top: 0;
  left: 0;
  width: 88%;
  height: 100%;
  filter: grayscale(45%) brightness(0.9);
}

.about-photo-small {
  right: -6%;
  bottom: -26px;
  width: 56%;
  height: 60%;
}

@media (max-width: 960px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-visual {
    margin-top: 1.5rem;
    min-height: 260px;
  }

  .about-photo-main {
    width: 70%;
  }

  .about-photo-small {
    right: 0;
  }
}

/* ======================
   STRATEGY GRID
====================== */

.strategy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.7rem;
}

.strategy-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 1.8rem 1.8rem;
  box-shadow:
    0 24px 70px rgba(0,0,0,0.06),
    0 4px 12px rgba(0,0,0,0.03);
}

.strategy-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.7rem;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.strategy-label .bar {
  width: 3px;
  height: 26px;
  border-radius: 999px;
  background: #c0bab3;
}

.strategy-card h3 {
  margin: 0 0 0.6rem;
  font-size: 1.1rem;
}

.strategy-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.7;
}

/* ======================
   CTA BAND + CONTACT
====================== */

.contact-card a {
  color: inherit;        
  text-decoration: none;
}

.contact-card a:hover {
  text-decoration: underline; 
}


.section-cta-band {
  background: var(--surface-dark);
  color: #ffffff;
  padding: 3.8rem 0;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cta-band-text h2 {
  margin: 0 0 0.75rem;
  font-size: 1.9rem;
}

.cta-band-text p {
  margin: 0;
  color: rgba(255,255,255,0.8);
  max-width: 34rem;
  line-height: 1.8;
}

.section-contact {
  background: radial-gradient(circle at top left, #595959, #232323 60%, #161616);
  color: #ffffff;
  padding: 4rem 0 3.2rem;
}

.contact-layout {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 3rem;
}

.contact-copy h2 {
  margin: 0 0 0.7rem;
  font-family: "Crimson Text", serif;
  font-size: 1.9rem;
}

.contact-copy p {
  margin: 0;
  color: rgba(255,255,255,0.85);
  max-width: 460px;
  line-height: 1.8;
}

.contact-card {
  background: rgba(0,0,0,0.7);
  border-radius: 20px;
  padding: 1.6rem 1.8rem;
  box-shadow: var(--shadow-strong);
  min-width: 260px;
}

.contact-row + .contact-row {
  margin-top: 1.2rem;
}

.contact-label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 0.3rem;
}

.contact-card p {
  margin: 0;
}

/* ======================
   FOOTER
====================== */

.site-footer {
  background: #050505;
  color: #888888;
  text-align: center;
  font-size: 0.85rem;
  padding: 1.6rem 0;
  border-top: 1px solid #1b1b1b;
}

/* ======================
   REVEAL ON SCROLL HOOK
====================== */

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ======================
   RESPONSIVE
====================== */

@media (max-width: 960px) {
  .grid-3 {
    grid-template-columns: minmax(0, 1fr);
  }

  .split {
    grid-template-columns: minmax(0, 1fr);
  }

  .media-stack {
    margin-top: 1.5rem;
  }

  .strategy-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .cta-band {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-layout,
  .hero-inner {
    flex-direction: column;
  }

  .snapshot-section {
    margin-top: 0;
  }
}

@media (max-width: 768px) {
  .site-header {
    padding: 10px 0;
  }

  .logo-img {
    height: 64px;
  }

  .nav {
    display: none;
  }

  .hero {
    padding: 130px 0 90px;
  }

  .hero-inner {
    gap: 1.6rem;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
}

/* ======================
   HERO ANIMATION
====================== */

@keyframes heroZoom {
  0%   { transform: scale(1); }
  100% { transform: scale(1.06); }
}
