/* ============================================================
   KRENVO Co., Ltd. — Front-end stylesheet
   Brand: Navy #0a1828 / Gold #c9a557 / Off-white #f7f4ee
   ============================================================ */

:root {
  --navy-900: #060f1d;
  --navy-800: #0a1828;
  --navy-700: #102236;
  --navy-600: #16314c;
  --navy-500: #1f4063;
  --gold-500: #c9a557;
  --gold-400: #d8b86b;
  --gold-300: #e6cf94;
  --ink-900: #14202f;
  --ink-700: #2c3a4d;
  --ink-500: #54637a;
  --ink-400: #7e8aa0;
  --bone-100: #f7f4ee;
  --bone-50:  #fbf9f4;
  --line-light: rgba(20, 32, 47, 0.10);
  --line-dark:  rgba(255, 255, 255, 0.12);

  --shadow-sm: 0 4px 14px rgba(10, 24, 40, 0.06);
  --shadow-md: 0 18px 40px -18px rgba(10, 24, 40, 0.25);
  --shadow-lg: 0 32px 80px -20px rgba(10, 24, 40, 0.45);

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;

  --container: 1240px;

  --font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Apple SD Gothic Neo', 'Malgun Gothic', sans-serif;
  --font-display: 'Cormorant Garamond', 'Times New Roman', Georgia, serif;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
*, *::before, *::after { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}

html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-900);
  background: var(--bone-50);
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

img, picture, video, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) { .container { padding: 0 40px; } }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy-800);
  color: var(--bone-100);
  padding: 10px 16px;
  z-index: 1000;
}
.skip-link:focus { left: 8px; top: 8px; }

/* =========================================================
   TYPE
   ========================================================= */
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-500);
  margin: 0 0 16px;
}
.eyebrow--gold { color: var(--gold-400); }

.section__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(28px, 4.2vw, 48px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink-900);
  margin: 0 0 20px;
}
.section__title--light { color: var(--bone-100); }
.section__title .gold { color: var(--gold-400); font-style: italic; }

.section__sub {
  font-size: clamp(15px, 1.4vw, 17px);
  color: var(--ink-500);
  max-width: 70ch;
  margin: 0;
}
.section__sub--light { color: rgba(247, 244, 238, 0.72); }

.lede { font-size: clamp(17px, 1.6vw, 20px); color: var(--ink-700); margin: 0 0 18px; }

.gold { color: var(--gold-500); }

