/* =================================================================
   Dolphin Insights — Design System
   ================================================================= */
:root {
  /* Brand palette — sampled from the Dolphin Insights logo */
  --navy-900: #141a24;  /* charcoal base (matches logo background) */
  --navy-800: #1b2230;
  --navy-700: #26303f;
  --navy-600: #33404f;
  --teal-500: #0a9bd8;  /* brand blue — primary accent (the dolphin) */
  --teal-400: #3bb6ec;  /* blue light */
  --teal-600: #0a6f9e;  /* blue deep (text-safe on white) */
  --amber-500: #04b07a; /* brand green — secondary accent (the curve) */
  --amber-400: #1ed79a; /* green light */
  --amber-600: #0a7350; /* green deep (text-safe on white) */

  /* Neutrals */
  --ink:      #0f1b2d;
  --slate-700:#334155;
  --slate-500:#64748b;
  --slate-300:#cbd5e1;
  --slate-200:#e2e8f0;
  --slate-100:#f1f5f9;
  --paper:    #f8fafc;
  --white:    #ffffff;

  /* Typography */
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Spacing / shape */
  --radius:   16px;
  --radius-sm:10px;
  --shadow:   0 10px 30px -12px rgba(6, 24, 47, 0.18);
  --shadow-lg:0 30px 60px -20px rgba(6, 24, 47, 0.35);
  --container: 1160px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font-family: inherit; cursor: pointer; }

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}
.section { padding: 96px 0; }
.section--tight { padding: 64px 0; }
.section--paper { background: var(--paper); }
.center { text-align: center; }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-600);
  margin-bottom: 16px;
}
.eyebrow--light { color: var(--teal-400); }

h1, h2, h3, h4 { line-height: 1.18; letter-spacing: -0.02em; font-weight: 700; color: var(--ink); }
h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); }
h3 { font-size: 1.3rem; }
.lead { font-size: 1.15rem; color: var(--slate-500); max-width: 60ch; }
.section-head { max-width: 720px; margin: 0 auto 56px; }
.section-head.center .lead { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.98rem;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  background: linear-gradient(135deg, var(--teal-500), var(--teal-600));
  color: var(--white);
  box-shadow: 0 12px 24px -10px rgba(10, 111, 158, 0.7);
}
.btn--primary:hover { box-shadow: 0 18px 30px -10px rgba(10, 111, 158, 0.85); }
/* Amber variant for secondary calls-to-action */
.btn--amber {
  background: linear-gradient(135deg, var(--amber-400), var(--amber-500));
  color: var(--navy-900);
  font-weight: 700;
  box-shadow: 0 12px 24px -10px rgba(4, 176, 122, 0.6);
}
.btn--amber:hover { box-shadow: 0 18px 30px -10px rgba(4, 176, 122, 0.78); }
.btn--ghost {
  background: transparent;
  border-color: var(--slate-300);
  color: var(--ink);
}
.btn--ghost:hover { border-color: var(--teal-500); color: var(--teal-600); }
.btn--light {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.25);
  color: var(--white);
}
.btn--light:hover { background: rgba(255,255,255,0.16); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(20, 25, 33, 0.92);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.brand__logo { height: 44px; width: auto; display: block; }
.brand__logo--footer { height: 52px; }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}
.brand { display: flex; align-items: center; gap: 12px; font-weight: 700; font-size: 1.18rem; color: var(--ink); }
.brand__mark {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--navy-700), var(--teal-600));
  color: #fff;
}
.brand__mark svg { width: 22px; height: 22px; }
.brand small { display:block; font-size:0.66rem; font-weight:600; letter-spacing:0.12em; text-transform:uppercase; color:var(--slate-500); }

