/* =========================================================================
   Phina Consultant Limited — static site styles
   ========================================================================= */

/* ----- Tokens ----------------------------------------------------------- */
:root {
  --brand-50: #e9faf7;
  --brand-100: #cdf1eb;
  --brand-200: #a1e3d9;
  --brand-300: #67cec0;
  --brand-500: #12a89c;
  --brand-600: #0e857d;
  --brand-700: #0f6b64;
  --brand-800: #12544f;

  --accent: #ef8f3c;
  --accent-dark: #c96a1e;
  --accent-soft: #fbe8d5;

  --ink-900: #0d1b2a;
  --ink-800: #1c232d;
  --ink-700: #2f3743;
  --ink-600: #4b5563;
  --ink-500: #667180;
  --ink-300: #aab3bf;
  --ink-200: #dde1e7;
  --ink-100: #ecedf1;

  --cream: #f8f7f3;
  --white: #ffffff;

  --maxw: 1120px;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --shadow: 0 1px 2px rgba(13, 27, 42, 0.04), 0 14px 34px -14px rgba(13, 27, 42, 0.16);
  --shadow-lg: 0 30px 60px -24px rgba(13, 27, 42, 0.32);

  --font-body: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --font-display: "Sora", var(--font-body);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-900);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
}

/* Let grid/flex children shrink instead of forcing the page wider than the
   viewport (the default min-width:auto is what causes mobile side-scroll). */
.grid > *,
.split > *,
.hero-inner > *,
.stats > *,
.steps > * {
  min-width: 0;
}

iframe {
  max-width: 100%;
}

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

a {
  color: var(--brand-700);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--ink-900);
}

p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

:focus-visible {
  outline: 2px solid var(--brand-500);
  outline-offset: 2px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink-900);
  color: #fff;
  padding: 10px 16px;
  border-radius: 0 0 8px 0;
  z-index: 200;
}
.skip-link:focus {
  left: 0;
}

/* ----- Layout helpers ---------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 72px 0;
  background: var(--cream);
}
.section--white {
  background: var(--white);
}
.section--ink {
  background: var(--ink-900);
  color: var(--ink-100);
}
.section--ink h1,
.section--ink h2,
.section--ink h3 {
  color: #fff;
}
.section--tight {
  padding: 48px 0;
}

@media (min-width: 900px) {
  .section {
    padding: 104px 0;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-600);
  margin: 0 0 18px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--brand-300);
}
.eyebrow--invert {
  color: var(--brand-200);
}
.eyebrow--invert::before {
  background: var(--brand-300);
}

.section-head {
  max-width: 640px;
  margin-bottom: 44px;
}
.section-head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-head h2 {
  font-size: clamp(1.75rem, 1.2rem + 2.2vw, 2.5rem);
  font-weight: 700;
}
.section-head p {
  margin-top: 16px;
  font-size: 1.05rem;
  color: var(--ink-500);
}
.section--ink .section-head p {
  color: var(--ink-300);
}

.lead {
  font-size: 1.15rem;
  color: var(--ink-500);
  max-width: 46ch;
}

/* ----- Grids ----------------------------------------------------------- */
.grid {
  display: grid;
  gap: 24px;
}
@media (min-width: 640px) {
  .grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 900px) {
  .grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid--4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ----- Buttons ------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.btn:hover {
  text-decoration: none;
}
.btn--primary {
  background: var(--brand-700);
  color: #fff;
}
.btn--primary:hover {
  background: var(--brand-600);
}
.btn--secondary {
  background: #fff;
  border-color: var(--ink-200);
  color: var(--ink-900);
}
.btn--secondary:hover {
  border-color: var(--brand-300);
  color: var(--brand-700);
}
.btn--light {
  background: #fff;
  color: var(--brand-800);
}
.btn--light:hover {
  background: var(--brand-50);
}
.btn--ghost-invert {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}
.btn--ghost-invert:hover {
  background: rgba(255, 255, 255, 0.12);
}
.btn .icon {
  width: 16px;
  height: 16px;
}
.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

/* ----- Icons --------------------------------------------------------------- */
.icon {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: none;
}
.icon--fill {
  fill: currentColor;
  stroke: none;
}

/* ----- Header / nav ----------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--cream);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  border-bottom-color: var(--ink-100);
  background: rgba(248, 247, 243, 0.92);
  backdrop-filter: blur(8px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.brand:hover {
  text-decoration: none;
}
.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--brand-700);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  display: grid;
  place-items: center;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.brand-text strong {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--ink-900);
}
.brand-text em {
  font-style: normal;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-700);
}
.brand--light .brand-text strong {
  color: #fff;
}
.brand--light .brand-text em {
  color: var(--brand-200);
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav a {
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-600);
}
.nav a:hover {
  color: var(--ink-900);
  text-decoration: none;
}
.nav .nav-cta {
  margin-left: 8px;
  color: #fff;
}
.nav .nav-cta:hover {
  color: #fff;
}

/* active link via body[data-page] */
body[data-page="about"] .nav a[href="about.html"],
body[data-page="services"] .nav a[href="services.html"],
body[data-page="recruitment"] .nav a[href="recruitment.html"],
body[data-page="team-building"] .nav a[href="team-building.html"],
body[data-page="jobs"] .nav a[href="jobs.html"],
body[data-page="blog"] .nav a[href="blog.html"],
body[data-page="contact"] .nav a[href="contact.html"] {
  color: var(--brand-700);
  background: var(--brand-50);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--ink-200);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  padding: 0;
  place-items: center;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink-800);
  margin: 3px auto;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