/* =========================================================
   BUTTONS / LINKS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 0.25s var(--ease-out), background 0.25s, color 0.25s, box-shadow 0.25s;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn--gold {
  background: var(--gold-500);
  color: var(--navy-800);
  box-shadow: 0 10px 30px -10px rgba(201, 165, 87, 0.6);
}
.btn--gold:hover { background: var(--gold-400); }
.btn--ghost {
  background: transparent;
  color: var(--bone-100);
  border-color: rgba(255,255,255,0.5);
}
.btn--ghost:hover { background: rgba(255,255,255,0.08); border-color: var(--bone-100); }
.btn--block { width: 100%; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-900);
  border-bottom: 1px solid var(--gold-500);
  padding-bottom: 4px;
  margin-top: 16px;
  transition: gap 0.25s var(--ease-out), color 0.25s;
}
.link-arrow:hover { gap: 14px; color: var(--gold-500); }

/* =========================================================
   HEADER / NAV
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(10, 24, 40, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.3s, box-shadow 0.3s;
}
.site-header.is-scrolled {
  background: rgba(6, 15, 29, 0.96);
  box-shadow: 0 14px 30px -20px rgba(0,0,0,0.6);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  gap: 24px;
}

.brand { display: inline-flex; align-items: center; gap: 14px; }
.brand__mark {
  width: 40px; height: 40px; object-fit: contain;
  filter: drop-shadow(0 4px 14px rgba(201,165,87,0.25));
}
.brand__wordmark { display: flex; flex-direction: column; line-height: 1; gap: 4px; }
.brand__name {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.28em;
  color: var(--bone-100);
}
.brand__tagline {
  font-size: 9px;
  letter-spacing: 0.32em;
  color: var(--gold-400);
  font-weight: 500;
}

.primary-nav { display: flex; align-items: center; gap: 30px; }
.primary-nav a {
  position: relative;
  color: rgba(247, 244, 238, 0.78);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 8px 0;
  transition: color 0.2s;
}
.primary-nav a:not(.primary-nav__cta):hover { color: var(--bone-100); }
.primary-nav a:not(.primary-nav__cta)::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--gold-400);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}
.primary-nav a:not(.primary-nav__cta):hover::after { transform: scaleX(1); }
.primary-nav__cta {
  background: var(--gold-500);
  color: var(--navy-800) !important;
  padding: 10px 20px !important;
  border-radius: 999px;
  font-weight: 600 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase;
  font-size: 13px !important;
  transition: background 0.2s, transform 0.2s;
}
.primary-nav__cta:hover { background: var(--gold-400); transform: translateY(-1px); }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 8px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--bone-100);
  transition: transform 0.3s var(--ease-out), opacity 0.2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1024px) {
  .nav-toggle { display: inline-flex; }
  .primary-nav {
    position: fixed;
    inset: 78px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--navy-900);
    padding: 12px 24px 28px;
    border-bottom: 1px solid var(--line-dark);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s var(--ease-out), opacity 0.25s;
    max-height: calc(100vh - 78px);
    overflow-y: auto;
  }
  .primary-nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .primary-nav a { padding: 16px 4px; border-bottom: 1px solid var(--line-dark); font-size: 16px; }
  .primary-nav a:last-child { border-bottom: 0; }
  .primary-nav__cta { margin-top: 16px; text-align: center; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: clamp(580px, 92vh, 880px);
  display: flex;
  align-items: center;
  color: var(--bone-100);
  isolation: isolate;
  overflow: hidden;
}
.hero__media {
  position: absolute; inset: 0;
  z-index: -2;
}
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 55%;
  transform: scale(1.05);
  animation: kenburns 20s linear infinite alternate;
}
@keyframes kenburns {
  0%   { transform: scale(1.05) translate3d(0,0,0); }
  100% { transform: scale(1.12) translate3d(-2%, -1%, 0); }
}
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(6,15,29,0.55) 0%, rgba(6,15,29,0.55) 40%, rgba(6,15,29,0.85) 100%),
    radial-gradient(1100px 600px at 30% 40%, rgba(10,24,40,0.25), rgba(6,15,29,0.85));
}

.hero__content {
  position: relative;
  z-index: 1;
  padding-top: 100px;
  padding-bottom: 140px;
  max-width: 880px;
}
.hero__content .eyebrow {
  color: var(--gold-400);
  margin-bottom: 24px;
  font-size: 12px;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(40px, 6.6vw, 84px);
  line-height: 1.04;
  letter-spacing: -0.015em;
  margin: 0 0 22px;
  color: var(--bone-100);
}
.hero__sub {
  font-size: clamp(17px, 1.7vw, 22px);
  font-weight: 400;
  color: rgba(247, 244, 238, 0.85);
  max-width: 56ch;
  margin: 0 0 32px;
}
.hero__pledge {
  display: flex; flex-direction: column; gap: 4px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(16px, 1.5vw, 20px);
  color: rgba(247, 244, 238, 0.85);
  border-left: 2px solid var(--gold-500);
  padding: 6px 0 6px 18px;
  margin: 0 0 36px;
}
.hero__pledge strong {
  font-style: normal;
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--gold-400);
  text-transform: uppercase;
  font-size: 13px;
}

.hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; }

.hero__scroll {
  position: absolute;
  left: 50%; bottom: 28px;
  transform: translateX(-50%);
  width: 24px; height: 38px;
  border: 1.5px solid rgba(247, 244, 238, 0.55);
  border-radius: 999px;
  display: flex; justify-content: center;
  z-index: 2;
}
.hero__scroll span {
  display: block;
  width: 2px; height: 8px;
  background: var(--bone-100);
  margin-top: 8px;
  border-radius: 2px;
  animation: scroll-dot 1.8s ease-in-out infinite;
}
@keyframes scroll-dot {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50%      { transform: translateY(8px); opacity: 0.2; }
}

@media (max-width: 720px) {
  .hero { min-height: 88vh; }
  .hero__content { padding-top: 60px; padding-bottom: 110px; }
  .hero__title { font-size: clamp(36px, 9vw, 56px); }
}

/* =========================================================
   STAT STRIP
   ========================================================= */
