/* Aliam — Premium minimaliste corporate
   Navy #0C2340 · Teal #1D9E75 · Warm grays · Off-white */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --navy:        #0C2340;
  --navy-90:     #1A2F4A;
  --navy-70:     #3D506B;
  --navy-50:     #6B7A93;
  --teal:        #1D9E75;
  --teal-dark:   #157A5A;
  --teal-pale:   #E5F2EC;
  --teal-pale-2: #F2F8F5;
  --beige:       #F6F2EA;
  --beige-2:     #FAF7F1;
  --warm-50:     #FBF9F6;
  --warm-100:    #F4F1EC;
  --warm-200:    #E8E3DA;
  --warm-300:    #D4CDC0;
  --warm-500:    #8C8678;
  --warm-700:    #4A453C;
  --off-white:   #FBFAF7;
  --line:        #E5E0D6;
  --line-soft:   #EFEAE0;

  --serif:       "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --sans:        "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --mono:        "JetBrains Mono", "SF Mono", ui-monospace, Menlo, monospace;

  --radius:      2px;
  --radius-lg:   4px;

  --maxw:        1240px;
  --gutter:      clamp(20px, 4vw, 56px);
}

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

html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--navy);
  background: var(--off-white);
  font-weight: 400;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
img { max-width: 100%; display: block; }

/* —— Type —— */
.serif { font-family: var(--serif); font-weight: 500; letter-spacing: -0.01em; }
.sans  { font-family: var(--sans); }
.mono  { font-family: var(--mono); }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; color: var(--navy); margin: 0; letter-spacing: -0.015em; line-height: 1.1; }
h1 { font-size: clamp(44px, 6vw, 72px); }
h2 { font-size: clamp(32px, 4vw, 48px); }
h3 { font-size: clamp(22px, 2.4vw, 30px); }
h4 { font-size: 20px; }

p { margin: 0; }

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-dark);
}
.eyebrow--navy { color: var(--navy-70); }

/* —— Layout —— */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.container-narrow { max-width: 920px; margin: 0 auto; padding: 0 var(--gutter); }

.section { padding: clamp(64px, 10vw, 120px) 0; }
.section--tight { padding: clamp(48px, 7vw, 88px) 0; }

.divider { height: 1px; background: var(--line); border: none; margin: 0; }

