:root {
  --bg: #0f1012;
  --bg-soft: #141519;
  --panel: rgba(16, 17, 19, 0.94);
  --line: rgba(184, 141, 74, 0.22);
  --line-soft: rgba(255, 255, 255, 0.12);
  --gold: #b8904f;
  --gold-bright: #d7ad6c;
  --text: #f4efea;
  --text-soft: rgba(244, 239, 234, 0.8);
  --cream: #ece4d8;
  --cream-deep: #d8ccb9;
  --ink: #121212;
  --footer-text: #b8b3ab;
  --max-width: 1288px;
  --transition: all 0.35s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", sans-serif;
  line-height: 1.65;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

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

svg {
  display: block;
}

.container {
  width: min(100% - 64px, var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.38));
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
}

.site-header .container {
  width: min(100% - 48px, 1200px);
}

.nav-wrap {
  min-height: 88px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-header .nav-wrap {
  position: relative;
}

.brand,
.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  order: 1;
}

.brand {
  flex-shrink: 0;
}

.brand-image {
  display: block;
  height: 55px;
  width: auto;
  max-width: 360px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 48px;
  order: 2;
  margin-left: auto;
  margin-right: auto;
}

.site-header .main-nav {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.main-nav a {
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.72rem;
  color: #ede8e1;
  transition: var(--transition);
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
  color: #fff;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 210px;
  padding: 16px 28px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.75rem;
  border: 1px solid transparent;
  transition: var(--transition);
}

.btn-outline {
  border-color: rgba(184, 144, 79, 0.65);
  color: #b8904f;
  background: rgba(255, 255, 255, 0.01);
}

.btn-outline:hover {
  background: rgba(184, 144, 79, 0.08);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.28);
}

.nav-cta {
  min-width: 190px;
  padding-inline: 24px;
  order: 3;
  margin-left: auto;
}

.contact-hero {
  position: relative;
  min-height: 792px;
  padding: 166px 0 64px;
  background:
    linear-gradient(90deg, rgba(15, 16, 18, 0.94) 0%, rgba(15, 16, 18, 0.72) 45%, rgba(15, 16, 18, 0.86) 100%),
    linear-gradient(180deg, rgba(15, 16, 18, 0.12) 0%, rgba(15, 16, 18, 0.5) 100%),
    url("https://images.unsplash.com/photo-1512453979798-5ea266f8880c?auto=format&fit=crop&w=1800&q=80") center center / cover no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 48% 42%, rgba(255, 255, 255, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.34));
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.97fr) minmax(520px, 0.9fr);
  align-items: start;
  gap: 88px;
}

.hero-copy {
  max-width: 515px;
  padding-top: 58px;
}

.hero-kicker,
.section-label,
.contact-label,
.access-item h3 {
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.hero-kicker,
.section-label {
  color: var(--gold-bright);
  font-size: 0.82rem;
  font-weight: 600;
}

.hero-rule,
.consult-strip-rule {
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  margin: 14px 0 20px;
}

.hero-copy h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(4rem, 5vw, 5.4rem);
  line-height: 0.96;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 24px;
}

.hero-description {
  max-width: 500px;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 28px;
}

.contact-points {
  margin-top: 22px;
}

.contact-point {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.contact-point + .contact-point {
  margin-top: 18px;
}

.contact-icon,
.access-icon,
.consult-strip-icon {
  flex: 0 0 auto;
  color: var(--gold-bright);
}

.contact-icon {
  width: 36px;
  height: 36px;
  margin-top: 1px;
}

.contact-icon svg,
.access-icon svg,
.consult-strip-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 3px;
}

.contact-point p {
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.6;
}

.access-panel {
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.22);
  margin-top: 68px;
}

.access-item {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 28px;
  padding: 34px 42px;
}

.access-item + .access-item {
  border-top: 1px solid var(--line-soft);
}

.access-icon {
  width: 38px;
  height: 38px;
  margin-top: 4px;
}

.access-item h3 {
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.access-item p {
  max-width: 360px;
  color: var(--text-soft);
  font-size: 0.98rem;
  line-height: 1.8;
}

.consult-strip {
  background: var(--cream);
  color: var(--ink);
  border-top: 1px solid rgba(198, 154, 88, 0.65);
}

.consult-strip-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(420px, 0.9fr);
  align-items: center;
  gap: 56px;
  padding: 38px 0 42px;
}

.consult-strip-copy {
  max-width: 560px;
}

.consult-strip-copy h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.6rem, 4vw, 3.5rem);
  line-height: 1;
  font-weight: 500;
  margin-bottom: 16px;
}

.consult-strip-copy p:last-child {
  max-width: 470px;
  color: rgba(18, 18, 18, 0.82);
  font-size: 1rem;
  line-height: 1.7;
}

.consult-strip-action {
  display: grid;
  grid-template-columns: 116px 1fr;
  align-items: center;
  gap: 28px;
  padding-left: 54px;
  border-left: 1px solid rgba(18, 18, 18, 0.12);
}

.consult-strip-icon {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: rgba(18, 18, 18, 0.05);
  border-radius: 50%;
  padding: 22px;
}

.consult-strip-action p {
  color: rgba(18, 18, 18, 0.92);
  font-size: 1rem;
  margin-bottom: 22px;
}