@media (max-width: 899px) {
  .nav-toggle {
    display: grid;
  }
  .nav {
    position: fixed;
    inset: 72px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    background: var(--cream);
    border-bottom: 1px solid var(--ink-100);
    padding: 14px 20px 22px;
    box-shadow: var(--shadow);
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  }
  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .nav a {
    padding: 12px 14px;
    font-size: 1rem;
  }
  .nav .nav-cta {
    margin: 10px 0 0;
  }
}

/* ----- Hero ----------------------------------------------------------- */
.hero {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  right: -160px;
  top: -160px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: rgba(18, 168, 156, 0.14);
  filter: blur(60px);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid;
  gap: 48px;
  padding: 64px 0;
}
@media (min-width: 960px) {
  .hero-inner {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    padding: 96px 0;
  }
}
.hero h1 {
  font-size: clamp(2.1rem, 1.3rem + 3.6vw, 3.4rem);
  font-weight: 700;
}
.hero h1 .hl {
  color: var(--brand-700);
}
.hero .lead {
  margin-top: 20px;
  max-width: 34rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px 24px;
  margin-top: 44px;
  max-width: 32rem;
}
@media (min-width: 560px) {
  .stats {
    grid-template-columns: repeat(4, 1fr);
  }
}
.stat b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
}
.stat span {
  font-size: 0.78rem;
  color: var(--ink-500);
  line-height: 1.35;
}

.hero-panel {
  position: relative;
}
.panel {
  background: var(--brand-700);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
}
.panel .panel-kicker {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-200);
}
.panel h2 {
  color: #fff;
  font-size: 1.4rem;
  margin-top: 12px;
}
.panel ul {
  margin-top: 22px;
  display: grid;
  gap: 12px;
}
.panel li {
  display: flex;
  gap: 12px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 12px;
  font-size: 0.9rem;
  color: var(--brand-50);
}
.panel li .icon {
  width: 20px;
  height: 20px;
  color: var(--brand-200);
}
.panel li strong {
  color: #fff;
}
.panel-badge {
  position: absolute;
  left: -22px;
  bottom: -24px;
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 12px;
  align-items: center;
}
.panel-badge .icon {
  color: var(--accent-dark);
}
.panel-badge b {
  font-size: 0.85rem;
}
.panel-badge span {
  display: block;
  font-size: 0.75rem;
  color: var(--ink-500);
}
@media (max-width: 560px) {
  .panel-badge {
    position: static;
    margin-top: 16px;
  }
}

/* ----- Page hero (simple) ------------------------------------------------ */
.page-hero {
  background: var(--cream);
  padding: 64px 0;
}
.page-hero.page-hero--ink {
  background: var(--ink-900);
  color: #fff;
}
.page-hero h1 {
  font-size: clamp(2rem, 1.3rem + 3vw, 3rem);
  font-weight: 700;
  max-width: 20ch;
}
.page-hero .lead {
  margin-top: 18px;
  max-width: 52ch;
}
@media (min-width: 900px) {
  .page-hero {
    padding: 84px 0;
  }
}

