:root {
  /* ── Brand palette ── */
  --copper:    #c97747;
  --copper-lt: #d98f62;
  --teal:      #11383d;
  --teal-mid:  #1a5c64;
  --teal-lt:   #2a8e9a;

  /* ── Backgrounds ── */
  --bg:        #06100f;
  --bg-raised: #0c1c1e;
  --bg-card:   rgba(17, 56, 61, 0.14);

  /* ── Borders ── */
  --border:        rgba(255, 255, 255, 0.07);
  --border-accent: rgba(201, 119, 71, 0.30);

  /* ── Text ── */
  --text:       #eadfd4;
  --text-soft:  #7e9496;
  --text-muted: #3a5254;

  /* ── Gradients ── */
  --gradient:      linear-gradient(135deg, #c97747 0%, #1a5c64 100%);
  --gradient-warm: linear-gradient(155deg, #eadfd4 20%, #d98f62 55%, #2a8e9a 100%);

  /* ── Glow / Shadow ── */
  --glow-copper: 0 0 36px rgba(201, 119, 71, 0.32);
  --glow-teal:   0 0 36px rgba(42, 142, 154, 0.22);
  --shadow:      0 32px 80px rgba(0, 0, 0, 0.65);

  --radius:    18px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

/* Radial ambient glows */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 45% at 12% 12%, rgba(201, 119, 71, 0.10) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 85% 82%, rgba(17,  56,  61, 0.22) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* Subtle dot grid */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 30%, transparent 100%);
}

/* Legacy glow div — hide it */
.glow { display: none; }

/* ─── Layout ────────────────────────────── */

.container {
  width: min(1140px, 92vw);
  margin: 0 auto;
}

/* ─── Header ────────────────────────────── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(22px) saturate(1.8);
  -webkit-backdrop-filter: blur(22px) saturate(1.8);
  background: rgba(6, 16, 15, 0.84);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 24px;
}

.logo {
  display: flex;
  gap: 14px;
  align-items: center;
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: var(--gradient);
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  font-family: "Fraunces", "Times New Roman", serif;
  box-shadow: var(--glow-copper);
  letter-spacing: -0.5px;
  flex-shrink: 0;
}

.logo-img {
  height: 42px;
  width: auto;
  max-width: 180px;
  border-radius: 10px;
  object-fit: contain;
  box-shadow: none;
  border: none;
  background: transparent;
  padding: 0;
  flex-shrink: 0;
}

.logo-name {
  font-weight: 700;
  font-size: 17px;
  color: var(--text);
}

.logo-tag {
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-top: 1px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  font-size: 14px;
}

.nav a {
  padding: 7px 14px;
  border-radius: 9px;
  color: var(--text-soft);
  font-weight: 500;
  transition: color 0.2s, background 0.2s;
}

.nav a:hover {
  color: var(--text);
  background: rgba(201, 119, 71, 0.10);
}

/* ─── Hero ──────────────────────────────── */

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 44px;
  padding: 108px 0 64px;
  position: relative;
  z-index: 1;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid rgba(201, 119, 71, 0.32);
  background: rgba(201, 119, 71, 0.09);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--copper-lt);
  font-weight: 600;
  margin-bottom: 6px;
}

.badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal-lt);
  box-shadow: 0 0 9px var(--teal-lt);
  animation: pulse 2.2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

.hero-copy h1 {
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: clamp(2.3rem, 2.8vw + 1.5rem, 3.8rem);
  line-height: 1.08;
  margin: 16px 0 22px;
  background: var(--gradient-warm);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.025em;
}

.lead {
  font-size: 1.05rem;
  color: var(--text-soft);
  max-width: 530px;
  line-height: 1.78;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 32px 0 26px;
}

.btn {
  padding: 13px 26px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-family: inherit;
  font-weight: 600;
  font-size: 14.5px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s;
}

.btn.primary {
  background: var(--gradient);
  color: #fff;
  border: none;
  box-shadow: 0 0 28px rgba(201, 119, 71, 0.38), 0 8px 28px rgba(0, 0, 0, 0.42);
}

.btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 46px rgba(201, 119, 71, 0.52), 0 14px 38px rgba(0, 0, 0, 0.4);
}

.btn.ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn.ghost:hover {
  background: rgba(201, 119, 71, 0.07);
  border-color: rgba(201, 119, 71, 0.28);
  transform: translateY(-3px);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 12.5px;
  color: var(--text-soft);
  align-items: center;
}

.trust-row span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.trust-row span::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(42, 142, 154, 0.15);
  border: 1px solid rgba(42, 142, 154, 0.3);
  color: var(--teal-lt);
  font-weight: 800;
  font-size: 9px;
  flex-shrink: 0;
}

/* Hero card */
.hero-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 30px;
  border: 1px solid var(--border-accent);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: var(--gradient);
  opacity: 0.55;
}

