/* ===========================================================================
   Periyantra stylesheet
   Palette sampled from the logo: navy #152D4D, teal #229E97, gold #CFA52E
   =========================================================================== */

/* ---------------------------------------------------------------- tokens -- */
:root {
  /* brand */
  --navy:        #152D4D;
  --navy-deep:   #0D1E36;
  --navy-soft:   #1E3F68;
  --teal:        #229E97;
  --teal-deep:   #17766F;
  --teal-tint:   #E8F5F4;
  --gold:        #CFA52E;
  --gold-deep:   #A8811C;
  --gold-tint:   #FBF3DE;

  /* neutrals */
  --ink:         #10233C;
  --body:        #4C5D70;
  --muted:       #6E7F92;
  --bg:          #FFFFFF;
  --bg-alt:      #F6F9FB;
  --border:      #E1E8EF;
  --border-soft: #EDF2F6;

  /* type */
  --font-head: "Plus Jakarta Sans", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;

  /* spacing + shape */
  --container: 1160px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --section-y: clamp(4.5rem, 9vw, 7.5rem);
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;

  /* elevation: soft and navy-tinted, never grey */
  --shadow-sm: 0 1px 2px rgba(16, 35, 60, .06), 0 2px 8px rgba(16, 35, 60, .04);
  --shadow-md: 0 4px 12px rgba(16, 35, 60, .07), 0 12px 32px rgba(16, 35, 60, .06);
  --shadow-lg: 0 8px 24px rgba(16, 35, 60, .09), 0 24px 60px rgba(16, 35, 60, .10);

  --header-h: 76px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--body);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.18;
  letter-spacing: -.02em;
  margin: 0 0 .6em;
  font-weight: 800;
}

h1 { font-size: clamp(2.2rem, 5.2vw, 3.6rem); letter-spacing: -.03em; }
h2 { font-size: clamp(1.75rem, 3.6vw, 2.6rem); }
h3 { font-size: 1.2rem; font-weight: 700; }

p { margin: 0 0 1.1rem; }
p:last-child { margin-bottom: 0; }

a { color: var(--teal-deep); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--teal); }

img { max-width: 100%; height: auto; display: block; }
ul, ol { margin: 0; padding: 0; list-style: none; }

:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--navy);
  color: #fff;
  padding: .8rem 1.25rem;
  border-radius: 0 0 var(--r-sm) 0;
  font-weight: 600;
}
.skip-link:focus { left: 0; color: #fff; }

/* ---------------------------------------------------------------- layout -- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section-y); }
.section--alt { background: var(--bg-alt); border-block: 1px solid var(--border-soft); }

.section-head { max-width: 44rem; margin-bottom: clamp(2.5rem, 5vw, 3.75rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p { font-size: 1.125rem; color: var(--muted); margin-bottom: 0; }

/* Small uppercase label above a section heading */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--teal-deep);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.section-head--center .eyebrow { justify-content: center; }