/* —— Header —— */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 250, 247, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line-soft);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}
.site-header__logo {
  display: flex; align-items: center; gap: 10px;
}
.site-header__logo img { height: 28px; width: auto; }
.site-header__logo-text {
  font-family: var(--sans);
  font-weight: 600;
  letter-spacing: 0.22em;
  font-size: 14px;
  color: var(--navy);
}
.site-nav { display: flex; align-items: center; gap: 36px; }
.site-nav a {
  font-size: 14px; color: var(--navy-70); font-weight: 500;
  position: relative; padding: 6px 0;
  transition: color 160ms ease;
}
.site-nav a:hover { color: var(--navy); }
.site-nav a.active { color: var(--navy); }
.site-nav a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: var(--teal);
}
.site-header__cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px; font-size: 13px; font-weight: 500;
  color: var(--navy); border: 1px solid var(--navy);
  border-radius: var(--radius);
  transition: all 160ms ease;
}
.site-header__cta:hover { background: var(--navy); color: #fff; }
.site-header__cta-arrow { transition: transform 160ms ease; }
.site-header__cta:hover .site-header__cta-arrow { transform: translateX(2px); }

@media (max-width: 880px) {
  .site-nav { display: none; }
  .site-header__inner { height: 64px; }
}

/* —— Buttons —— */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px;
  font-family: var(--sans); font-size: 14px; font-weight: 500;
  border-radius: var(--radius); border: 1px solid transparent;
  transition: all 180ms ease;
  white-space: nowrap;
}
.btn--primary { background: var(--navy); color: #fff; }
.btn--primary:hover { background: var(--navy-90); transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn--ghost:hover { background: var(--navy); color: #fff; }
.btn--white { background: #fff; color: var(--navy); }
.btn--white:hover { background: var(--off-white); }
.btn--teal { background: var(--teal); color: #fff; }
.btn--teal:hover { background: var(--teal-dark); }
.btn--lg { padding: 17px 32px; font-size: 15px; }
.btn__arrow { display: inline-block; transition: transform 180ms ease; }
.btn:hover .btn__arrow { transform: translateX(3px); }

/* —— Footer —— */
.site-footer {
  background: var(--navy);
  color: #B8C2D1;
  padding: 80px 0 40px;
  font-size: 14px;
}
.site-footer h5 {
  font-family: var(--sans);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: #fff; margin: 0 0 20px;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 64px;
}
.site-footer__brand { color: #fff; }
.site-footer__brand-mark {
  display: flex; align-items: center; gap: 12px; margin-bottom: 16px;
}
.site-footer__brand-mark img { height: 32px; filter: brightness(0) invert(1); }
.site-footer__brand-mark span {
  font-weight: 600; letter-spacing: 0.22em; font-size: 16px;
}
.site-footer__tag { color: #8FA0B8; max-width: 280px; line-height: 1.6; font-size: 13px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 12px; }
.site-footer a:hover { color: #fff; }
.site-footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 12px; color: #6B7A93;
}
.site-footer__bottom a:hover { color: #B8C2D1; }
.site-footer__bottom-links { display: flex; gap: 24px; }

@media (max-width: 880px) {
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .site-footer__bottom { flex-direction: column; gap: 16px; align-items: flex-start; }
}

/* —— Cookie banner —— */
.cookie-banner {
  position: fixed; bottom: 16px; left: 16px; right: 16px;
  max-width: 640px; margin: 0 auto;
  background: #fff; border: 1px solid var(--line);
  box-shadow: 0 12px 32px rgba(12, 35, 64, 0.08);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  display: flex; align-items: center; gap: 16px;
  font-size: 13px; color: var(--navy-70);
  z-index: 100;
}
.cookie-banner button {
  padding: 8px 14px; font-size: 12px; font-weight: 500;
  background: var(--navy); color: #fff;
  border: none; border-radius: var(--radius);
}
.cookie-banner__dismiss {
  background: transparent !important; color: var(--navy-50) !important;
  padding: 4px 8px !important;
}

/* —— Reusable —— */
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3vw, 40px);
  transition: border-color 200ms ease, transform 200ms ease;
}
.card:hover { border-color: var(--navy-50); }

.tag {
  display: inline-block;
  font-family: var(--sans);
  font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--teal-dark);
}
.tag--filled {
  background: var(--teal-pale); color: var(--teal-dark);
  padding: 5px 10px; border-radius: var(--radius);
}
.tag--navy { color: var(--navy-70); }

.price {
  font-family: var(--serif);
  font-size: 28px; font-weight: 600; color: var(--navy);
  letter-spacing: -0.01em;
}
.price small {
  font-family: var(--sans); font-size: 13px; color: var(--navy-70);
  font-weight: 500; margin-left: 4px;
}

.lead {
  font-size: clamp(17px, 1.4vw, 20px); line-height: 1.6;
  color: var(--navy-70);
  font-weight: 400;
}

/* Page hero shared */
.page-hero {
  padding-top: clamp(80px, 10vw, 140px);
  padding-bottom: clamp(48px, 6vw, 80px);
  border-bottom: 1px solid var(--line-soft);
}
.page-hero__eyebrow { margin-bottom: 24px; }
.page-hero h1 { max-width: 920px; margin-bottom: 24px; }
.page-hero .lead { max-width: 720px; }

/* Final CTA navy block */
.final-cta {
  background: var(--navy);
  color: #fff;
  padding: clamp(64px, 8vw, 110px) 0;
  text-align: center;
}
.final-cta h2 { color: #fff; margin-bottom: 12px; }
.final-cta p { color: #B8C2D1; margin-bottom: 32px; font-size: 17px; }
.final-cta .btn { background: #fff; color: var(--navy); border-color: #fff; }
.final-cta .btn:hover { background: transparent; color: #fff; }

/* Reassurance bar */
.reassurance {
  display: inline-flex; align-items: center; gap: 24px;
  margin-top: 28px; font-size: 13px; color: var(--navy-50);
  flex-wrap: wrap;
}
.reassurance span { display: inline-flex; align-items: center; gap: 8px; }
.reassurance .dot {
  width: 4px; height: 4px; border-radius: 50%; background: var(--warm-300); display: inline-block;
}

/* utility */
.flex { display: flex; }
.col { display: flex; flex-direction: column; }
.gap-8  { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mt-64 { margin-top: 64px; }
.text-muted { color: var(--navy-70); }

/* fade-in on scroll */
.reveal { opacity: 0; transform: translateY(12px); transition: opacity 700ms ease, transform 700ms ease; }
.reveal.in { opacity: 1; transform: none; }

/* Visual placeholder */
.placeholder {
  background:
    repeating-linear-gradient(135deg,
      var(--warm-100) 0 12px,
      var(--warm-50) 12px 24px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.1em; color: var(--warm-500); text-transform: uppercase;
}
