/* ==========================================================================
   Sudha Ramaswamy — site styles
   Design system (locked):
   Palette  : Marigold-led, warm off-white canvas, parrot green as single cool accent
   Type     : Fraunces (headlines, accent line upright in marigold) + Bricolage
              Grotesque (nav, card titles) + Inter (body)
   Shapes   : rounded, soft-assertive; glass floating nav; drifting blobs
   Motion   : gentle scroll-and-land, slow blob drift
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design tokens
   -------------------------------------------------------------------------- */
:root {
  /* Core */
  --canvas: #FFFDF6;
  --ink: #241F18;
  --ink-soft: #6A6154;
  --ink-faint: #9A9083;

  /* Marigold — primary accent */
  --marigold: #F2A516;
  --marigold-deep: #E0940A;
  --marigold-ink: #A5670A;
  --marigold-tint: #FBECC4;

  /* Parrot green — secondary accent, used sparingly */
  --parrot: #57AE2B;
  --parrot-deep: #234B2A;
  --parrot-ink: #3C7C1C;
  --parrot-tint: #E4F2D4;

  /* Surfaces */
  --hairline: rgba(36, 31, 24, 0.12);
  --glass: rgba(255, 255, 255, 0.55);
  --glass-edge: rgba(255, 255, 255, 0.7);

  /* Type */
  --serif: 'IBM Plex Serif', Georgia, serif;
  --display: 'DM Sans', 'Segoe UI', sans-serif;
  --body: 'DM Sans', 'Segoe UI', sans-serif;
  --mono: 'IBM Plex Mono', ui-monospace, monospace;
  /* Label face: swap to var(--body) to turn the mono accent off */
  --label: var(--mono);

  /* Rhythm */
  --shell: 1140px;
  --pad: 28px;
  --radius-lg: 30px;
  --radius-md: 22px;
}

/* --------------------------------------------------------------------------
   2. Base
   -------------------------------------------------------------------------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  background: var(--canvas);
  color: var(--ink);
  line-height: 1.65;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.shell { max-width: var(--shell); margin: 0 auto; padding: 0 var(--pad); }

/* --------------------------------------------------------------------------
   3. Background blobs (drift slowly)
   -------------------------------------------------------------------------- */
.blobfield {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}

.blob--a {
  right: -180px;
  top: -160px;
  width: 640px;
  height: 600px;
  background: var(--marigold);
  opacity: 0.16;
  border-radius: 60% 40% 55% 45% / 55% 50% 50% 45%;
  animation: drift-a 26s ease-in-out infinite alternate;
}

.blob--b {
  left: -200px;
  bottom: -180px;
  width: 480px;
  height: 480px;
  background: var(--parrot);
  opacity: 0.11;
  animation: drift-b 32s ease-in-out infinite alternate;
}

.blob--c {
  right: 12%;
  bottom: -140px;
  width: 300px;
  height: 300px;
  background: var(--marigold-deep);
  opacity: 0.07;
  animation: drift-c 38s ease-in-out infinite alternate;
}

@keyframes drift-a {
  from { transform: translate(0, 0) rotate(0deg); }
  to   { transform: translate(-46px, 40px) rotate(9deg); }
}
@keyframes drift-b {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(40px, -34px) scale(1.07); }
}
@keyframes drift-c {
  from { transform: translate(0, 0); }
  to   { transform: translate(-32px, -28px); }
}

/* --------------------------------------------------------------------------
   4. Glass floating nav
   -------------------------------------------------------------------------- */
.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 18px var(--pad) 0;
}

.nav {
  max-width: var(--shell);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 14px 13px 26px;
  border-radius: 999px;
  background: var(--glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-edge);
  box-shadow: 0 10px 34px -18px rgba(40, 34, 28, 0.3);
}

.wordmark {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: var(--ink);
  white-space: nowrap;
}
.wordmark .dot { color: var(--marigold); }

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

.nav-links a {
  font-family: var(--body);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 9px 15px;
  border-radius: 999px;
  transition: color 0.2s ease, background-color 0.2s ease;
}
.nav-links a:hover { color: var(--marigold-ink); }

.nav-links a[aria-current="page"] {
  color: var(--marigold-ink);
  background: rgba(251, 236, 196, 0.75);
}

.nav-cta {
  background: var(--marigold);
  color: #241A06 !important;
  font-weight: 600 !important;
  padding: 10px 20px !important;
}
.nav-cta:hover { background: var(--marigold-deep); }

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 999px;
  font-family: var(--body);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--marigold-ink);
}