/* --------------------------------------------------------------- buttons -- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  font-family: var(--font-head);
  font-size: .975rem;
  font-weight: 700;
  line-height: 1;
  padding: .95rem 1.6rem;
  border: 1.5px solid transparent;
  border-radius: var(--r-sm);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease,
              border-color .18s ease, color .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn svg { flex-shrink: 0; }

.btn--primary {
  background: var(--gold);
  color: var(--navy-deep);
  box-shadow: 0 2px 8px rgba(176, 132, 28, .28);
}
.btn--primary:hover {
  background: #DDB33F;
  color: var(--navy-deep);
  box-shadow: 0 6px 20px rgba(176, 132, 28, .34);
}

.btn--outline {
  border-color: var(--border);
  background: #fff;
  color: var(--ink);
}
.btn--outline:hover { border-color: var(--teal); color: var(--teal-deep); box-shadow: var(--shadow-sm); }

.btn--ghost-light {
  border-color: rgba(255, 255, 255, .3);
  color: #fff;
  background: transparent;
}
.btn--ghost-light:hover { border-color: #fff; background: rgba(255, 255, 255, .08); color: #fff; }

.btn--block { width: 100%; }
.btn--lg { padding: 1.1rem 1.9rem; font-size: 1.03rem; }

/* ---------------------------------------------------------------- header -- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.header.is-scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 1px 12px rgba(16, 35, 60, .06);
}

.header__inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand img { height: 38px; width: auto; }
@media (max-width: 420px) { .brand img { height: 32px; } }

.nav { display: flex; align-items: center; gap: 2rem; }

.nav__links { display: flex; align-items: center; gap: 2rem; }
.nav__links a {
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  position: relative;
  padding-block: .3rem;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
  transition: width .22s ease;
}
.nav__links a:hover { color: var(--teal-deep); }
.nav__links a:hover::after { width: 100%; }

/* hamburger */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  background: #fff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav-toggle__bars { display: block; width: 20px; height: 14px; position: relative; }
.nav-toggle__bars span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease, top .25s ease;
}
.nav-toggle__bars span:nth-child(1) { top: 0; }
.nav-toggle__bars span:nth-child(2) { top: 6px; }
.nav-toggle__bars span:nth-child(3) { top: 12px; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(1) { top: 6px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(3) { top: 6px; transform: rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    padding: .5rem var(--gutter) 1.5rem;
    transform: translateY(-140%);
    transition: transform .3s cubic-bezier(.4, 0, .2, 1);
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
  }
  .nav.is-open { transform: translateY(0); }
  .nav__links { flex-direction: column; align-items: stretch; gap: 0; }
  /* block, so the tap target and the separator span the full drawer width */
  .nav__links a { display: block; padding: .95rem .25rem; border-bottom: 1px solid var(--border-soft); font-size: 1.05rem; }
  .nav__links li:last-child a { border-bottom: 0; }
  .nav__links a::after { display: none; }
  .nav .btn { margin-top: 1.25rem; }
}

/* ------------------------------------------------------------------ hero -- */
.hero {
  position: relative;
  padding-block: clamp(3.5rem, 7vw, 6.5rem) clamp(4rem, 8vw, 7rem);
  background:
    radial-gradient(ellipse 70% 60% at 88% 6%, rgba(34, 158, 151, .10), transparent 62%),
    radial-gradient(ellipse 60% 50% at 4% 92%, rgba(207, 165, 46, .09), transparent 60%),
    var(--bg-alt);
  overflow: hidden;
}

/* faint circuit grid, echoing the traces in the logo */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(21, 45, 77, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 45, 77, .045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 78% 68% at 50% 34%, #000 35%, transparent 76%);
  -webkit-mask-image: radial-gradient(ellipse 78% 68% at 50% 34%, #000 35%, transparent 76%);
  pointer-events: none;
}

.hero .container { position: relative; z-index: 1; }

.hero__grid {
  display: grid;
  gap: clamp(2.75rem, 5vw, 4.5rem);
  align-items: center;
}
@media (min-width: 980px) {
  .hero__grid { grid-template-columns: 1.06fr .94fr; }
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: .45rem 1rem .45rem .6rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.6rem;
}
.hero__badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 4px rgba(34, 158, 151, .18);
}

.hero h1 { margin-bottom: .7rem; }
/* Gold underline sweep, mirroring the logo's rising arrow. Painted as a
   background so it sits behind the glyphs instead of across them. */
.hero h1 .accent {
  color: var(--teal-deep);
  background-image: linear-gradient(90deg, var(--gold), rgba(207, 165, 46, .35));
  background-repeat: no-repeat;
  background-size: 100% .13em;
  background-position: 0 calc(100% - .12em);
}

.hero__lead {
  font-size: clamp(1.06rem, 1.9vw, 1.22rem);
  color: var(--body);
  max-width: 34rem;
  margin-bottom: 2rem;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-bottom: 2.25rem; }

.hero__assurances {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 1.6rem;
  font-size: .92rem;
  color: var(--muted);
}
.hero__assurances li { display: flex; align-items: center; gap: .5rem; }
.hero__assurances svg { color: var(--teal); flex-shrink: 0; }

/* --- the workflow panel: shows, rather than tells, what automation does --- */
.flow {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: 1.5rem;
  position: relative;
}

.flow__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-soft);
}
.flow__title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .95rem;
  color: var(--ink);
}
.flow__status {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .78rem;
  font-weight: 600;
  color: var(--teal-deep);
  background: var(--teal-tint);
  border-radius: 999px;
  padding: .3rem .7rem;
  white-space: nowrap;
}
.flow__status .pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34, 158, 151, .5); }
  50%      { box-shadow: 0 0 0 6px rgba(34, 158, 151, 0); }
}

