:root {
  --bg: #080c12;
  --bg-mid: #0d1520;
  --navy: #1a3a5c;
  --gold: #b8923a;
  --gold-dim: rgba(184, 146, 58, 0.65);
  --gold-faint: rgba(184, 146, 58, 0.08);
  --white: #ffffff;
  --off-white: #e8e2d8;
  --muted: rgba(232, 226, 216, 0.45);
  --very-muted: rgba(232, 226, 216, 0.45);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "DM Sans", system-ui, sans-serif;
}

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

html {
  font-size: 16px;
  height: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--off-white);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-x: hidden;
}

/* Grain overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}

/* Radial glow */
body::after {
  content: "";
  position: fixed;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(184, 146, 58, 0.04) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.gold-rule-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  z-index: 10;
  overflow: hidden;
}

.gold-rule {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 30%, var(--gold) 70%, transparent 100%);
  width: 0%;
  animation: drawRule 1.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
}

@keyframes drawRule {
  to {
    width: 100%;
  }
}

.page {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
  padding: 72px 64px 48px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

.logo-block {
  opacity: 0;
  animation: fadeUp 0.9s cubic-bezier(0.4, 0, 0.2, 1) 0.8s forwards;
}

.logo-img {
  height: 56px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  image-rendering: -webkit-optimize-contrast;
  opacity: 0.92;
  transition: opacity 0.2s;
}

.logo-img:hover {
  opacity: 1;
}

.header-right {
  opacity: 0;
  animation: fadeUp 0.9s cubic-bezier(0.4, 0, 0.2, 1) 1s forwards;
  text-align: right;
}

.header-location {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--very-muted);
  line-height: 1.8;
}

.main {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 80px 0;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
  align-items: start;
  width: 100%;
}

.eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: fadeUp 0.9s cubic-bezier(0.4, 0, 0.2, 1) 1.1s forwards;
}

.eyebrow::before {
  content: "";
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold-dim);
}

.headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--off-white);
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.9s cubic-bezier(0.4, 0, 0.2, 1) 1.25s forwards;
}

.headline em {
  font-style: italic;
  color: var(--gold);
}

.body-text {
  font-size: 0.9rem;
  line-height: 1.85;
  color: var(--muted);
  font-weight: 300;
}

.body-text p {
  opacity: 0;
  margin-bottom: 20px;
}

.body-text p:last-child {
  margin-bottom: 0;
}

.body-text p:nth-child(1) {
  animation: fadeUp 0.9s cubic-bezier(0.4, 0, 0.2, 1) 1.4s forwards;
}

.body-text p:nth-child(2) {
  animation: fadeUp 0.9s cubic-bezier(0.4, 0, 0.2, 1) 1.55s forwards;
}

.body-text p:nth-child(3) {
  animation: fadeUp 0.9s cubic-bezier(0.4, 0, 0.2, 1) 1.7s forwards;
}

.contact-line {
  margin-top: 32px;
  opacity: 0;
  animation: fadeUp 0.9s cubic-bezier(0.4, 0, 0.2, 1) 1.85s forwards;
}

.contact-link {
  font-size: 0.82rem;
  color: var(--gold);
  letter-spacing: 0.04em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: opacity 0.2s;
  border-bottom: 1px solid rgba(184, 146, 58, 0.25);
  padding-bottom: 2px;
}

.contact-link:hover {
  opacity: 0.7;
}

.product-callout {
  margin-top: 40px;
  padding: 20px 24px;
  border: 1px solid rgba(184, 146, 58, 0.12);
  border-radius: 4px;
  background: var(--gold-faint);
  opacity: 0;
  animation: fadeUp 0.9s cubic-bezier(0.4, 0, 0.2, 1) 2s forwards;
}

.product-callout-label {
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 8px;
}

.product-callout-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--off-white);
  margin-bottom: 6px;
}

.product-callout-name span {
  color: var(--gold);
}

.product-callout-desc {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 14px;
}

.product-link {
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

.product-link:hover {
  gap: 10px;
}

.product-link::after {
  content: "→";
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 32px;
  border-top: 1px solid rgba(232, 226, 216, 0.06);
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s cubic-bezier(0.4, 0, 0.2, 1) 2.1s forwards;
}

.footer-copy {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: var(--very-muted);
}

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

.footer-links a {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: var(--very-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.masked-link {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: var(--very-muted);
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

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

.masked-link:hover {
  color: var(--gold);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .page {
    padding: 48px 32px 36px;
  }

  .content-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .header {
    flex-direction: column;
    gap: 16px;
  }

  .header-right {
    text-align: left;
  }

  .logo-img {
    height: 50px;
  }
}

@media (max-width: 600px) {
  .page {
    padding: 40px 24px 32px;
  }

  .logo-img {
    height: 46px;
  }

  .footer {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}