/* --------------------------------------------------------------------------
   5. Typography blocks
   -------------------------------------------------------------------------- */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.eyebrow .rule { width: 38px; height: 1.5px; background: var(--marigold); flex: none; }
.eyebrow .txt {
  font-family: var(--label);
  font-size: 11.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--marigold-ink);
}

.display {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.022em;
  color: var(--ink);
}
/* Accent line: upright (roman) in marigold — locked, no italic */
.display .accent { color: var(--marigold-deep); font-style: normal; }

.h-xl { font-size: clamp(38px, 5.4vw, 60px); }
.h-lg { font-size: clamp(31px, 4.1vw, 46px); }
.h-md { font-size: clamp(25px, 2.9vw, 34px); }

.lede {
  font-size: 17.5px;
  color: var(--ink-soft);
  max-width: 52ch;
}

p.body { color: var(--ink-soft); max-width: 62ch; }
p.body + p.body { margin-top: 15px; }

/* --------------------------------------------------------------------------
   6. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-block;
  font-family: var(--body);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 27px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.18s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn--primary { background: var(--marigold); color: #241A06; }
.btn--primary:hover { background: var(--marigold-deep); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  box-shadow: inset 0 0 0 1.5px rgba(36, 31, 24, 0.22);
}
.btn--ghost:hover { box-shadow: inset 0 0 0 1.5px var(--marigold); }

.btn-row { display: flex; gap: 13px; flex-wrap: wrap; align-items: center; }

/* --------------------------------------------------------------------------
   7. Sections
   -------------------------------------------------------------------------- */
.section { padding: 84px 0; }
.section--tight { padding: 56px 0; }
.hero { padding: 60px 0 76px; }

/* Chips */
.chip {
  display: inline-block;
  font-family: var(--label);
  font-size: 10.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 6px 13px;
  border-radius: 999px;
  background: var(--marigold-tint);
  color: var(--marigold-ink);
}
.chip--green { background: var(--parrot-tint); color: var(--parrot-ink); }

/* Credibility strip */
.strip {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  padding: 22px 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.strip .label {
  font-family: var(--label);
  font-size: 10.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-faint);
}
.strip .name {
  font-family: var(--display);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-soft);
}
.strip .sep { width: 5px; height: 5px; border-radius: 50%; background: var(--marigold); opacity: 0.6; }

/* Open borderless cards */
.open-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 38px;
}
.open-card { padding-left: 22px; border-left: 2px solid rgba(242, 165, 22, 0.45); }
.open-card--green { border-left-color: rgba(87, 174, 43, 0.45); }
.open-card h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 20px;
  margin: 12px 0 8px;
  color: var(--ink);
}
.open-card p { font-size: 14.5px; color: var(--ink-soft); }
.open-card ul { list-style: none; margin-top: 14px; display: flex; flex-direction: column; gap: 7px; }
.open-card ul li {
  font-size: 13.5px;
  color: var(--ink-soft);
  display: flex;
  align-items: baseline;
  gap: 9px;
}
.open-card ul li::before { content: "\2192"; color: var(--marigold); font-weight: 700; flex: none; }

/* Process strip */
.process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 0;
  margin-top: 8px;
}
.step { padding: 0 24px; position: relative; }
.step:first-child { padding-left: 0; }
.step:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0; top: 4px; bottom: 4px;
  width: 1px;
  background: var(--hairline);
}
.step .n {
  font-family: var(--label);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--marigold-deep);
  margin-bottom: 6px;
}
.step h4 { font-family: var(--display); font-weight: 600; font-size: 17px; margin-bottom: 5px; }
.step p { font-size: 13.5px; color: var(--ink-soft); }

/* Case list (Work) */
.case {
  padding: 34px 0;
  border-top: 1px solid var(--hairline);
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: 30px;
}
.case:last-child { border-bottom: 1px solid var(--hairline); }
.case .meta .role {
  font-family: var(--body);
  font-size: 13.5px;
  color: var(--ink-soft);
  margin-top: 8px;
}
.case h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 30px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.case ul { list-style: none; margin-top: 14px; display: flex; flex-direction: column; gap: 9px; }
.case ul li {
  font-size: 14.5px;
  color: var(--ink-soft);
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.case ul li::before { content: "\2192"; color: var(--marigold); font-weight: 700; flex: none; }

/* Journey photo */
.journey-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 52px;
  align-items: center;
}
.photo-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 54px -26px rgba(40, 34, 28, 0.45);
  aspect-ratio: 1 / 1;
  background: #EFE9DF;
}
.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Marigold circle sits behind the frame and peeks out */
.photo-wrap { position: relative; isolation: isolate; }
.photo-wrap::before {
  content: "";
  position: absolute;
  top: -26px; right: -26px;
  width: 150px; height: 150px;
  border-radius: 50%;
  background: var(--marigold);
  opacity: 0.9;
  z-index: 0;
}
.photo-wrap::after {
  content: "";
  position: absolute;
  bottom: -30px; left: -30px;
  width: 110px; height: 110px;
  border-radius: 50%;
  background: var(--parrot);
  opacity: 0.35;
  z-index: 0;
}
.photo-frame { z-index: 1; }
.photo-frame .corner { display: none; }