.consult-strip-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  min-width: 270px;
  padding: 17px 24px;
  background: #121315;
  color: var(--gold-bright);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  transition: var(--transition);
}

.consult-strip-btn:hover {
  background: #1a1b1e;
  transform: translateY(-1px);
}

.btn-arrow {
  font-size: 1.2rem;
  line-height: 1;
  letter-spacing: 0;
}

.site-footer {
  background: #090909;
  color: #fff;
  padding: 72px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 42px;
  padding-bottom: 34px;
}

.footer-logo-image {
  width: min(100%, 220px);
  max-width: 220px;
  height: auto;
  margin-bottom: 18px;
}

.footer-brand p,
.footer-col p,
.footer-col a {
  color: var(--footer-text);
  font-size: 1rem;
  line-height: 1.9;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col h4 {
  color: var(--gold);
  margin-bottom: 18px;
  font-size: 0.86rem;
  letter-spacing: 0.22em;
}

.footer-col a:hover,
.footer-accent:hover {
  color: #fff;
}

.footer-accent {
  color: var(--gold) !important;
}

.footer-strong {
  color: #fff !important;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-bottom p,
.footer-links a {
  color: #8f8f8f;
  font-size: 0.76rem;
  letter-spacing: 0.18em;
}

.footer-links {
  display: flex;
  gap: 28px;
}

@media (max-width: 1100px) {
  .main-nav {
    gap: 24px;
  }

  .nav-cta {
    min-width: 160px;
  }

  .hero-shell {
    gap: 48px;
    grid-template-columns: minmax(0, 1fr) minmax(460px, 0.92fr);
  }
}

@media (max-width: 900px) {
  .site-header {
    position: static;
  }

  .nav-wrap {
    min-height: auto;
    padding: 22px 0;
    flex-wrap: wrap;
    justify-content: center;
  }

  .brand {
    width: 100%;
    justify-content: center;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px 26px;
    margin-top: 8px;
    margin-left: 0;
    margin-right: 0;
    position: static;
    transform: none;
  }

  .contact-hero {
    min-height: auto;
    padding: 66px 0 48px;
  }

  .hero-shell,
  .consult-strip-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: none;
    padding-top: 0;
  }

  .access-panel {
    max-width: 760px;
    margin-top: 0;
  }

  .nav-cta {
    order: 2;
  }

  .consult-strip-action {
    border-left: 0;
    border-top: 1px solid rgba(18, 18, 18, 0.12);
    padding-left: 0;
    padding-top: 28px;
  }
}

@media (max-width: 768px) {
  .container {
    width: min(100% - 32px, var(--max-width));
  }

  .contact-hero {
    background-position: 58% center;
  }

  .hero-copy h1 {
    font-size: clamp(3rem, 12vw, 4.3rem);
  }

  .access-item {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 28px 24px;
  }

  .access-icon {
    margin-top: 0;
  }

  .consult-strip-grid {
    gap: 28px;
    padding: 34px 0 38px;
  }

  .consult-strip-action {
    grid-template-columns: 82px 1fr;
    gap: 18px;
  }

  .consult-strip-btn {
    min-width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

  .hero-kicker,
  .section-label,
  .main-nav a,
  .btn,
  .footer-bottom p,
  .footer-links a {
    letter-spacing: 0.18em;
  }
}

@media (max-width: 520px) {
  .nav-cta {
    width: 100%;
    text-align: center;
  }

  .contact-point {
    gap: 14px;
  }

  .contact-icon {
    width: 32px;
    height: 32px;
  }

  .consult-strip-action {
    grid-template-columns: 1fr;
  }

  .consult-strip-icon {
    width: 74px;
    height: 74px;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 12px 18px;
  }
}

@media (max-width: 640px) {
  .site-header {
    position: sticky !important;
    top: 0;
    background: rgba(7, 7, 7, 0.96) !important;
    backdrop-filter: blur(14px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
  }

  .nav-wrap {
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 12px 0 14px;
  }

  .brand,
  .brand-logo {
    width: 100%;
    justify-content: center;
  }

  .brand-image {
    height: 50px;
    max-width: min(74vw, 260px);
  }

  .site-header .main-nav,
  .main-nav {
    position: static !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
    width: 100%;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    padding: 10px;
    background: rgba(184, 144, 79, 0.06);
    border: 1px solid rgba(184, 144, 79, 0.22);
  }

  .main-nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 8px;
    text-align: center;
    font-size: 0.66rem;
    line-height: 1.2;
    letter-spacing: 0.14em !important;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
  }

  .main-nav a::after {
    display: none !important;
  }

  .nav-cta {
    width: 100%;
    min-width: 0;
    margin: 0;
    padding: 14px 16px;
    text-align: center;
    letter-spacing: 0.2em !important;
  }

  .contact-hero {
    min-height: auto;
    padding: 56px 0 40px;
    background-position: 60% center;
  }

  .hero-shell {
    gap: 28px;
  }

  .hero-copy h1 {
    font-size: clamp(2.8rem, 12vw, 4rem);
    line-height: 0.96;
  }
}

@media (max-width: 420px) {
  .site-header .main-nav,
  .main-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brand-image {
    height: 46px;
  }
}
