/* ============================================================
   MORAINE DSG — styles.css
   ============================================================

   Table of Contents
   1.  CSS Reset + Root Variables
   2.  Global Base Styles
   3.  Buttons
   4.  Navigation
   5.  Footer
   6.  Hero
   7.  Sections
   8.  Cards (feature, industry)
   9.  Pricing Cards
   10. Portfolio Grid
   11. Contact Form
   12. Add-Ons Table
   13. Animations
   14. Responsive
   ============================================================ */

/* ============================================================
   1. CSS Reset + Root Variables
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Colours */
  --color-navy:       #0B1F3A;
  --color-navy-mid:   #102848;
  --color-near-black: #080F1C;
  --color-gold:       #C8962A;
  --color-gold-hover: #E0AA35;
  --color-ice:        #A8C4D8;
  --color-white:      #FFFFFF;
  --color-off-white:  #F5F7FA;
  --color-charcoal:   #1E2A38;
  --color-mid-gray:   #5A6472;
  --color-border:     #D9DDE3;

  /* Typography */
  --font-body: 'DM Sans', sans-serif;
  --font-size-base: 16px;
  --line-height-base: 1.6;

  /* Spacing */
  --section-py: 96px;
  --section-py-sm: 64px;

  /* Nav height */
  --nav-height: 132px;

  /* Transitions */
  --transition: 0.25s ease;

  /* Shadows */
  --shadow-card: 0 4px 24px rgba(11,31,58,0.10);
  --shadow-card-hover: 0 8px 40px rgba(11,31,58,0.18);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--color-charcoal);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
}

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

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

ul, ol {
  list-style: none;
}

/* ============================================================
   2. Global Base Styles
   ============================================================ */
.container {
  width: 100%;
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: 24px;
}

h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.15;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; }

p { color: var(--color-mid-gray); }

.text-center { text-align: center; }
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 12px;
}

/* ============================================================
   3. Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 6px;
  padding: 13px 28px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn-gold {
  background: var(--color-gold);
  color: var(--color-navy);
  border-color: var(--color-gold);
}
.btn-gold:hover {
  background: var(--color-gold-hover);
  border-color: var(--color-gold-hover);
  box-shadow: 0 4px 18px rgba(200,150,42,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,0.55);
}
.btn-outline:hover {
  border-color: var(--color-white);
  background: rgba(255,255,255,0.1);
}

.btn-secondary {
  background: transparent;
  color: var(--color-navy);
  border-color: var(--color-navy);
}
.btn-secondary:hover {
  background: var(--color-navy);
  color: var(--color-white);
}

.btn-sm {
  padding: 9px 20px;
  font-size: 0.875rem;
}

/* ============================================================
   4. Navigation
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-height);
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow var(--transition);
}

.nav--scrolled {
  box-shadow: 0 2px 16px rgba(11,31,58,0.10);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav__logo img {
  height: 120px;
  width: auto;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__links a {
  color: #0D3B66;
  font-size: 0.9375rem;
  font-weight: 500;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}
.nav__links a:hover {
  color: var(--color-navy);
}
.nav__links a.active {
  color: var(--color-navy);
  border-bottom-color: var(--color-gold);
}

.nav__cta {
  margin-left: 8px;
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--color-navy);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* Mobile menu */
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-navy);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.nav__mobile a {
  color: rgba(255,255,255,0.85);
  font-size: 1.4rem;
  font-weight: 600;
  transition: color var(--transition);
}
.nav__mobile a:hover,
.nav__mobile a.active {
  color: var(--color-gold);
}

.nav-open .nav__mobile {
  display: flex;
  opacity: 1;
  pointer-events: auto;
}
.nav-open .nav__hamburger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-open .nav__hamburger span:nth-child(2) {
  opacity: 0;
}
.nav-open .nav__hamburger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   5. Footer
   ============================================================ */
.footer {
  background: var(--color-near-black);
  color: rgba(255,255,255,0.65);
  padding: 64px 0 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.4fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__logo {
  height: 160px;
  width: auto;
  margin-bottom: 16px;
}

.footer__tagline {
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: rgba(255,255,255,0.5);
}

.footer__copy {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
  margin-top: 24px;
}

.footer__heading {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 16px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--color-white); }

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  margin-bottom: 10px;
  color: rgba(255,255,255,0.6);
}
.footer__contact-item svg {
  flex-shrink: 0;
  margin-top: 2px;
  opacity: 0.7;
}