.nav__links { display: flex; align-items: center; gap: 6px; }
.nav__links a:not(.btn) {
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 0.96rem;
  font-weight: 500;
  color: #c8d6e6;
  transition: background 0.2s, color 0.2s;
}
.nav__links a:not(.btn):hover { background: rgba(255, 255, 255, 0.08); color: #fff; }
.nav__links a.is-active:not(.btn) { color: var(--teal-400); font-weight: 600; }
.nav__cta { margin-left: 10px; }

.nav__toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.04);
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
}
.nav__toggle span { width: 20px; height: 2px; background: #fff; border-radius: 2px; transition: 0.3s; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: radial-gradient(900px 520px at 82% -10%, rgba(10,155,216,0.20), transparent 60%),
              radial-gradient(700px 460px at 12% 110%, rgba(4,176,122,0.12), transparent 60%),
              linear-gradient(160deg, rgba(20,26,36,0.93), rgba(30,40,55,0.86) 55%, rgba(20,26,36,0.96)),
              url("../assets/img/hero-hospitality.jpg") center/cover no-repeat;
  color: #e8f0fb;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: linear-gradient(180deg, transparent, #000 30%, transparent);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
  padding: 104px 0 96px;
}
.hero h1 { color: #fff; }
.hero h1 .accent { background: linear-gradient(120deg, var(--teal-400), var(--amber-400)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__sub { font-size: 1.18rem; color: #b9cbe4; margin: 22px 0 32px; max-width: 52ch; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__stats { display: flex; gap: 34px; margin-top: 48px; flex-wrap: wrap; }
.hero__stat .num { font-size: 2rem; font-weight: 800; color: #fff; }
.hero__stat .lbl { font-size: 0.86rem; color: #9fb4d1; }

/* Hero visual card */
.hero__visual {
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 22px;
  padding: 26px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(6px);
}
.hero__visual h4 { color: #fff; font-size: 0.95rem; margin-bottom: 18px; display:flex; align-items:center; gap:8px; }
.hero__visual h4 span { width:9px;height:9px;border-radius:50%;background:var(--teal-400); box-shadow:0 0 12px var(--teal-400); }
.bar-row { display:flex; align-items:center; gap:12px; margin-bottom:14px; }
.bar-row .name { width:74px; font-size:0.8rem; color:#9fb4d1; }
.bar { flex:1; height:10px; border-radius:999px; background:rgba(255,255,255,0.08); overflow:hidden; }
.bar i { display:block; height:100%; border-radius:999px; background:linear-gradient(90deg,var(--teal-500),var(--amber-400)); }
.hero__chip {
  position:absolute; top:-16px; right:-12px;
  background:var(--white); color:var(--navy-800);
  font-size:0.78rem; font-weight:700;
  padding:8px 14px; border-radius:999px;
  box-shadow:var(--shadow);
  display:flex; align-items:center; gap:6px;
}

/* ---------- Cards / grid ---------- */
.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 32px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.card__icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(10,155,216,0.14), rgba(4,176,122,0.08));
  color: var(--teal-600);
  margin-bottom: 20px;
}
.card__icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--slate-500); font-size: 0.98rem; }

/* ---------- Feature (alternating) rows ---------- */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.feature + .feature { margin-top: 88px; }
.feature--reverse .feature__media { order: 2; }
.feature__media {
  border-radius: var(--radius);
  min-height: 320px;
  background: linear-gradient(150deg, var(--navy-700), var(--teal-600));
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
  display:grid; place-items:center;
}
.feature__media::before {
  content:""; position:absolute; inset:0;
  background-image: radial-gradient(rgba(255,255,255,0.12) 1px, transparent 1px);
  background-size: 22px 22px;
}
.feature__media .glyph { position:relative; color:rgba(255,255,255,0.92); width:96px; height:96px; }
.feature h2 { margin-bottom: 16px; }
.feature p { color: var(--slate-500); margin-bottom: 20px; }
.feature__list { display: grid; gap: 12px; }
.feature__list li { display: flex; gap: 12px; align-items: flex-start; color: var(--slate-700); }
.feature__list svg { width: 22px; height: 22px; color: var(--teal-600); flex-shrink: 0; margin-top: 2px; }

/* ---------- Stats band ---------- */
.stats-band { background: var(--navy-800); color: #fff; }
.stats-band .grid--4 { gap: 20px; }
.stat { text-align: center; padding: 18px; }
.stat .num { font-size: clamp(2.2rem, 4vw, 3rem); font-weight: 800; color: var(--teal-400); }
.stat .lbl { color: #b9cbe4; font-size: 0.95rem; margin-top: 6px; }

/* ---------- Team ---------- */
.team-card { text-align: left; overflow: hidden; display: flex; flex-direction: column; }
.team-card__photo {
  display: block;
  width: calc(100% + 64px); margin: -32px -32px 24px;
  aspect-ratio: 1 / 1;
  object-fit: cover; object-position: 50% 50%;
  background: var(--navy-800);
}
.team-card .role {
  color: var(--teal-600); font-weight: 700; font-size: 0.78rem;
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 5px;
}
.team-card h3 { margin-bottom: 10px; }
.team-card p { color: var(--slate-500); font-size: 0.95rem; text-align: left; }
.team-card .linkedin {
  display: inline-flex; align-items: center; gap: 6px; align-self: flex-start;
  margin-top: auto; padding-top: 18px; font-size: 0.88rem; font-weight: 600; color: var(--slate-700);
}
.team-card .linkedin:hover { color: var(--teal-600); }
.team-card .linkedin svg { width: 18px; height: 18px; }

/* ---------- Logos ---------- */
.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 18px;
}
.logo-cell {
  height: 110px;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-sm);
  display: grid; place-items: center;
  background: var(--white);
  color: var(--slate-500);
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: 0.3s;
  text-align: center;
  padding: 12px;
}
.logo-cell:hover { border-color: var(--teal-500); color: var(--navy-800); transform: translateY(-4px); box-shadow: var(--shadow); }

/* ---------- Case studies ---------- */
.case {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}
.case + .case { margin-top: 36px; }
.case__banner {
  height: 190px; margin-bottom: 28px;
  border-radius: var(--radius-sm); overflow: hidden;
}
.case__banner img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.6s var(--ease);
}
.case:hover .case__banner img { transform: scale(1.04); }
.case__head { display: flex; align-items: flex-start; gap: 20px; margin-bottom: 26px; }
.case__num {
  font-size: 1.05rem; font-weight: 800; color: #fff;
  width: 52px; height: 52px; flex-shrink: 0;
  border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--teal-500), var(--teal-600));
}
.case__head .eyebrow { margin-bottom: 6px; }
.case__head h2 { font-size: clamp(1.5rem, 2.6vw, 1.85rem); }
.case__client { color: var(--slate-500); font-size: 0.95rem; margin-top: 4px; }
.case__icon {
  margin-left: auto; width: 56px; height: 56px; flex-shrink: 0;
  border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(4,176,122,0.16), rgba(10,155,216,0.12));
  color: var(--amber-600);
}
.case__icon svg { width: 28px; height: 28px; }
.case__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-bottom: 26px; }
.case__block h4, .case__arch h4, .case__outcomes h4 {
  font-size: 0.78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--teal-600); margin-bottom: 12px;
}
.case__block p { color: var(--slate-700); }
.case__arch {
  background: var(--paper);
  border: 1px solid var(--slate-200);
  border-left: 3px solid var(--amber-500);
  border-radius: var(--radius-sm);
  padding: 20px 24px; margin-bottom: 26px;
}
.case__arch p { color: var(--slate-700); font-size: 0.96rem; margin: 0; }
.case__arch code { background: rgba(10,155,216,0.1); color: var(--teal-600); padding: 2px 7px; border-radius: 6px; font-size: 0.85em; }
.outcome-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 28px; }
.outcome-grid li { display: flex; gap: 10px; align-items: flex-start; color: var(--slate-700); font-size: 0.96rem; }
.outcome-grid svg { width: 20px; height: 20px; color: var(--teal-600); flex-shrink: 0; margin-top: 2px; }
.case__stats { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 22px; }
.chip-stat {
  background: rgba(10,155,216,0.08);
  border: 1px solid rgba(10,155,216,0.18);
  border-radius: 999px; padding: 8px 16px;
  font-size: 0.85rem; font-weight: 600; color: var(--teal-600);
}
.chip-stat--amber { background: rgba(4,176,122,0.1); border-color: rgba(4,176,122,0.28); color: var(--amber-600); }