.flow__steps { display: grid; gap: .3rem; }

.flow__step {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: .9rem;
  padding: .7rem .25rem;
  position: relative;
}
/* the connector trace between nodes */
.flow__step:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 16px;
  top: calc(50% + 17px);
  width: 2px;
  height: calc(100% - 34px);
  background: linear-gradient(180deg, var(--teal), rgba(34, 158, 151, .35));
  border-radius: 2px;
}
.flow__node {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--teal-tint);
  color: var(--teal-deep);
  border: 1.5px solid rgba(34, 158, 151, .3);
  flex-shrink: 0;
}
.flow__step--manual .flow__node {
  background: var(--gold-tint);
  color: var(--gold-deep);
  border-color: rgba(207, 165, 46, .35);
}
.flow__label { font-size: .95rem; font-weight: 600; color: var(--ink); line-height: 1.35; }
.flow__label small { display: block; font-weight: 400; font-size: .82rem; color: var(--muted); }
.flow__time {
  font-size: .78rem;
  font-weight: 600;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.flow__foot {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-soft);
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .87rem;
  line-height: 1.55;
  color: var(--body);
}
.flow__foot strong { color: var(--ink); }
.flow__foot svg { color: var(--gold-deep); flex-shrink: 0; margin-top: .2rem; }

/* ------------------------------------------------------------ value strip -- */
.strip {
  background: var(--navy);
  color: rgba(255, 255, 255, .8);
  padding-block: clamp(2.5rem, 5vw, 3.5rem);
  position: relative;
  overflow: hidden;
}
.strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(34, 158, 151, .22), transparent 45%),
    radial-gradient(circle at 88% 85%, rgba(207, 165, 46, .16), transparent 45%);
  pointer-events: none;
}
.strip .container { position: relative; }
.strip__grid {
  display: grid;
  gap: clamp(1.75rem, 4vw, 3rem);
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .strip__grid { grid-template-columns: repeat(3, 1fr); } }