/* ----- Cards --------------------------------------------------------------- */
.card {
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.section--white .card {
  background: var(--cream);
}
.card h3 {
  font-size: 1.15rem;
  margin-top: 18px;
}
.card .card-tag {
  margin-top: 8px;
  font-style: italic;
  color: var(--brand-700);
  font-size: 0.92rem;
}
.card p {
  margin-top: 12px;
  color: var(--ink-600);
  font-size: 0.95rem;
  flex: 1;
}
.card .more {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.9rem;
}

.iconbox {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--brand-50);
  color: var(--brand-700);
  display: grid;
  place-items: center;
  border: 1px solid var(--brand-100);
}
.iconbox .icon {
  width: 24px;
  height: 24px;
}
.iconbox--solid {
  background: var(--brand-700);
  color: #fff;
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
}

/* ----- Ticks / feature lists ------------------------------------------- */
.ticks {
  display: grid;
  gap: 10px;
}
.ticks li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.95rem;
  color: var(--ink-700);
}
.ticks li .icon {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  color: var(--brand-600);
}
.ticks--accent li .icon {
  color: var(--accent-dark);
}

/* ----- Chips --------------------------------------------------------------- */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid var(--ink-200);
  background: #fff;
  font-size: 0.9rem;
  color: var(--ink-700);
}
.chip .icon {
  width: 14px;
  height: 14px;
  color: var(--accent);
}
.section--white .chip {
  background: var(--cream);
}

/* ----- Split sections ------------------------------------------------- */
.split {
  display: grid;
  gap: 44px;
}
@media (min-width: 900px) {
  .split {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
  .split--sticky > :first-child {
    position: sticky;
    top: 104px;
  }
}
.prose p + p {
  margin-top: 16px;
}
.prose p {
  color: var(--ink-600);
}

/* ----- Steps --------------------------------------------------------------- */
.steps {
  counter-reset: step;
  display: grid;
  gap: 24px;
}
@media (min-width: 640px) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 980px) {
  .steps {
    grid-template-columns: repeat(4, 1fr);
  }
}
.step {
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}
.section--white .step {
  background: var(--cream);
}
.step b {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--brand-300);
}
.step h3 {
  font-size: 1rem;
  margin-top: 6px;
}
.step p {
  margin-top: 8px;
  font-size: 0.9rem;
  color: var(--ink-600);
}

/* ----- CTA band ------------------------------------------------------- */
.cta-band {
  background: var(--brand-700);
  color: #fff;
  padding: 60px 0;
}
.cta-band .inner {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
@media (min-width: 900px) {
  .cta-band .inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.cta-band h2 {
  color: #fff;
  font-size: clamp(1.5rem, 1.1rem + 1.6vw, 2rem);
}
.cta-band p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 46ch;
}

/* ----- Testimonials ------------------------------------------------------- */
.quote-card {
  background: var(--cream);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.quote-card .icon {
  width: 30px;
  height: 30px;
  color: var(--brand-300);
}
.quote-card blockquote {
  margin: 12px 0 0;
  font-size: 0.95rem;
  color: var(--ink-700);
  flex: 1;
}
.quote-card .who {
  margin-top: 18px;
  border-top: 1px solid var(--ink-100);
  padding-top: 14px;
}
.quote-card .who b {
  font-size: 0.9rem;
}
.quote-card .who span {
  display: block;
  font-size: 0.8rem;
  color: var(--ink-500);
}

/* ----- Jobs ----------------------------------------------------------- */
.job-item {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}
.job-item:hover {
  border-color: var(--brand-300);
  text-decoration: none;
}
@media (min-width: 720px) {
  .job-item {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--ink-500);
}
.tag {
  background: var(--brand-50);
  color: var(--brand-700);
  border-radius: 999px;
  padding: 4px 10px;
}
.tag--muted {
  background: var(--ink-100);
  color: var(--ink-600);
}
.job-item h3 {
  font-size: 1.1rem;
  margin-top: 10px;
  color: var(--ink-900);
}
.job-item p {
  margin-top: 6px;
  font-size: 0.92rem;
  color: var(--ink-600);
  max-width: 60ch;
}

.empty {
  border: 1px dashed var(--ink-200);
  border-radius: var(--radius);
  background: var(--cream);
  padding: 48px 24px;
  text-align: center;
}
.empty .iconbox {
  margin: 0 auto 16px;
}

/* ----- Blog ----------------------------------------------------------- */
.post-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  height: 100%;
}
.post-card:hover {
  border-color: var(--brand-300);
  text-decoration: none;
}
.post-thumb {
  border-radius: 12px;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, var(--brand-100), var(--brand-300));
  margin-bottom: 16px;
}
.post-thumb--lg {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--brand-600), var(--brand-800));
}
.post-card h3 {
  font-size: 1.1rem;
  margin-top: 12px;
  color: var(--ink-900);
  flex: 1;
}
.post-card p {
  margin-top: 8px;
  font-size: 0.92rem;
  color: var(--ink-600);
}
.post-card .date {
  margin-top: 14px;
  font-size: 0.78rem;
  color: var(--ink-300);
}