.stat-strip {
  background: linear-gradient(180deg, var(--navy-900), var(--navy-800));
  color: var(--bone-100);
  border-top: 1px solid rgba(255,255,255,0.05);
}
.stat-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 56px 24px;
}
.stat-strip__grid .stat {
  position: relative;
  padding: 8px 24px;
  text-align: center;
}
.stat-strip__grid .stat + .stat::before {
  content: '';
  position: absolute;
  left: 0; top: 14px; bottom: 14px;
  width: 1px;
  background: var(--line-dark);
}
.stat__num {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(42px, 5vw, 62px);
  line-height: 1;
  display: block;
  margin-bottom: 12px;
  color: var(--gold-400);
  letter-spacing: -0.01em;
}
.stat__num .plus {
  color: var(--gold-300);
  font-size: 0.5em;
  vertical-align: super;
  margin-left: 2px;
}
.stat__label {
  font-size: 13px;
  letter-spacing: 0.04em;
  color: rgba(247, 244, 238, 0.7);
}
@media (max-width: 900px) {
  .stat-strip__grid { grid-template-columns: repeat(2, 1fr); row-gap: 36px; padding: 44px 24px; }
  .stat-strip__grid .stat + .stat::before { display: none; }
  .stat-strip__grid .stat { border-top: 0; }
}

/* =========================================================
   SECTION SHELL
   ========================================================= */
.section { padding: clamp(72px, 9vw, 130px) 0; position: relative; }
.section--dark {
  background: var(--navy-800);
  color: var(--bone-100);
}
.section--dark p { color: rgba(247, 244, 238, 0.78); }
.section__head { max-width: 760px; margin: 0 0 56px; }
.section__head--center { margin-left: auto; margin-right: auto; text-align: center; }

/* =========================================================
   ABOUT
   ========================================================= */
.section--about { background: var(--bone-50); }
.about__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
}
.about__copy p { color: var(--ink-700); margin: 0 0 16px; }

.about__media {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.about__media .frame { margin: 0; }
.about__media .frame--offset { margin-top: 56px; }

.frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.frame img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease-out); }
.frame:hover img { transform: scale(1.04); }
.frame--gold::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(201, 165, 87, 0.45);
  border-radius: inherit;
  pointer-events: none;
}

@media (max-width: 960px) {
  .about__grid { grid-template-columns: 1fr; gap: 48px; }
  .about__media .frame--offset { margin-top: 0; }
}

/* =========================================================
   PHILOSOPHY (DARK)
   ========================================================= */
.philosophy { max-width: 1080px; margin: 0 auto; }
.philosophy .section__title { max-width: 22ch; margin-bottom: 44px; }
.philosophy__columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  margin-bottom: 56px;
}
.philosophy__columns p { font-size: 16.5px; line-height: 1.78; }
.philosophy__columns strong { color: var(--bone-100); font-weight: 600; }
.philosophy__columns em { color: var(--gold-300); font-style: italic; }

.pullquote {
  margin: 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  padding: 40px 0;
  text-align: center;
}
.pullquote p {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.3;
  color: var(--bone-100);
  margin: 0;
  font-style: italic;
}

@media (max-width: 800px) {
  .philosophy__columns { grid-template-columns: 1fr; gap: 24px; }
}

/* =========================================================
   SERVICES
   ========================================================= */
.section--services { background: var(--bone-100); }
.services-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}
.service-card {
  background: var(--bone-100);
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  padding: 36px 30px 40px;
  transition: background 0.3s, color 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  transform: translateY(101%);
  transition: transform 0.45s var(--ease-out);
  z-index: 0;
}
.service-card > * { position: relative; z-index: 1; transition: color 0.35s; }
.service-card__num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  color: var(--gold-500);
  margin-bottom: 32px;
  letter-spacing: 0.02em;
}
.service-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.005em;
  margin: 0 0 12px;
  color: var(--ink-900);
}
.service-card p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ink-500);
}
.service-card:hover { transform: translateY(-2px); }
.service-card:hover::before { transform: translateY(0); }
.service-card:hover h3 { color: var(--bone-100); }
.service-card:hover p { color: rgba(247,244,238,0.78); }
.service-card:hover .service-card__num { color: var(--gold-400); }

@media (max-width: 1100px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .services-grid { grid-template-columns: 1fr; } }

/* =========================================================
   INDUSTRIES
   ========================================================= */
