:root {
  --bg: #040404;
  --bg-soft: #090909;
  --panel: rgba(11, 11, 11, .88);
  --gold: #cda14b;
  --gold-2: #e2bd70;
  --gold-line: rgba(205, 161, 75, .58);
  --gold-soft: rgba(205, 161, 75, .16);
  --text: #f4efe7;
  --muted: rgba(244, 239, 231, .78);
  --max: 1280px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 78% 7%, rgba(205,161,75,.10), transparent 28%),
    radial-gradient(circle at 14% 36%, rgba(205,161,75,.045), transparent 24%),
    linear-gradient(180deg, #050505 0%, #020202 100%);
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}

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

.site-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.site-shell::before,
.site-shell::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.site-shell::before {
  opacity: .28;
  background:
    linear-gradient(128deg, transparent 0 73%, rgba(205,161,75,.15) 73.15%, transparent 73.5%) right top / 58% 46% no-repeat,
    linear-gradient(57deg, transparent 0 21%, rgba(205,161,75,.10) 21.15%, transparent 21.5%) left 34% / 48% 42% no-repeat,
    linear-gradient(142deg, transparent 0 80%, rgba(205,161,75,.08) 80.15%, transparent 80.45%) right 72% / 54% 38% no-repeat;
}

.site-shell::after {
  opacity: .04;
  background-image:
    linear-gradient(rgba(255,255,255,.25) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.25) 1px, transparent 1px);
  background-size: 48px 48px;
}

.container {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(4,4,4,.92);
  border-bottom: 1px solid rgba(205,161,75,.38);
}

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

.brand-link {
  display: flex;
  align-items: center;
  width: 360px;
  min-height: 112px;
  overflow: hidden;
}

.brand-logo {
  width: 360px;
  height: auto;
  transform: scale(1.12);
  transform-origin: left center;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
}

.site-nav a {
  position: relative;
  text-decoration: none;
  color: var(--muted);
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-weight: 600;
  white-space: nowrap;
  transition: color .2s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 1px;
  background: var(--gold-2);
  transition: right .2s ease;
}

.site-nav a:hover { color: var(--gold-2); }
.site-nav a:hover::after { right: 0; }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--gold-line);
  border-radius: 12px;
  background: rgba(8,8,8,.92);
  padding: 0;
}

.menu-toggle span {
  width: 20px;
  height: 1px;
  background: var(--gold-2);
  display: block;
  margin: 5px auto;
}

.hero {
  min-height: 760px;
  display: grid;
  align-items: center;
  border-bottom: 1px solid rgba(205,161,75,.25);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, .92fr);
  gap: 72px;
  align-items: center;
  padding: 76px 0 78px;
}

.hero-copy { max-width: 690px; }

.section-title,
.hero-title {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  letter-spacing: -.02em;
  line-height: .98;
  margin: 0;
}

.hero-title {
  font-size: clamp(60px, 7vw, 96px);
  color: var(--text);
}

.hero-title::after {
  content: "";
  display: block;
  width: 126px;
  height: 2px;
  margin-top: 28px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.prose {
  margin-top: 30px;
  display: grid;
  gap: 18px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.prose p { margin: 0; }
.prose strong,
.prose em { color: var(--gold-2); }

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.photo-frame {
  position: relative;
  width: min(100%, 500px);
  aspect-ratio: .82 / 1;
  overflow: hidden;
  border-radius: 48% 48% 10% 10% / 38% 38% 8% 8%;
  border: 1px solid rgba(226,189,112,.72);
  background:
    radial-gradient(circle at 50% 12%, rgba(205,161,75,.16), transparent 34%),
    #070707;
  box-shadow:
    0 28px 70px rgba(0,0,0,.56),
    0 0 0 16px rgba(205,161,75,.018),
    0 0 68px rgba(205,161,75,.12);
}

.photo-frame::before {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 3;
  pointer-events: none;
  border: 1px solid rgba(226,189,112,.22);
  border-radius: inherit;
}

.photo-frame::after {
  content: "";
  position: absolute;
  inset: auto 8% 14% 8%;
  height: 1px;
  z-index: 4;
  background: linear-gradient(90deg, transparent, rgba(226,189,112,.85), transparent);
  transform: rotate(-9deg);
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
  border-radius: inherit;
  filter: saturate(.90) contrast(1.03);
}

.monogram-divider {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 28px;
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  padding: 26px 0;
}

.monogram-divider::before,
.monogram-divider::after {
  content: "";
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, transparent, rgba(205,161,75,.68));
}

.monogram-divider::after {
  background: linear-gradient(90deg, rgba(205,161,75,.68), transparent);
}

.monogram-divider img {
  width: 68px;
  height: auto;
}

.section {
  position: relative;
  z-index: 1;
  padding: 96px 0;
  border-bottom: 1px solid rgba(205,161,75,.16);
}

.section-head {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 56px;
  align-items: start;
}

.section-title {
  font-size: clamp(48px, 5.4vw, 76px);
  color: var(--text);
}

.section-title::before {
  content: "";
  display: block;
  width: 68px;
  height: 2px;
  margin-bottom: 22px;
  background: var(--gold);
}

.solutions-intro { max-width: 760px; }

.solution-cards {
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.solution-card {
  position: relative;
  min-height: 245px;
  overflow: hidden;
  padding: 32px;
  border: 1px solid var(--gold-line);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(205,161,75,.08), transparent 38%),
    rgba(8,8,8,.80);
}

.solution-card::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(205,161,75,.12);
  border-radius: 50%;
  right: -76px;
  bottom: -76px;
}

.solution-card img {
  width: 74px;
  height: 74px;
  object-fit: contain;
  margin-bottom: 30px;
}