/* Timeline (My Journey) — animated */
.timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 56px;
  margin-top: 20px;
  padding-left: 34px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 0; top: 6px; bottom: 6px;
  width: 2px;
  background: rgba(242, 165, 22, 0.18);
  border-radius: 2px;
}
.timeline-progress {
  position: absolute;
  left: 0; top: 6px;
  width: 2px;
  height: 0;
  background: linear-gradient(180deg, var(--marigold), var(--marigold-deep));
  border-radius: 2px;
  transition: height 0.12s linear;
}
.tl-item {
  position: relative;
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.7s cubic-bezier(0.22,0.61,0.36,1),
              transform 0.7s cubic-bezier(0.22,0.61,0.36,1);
}
.tl-item.is-visible { opacity: 1; transform: none; }
.tl-item::before {
  content: "";
  position: absolute;
  left: -40px; top: 18px;
  width: 13px; height: 13px;
  border-radius: 50%;
  background: var(--canvas);
  border: 2px solid rgba(242,165,22,0.4);
  transition: background-color .4s ease, border-color .4s ease, transform .4s ease;
}
.tl-item.is-visible::before {
  background: var(--marigold);
  border-color: var(--marigold);
  transform: scale(1.15);
}
.tl-item .when {
  font-family: var(--label);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--marigold-ink);
}
.tl-item .year {
  display: block;
  font-family: var(--mono);
  font-size: clamp(28px, 3.2vw, 38px);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--marigold-deep);
  line-height: 1;
  margin: 4px 0 8px;
}
.tl-item h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 25px;
  margin: 0 0 8px;
  color: var(--ink);
}
@media (prefers-reduced-motion: reduce) {
  .tl-item { opacity: 1; transform: none; transition: none; }
  .timeline-progress { transition: none; }
}
@media (max-width: 620px) {
  .photo-wrap::before { width: 100px; height: 100px; top: -18px; right: -10px; }
  .photo-wrap::after { width: 76px; height: 76px; bottom: -18px; left: -10px; }
  .timeline { padding-left: 26px; gap: 44px; }
  .tl-item::before { left: -32px; width: 11px; height: 11px; }
}

/* Expandable offer panels (Services, Work) */
.offers { display: flex; flex-direction: column; gap: 12px; margin-top: 8px; }

.offer {
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 10px 30px -22px rgba(40, 34, 28, 0.4);
  overflow: hidden;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.offer:hover { box-shadow: 0 14px 36px -20px rgba(40, 34, 28, 0.45); }
.offer.is-open { border-color: rgba(242, 165, 22, 0.4); }

.offer-head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
}

.offer-head .lead { display: block; flex: 1; min-width: 0; }
.offer-head .chip { display: inline-block; margin-bottom: 10px; }
.offer-head h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 21px;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 5px;
}
.offer-head .one-liner {
  display: block;
  font-size: 14.5px;
  color: var(--ink-soft);
  max-width: 78ch;
}

.offer-toggle {
  flex: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--marigold-tint);
  color: var(--marigold-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  line-height: 1;
  transition: transform 0.3s cubic-bezier(0.22, 0.61, 0.36, 1), background-color 0.25s ease;
}
.offer.is-open .offer-toggle {
  transform: rotate(45deg);
  background: var(--marigold);
  color: #241A06;
}
.offer--green .offer-toggle { background: var(--parrot-tint); color: var(--parrot-ink); }
.offer--green.is-open .offer-toggle { background: var(--parrot); color: #fff; }

.offer-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.36s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.offer.is-open .offer-body { grid-template-rows: 1fr; }
.offer-body > .inner { overflow: hidden; }
.offer-body .pad { padding: 0 24px 24px; }

.offer-body p {
  font-size: 14.5px;
  color: var(--ink-soft);
  max-width: 88ch;
  border-top: 1px solid var(--hairline);
  margin-top: 2px;
  padding-top: 18px;
}
.offer-body ul {
  list-style: none;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.offer-body ul li {
  font-size: 13.5px;
  color: var(--ink-soft);
  display: flex;
  align-items: baseline;
  gap: 9px;
}
.offer-body ul li::before { content: "\2192"; color: var(--marigold); font-weight: 700; flex: none; }
.offer--green .offer-body ul li::before { color: var(--parrot); }

@media (prefers-reduced-motion: reduce) {
  .offer-body, .offer-toggle { transition: none; }
}

@media (max-width: 620px) {
  .offer-head { padding: 18px 18px; gap: 12px; }
  .offer-head h3 { font-size: 19px; }
  .offer-body .pad { padding: 0 18px 20px; }
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Left column: labelled link, Ramalingam style */
.contact-link {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--hairline);
  margin-bottom: 26px;
}
.contact-label {
  display: block;
  font-family: var(--label);
  font-size: 10.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-faint);
  margin-bottom: 8px;
}
.contact-link a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 22px;
  color: var(--ink);
  transition: color 0.2s ease;
}
.contact-link a:hover { color: var(--marigold-ink); }
.contact-link .arrow {
  color: var(--marigold);
  font-size: 17px;
  transition: transform 0.25s ease;
}
.contact-link a:hover .arrow { transform: translate(3px, -3px); }

