:root {
  --gold: #dfa408;
  --gold-soft: #e9c261;
  --gold-deep: #b5860b;
  --ink: #121212;
  --char: #1a1a1a;
  --grey: #4b4b4b;
  --muted: #6f6f6f;
  --ivory: #f7f5f0;
  --line: #e6e1d6;
  --line-dark: rgba(233, 194, 97, 0.22);
  --paper: #fff;
  --max: 1140px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Raleway", system-ui, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 1.04;
  margin: 0 0 18px;
  letter-spacing: 0.01em;
}

h1 {
  font-size: clamp(3.4rem, 9vw, 7rem);
  font-weight: 600;
}

h2 {
  font-size: clamp(2.1rem, 4.6vw, 3.5rem);
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

p {
  margin: 0 0 18px;
}

.wrap {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
}

.center {
  text-align: center;
}

.eyebrow {
  margin: 0 0 18px;
  font-family: "Raleway", sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}

.eyebrow.gold {
  color: var(--gold-soft);
}

.eyebrow.ink {
  color: var(--ink);
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding: 14px clamp(22px, 4vw, 54px);
  background: rgba(18, 18, 18, 0.55);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(233, 194, 97, 0.14);
  transition: background 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(12, 12, 12, 0.92);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  width: 46px;
  height: 28px;
  object-fit: contain;
}

.brand-word {
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.34em;
  padding-left: 2px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.6vw, 38px);
}

.site-nav a {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--gold-soft);
}

.nav-cta {
  padding: 10px 20px;
  border: 1px solid var(--gold);
  border-radius: 2px;
  color: var(--gold-soft) !important;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--ink) !important;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  border: 1px solid rgba(233, 194, 97, 0.3);
  border-radius: 3px;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 1.5px;
  margin: 5px 0;
  background: var(--gold-soft);
}

/* ---------- Buttons ---------- */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 30px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.22s ease;
}

.button-gold {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}

.button-gold:hover {
  background: var(--gold-soft);
  border-color: var(--gold-soft);
}

.button-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
  background: transparent;
}

.button-outline:hover {
  border-color: var(--gold-soft);
  color: var(--gold-soft);
}

.button.full {
  width: 100%;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: min(760px, 92vh);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background: url("assets/hero.jpg") center / cover no-repeat;
  background-image: -webkit-image-set(
    url("assets/hero.webp") type("image/webp"),
    url("assets/hero.jpg") type("image/jpeg")
  );
  background-image: image-set(
    url("assets/hero.webp") type("image/webp"),
    url("assets/hero.jpg") type("image/jpeg")
  );
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1.03);
  filter: saturate(0.92);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(12, 12, 12, 0.82) 0%, rgba(12, 12, 12, 0.45) 46%, rgba(12, 12, 12, 0.15) 100%),
    linear-gradient(180deg, rgba(12, 12, 12, 0.55) 0%, rgba(12, 12, 12, 0.2) 40%, rgba(12, 12, 12, 0.85) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
  padding-top: 60px;
}

.hero h1 {
  margin-bottom: 22px;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.4);
}

.hero-copy {
  max-width: 620px;
  font-size: clamp(1.08rem, 1.9vw, 1.32rem);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

/* ---------- Sections ---------- */
.section {
  padding: clamp(70px, 10vw, 130px) 0;
}

.section-light {
  background: var(--ivory);
}

.section-dark {
  background: var(--ink);
  color: #fff;
}

.section-dark p {
  color: rgba(255, 255, 255, 0.74);
}

.section-head {
  max-width: 720px;
  margin-bottom: 52px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
}

.section-intro {
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 640px;
}

.section-dark .section-intro {
  color: rgba(255, 255, 255, 0.74);
}

.lead {
  font-size: 1.28rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 20px;
}

.section-dark .lead {
  color: #fff;
}

/* split layout */
.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 7vw, 90px);
  align-items: start;
}

.split-head h2 {
  margin-bottom: 0;
}

/* ---------- Brands ---------- */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.brand-card {
  background: #171717;
  border: 1px solid var(--line-dark);
  border-radius: 6px;
  overflow: hidden;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.brand-card:hover {
  border-color: rgba(233, 194, 97, 0.5);
  transform: translateY(-4px);
}

.brand-card-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.brand-card-media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.brand-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) brightness(0.94);
}

.brand-card-media.top img {
  object-position: center top;
}

.brand-card-body {
  padding: 30px 30px 34px;
}

.brand-card-body h3 {
  color: var(--gold-soft);
}

.text-link {
  display: inline-block;
  margin-top: 8px;
  color: var(--gold-soft);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
}

.text-link:hover {
  color: #fff;
}

.text-link.muted-link {
  color: rgba(255, 255, 255, 0.75);
}

.text-link.muted-link:hover {
  color: var(--gold-soft);
}

/* ---------- Solutions ---------- */
.solution-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
}

.solution-card {
  background: var(--paper);
  padding: 40px 36px 44px;
}

.solution-index {
  display: block;
  margin-bottom: 18px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--gold);
}

.solution-card h3 {
  color: var(--ink);
}

.solution-card p {
  color: var(--muted);
  margin: 0;
}

/* ---------- Accent / partners ---------- */
.section-accent {
  background: var(--gold);
  padding: clamp(52px, 7vw, 84px) 0;
}

.partner-statement {
  max-width: 860px;
  margin: 0 auto;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.5rem, 3.2vw, 2.4rem);
  line-height: 1.32;
  color: var(--ink);
  margin-bottom: 0;
}

.partner-statement strong {
  font-weight: 700;
}

/* ---------- Contact ---------- */
.section-contact {
  background: var(--char);
  color: #fff;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(36px, 6vw, 80px);
  align-items: start;
}

.contact-intro p {
  color: rgba(255, 255, 255, 0.74);
  max-width: 420px;
}

.contact-details {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
}

.contact-details li {
  padding: 10px 0;
  border-top: 1px solid var(--line-dark);
  color: rgba(255, 255, 255, 0.82);
  font-weight: 500;
}

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

.contact-form {
  display: grid;
  gap: 18px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.68);
}

.field label span {
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
}

.field input,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s ease;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.field textarea {
  resize: vertical;
}

.form-note {
  margin: 4px 0 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ---------- Footer ---------- */
.site-footer {
  background: #0c0c0c;
  color: rgba(255, 255, 255, 0.6);
  padding: 56px 0;
}

.footer-inner {
  display: grid;
  gap: 26px;
  justify-items: center;
  text-align: center;
}

.footer-logo {
  width: 108px;
  height: 108px;
  object-fit: contain;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 26px;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
}

.footer-nav a:hover {
  color: var(--gold-soft);
}

.footer-legal {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.7;
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .split,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .brand-grid,
  .solution-grid {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    inset: 78px 14px auto 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px;
    background: rgba(10, 10, 10, 0.98);
    border: 1px solid var(--line-dark);
    border-radius: 6px;
  }

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

  .site-nav a {
    padding: 15px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .nav-cta {
    text-align: center;
    margin-top: 6px;
  }
}