.section--industries {
  background: linear-gradient(180deg, var(--navy-900), var(--navy-800));
  color: var(--bone-100);
}
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 14px;
}
.industry-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-color: #000;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  isolation: isolate;
  transition: transform 0.4s var(--ease-out);
}
.industry-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: inherit;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: transform 0.7s var(--ease-out);
  z-index: -1;
}
.industry-card:hover::before { transform: scale(1.07); }
.industry-card--live      { background-image: url('../img/stadium-show.jpg'); }
.industry-card--orchestra { background-image: url('../img/orchestra.jpg'); }
.industry-card--arts      { background-image: url('../img/opera-cases.jpg'); }
.industry-card--sports    { background-image: url('../img/stage-build.jpg'); }
.industry-card--broadcast { background-image: url('../img/flight-cases.jpg'); }
.industry-card__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(6,15,29,0.05) 30%, rgba(6,15,29,0.85) 100%);
  z-index: 0;
}
.industry-card__label {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--bone-100);
}
.industry-card__label::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--gold-500);
  margin-bottom: 12px;
}
.industry-card--wide { grid-column: span 4; grid-row: span 1; }

@media (max-width: 1100px) {
  .industries-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
  .industry-card--wide { grid-column: span 2; }
}
@media (max-width: 560px) {
  .industries-grid { grid-template-columns: 1fr; }
  .industry-card--wide { grid-column: span 1; }
}

/* =========================================================
   PROJECT CASES
   ========================================================= */
.section--cases { background: var(--bone-50); }
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.case-card {
  background: #fff;
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.case-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.case-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.case-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.case-card:hover .case-card__media img { transform: scale(1.05); }
.case-card__badge {
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(10, 24, 40, 0.85);
  color: var(--gold-400);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(201, 165, 87, 0.4);
}
.case-card__body { padding: 28px; }
.case-card__body h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 24px;
  margin: 0 0 12px;
  color: var(--ink-900);
}
.case-card__body p { color: var(--ink-500); font-size: 15px; margin: 0 0 20px; }
.case-card__meta {
  list-style: none;
  margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 8px;
}
.case-card__meta li {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 12px;
  border: 1px solid var(--line-light);
  border-radius: 999px;
  color: var(--ink-500);
  background: var(--bone-50);
}

.cases-footnote {
  margin: 56px 0 0;
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(18px, 2vw, 24px);
  color: var(--ink-700);
  display: flex; align-items: center; justify-content: center; gap: 14px;
}
.cases-footnote__mark {
  display: inline-block;
  width: 40px; height: 1px;
  background: var(--gold-500);
}
.cases-footnote strong { color: var(--gold-500); font-weight: 600; font-style: normal; font-family: var(--font-sans); letter-spacing: 0.02em; }

@media (max-width: 1024px) { .cases-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 700px)  { .cases-grid { grid-template-columns: 1fr; } }

/* =========================================================
   WHY KRENVO
   ========================================================= */
.section--why {
  background:
    linear-gradient(180deg, var(--navy-800) 0%, var(--navy-700) 100%);
  color: var(--bone-100);
  position: relative;
  overflow: hidden;
}
.section--why::before {
  content: '';
  position: absolute;
  right: -160px; top: -160px;
  width: 460px; height: 460px;
  border: 1px solid rgba(201, 165, 87, 0.18);
  border-radius: 50%;
  pointer-events: none;
}
.section--why::after {
  content: '';
  position: absolute;
  right: -260px; top: -260px;
  width: 660px; height: 660px;
  border: 1px solid rgba(201, 165, 87, 0.10);
  border-radius: 50%;
  pointer-events: none;
}
.why__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: start;
  position: relative;
}
.why__intro p { color: rgba(247,244,238,0.72); }
.why-list {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 32px;
}
.why-list li {
  display: flex;
  gap: 16px;
  padding-top: 22px;
  border-top: 1px solid var(--line-dark);
}
.why-list__bullet {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--gold-400);
  flex: 0 0 auto;
  width: 32px;
  letter-spacing: 0.05em;
}
.why-list h4 {
  margin: 0 0 6px;
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--bone-100);
}
.why-list p { margin: 0; font-size: 14px; color: rgba(247,244,238,0.65); line-height: 1.6; }

@media (max-width: 1024px) {
  .why__grid { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 600px) {
  .why-list { grid-template-columns: 1fr; }
}

/* =========================================================
   WHAT MAKES US DIFFERENT
   ========================================================= */
.section--diff { background: var(--bone-100); position: relative; }
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.diff-card {
  background: #fff;
  border: 1px solid var(--line-light);
  padding: 44px 36px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease-out), border-color 0.3s, box-shadow 0.3s;
}
.diff-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(201,165,87,0.06), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}
.diff-card:hover { transform: translateY(-4px); border-color: rgba(201,165,87,0.5); box-shadow: var(--shadow-md); }
.diff-card:hover::before { opacity: 1; }
.diff-card__num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 60px;
  font-weight: 500;
  line-height: 1;
  color: var(--gold-400);
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}
.diff-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 24px;
  margin: 0 0 14px;
  color: var(--ink-900);
  line-height: 1.3;
}
.diff-card p { margin: 0; color: var(--ink-500); font-size: 15px; }
@media (max-width: 1024px) { .diff-grid { grid-template-columns: 1fr; } }