.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.footer__social-link {
  color: rgba(255,255,255,0.6);
  line-height: 0;
  transition: color var(--transition);
}
.footer__social-link:hover {
  color: #D4A843;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  text-align: center;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.28);
}

/* ============================================================
   6. Hero
   ============================================================ */
.hero {
  background: var(--color-navy);
  padding: 120px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero--short {
  padding: 80px 0 70px;
}

/* Subtle strata-inspired geometric accent */
.hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -120px;
  width: 520px;
  height: 520px;
  background: radial-gradient(ellipse at center, rgba(200,150,42,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(168,196,216,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero__logo {
  height: 72px;
  width: auto;
  margin-bottom: 32px;
  display: block;
}

.hero__label {
  color: var(--color-gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero__title {
  color: var(--color-white);
  max-width: 700px;
  margin-bottom: 20px;
}

.hero__sub {
  color: var(--color-ice);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

/* ============================================================
   7. Sections
   ============================================================ */
.section-light {
  background: var(--color-white);
  padding: var(--section-py) 0;
}

.section-alt {
  background: var(--color-off-white);
  padding: var(--section-py) 0;
}

.section-dark {
  background: var(--color-navy);
  padding: var(--section-py) 0;
}

.section-dark h2 {
  color: var(--color-white);
}
.section-dark p {
  color: var(--color-ice);
}

.section__header {
  margin-bottom: 56px;
}

.section__header h2 {
  margin-bottom: 12px;
  color: var(--color-charcoal);
}
.section__header p {
  font-size: 1.0625rem;
  max-width: 580px;
}
.section__header--center {
  text-align: center;
}
.section__header--center p {
  margin-inline: auto;
}

/* CTA Banner */
.cta-banner {
  background: var(--color-navy);
  padding: 80px 0;
  text-align: center;
}
.cta-banner h2 {
  color: var(--color-white);
  margin-bottom: 12px;
}
.cta-banner p {
  color: var(--color-ice);
  font-size: 1.0625rem;
  margin-bottom: 36px;
}

/* ============================================================
   8. Cards (feature + industry)
   ============================================================ */
.cards-grid {
  display: grid;
  gap: 28px;
}
.cards-grid--3 { grid-template-columns: repeat(3, 1fr); }
.cards-grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 36px 28px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.card__icon {
  width: 52px;
  height: 52px;
  background: rgba(11,31,58,0.06);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--color-navy);
}
.card__icon svg {
  width: 26px;
  height: 26px;
}

.card h3 {
  color: var(--color-charcoal);
  margin-bottom: 10px;
  font-size: 1.125rem;
}
.card p {
  font-size: 0.9375rem;
  line-height: 1.65;
}

/* Industry cards on alt background */
.section-alt .card {
  background: var(--color-white);
}

/* Values cards */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.value-card {
  background: var(--color-white);
  border-radius: 12px;
  padding: 40px 32px;
  border-left: 4px solid var(--color-gold);
  box-shadow: var(--shadow-card);
}
.value-card h3 {
  color: var(--color-charcoal);
  margin-bottom: 10px;
}
.value-card p {
  font-size: 0.9375rem;
  line-height: 1.65;
}

/* ============================================================
   9. Pricing Cards
   ============================================================ */
.two-paths {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 0;
  align-items: stretch;
}

.path-card {
  border-radius: 12px;
  padding: 40px 36px;
  position: relative;
}

.path-card--a {
  background: var(--color-off-white);
  border: 2px solid var(--color-border);
  padding-top: 16px;
}
.path-card--b {
  background: var(--color-navy);
  border: 2px solid var(--color-navy);
  color: var(--color-white);
  padding-top: 16px;
}

.path-card__badge {
  display: inline-block;
  position: absolute;
  top: 16px;
  left: 36px;
  background: var(--color-gold);
  color: var(--color-navy);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 4px;
}
.path-card h3 {
  font-size: 1.5rem;
  margin-top: 36px;
  margin-bottom: 12px;
}
.path-card--a h3 { color: var(--color-charcoal); }
.path-card--b h3 { color: var(--color-white); }

.path-card p {
  font-size: 0.9375rem;
  line-height: 1.65;
  margin-bottom: 20px;
}
.path-card--a p { color: var(--color-mid-gray); }
.path-card--b p { color: var(--color-ice); }

.path-card__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}
.path-card__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
}
.path-card--a .path-card__list li { color: var(--color-mid-gray); }
.path-card--b .path-card__list li { color: rgba(255,255,255,0.8); }

.path-card__list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.path-card--a .path-card__list li::before { background: var(--color-mid-gray); }
.path-card--b .path-card__list li::before { background: var(--color-gold); }

/* One-time pricing cards */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.pricing-grid--two {
  grid-template-columns: repeat(2, minmax(0, 380px));
  justify-content: center;
}
.pricing-grid--two .pricing-card--recommended {
  box-shadow: var(--shadow-card-hover);
}

.pricing-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition);
}
.pricing-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.pricing-card--recommended {
  border-color: var(--color-gold);
  border-width: 2px;
  position: relative;
}
.pricing-card--recommended::before {
  content: 'Most Popular';
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-gold);
  color: var(--color-navy);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
}

.pricing-card__name {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-mid-gray);
  margin-bottom: 8px;
}