.solution-card h3 {
  margin: 0;
  max-width: 290px;
  color: var(--text);
  font-family: "Cormorant Garamond", serif;
  font-size: 34px;
  line-height: 1.02;
  font-weight: 600;
}

.feature {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 64px;
  align-items: stretch;
}

.feature.reverse {
  grid-template-columns: 1.18fr .82fr;
}

.feature.reverse .feature-art { order: 2; }
.feature.reverse .feature-copy { order: 1; }

.feature-art {
  position: relative;
  min-height: 460px;
  border: 1px solid var(--gold-line);
  border-radius: 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 28%, rgba(205,161,75,.18), transparent 34%),
    linear-gradient(150deg, rgba(205,161,75,.10), rgba(7,7,7,.96) 42%);
}

.feature-art img {
  position: absolute;
  width: 142px;
  height: 142px;
  object-fit: contain;
  left: 42px;
  top: 40px;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,.4));
}

.feature-art::before,
.feature-art::after {
  content: "";
  position: absolute;
  left: 38px;
  right: 38px;
  height: 1px;
  background: linear-gradient(90deg, rgba(205,161,75,.08), rgba(226,189,112,.9), rgba(205,161,75,.06));
  transform-origin: left center;
}

.feature-art::before {
  bottom: 118px;
  transform: rotate(-9deg);
}

.feature-art::after {
  bottom: 82px;
  transform: rotate(-16deg);
  opacity: .5;
}

.feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px 0;
}

.feature-copy .section-title { font-size: clamp(46px, 4.8vw, 70px); }

.footer {
  position: relative;
  z-index: 1;
  padding: 62px 0 34px;
  background:
    radial-gradient(circle at 18% 20%, rgba(205,161,75,.08), transparent 30%),
    rgba(3,3,3,.96);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(300px, .8fr) minmax(0, 1.2fr);
  gap: 54px;
  align-items: center;
}

.footer-brand {
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}

.footer-logo {
  width: min(100%, 390px);
  height: auto;
  transform: scale(1.14);
  transform-origin: left center;
}

.footer-contact {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.contact-card {
  min-height: 150px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 18px;
  text-decoration: none;
  border: 1px solid var(--gold-line);
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(205,161,75,.08), transparent 42%),
    rgba(8,8,8,.82);
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.contact-card:hover {
  transform: translateY(-3px);
  border-color: rgba(226,189,112,.88);
  background:
    linear-gradient(145deg, rgba(205,161,75,.13), transparent 44%),
    rgba(10,10,10,.92);
}

.contact-card img,
.email-icon {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  object-fit: contain;
}

.email-icon {
  display: grid;
  place-items: center;
  border: 1px solid rgba(226,189,112,.5);
  border-radius: 16px;
  color: var(--gold-2);
  font-family: "Cormorant Garamond", serif;
  font-size: 38px;
  line-height: 1;
}

.contact-card span:last-child {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.contact-card small {
  color: var(--gold-2);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 11px;
}

.contact-card strong {
  color: var(--text);
  font-size: 14px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.footer-bottom { padding-top: 32px; }

.footer-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}

.footer-divider span {
  width: min(38%, 420px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(205,161,75,.72));
}

.footer-divider span:last-child {
  background: linear-gradient(90deg, rgba(205,161,75,.72), transparent);
}

.footer-divider img {
  width: 76px;
  height: auto;
}

@media (max-width: 1120px) {
  .header-inner { min-height: 112px; }
  .brand-link { width: 300px; min-height: 96px; }
  .brand-logo { width: 300px; }
  .menu-toggle { display: block; }
  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 24px 20px;
    background: rgba(4,4,4,.98);
    border-bottom: 1px solid rgba(205,161,75,.35);
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 14px 0; border-bottom: 1px solid rgba(205,161,75,.10); }
  .site-nav a::after { display: none; }

  .hero { min-height: auto; }
  .hero-grid,
  .section-head,
  .feature,
  .feature.reverse,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid { gap: 48px; padding: 62px 0 64px; }
  .hero-copy { max-width: none; }
  .hero-visual { justify-content: flex-start; }
  .photo-frame { width: min(100%, 500px); }
  .section-head { gap: 22px; }
  .solution-cards { grid-template-columns: 1fr; }
  .feature { gap: 32px; }
  .feature.reverse .feature-art,
  .feature.reverse .feature-copy { order: initial; }
  .feature-art { min-height: 360px; }
  .footer-brand { min-height: auto; }
  .footer-contact { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .container,
  .monogram-divider { width: min(calc(100% - 28px), var(--max)); }

  .header-inner { min-height: 88px; }
  .brand-link { width: 235px; min-height: 72px; }
  .brand-logo { width: 235px; transform: scale(1.08); }

  .hero-grid { padding: 46px 0 48px; }
  .hero-title { font-size: clamp(50px, 16vw, 70px); }

  .photo-frame {
    width: min(100%, 390px);
    border-radius: 46% 46% 8% 8% / 34% 34% 7% 7%;
  }

  .prose { font-size: 15.5px; line-height: 1.66; }
  .section { padding: 68px 0; }
  .section-title,
  .feature-copy .section-title { font-size: 48px; }
  .solution-card { min-height: 200px; }
  .feature-art { min-height: 300px; }
  .feature-art img { width: 112px; height: 112px; left: 28px; top: 28px; }

  .monogram-divider img { width: 56px; }
  .footer { padding-top: 48px; }
  .footer-logo { width: min(100%, 310px); transform: scale(1.10); }
  .contact-card { min-height: 116px; }
  .footer-divider img { width: 58px; }
}