.strip__item { display: flex; gap: 1rem; align-items: flex-start; }
.strip__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-sm);
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  color: var(--gold);
  flex-shrink: 0;
}
.strip__item h3 { color: #fff; font-size: 1.05rem; margin-bottom: .3rem; }
.strip__item p { font-size: .93rem; line-height: 1.6; margin: 0; color: rgba(255, 255, 255, .72); }

/* -------------------------------------------------------------- services -- */
.cards {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px)  { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .cards--4 { grid-template-columns: repeat(4, 1fr); } }

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 1.9rem 1.6rem;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
/* teal rule that draws itself across the top on hover */
.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  transition: width .35s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card:hover::before { width: 100%; }

.card__icon {
  width: 50px;
  height: 50px;
  border-radius: var(--r-sm);
  display: grid;
  place-items: center;
  background: var(--teal-tint);
  color: var(--teal-deep);
  margin-bottom: 1.25rem;
}
.card h3 { margin-bottom: .55rem; }
.card > p { font-size: .95rem; margin-bottom: 1.1rem; }

.card__list { margin-top: auto; display: grid; gap: .5rem; }
.card__list li {
  display: flex;
  gap: .55rem;
  align-items: flex-start;
  font-size: .89rem;
  line-height: 1.5;
  color: var(--muted);
}
.card__list svg { color: var(--teal); flex-shrink: 0; margin-top: .3rem; }

/* ------------------------------------------------------------------ steps -- */
.steps {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 760px)  { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .steps { grid-template-columns: repeat(5, 1fr); gap: 1rem; } }

.step {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 1.6rem 1.35rem;
  /* Column layout so the "you get" boxes line up along the bottom of the row,
     however long the description above them runs. */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.step__num {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: .95rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}
/* dotted connector trace running between steps on wide screens */
@media (min-width: 1100px) {
  .step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: calc(1.6rem + 18px);
    left: calc(1.35rem + 46px);
    right: -1rem;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--teal) 0 5px, transparent 5px 11px);
    opacity: .45;
  }
}
.step h3 { font-size: 1.05rem; margin-bottom: .45rem; }
.step p { font-size: .9rem; line-height: 1.6; color: var(--muted); margin-bottom: .85rem; }
.step__out {
  margin-top: auto;
  align-self: stretch;
  font-size: .82rem;
  line-height: 1.5;
  color: var(--teal-deep);
  background: var(--teal-tint);
  border-radius: var(--r-sm);
  padding: .6rem .75rem;
  font-weight: 500;
}
.step__out strong {
  display: block;
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .09em;
  opacity: .8;
  margin-bottom: .15rem;
}

/* ------------------------------------------------------------------ about -- */
.about__grid {
  display: grid;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: start;
}
@media (min-width: 940px) { .about__grid { grid-template-columns: 1.15fr .85fr; } }

.about__body p { font-size: 1.06rem; }
.about__body strong { color: var(--ink); font-weight: 600; }

.principles {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 1.35rem;
}
.principle { display: flex; gap: .95rem; align-items: flex-start; }
.principle svg { color: var(--teal); flex-shrink: 0; margin-top: .15rem; }
.principle h3 { font-size: .98rem; margin-bottom: .2rem; }
.principle p { font-size: .89rem; line-height: 1.6; color: var(--muted); margin: 0; }

/* -------------------------------------------------------------------- faq -- */
.faq { max-width: 50rem; margin-inline: auto; display: grid; gap: .85rem; }

.faq details {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.faq details[open] { border-color: rgba(34, 158, 151, .4); box-shadow: var(--shadow-sm); }

.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 1.25rem 1.5rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--teal-deep); }

.faq summary .chev {
  flex-shrink: 0;
  color: var(--teal);
  transition: transform .25s ease;
}
.faq details[open] summary .chev { transform: rotate(180deg); }

.faq__answer { padding: 0 1.5rem 1.35rem; }
.faq__answer p { font-size: .97rem; margin-bottom: .8rem; }

/* ---------------------------------------------------------------- contact -- */
.contact { background: var(--navy); color: rgba(255, 255, 255, .78); position: relative; overflow: hidden; }
.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 55% at 8% 8%, rgba(34, 158, 151, .2), transparent 55%),
    radial-gradient(ellipse 55% 50% at 95% 95%, rgba(207, 165, 46, .14), transparent 55%);
  pointer-events: none;
}
.contact .container { position: relative; }
.contact h2 { color: #fff; }
.contact .eyebrow { color: var(--gold); }
.contact .section-head p { color: rgba(255, 255, 255, .72); }

.contact__grid {
  display: grid;
  gap: clamp(2.25rem, 4vw, 3.5rem);
  align-items: start;
}
@media (min-width: 900px) { .contact__grid { grid-template-columns: .85fr 1.15fr; } }

.contact__methods { display: grid; gap: 1rem; }

.contact__method {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--r-md);
  padding: 1.25rem;
  text-decoration: none;
  color: inherit;
  transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
}
a.contact__method:hover {
  background: rgba(255, 255, 255, .09);
  border-color: rgba(34, 158, 151, .5);
  transform: translateY(-2px);
  color: inherit;
}
.contact__method-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--r-sm);
  display: grid;
  place-items: center;
  background: rgba(34, 158, 151, .22);
  color: #7FDDD6;
  flex-shrink: 0;
}
.contact__method > span:last-child { display: block; }
.contact__method h3 { color: rgba(255, 255, 255, .7); font-size: .8rem; margin-bottom: .3rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 700; }
.contact__method .value {
  display: block;
  font-size: 1.02rem;
  font-weight: 700;
  color: #fff;
  word-break: break-word;
  font-family: var(--font-head);
  line-height: 1.35;
}
.contact__method .note { display: block; font-size: .84rem; color: rgba(255, 255, 255, .6); margin-top: .3rem; line-height: 1.5; }

