﻿:root {
  --bg: #0a0a0a;
  --bg-soft: #121212;
  --surface: #171717;
  --surface-2: #1f1f1f;
  --text: #ece8de;
  --text-soft: #b5aea0;
  --gold: #c9a74e;
  --gold-soft: #f2d489;
  --line: #2d2a22;
  --radius: 16px;
  --shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: "Manrope", "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(900px 560px at 90% -10%, rgba(201, 167, 78, 0.2), transparent 60%),
    radial-gradient(750px 420px at 10% 8%, rgba(255, 255, 255, 0.04), transparent 60%),
    var(--bg);
  line-height: 1.65;
}

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

a {
  color: var(--gold-soft);
  text-decoration: none;
}

a:hover {
  color: #fff4d2;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(8px);
  background: rgba(8, 8, 8, 0.84);
  border-bottom: 1px solid var(--line);
  transition: transform 260ms ease;
  will-change: transform;
}

.site-header.header-hidden {
  transform: translateY(calc(-100% - 2px));
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  padding: 0.16rem 0;
  min-height: 88px;
}

.brand {
  width: 84px;
  height: 84px;
  overflow: hidden;
  line-height: 0;
  flex: 0 0 84px;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

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

.site-nav a {
  color: var(--text-soft);
  padding: 0.36rem 0.88rem;
  border-radius: 999px;
  font-size: 1.02rem;
  line-height: 1.1;
  transition: 160ms ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--bg);
  background: var(--gold);
}

.menu-toggle {
  display: none;
  border: 1px solid #3b3527;
  background: transparent;
  color: var(--text);
  padding: 0.32rem 0.84rem;
  border-radius: 8px;
  font-size: 0.96rem;
}

.hero {
  position: relative;
  overflow: clip;
  padding: 5.3rem 0 4rem;
}

.hero-glow {
  position: absolute;
  inset: auto -6% -30% auto;
  width: min(600px, 62vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 167, 78, 0.28), transparent 70%);
  filter: blur(18px);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.7rem;
  align-items: start;
}

.eyebrow {
  margin: 0 0 0.7rem;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  font-weight: 600;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  letter-spacing: 0.01em;
  margin-top: 0;
}

h1 {
  font-size: clamp(2rem, 5.5vw, 4.1rem);
  line-height: 1.06;
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  line-height: 1.15;
}

h3 {
  font-size: 1.45rem;
}

.lead {
  color: var(--text-soft);
  max-width: 66ch;
}

.hero-panel {
  background: linear-gradient(145deg, rgba(201, 167, 78, 0.1), rgba(255, 255, 255, 0.03));
  border: 1px solid #4d4228;
  border-radius: var(--radius);
  padding: 1.25rem 1.15rem;
  box-shadow: var(--shadow);
}

.hero-panel h2 {
  margin-bottom: 0.5rem;
  font-size: 1.75rem;
}

.hero-panel ul {
  margin: 0;
  padding-left: 1rem;
}

.hero-panel li {
  margin: 0.55rem 0;
  color: #ddd5c6;
}

.hero-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1.4rem;
}

.btn {
  display: inline-block;
  border-radius: 999px;
  padding: 0.7rem 1.1rem;
  font-weight: 600;
  border: 1px solid transparent;
}