.contact-note {
  font-size: 15.5px;
  color: var(--ink-soft);
  max-width: 40ch;
}

/* Form */
.field { margin-bottom: 14px; }
.field input, .field textarea {
  width: 100%;
  font-family: var(--body);
  font-size: 15.5px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--hairline);
  border-radius: 16px;
  padding: 16px 18px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.field textarea { min-height: 150px; resize: vertical; border-radius: 20px; }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-faint); }
.field input:focus, .field textarea:focus {
  background: #fff;
  border-color: var(--marigold);
  box-shadow: 0 0 0 3px rgba(242, 165, 22, 0.16);
}

.btn--full {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 4px;
}
.btn--full .arrow { transition: transform 0.22s ease; }
.btn--full:hover .arrow { transform: translateX(4px); }

.form-status {
  margin-top: 14px;
  font-size: 14px;
  color: var(--marigold-ink);
  min-height: 20px;
}

/* Contact page: tighter hero so the form sits above the fold */
.page-contact .hero { padding: 40px 0 20px; }
.page-contact .section--tight { padding: 8px 0 56px; }
.page-contact .hero .lede { margin-top: 14px; }
.page-contact .field textarea { min-height: 132px; }

@media (max-width: 900px) {
  .page-contact .hero { padding: 34px 0 18px; }
  .page-contact .section--tight { padding: 6px 0 44px; }
}

/* Footer */
.footer {
  margin-top: 40px;
  padding: 40px 0 54px;
  border-top: 1px solid var(--hairline);
}
.footer-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer p { font-size: 13.5px; color: var(--ink-faint); }
.footer .links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer .links a { font-size: 13.5px; color: var(--ink-soft); }
.footer .links a:hover { color: var(--marigold-ink); }

/* --------------------------------------------------------------------------
   8. Scroll-and-land motion
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.85s cubic-bezier(0.22, 0.61, 0.36, 1),
              transform 0.85s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }

.reveal[data-delay="1"] { transition-delay: 0.09s; }
.reveal[data-delay="2"] { transition-delay: 0.18s; }
.reveal[data-delay="3"] { transition-delay: 0.27s; }
.reveal[data-delay="4"] { transition-delay: 0.36s; }

/* Respect users who prefer less motion */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .blob { animation: none; }
  html { scroll-behavior: auto; }
}

/* --------------------------------------------------------------------------
   9. Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 900px) {
  .journey-grid, .contact-grid, .case { grid-template-columns: 1fr; gap: 28px; }
  .photo-wrap::before { width: 116px; height: 116px; top: -20px; right: -12px; }
  .photo-wrap::after { width: 88px; height: 88px; bottom: -20px; left: -12px; }
  .step { padding: 18px 0; }
  .step:not(:last-child)::after { display: none; }
  .step:not(:last-child) { border-bottom: 1px solid var(--hairline); }
  .step:first-child { padding-top: 0; }
}

@media (max-width: 780px) {
  :root { --pad: 20px; }
  .nav { padding: 11px 12px 11px 20px; }
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: var(--pad);
    right: var(--pad);
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 14px;
    border-radius: var(--radius-md);
    background: rgba(255, 253, 246, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-edge);
    box-shadow: 0 18px 44px -20px rgba(40, 34, 28, 0.34);
  }
  .nav-links.is-open { display: flex; }
  .nav-links a { padding: 12px 16px; }
  .nav-cta { text-align: center; }
  .nav-wrap { position: relative; }
  .section { padding: 60px 0; }
  .hero { padding: 40px 0 56px; }
  body { font-size: 16px; }
}