/* ---------- Photo treatments ---------- */
/* Feature media that holds a real photo */
.feature__media--photo { background: var(--navy-800); }
.feature__media--photo::before { display: none; }
.feature__media--photo > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.feature__media--photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(150deg, rgba(20,26,36,0.10), rgba(20,26,36,0.34));
}
.feature__media--photo .glyph { position: relative; z-index: 2; }

/* Venue cards (industries we serve) */
.venues { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.venue-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 280px;
  display: flex;
  align-items: flex-end;
  box-shadow: var(--shadow);
  isolation: isolate;
}
.venue-card img {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.venue-card::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to top, rgba(20,26,36,0.94) 8%, rgba(20,26,36,0.45) 50%, rgba(20,26,36,0.15));
  transition: background 0.4s;
}
.venue-card:hover img { transform: scale(1.07); }
.venue-card__label { padding: 22px 22px 24px; color: #fff; }
.venue-card__label .vk {
  display: inline-block; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--amber-400);
  margin-bottom: 8px;
}
.venue-card__label h3 { color: #fff; font-size: 1.18rem; margin-bottom: 4px; }
.venue-card__label p { color: #c8d6e6; font-size: 0.88rem; line-height: 1.5; }

/* Page-hero with photo background */
.page-hero--photo { background: var(--navy-900); }
.page-hero--photo::after { background-image: none; }
.page-hero--photo .ph-bg {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover; opacity: 0.28;
}
.page-hero--photo::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(160deg, rgba(20,26,36,0.78), rgba(30,40,55,0.62) 55%, rgba(20,26,36,0.9));
}

/* Contact welcome image */
.contact-img {
  width: 100%; height: 230px; object-fit: cover;
  border-radius: var(--radius); margin-bottom: 26px; box-shadow: var(--shadow);
}

/* ---------- CTA band ---------- */
.cta {
  background: linear-gradient(135deg, var(--navy-800), var(--teal-600));
  color: #fff;
  border-radius: 26px;
  padding: 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta::after {
  content:""; position:absolute; inset:0;
  background-image: radial-gradient(rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 24px 24px; opacity:0.6;
}
.cta > * { position: relative; z-index: 1; }
.cta h2 { color: #fff; }
.cta p { color: rgba(255,255,255,0.85); max-width: 56ch; margin: 14px auto 28px; font-size: 1.1rem; }

/* ---------- Contact form ---------- */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: start; }
.contact-info .item { display: flex; gap: 14px; margin-bottom: 22px; align-items: flex-start; }
.contact-info .item svg { width: 22px; height: 22px; color: var(--teal-600); flex-shrink: 0; margin-top: 3px; }
.contact-info .item .k { font-weight: 600; }
.contact-info .item .v { color: var(--slate-500); font-size: 0.95rem; }
.form {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 7px; color: var(--slate-700); }
.field input, .field textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.96rem;
  color: var(--ink);
  background: var(--paper);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--teal-500);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(10,155,216,0.16);
}
.field textarea { resize: vertical; min-height: 130px; }
.form__note { font-size: 0.82rem; color: var(--slate-500); margin-top: 14px; }
.form-msg {
  display: none;
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  background: rgba(10,155,216,0.12);
  color: var(--teal-600);
  font-weight: 600;
  font-size: 0.92rem;
}
.form-msg.show { display: block; }

/* ---------- Page hero (interior) ---------- */
.page-hero {
  background: linear-gradient(160deg, var(--navy-900), var(--navy-700));
  color: #fff;
  padding: 84px 0 72px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content:""; position:absolute; inset:0;
  background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 26px 26px;
}
.page-hero .container { position: relative; z-index:1; }
.page-hero h1 { color:#fff; }
.page-hero p { color:#b9cbe4; font-size:1.15rem; max-width:60ch; margin-top:16px; }
.breadcrumb { font-size:0.85rem; color:#9fb4d1; margin-bottom:18px; }
.breadcrumb a:hover { color:#fff; }

/* ---------- Footer ---------- */
.footer { background: var(--navy-900); color: #b9cbe4; padding: 64px 0 28px; }
.footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; }
.footer .brand { color: #fff; }
.footer .brand small { color: #7e93b3; }
.footer__about { margin-top: 16px; font-size: 0.95rem; max-width: 36ch; }
.footer h4 { color: #fff; font-size: 0.95rem; margin-bottom: 16px; }
.footer__links a { display: block; padding: 6px 0; font-size: 0.95rem; transition: color 0.2s; }
.footer__links a:hover { color: var(--teal-400); }
.footer__bottom {
  margin-top: 44px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-size: 0.85rem; color: #7e93b3; flex-wrap: wrap;
}
.footer__social { display: flex; gap: 12px; }
.footer__social a {
  width: 38px; height: 38px; border-radius: 10px;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.06);
  transition: 0.2s;
}
.footer__social a:hover { background: var(--teal-600); color: #fff; transform: translateY(-3px); }
.footer__social svg { width: 18px; height: 18px; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .hero__grid { grid-template-columns: 1fr; padding: 72px 0; }
  .hero__visual { max-width: 460px; }
  .feature, .feature--reverse { grid-template-columns: 1fr; gap: 32px; }
  .feature--reverse .feature__media { order: 0; }
  .feature__media { min-height: 240px; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .venues { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .nav__links {
    position: absolute;
    top: 74px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    background: var(--navy-800);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 12px 24px 20px;
    box-shadow: var(--shadow);
    display: none;
  }
  .nav__links.open { display: flex; }
  .nav__links a:not(.btn) { padding: 12px 14px; border-radius: 10px; }
  .nav__cta { margin: 6px 0 0; }
  .nav__toggle { display: flex; }
  .section { padding: 64px 0; }
  .cta { padding: 44px 24px; }
  .form .row { grid-template-columns: 1fr; }
  .case { padding: 28px 22px; }
  .case__cols { grid-template-columns: 1fr; gap: 24px; }
  .outcome-grid { grid-template-columns: 1fr; }
  .case__icon { display: none; }
  .case__banner { height: 150px; margin-bottom: 22px; }
}
@media (max-width: 520px) {
  .grid--4, .grid--3, .grid--2 { grid-template-columns: 1fr; }
  .venues { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .hero__stats { gap: 22px; }
}