.featured {
  display: grid;
  gap: 24px;
  background: var(--cream);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow);
  margin-bottom: 32px;
}
.featured:hover {
  border-color: var(--brand-300);
  text-decoration: none;
}
@media (min-width: 900px) {
  .featured {
    grid-template-columns: 1fr 1.4fr;
    align-items: center;
    padding: 32px;
  }
}

.article {
  max-width: 680px;
  margin: 0 auto;
  padding: 48px 0;
}
.article .post-thumb--lg {
  aspect-ratio: 16 / 9;
}
.article-body {
  margin-top: 30px;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--ink-700);
}
.article-body p + p {
  margin-top: 20px;
}
.article-body .intro {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--ink-900);
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.9rem;
}
.back-link .icon {
  width: 16px;
  height: 16px;
  transform: rotate(180deg);
}

/* ----- Contact ------------------------------------------------------- */
.contact-cards {
  display: grid;
  gap: 24px;
}
@media (min-width: 720px) {
  .contact-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}
.contact-card {
  background: var(--cream);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}
.contact-card h3 {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 16px;
}
.contact-card p {
  margin-top: 6px;
  font-size: 0.92rem;
  color: var(--ink-600);
}

.form {
  display: grid;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}
.form .row {
  display: grid;
  gap: 16px;
}
@media (min-width: 560px) {
  .form .row {
    grid-template-columns: 1fr 1fr;
  }
}
.field {
  display: grid;
  gap: 6px;
  font-size: 0.9rem;
}
.field > span {
  font-weight: 500;
  color: var(--ink-800);
}
.field .req {
  color: var(--brand-600);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  font: inherit;
  font-size: 0.95rem;
  color: var(--ink-900);
  background: #fff;
  border: 1px solid var(--ink-200);
  border-radius: 12px;
  padding: 12px 14px;
}
.field textarea {
  resize: vertical;
  min-height: 130px;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--brand-500);
  box-shadow: 0 0 0 3px var(--brand-100);
}
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form .fineprint {
  font-size: 0.78rem;
  color: var(--ink-300);
}

.map-embed {
  border: 1px solid var(--ink-100);
  border-radius: var(--radius);
  overflow: hidden;
}
.map-embed iframe {
  width: 100%;
  height: 260px;
  border: 0;
  display: block;
}

/* ----- Footer ------------------------------------------------------- */
.site-footer {
  background: var(--ink-900);
  color: var(--ink-300);
  padding: 56px 0 28px;
}
.footer-grid {
  display: grid;
  gap: 36px;
}
@media (min-width: 900px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }
}
.footer-about p {
  margin-top: 16px;
  font-size: 0.88rem;
  color: var(--ink-500);
  max-width: 42ch;
}
.socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.socials a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: var(--ink-300);
}
.socials a:hover {
  color: #fff;
  border-color: var(--brand-300);
  text-decoration: none;
}
.socials .icon {
  width: 16px;
  height: 16px;
}
.footer-col h3 {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 14px;
}
.footer-col a {
  display: block;
  padding: 5px 0;
  font-size: 0.9rem;
  color: var(--ink-400, #8a94a3);
  color: #9aa4b2;
}
.footer-col a:hover {
  color: #fff;
  text-decoration: none;
}
.footer-contact {
  display: grid;
  gap: 12px;
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.88rem;
}
@media (min-width: 720px) {
  .footer-contact {
    grid-template-columns: repeat(3, 1fr);
  }
}
.footer-contact p {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.footer-contact .icon {
  width: 16px;
  height: 16px;
  color: var(--brand-300);
  margin-top: 2px;
}
.footer-contact a {
  color: inherit;
}
.footer-contact a:hover {
  color: #fff;
}
.footer-legal {
  margin-top: 26px;
  font-size: 0.75rem;
  color: var(--ink-500);
}

/* ----- Utilities --------------------------------------------------------- */
.mt-0 {
  margin-top: 0;
}
.center {
  text-align: center;
}
.hide {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