.pricing-card__price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-charcoal);
  margin-bottom: 4px;
  line-height: 1;
}

.pricing-card__price-sub {
  font-size: 0.8125rem;
  color: var(--color-mid-gray);
  margin-bottom: 16px;
}

/* Discounted price with monthly plan */
.pricing-card__with-plan {
  background: rgba(200,150,42,0.08);
  border: 1px solid rgba(200,150,42,0.25);
  border-radius: 6px;
  padding: 10px 12px;
  margin-bottom: 20px;
}
.pricing-card__with-plan .save-tag {
  display: inline-block;
  background: var(--color-gold);
  color: var(--color-navy);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 3px;
  margin-bottom: 5px;
}
.pricing-card__with-plan .plan-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-navy);
}
.pricing-card__with-plan .plan-price-original {
  font-size: 0.8125rem;
  color: var(--color-mid-gray);
  text-decoration: line-through;
  margin-left: 6px;
}
.pricing-card__with-plan .plan-note {
  font-size: 0.75rem;
  color: var(--color-mid-gray);
  display: block;
  margin-top: 2px;
}

.pricing-card__features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}
.pricing-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--color-mid-gray);
  line-height: 1.5;
}
.pricing-card__features li::before {
  content: '✓';
  color: var(--color-gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0px;
}

/* Monthly plans */
.monthly-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.monthly-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition);
}
.monthly-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.monthly-card--featured {
  background: var(--color-navy);
  border-color: var(--color-navy);
}
.monthly-card--featured .pricing-card__name { color: var(--color-ice); }
.monthly-card--featured .pricing-card__price { color: var(--color-white); }
.monthly-card--featured .pricing-card__price-sub { color: var(--color-ice); }
.monthly-card--featured .pricing-card__features li { color: rgba(255,255,255,0.75); }
.monthly-card--featured .pricing-card__features li::before { color: var(--color-gold); }

/* Add-Ons */
.addons-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.addons-table th {
  text-align: left;
  padding: 16px 24px;
  background: var(--color-charcoal);
  color: rgba(255,255,255,0.9);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.addons-table td {
  padding: 16px 24px;
  font-size: 0.9375rem;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-charcoal);
}
.addons-table td:last-child {
  font-weight: 600;
  color: var(--color-navy);
  white-space: nowrap;
}
.addons-table tr:last-child td {
  border-bottom: none;
}
.addons-table tr:hover td {
  background: var(--color-off-white);
}
.addons-table tr.addon--featured td {
  background: #FFFBF2;
  border-bottom: 1px solid #EDD98A;
}
.addons-table tr.addon--featured:hover td {
  background: #FFF8E7;
}
.addons-table tr.addon-group-header td {
  background: #F4F4F4;
  padding: 8px 24px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-mid-gray);
  border-bottom: 1px solid var(--color-border);
}
.addons-table tr.addon-group-header:hover td {
  background: #F4F4F4;
}
.addon-badge {
  display: inline-block;
  border: 1px solid #D4A843;
  color: #D4A843;
  font-size: 11px;
  font-weight: 500;
  padding: 2px 8px;
  border-radius: 20px;
  margin-left: 8px;
  vertical-align: middle;
}

.pricing-card__badge {
  display: inline-block;
  background: var(--color-gold);
  color: var(--color-navy);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
}

