/* Iverantis — site design system */
@import url("https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,600;0,9..144,700;1,9..144,400&family=Manrope:wght@300;400;500;600;700;800&display=swap");

:root {
  --bg-page: #ebe6dc;
  --bg-warm: #f7f3eb;
  --surface: #fffdf8;
  --surface-2: #f3efe6;
  --ink: #141210;
  --ink-muted: #5c574e;
  --line: #d8d0c4;
  --forest: #1b4332;
  --forest-mid: #2d6a4f;
  --forest-light: #40916c;
  --clay: #bc6c25;
  --clay-hover: #a35d1f;
  --gold: #dda15e;
  --hero-dark: #0d1f17;
  --shadow: 0 18px 50px rgba(20, 18, 16, 0.09);
  --shadow-hover: 0 28px 60px rgba(20, 18, 16, 0.14);
  --radius: 1.25rem;
  --radius-lg: 1.75rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, sans-serif;
  background: var(--bg-page);
  background-image:
    radial-gradient(ellipse 120% 80% at 10% -10%, rgba(64, 145, 108, 0.08), transparent 50%),
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(188, 108, 37, 0.06), transparent 45%);
  color: var(--ink);
  line-height: 1.65;
  font-size: 1.0625rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.panel-dark h1,
.panel-dark h2,
.panel-dark h3,
.panel-dark h4,
.panel-dark h5,
.panel-dark h6 {
  color: #f4f0e8;
}

a {
  color: var(--forest-mid);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--forest);
}

.hero-gradient {
  background:
    linear-gradient(160deg, rgba(13, 31, 23, 0.92) 0%, transparent 55%),
    linear-gradient(125deg, var(--hero-dark) 0%, #1b4332 42%, #2d6a4f 78%, #40916c 100%);
  position: relative;
  overflow: hidden;
}

.hero-gradient::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto auto;
  width: min(55vw, 520px);
  height: min(55vw, 520px);
  background: radial-gradient(circle, rgba(221, 161, 94, 0.18) 0%, transparent 65%);
  pointer-events: none;
}

.hero-gradient::after {
  content: "";
  position: absolute;
  inset: auto auto -30% -15%;
  width: min(45vw, 400px);
  height: min(45vw, 400px);
  background: radial-gradient(circle, rgba(64, 145, 108, 0.2) 0%, transparent 60%);
  pointer-events: none;
}

.hero-gradient > * {
  position: relative;
  z-index: 1;
}

.section-shell {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: linear-gradient(165deg, var(--surface) 0%, var(--surface-2) 100%);
}

.card-hover {
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.card-hover:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(45, 106, 79, 0.25);
}

.accent-border {
  border-left: 4px solid var(--forest-light);
}

.pill-tag {
  border-radius: 999px;
  border: 1px solid rgba(221, 161, 94, 0.35);
  background: rgba(27, 67, 50, 0.45);
  color: #faf6ef;
  backdrop-filter: blur(8px);
}

.ad-strip {
  background: linear-gradient(90deg, #fef3c7 0%, #fde68a 50%, #fef3c7 100%);
  border-bottom: 1px solid #e9d38a;
  color: #713f12;
}

.site-nav-link {
  color: rgba(250, 246, 239, 0.78);
  text-decoration: none;
  letter-spacing: 0.14em;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
}

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

.logo-mark {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.85rem;
  background: linear-gradient(145deg, var(--gold) 0%, var(--clay) 100%);
  color: var(--hero-dark);
  font-weight: 800;
  font-family: "Fraunces", Georgia, serif;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  box-shadow: 0 12px 28px rgba(188, 108, 37, 0.35);
}

.hero-kicker {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--gold);
}

.hero-title-accent {
  color: #f4e4c8;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  background: linear-gradient(180deg, var(--clay) 0%, #9a5419 100%);
  color: #fffdf8;
  box-shadow: 0 10px 28px rgba(188, 108, 37, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btn-primary:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
  box-shadow: 0 14px 36px rgba(188, 108, 37, 0.42);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  border-radius: var(--radius);
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  background: linear-gradient(180deg, var(--clay) 0%, #9a5419 100%);
  color: #fffdf8;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(188, 108, 37, 0.3);
  transition: transform 0.2s ease, filter 0.2s ease;
}

.btn-secondary:hover {
  filter: brightness(1.05);
  transform: translateY(-2px);
  color: #fffdf8;
}

.panel-dark {
  background: linear-gradient(165deg, #13261c 0%, #0d1f17 100%);
  color: #f4f0e8;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(64, 145, 108, 0.25);
  box-shadow: 0 24px 60px rgba(13, 31, 23, 0.45);
}

.panel-dark a {
  color: var(--gold);
}

.panel-dark a:hover {
  color: #f4e4c8;
}

input,
select,
textarea {
  border-color: #cfc6b8 !important;
  border-radius: var(--radius) !important;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--forest-mid) !important;
  box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.2) !important;
  outline: none !important;
}

.site-footer {
  background: #0a1210;
  color: #d6d0c4;
  padding: 4rem 0 2.5rem;
  margin-top: 3rem;
}

.site-footer a {
  color: var(--gold);
  text-decoration: none;
}

.site-footer a:hover {
  color: #f4e4c8;
}

.footer-company-card {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(221, 161, 94, 0.35);
  background: linear-gradient(160deg, rgba(27, 67, 50, 0.5) 0%, rgba(13, 31, 23, 0.85) 100%);
  padding: 2rem 2.5rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.footer-company-card h3 {
  color: var(--gold);
  font-family: "Fraunces", Georgia, serif;
  text-align: center;
  margin-bottom: 1.25rem;
}

.footer-company-card .accent-num {
  color: #9fd4b4;
}

.chip-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.75rem;
  color: rgba(250, 246, 239, 0.9);
}

.chip-dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--gold);
}