/* =========================================================
   NETWORK
   ========================================================= */
.section--network { background: var(--navy-800); color: var(--bone-100); }
.network__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.network__copy p { color: rgba(247,244,238,0.78); margin: 0 0 18px; }
.network__copy strong { color: var(--bone-100); }

.pill-list {
  list-style: none; margin: 28px 0 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 10px;
}
.pill-list li {
  border: 1px solid rgba(201, 165, 87, 0.4);
  color: var(--gold-300);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.network__media .frame { box-shadow: var(--shadow-lg); }

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

/* =========================================================
   CONTACT
   ========================================================= */
.section--contact {
  background: var(--bone-50);
  position: relative;
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 72px;
  align-items: start;
}
.contact-list {
  list-style: none; margin: 32px 0 0; padding: 0;
  display: grid;
  gap: 18px;
  font-size: 15px;
  color: var(--ink-700);
}
.contact-list li {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-light);
  align-items: baseline;
}
.contact-list li:last-child { border-bottom: 0; }
.contact-list__label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold-500);
}
.contact-list a { border-bottom: 1px solid transparent; transition: border-color 0.2s, color 0.2s; }
.contact-list a:hover { color: var(--gold-500); border-color: var(--gold-500); }

@media (max-width: 600px) {
  .contact-list li { grid-template-columns: 1fr; gap: 4px; }
}

.contact-form {
  background: #fff;
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
}
.contact-form__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 26px;
  margin: 0 0 24px;
  color: var(--ink-900);
}
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .grid-2 { grid-template-columns: 1fr; } }

.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.field > span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-500);
}
.field input,
.field select,
.field textarea {
  font: inherit;
  color: var(--ink-900);
  background: var(--bone-50);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-md);
  padding: 13px 14px;
  outline: none;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  width: 100%;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold-500);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(201, 165, 87, 0.18);
}
.field input:invalid:not(:placeholder-shown):not(:focus),
.field textarea:invalid:not(:placeholder-shown):not(:focus) {
  border-color: #d6745b;
}

.contact-form__status {
  margin: 14px 0 0;
  font-size: 14px;
  min-height: 20px;
  color: var(--ink-500);
}
.contact-form__status.is-success { color: #2c7a4d; font-weight: 600; }
.contact-form__status.is-error   { color: #c0432d; font-weight: 600; }

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

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--navy-900);
  color: rgba(247, 244, 238, 0.65);
  padding: 56px 0 28px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.site-footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr;
  gap: 40px;
  align-items: start;
}
.site-footer__brand { display: flex; align-items: center; gap: 14px; }
.site-footer__mark { width: 44px; height: 44px; object-fit: contain; }
.site-footer__name {
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.22em;
  color: var(--bone-100);
  margin: 0;
}
.site-footer__tag {
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--gold-400);
  margin: 6px 0 0;
}
.site-footer__nav {
  display: flex; flex-wrap: wrap;
  gap: 18px 24px;
  align-self: center;
  justify-self: center;
}
.site-footer__nav a {
  font-size: 14px;
  letter-spacing: 0.04em;
  color: rgba(247,244,238,0.7);
  transition: color 0.2s;
}
.site-footer__nav a:hover { color: var(--gold-400); }
.site-footer__meta {
  text-align: right;
  font-size: 13px;
  line-height: 1.7;
}
.site-footer__meta a { color: var(--bone-100); border-bottom: 1px solid var(--line-dark); }
.site-footer__meta a:hover { color: var(--gold-400); border-color: var(--gold-400); }

@media (max-width: 900px) {
  .site-footer__inner { grid-template-columns: 1fr; text-align: left; gap: 28px; }
  .site-footer__nav { justify-self: flex-start; }
  .site-footer__meta { text-align: left; }
}

/* =========================================================
   SCROLL REVEAL
   ========================================================= */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}

/* =========================================================
   PRINT
   ========================================================= */
@media print {
  .site-header, .hero__scroll, .nav-toggle { display: none !important; }
  .hero { min-height: auto; }
  body { background: #fff; color: #000; }
}