/* ── Founders Section ──────────────────────────────────── */
.founders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}
@media (max-width: 768px) {
  .founders-grid { grid-template-columns: 1fr; }
}
.founder-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 32px;
  box-shadow: var(--shadow-card);
}
.founder-card__photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  margin-bottom: 24px;
  overflow: hidden;
}
.founder-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.founder-card__photo-label {
  font-size: 0.8125rem;
  color: var(--color-mid-gray);
  text-align: center;
  padding: 16px;
}
.founder-card__name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 4px;
}
.founder-card__title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-gold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.founder-card__desc {
  font-size: 0.9375rem;
  color: var(--color-mid-gray);
  line-height: 1.6;
}

/* ============================================================
   10. Portfolio Grid
   ============================================================ */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
}

.portfolio-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.portfolio-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-5px);
}

.portfolio-card__img {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--color-navy) 0%, #1a3a60 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.portfolio-card__img-placeholder {
  color: rgba(255,255,255,0.2);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Decorative strata lines in placeholder */
.portfolio-card__img::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: repeating-linear-gradient(
    180deg,
    transparent 0px,
    transparent 8px,
    rgba(168,196,216,0.07) 8px,
    rgba(168,196,216,0.07) 10px
  );
}

.portfolio-card__body {
  padding: 28px;
}

.portfolio-card__tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold);
  background: rgba(200,150,42,0.1);
  border: 1px solid rgba(200,150,42,0.25);
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.portfolio-card__body h3 {
  color: var(--color-charcoal);
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.portfolio-card__body p {
  font-size: 0.9375rem;
  line-height: 1.65;
  margin-bottom: 20px;
}

/* ============================================================
   11. Contact Form
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-charcoal);
  margin-bottom: 7px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--color-charcoal);
  background: var(--color-white);
  border: 1.5px solid var(--color-border);
  border-radius: 7px;
  padding: 12px 16px;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--color-navy);
  box-shadow: 0 0 0 3px rgba(11,31,58,0.08);
}
.contact-form textarea {
  min-height: 130px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-info__heading {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 12px;
  margin-top: 28px;
}
.contact-info__heading:first-child { margin-top: 0; }

.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
  color: var(--color-mid-gray);
  font-size: 0.9375rem;
}
.contact-info__item svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--color-navy);
}

.contact-info__note {
  background: var(--color-off-white);
  border-radius: 8px;
  padding: 16px 18px;
  font-size: 0.875rem;
  color: var(--color-mid-gray);
  margin-top: 24px;
  border-left: 3px solid var(--color-gold);
}

/* ============================================================
   12. Story section
   ============================================================ */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.story-content h2 {
  color: var(--color-charcoal);
  margin-bottom: 20px;
}
.story-content p {
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 16px;
}
.story-content p:last-child { margin-bottom: 0; }

.story-visual {
  background: linear-gradient(145deg, var(--color-navy) 0%, var(--color-navy-mid) 100%);
  border-radius: 16px;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
/* Strata stripes */
.story-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    165deg,
    transparent 0px,
    transparent 28px,
    rgba(168,196,216,0.07) 28px,
    rgba(168,196,216,0.07) 30px
  );
}
.story-visual__icon {
  position: relative;
  z-index: 1;
}

/* ============================================================
   13. Animations
   ============================================================ */
.fade-in-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}
/* Stagger delays for grid children */
.fade-in-up[data-delay="1"] { transition-delay: 0.1s; }
.fade-in-up[data-delay="2"] { transition-delay: 0.2s; }
.fade-in-up[data-delay="3"] { transition-delay: 0.3s; }
.fade-in-up[data-delay="4"] { transition-delay: 0.4s; }

/* ============================================================
   14. Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .two-paths { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root {
    --section-py: 64px;
    --nav-height: 64px;
  }

  /* Nav */
  .nav__links,
  .nav__cta { display: none; }
  .nav__hamburger { display: flex; }

  /* Grids → single column */
  .cards-grid--3,
  .cards-grid--4,
  .values-grid,
  .pricing-grid,
  .monthly-grid,
  .portfolio-grid,
  .contact-grid,
  .story-grid,
  .two-paths {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 80px 0 72px;
  }
  .hero--short {
    padding: 60px 0 52px;
  }
  .hero__logo {
    height: 52px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
}
