@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;700&family=Cormorant+Garamond:wght@500;600;700&display=swap');

:root {
  --bg: #f5f5f1;
  --bg-soft: #e9e8e2;
  --ink: #141414;
  --muted: #555;
  --line: #c4c4bf;
  --silver: #9da3aa;
  --steel: #69707a;
  --accent: #c79b4b;
  --accent-soft: rgba(199, 155, 75, 0.14);
  --card: rgba(255, 255, 255, 0.9);
  --radius: 18px;
  --shadow: 0 18px 50px rgba(20, 20, 20, 0.13);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: 'Barlow', sans-serif;
  background: linear-gradient(150deg, #f7f7f4 0%, #ecebe5 46%, #f8f8f6 100%);
  color: var(--ink);
  scroll-behavior: smooth;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle at 12% 18%, rgba(199, 155, 75, 0.2), transparent 38%), radial-gradient(circle at 88% 72%, rgba(88, 96, 108, 0.22), transparent 34%);
  z-index: -1;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  backdrop-filter: blur(14px);
  background: rgba(245, 245, 241, 0.78);
  border-bottom: 1px solid rgba(105, 112, 122, 0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 46px;
  height: 46px;
}

.brand-text {
  display: grid;
  line-height: 1.05;
}

.brand-text strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  letter-spacing: 0.03em;
}

.brand-text span {
  color: var(--steel);
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 42px;
  height: 42px;
  padding: 0;
}

.nav-toggle svg {
  width: 100%;
  height: 100%;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-nav a {
  position: relative;
  font-weight: 500;
  letter-spacing: 0.05em;
  font-size: 0.92rem;
  text-transform: uppercase;
  color: #222;
}

.site-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.site-nav a:hover::after,
.site-nav a.active::after {
  width: 100%;
}

.hero {
  min-height: 74vh;
  display: grid;
  align-items: end;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(105, 112, 122, 0.25);
}

.hero-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  filter: saturate(1.05) contrast(1.08);
  transform: scale(1.06);
  animation: slowZoom 16s ease-out forwards;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(10, 10, 10, 0.68) 18%, rgba(10, 10, 10, 0.2) 72%);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 92px 0 64px;
  width: min(760px, 100%);
}

.eyebrow {
  display: inline-block;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.76rem;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.08);
}

.hero h1,
.page-title h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.1rem, 6vw, 4.4rem);
  line-height: 0.96;
  margin: 0;
  letter-spacing: 0.025em;
}

.hero p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.08rem;
  max-width: 62ch;
}

.cta-row {
  margin-top: 30px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  padding: 11px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

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

.btn-primary {
  background: var(--accent);
  color: #121212;
  box-shadow: 0 14px 26px rgba(199, 155, 75, 0.34);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

main section {
  padding: 78px 0;
}

.section-head {
  margin-bottom: 24px;
}

.section-head h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.7rem, 3.7vw, 2.85rem);
  margin: 0;
}

.section-head p {
  color: var(--muted);
  max-width: 70ch;
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

.card {
  background: var(--card);
  border: 1px solid rgba(105, 112, 122, 0.22);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  border-color: rgba(199, 155, 75, 0.48);
  box-shadow: 0 24px 58px rgba(20, 20, 20, 0.18);
}

.card-icon {
  width: 38px;
  height: 38px;
  margin-bottom: 14px;
}

.card h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
}

.card p,
.card li {
  color: #444;
}

.number-band {
  background: linear-gradient(120deg, #111 0%, #2c3138 57%, #1f2329 100%);
  color: #f8f8f8;
  border-block: 1px solid rgba(255, 255, 255, 0.18);
}

.number-wrap {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.stat {
  padding: 24px 8px;
  text-align: center;
}

.stat strong {
  display: block;
  font-size: clamp(1.6rem, 4vw, 2.7rem);
  font-family: 'Cormorant Garamond', serif;
}

.stat span {
  opacity: 0.84;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline article {
  border-left: 3px solid var(--accent);
  padding: 8px 0 8px 16px;
}

.timeline h3 {
  margin: 0;
  font-size: 1.03rem;
}

.timeline p {
  margin: 6px 0 0;
  color: #4d4d4d;
}

.split-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  align-items: stretch;
}

.panel {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(105, 112, 122, 0.22);
  box-shadow: var(--shadow);
}

.panel img {
  height: 100%;
  min-height: 330px;
  object-fit: cover;
}

.panel-body {
  background: var(--card);
  padding: 26px;
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.contact-list li {
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(105, 112, 122, 0.2);
  border-radius: 12px;
  padding: 14px;
}

.site-footer {
  background: #101214;
  color: #f1f1f1;
  padding: 44px 0 18px;
  margin-top: 38px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 22px;
  align-items: start;
}

.footer-col h3 {
  margin: 0 0 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.75);
}

.footer-col p,
.footer-col a,
.footer-col li {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.94rem;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 7px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.17);
  margin-top: 24px;
  padding-top: 14px;
  font-size: 0.83rem;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.policy-wrap {
  padding-top: 56px;
}

.policy article {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid rgba(105, 112, 122, 0.24);
  box-shadow: var(--shadow);
  padding: 28px;
  margin-bottom: 18px;
}

.policy h2 {
  margin-top: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
}

.policy h3 {
  margin: 22px 0 8px;
}

.policy ul {
  margin: 0;
  padding-left: 20px;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.72s ease, transform 0.72s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.ticker {
  white-space: nowrap;
  overflow: hidden;
  border-block: 1px solid rgba(105, 112, 122, 0.22);
  background: rgba(255, 255, 255, 0.6);
}

.ticker-track {
  display: inline-block;
  padding: 13px 0;
  min-width: 100%;
  animation: ticker 21s linear infinite;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-size: 0.77rem;
  color: #252525;
}

.page-title {
  padding: 96px 0 26px;
}

.page-title p {
  max-width: 68ch;
  color: #4b4b4b;
}

@keyframes slowZoom {
  from {
    transform: scale(1.11);
  }
  to {
    transform: scale(1.02);
  }
}

@keyframes ticker {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-50%);
  }
}

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

  .split-panel {
    grid-template-columns: 1fr;
  }

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

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(1200px, calc(100% - 28px));
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display: grid;
    gap: 0;
    background: rgba(245, 245, 241, 0.98);
    border-bottom: 1px solid rgba(105, 112, 122, 0.28);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s ease;
  }

  .site-nav.open {
    transform: scaleY(1);
  }

  .site-nav a {
    padding: 14px;
    border-top: 1px solid rgba(105, 112, 122, 0.16);
  }

  .grid-2,
  .grid-3,
  .footer-top,
  .number-wrap {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 68vh;
  }

  .hero-content {
    padding-top: 112px;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}