.btn-primary {
  background: linear-gradient(120deg, var(--gold), #af8f3a);
  color: #18150d;
}

.btn-primary:hover {
  color: #0f0d08;
  filter: brightness(1.06);
}

.btn-ghost {
  color: var(--text);
  border-color: #52462d;
  background: rgba(0, 0, 0, 0.2);
}

.btn-ghost:hover {
  border-color: #88703a;
  color: #fff;
}

.section {
  padding: 4rem 0;
}

.section.alt {
  background: linear-gradient(180deg, rgba(201, 167, 78, 0.05), rgba(16, 16, 16, 0.6));
  border-top: 1px solid #2c261a;
  border-bottom: 1px solid #2c261a;
}

.section-head {
  margin-bottom: 1.5rem;
}

.cards {
  display: grid;
  gap: 1rem;
}

.cards.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cards.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

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

.figure-block {
  margin: 0 0 1.2rem;
  border: 1px solid #332c1f;
  border-radius: var(--radius);
  background: #0d0d0d;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.figure-block img {
  width: 100%;
  height: auto;
}

.card {
  background: linear-gradient(180deg, var(--surface), #131313);
  border: 1px solid #332c1f;
  border-radius: var(--radius);
  padding: 1.15rem;
  box-shadow: var(--shadow);
}

.card p {
  margin: 0;
  color: var(--text-soft);
}

.member-card {
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr);
  column-gap: 1rem;
  align-items: start;
}

.member-content {
  grid-column: 2;
  display: grid;
  row-gap: 0.45rem;
  align-content: start;
}

.member-content h3 {
  margin-bottom: 0;
}

.member-content p {
  margin: 0;
  line-height: 1.45;
}

.member-role {
  color: #d9cca9;
  font-weight: 700;
}

.member-photo {
  grid-column: 1;
  grid-row: 1;
  width: 168px;
  height: 168px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid #3a3223;
  background: #0f0f0f;
}

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

.flow > div {
  background: var(--surface);
  border: 1px solid #362f21;
  border-radius: var(--radius);
  padding: 1rem;
}

.flow span {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.95rem;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  align-items: center;
}

.quote-box {
  border: 1px solid #4d4228;
  background: linear-gradient(180deg, rgba(201, 167, 78, 0.14), rgba(201, 167, 78, 0.03));
  border-radius: var(--radius);
  padding: 1.2rem;
  font-size: 1.04rem;
}

.page-hero {
  padding: 2.3rem 0 1.2rem;
}

.chip {
  display: inline-block;
  font-size: 0.77rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #201907;
  background: linear-gradient(120deg, var(--gold), #f0d89b);
  border-radius: 999px;
  padding: 0.2rem 0.55rem;
  margin: 0 0 0.5rem;
  font-weight: 700;
}

.meta-line {
  margin-top: 0.85rem;
  font-size: 0.94rem;
}

.product-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
  background: linear-gradient(180deg, var(--surface), #131313);
  border: 1px solid #332c1f;
  border-radius: var(--radius);
  padding: 1.15rem;
}

.product-card ul {
  margin-bottom: 0;
}

.product-card aside {
  border-left: 1px solid #3b3222;
  padding-left: 1rem;
}

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

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.25rem 0;
  background: #070707;
}

.footer-row {
  display: grid;
  gap: 0.45rem;
  justify-items: center;
  text-align: center;
}

.footer-row img {
  width: 74px;
}

.footer-row p {
  margin: 0;
  color: #b7ae9b;
  font-size: 0.93rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 520ms ease, transform 520ms ease;
}

[data-reveal].in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero-grid,
  .flow,
  .split,
  .cards.three,
  .cards.four,
  .cards.two,
  .x-grid,
  .product-card {
    grid-template-columns: 1fr;
  }

  .product-card aside {
    border-left: 0;
    border-top: 1px solid #3b3222;
    padding-left: 0;
    padding-top: 0.9rem;
  }

  .member-card {
    grid-template-columns: 1fr;
    row-gap: 0.6rem;
  }

  .member-content {
    grid-column: 1;
  }

  .member-photo {
    grid-column: 1;
    grid-row: auto;
    width: 140px;
    height: 140px;
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.45rem);
    background: #111;
    border: 1px solid #352e20;
    border-radius: 12px;
    padding: 0.55rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.15rem;
    display: none;
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    border-radius: 8px;
  }

  .hero {
    padding-top: 3.6rem;
  }
}

/* Home Hero Optimizations 2026 */
.hero {
  overflow: hidden;
  padding: 4rem 0 2.2rem;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(201, 167, 78, 0.06), transparent 44%),
    repeating-linear-gradient(
      150deg,
      rgba(201, 167, 78, 0.08) 0 1px,
      transparent 1px 38px
    );
  opacity: 0.34;
  pointer-events: none;
}

.hero h1 {
  font-size: clamp(1.95rem, 4.55vw, 3.55rem);
  line-height: 1.02;
  margin-bottom: 0.75rem;
  max-width: 17ch;
}

.hero .lead {
  margin: 0.55rem 0 0;
  max-width: 54ch;
}

.hero-title span {
  display: block;
  opacity: 0;
  transform: translateY(16px);
  animation: hero-title-line-in 580ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-title span:nth-child(1) {
  animation-delay: 120ms;
}

.hero-title span:nth-child(2) {
  animation-delay: 220ms;
}

.hero-title span:nth-child(3) {
  animation-delay: 320ms;
}

@keyframes hero-title-line-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-panel {
  position: relative;
  background: linear-gradient(145deg, rgba(201, 167, 78, 0.14), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow), 0 0 0 1px rgba(201, 167, 78, 0.16) inset, 0 0 26px rgba(201, 167, 78, 0.16);
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: 0 1px 0 rgba(255, 236, 186, 0.2) inset;
  pointer-events: none;
}

.hero-panel h2 {
  margin-bottom: 0.42rem;
}

.hero-actions {
  margin-top: 1rem;
}

.btn {
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease, background-color 180ms ease;
}

.btn-primary {
  background: linear-gradient(120deg, #dbbb62, #af8f3a);
  box-shadow: 0 10px 24px rgba(201, 167, 78, 0.28);
}

.btn-primary:hover {
  transform: translateY(-1px);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.03);
}

.btn-ghost:hover {
  background: rgba(201, 167, 78, 0.1);
}

.proof-strip {
  border-top: 1px solid #2f281b;
  border-bottom: 1px solid #2f281b;
  background: linear-gradient(180deg, rgba(201, 167, 78, 0.08), rgba(201, 167, 78, 0.03));
}

.proof-strip ul {
  margin: 0;
  padding: 0.8rem 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
}

.proof-strip li {
  color: #dfd6c3;
  font-size: 0.82rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.product-card {
  border-color: #3a3223;
  position: relative;
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.product-card::before {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(201, 167, 78, 0.92), transparent);
  transform: scaleX(0.25);
  transform-origin: center;
  transition: transform 260ms ease;
}

.product-card:hover {
  border-color: #9f8542;
  transform: translateY(-3px);
  box-shadow: -10px 16px 32px rgba(0, 0, 0, 0.45), 8px 10px 24px rgba(201, 167, 78, 0.13);
}

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

@media (max-width: 760px) {
  .hero {
    padding: 2.8rem 0 1.4rem;
  }

  .proof-strip ul {
    gap: 0.4rem;
  }

  .proof-strip li {
    font-size: 0.72rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-title span {
    animation: none;
    opacity: 1;
    transform: none;
  }
}