/* form */
.form {
  background: #fff;
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  box-shadow: var(--shadow-lg);
}
.form__grid { display: grid; gap: 1.1rem; }
@media (min-width: 560px) { .form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; } }

.field { display: grid; gap: .4rem; }
.field label {
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 700;
  color: var(--ink);
}
.field label .opt { font-weight: 400; color: var(--muted); }

.field input,
.field textarea,
.field select {
  width: 100%;
  font-family: var(--font-body);
  font-size: .98rem;
  color: var(--ink);
  background: var(--bg-alt);
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  padding: .8rem .9rem;
  transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
}
.field textarea { resize: vertical; min-height: 128px; line-height: 1.6; }
.field input::placeholder, .field textarea::placeholder { color: #9AA8B6; }
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  background: #fff;
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(34, 158, 151, .14);
}

.form__note {
  font-size: .85rem;
  color: var(--muted);
  margin: 0;
  display: flex;
  gap: .5rem;
  align-items: flex-start;
  line-height: 1.55;
}
.form__note svg { color: var(--teal); flex-shrink: 0; margin-top: .18rem; }

/* ----------------------------------------------------------------- footer -- */
.footer { background: var(--navy-deep); color: rgba(255, 255, 255, .62); padding-block: 3.5rem 2rem; }
.footer__grid {
  display: grid;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}
@media (min-width: 780px) { .footer__grid { grid-template-columns: 1.6fr 1fr 1fr; gap: 3rem; } }

.footer__brand img { height: 42px; width: auto; margin-bottom: 1.25rem; }
.footer__brand p { font-size: .92rem; max-width: 26rem; line-height: 1.65; margin: 0; }

.footer h4 {
  color: #fff;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.footer__links { display: grid; gap: .7rem; }
.footer a {
  color: rgba(255, 255, 255, .68);
  text-decoration: none;
  font-size: .93rem;
  transition: color .18s ease;
  word-break: break-word;
}
.footer a:hover { color: var(--gold); }

.footer__bottom {
  padding-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 1.5rem;
  align-items: center;
  justify-content: space-between;
  font-size: .85rem;
}
.footer__bottom p { margin: 0; }

/* -------------------------------------------------------------- 404 page -- */
.error-page {
  min-height: 78vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding-block: 4rem;
}
.error-page img { height: 84px; width: auto; margin: 0 auto 2rem; }
.error-page .code {
  font-family: var(--font-head);
  font-size: clamp(3.5rem, 12vw, 6rem);
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
  margin-bottom: .5rem;
  letter-spacing: -.04em;
}
.error-page p { max-width: 32rem; margin-inline: auto; margin-bottom: 2rem; }

/* ------------------------------------------------------------- utilities -- */
[hidden] { display: none !important; }
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* Scroll reveal. Gated on the .js class that index.html sets in <head>, so if
   JavaScript never runs the content is simply visible rather than stuck at
   opacity 0. Skipped entirely for reduced motion. */
.js .reveal { opacity: 0; transform: translateY(22px); }
.js .reveal.is-visible {
  opacity: 1;
  transform: none;
  transition: opacity .6s cubic-bezier(.22, .61, .36, 1), transform .6s cubic-bezier(.22, .61, .36, 1);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .js .reveal { opacity: 1; transform: none; }
  .btn:hover, .card:hover, a.contact__method:hover { transform: none; }
}