.hero-card h2 {
  margin-top: 0;
  font-family: "Fraunces", "Times New Roman", serif;
  color: var(--text);
  font-size: 1.5rem;
  letter-spacing: -0.02em;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.checklist li {
  padding: 10px 0 10px 30px;
  position: relative;
  border-bottom: 1px solid var(--border);
  color: var(--text-soft);
  font-size: 14.5px;
}

.checklist li:last-child {
  border-bottom: none;
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 10px;
  color: var(--teal-lt);
  font-weight: 800;
  font-size: 12px;
}

.card-foot {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.label {
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-soft);
  margin-bottom: 4px;
}

.value {
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
}

/* ─── Sections ──────────────────────────── */

.section {
  padding: 88px 0;
  position: relative;
  z-index: 1;
}

.section-header {
  margin-bottom: 8px;
}

.section-header h2 {
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: clamp(1.9rem, 1.6vw + 1.3rem, 2.7rem);
  margin: 0 0 14px;
  color: var(--text);
  letter-spacing: -0.025em;
}

.section-header p {
  max-width: 660px;
  color: var(--text-soft);
  font-size: 1.05rem;
  margin: 0;
}

.grid {
  display: grid;
  gap: 18px;
  margin-top: 38px;
}

.grid.two {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid.three {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

/* Panels */
.panel {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border);
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.panel:hover {
  border-color: rgba(201, 119, 71, 0.30);
  transform: translateY(-5px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4), 0 0 28px rgba(201, 119, 71, 0.08);
}

.panel::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient);
  opacity: 0;
  transition: opacity 0.3s;
}

.panel:hover::after {
  opacity: 1;
}

.panel h3 {
  margin: 0 0 12px;
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: 1.15rem;
  color: var(--text);
  letter-spacing: -0.02em;
}

.panel p {
  color: var(--text-soft);
  font-size: 14.5px;
  line-height: 1.72;
  margin: 0;
}

.plain-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.plain-list li {
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-soft);
  font-size: 14.5px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.plain-list li::before {
  content: "→";
  color: var(--copper);
  font-weight: 700;
  flex-shrink: 0;
  opacity: 0.85;
}

.plain-list li:last-child {
  border-bottom: none;
}

/* ─── Timeline ──────────────────────────── */

.timeline {
  display: grid;
  gap: 14px;
  margin-top: 38px;
}

.step {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  padding: 24px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: border-color 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
}

.step:hover {
  border-color: rgba(201, 119, 71, 0.30);
  transform: translateX(7px);
}

.step::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gradient);
  opacity: 0;
  transition: opacity 0.3s;
}

.step:hover::before {
  opacity: 1;
}

.step-number {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: var(--gradient);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
  box-shadow: 0 0 22px rgba(201, 119, 71, 0.42);
}

.step h3 {
  margin: 0 0 5px;
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: 1.1rem;
  color: var(--text);
  letter-spacing: -0.02em;
}

.step p {
  margin: 0;
  color: var(--text-soft);
  font-size: 14.5px;
}

/* ─── Contact ───────────────────────────── */

.contact {
  padding-bottom: 110px;
}

.contact-card {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 28px;
  padding: 32px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(201, 119, 71, 0.11) 0%, rgba(17, 56, 61, 0.22) 100%);
  border: 1px solid var(--border-accent);
  margin-top: 32px;
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: var(--gradient);
  opacity: 0.55;
}

.contact-card .label {
  color: rgba(122, 134, 153, 0.8);
}

.contact-card .value {
  color: var(--text);
}

.note {
  margin-top: 18px;
  padding: 18px 24px;
  border-radius: var(--radius-sm);
  background: rgba(17, 56, 61, 0.25);
  border: 1px solid rgba(42, 142, 154, 0.20);
  color: var(--text-soft);
  font-size: 14.5px;
  line-height: 1.65;
}

.note strong {
  color: var(--copper-lt);
  font-weight: 600;
}

/* ─── Footer ────────────────────────────── */

.site-footer {
  border-top: 1px solid var(--border);
  padding: 36px 0 48px;
  background: rgba(4, 10, 9, 0.88);
  position: relative;
  z-index: 1;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-inner .logo-name {
  font-weight: 700;
  font-size: 16px;
  color: var(--text);
}

.footer-inner .logo-tag {
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 2px;
}

.footer-meta {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 12.5px;
  color: var(--text-muted);
  text-align: right;
}

/* ─── Animations ────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  animation: fade-up 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.delay-1 { animation-delay: 0.10s; }
.delay-2 { animation-delay: 0.22s; }
.delay-3 { animation-delay: 0.34s; }
.delay-4 { animation-delay: 0.46s; }

@keyframes fade-up {
  to { opacity: 1; transform: translateY(0); }
}

/* ─── Responsive ────────────────────────── */

@media (max-width: 860px) {
  .nav { display: none; }
  .header-inner { justify-content: center; }
  .footer-meta { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { animation: none; opacity: 1; transform: none; }
  .btn, .panel, .step { transition: none; }
  .badge::before { animation: none; }
}
