/* ==========================================================================
   Softgate theme — main stylesheet
   Extracted verbatim from the locked design reference so the front-end
   is a 1:1 match. Fonts self-hosted below (not Google Fonts CDN).
   ========================================================================== */

/* ---- Self-hosted fonts ---- */
@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 300 500;
  font-display: swap;
  src: url("../fonts/fraunces-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Fraunces";
  font-style: italic;
  font-weight: 300 500;
  font-display: swap;
  src: url("../fonts/fraunces-italic.woff2") format("woff2");
}
@font-face {
  font-family: "Hanken Grotesk"; font-style: normal; font-weight: 300; font-display: swap;
  src: url("../fonts/hanken-300.woff2") format("woff2");
}
@font-face {
  font-family: "Hanken Grotesk"; font-style: normal; font-weight: 400; font-display: swap;
  src: url("../fonts/hanken-400.woff2") format("woff2");
}
@font-face {
  font-family: "Hanken Grotesk"; font-style: normal; font-weight: 500; font-display: swap;
  src: url("../fonts/hanken-500.woff2") format("woff2");
}
@font-face {
  font-family: "Hanken Grotesk"; font-style: normal; font-weight: 600; font-display: swap;
  src: url("../fonts/hanken-600.woff2") format("woff2");
}
@font-face {
  font-family: "IBM Plex Mono"; font-style: normal; font-weight: 400; font-display: swap;
  src: url("../fonts/plexmono-400.woff2") format("woff2");
}
@font-face {
  font-family: "IBM Plex Mono"; font-style: normal; font-weight: 500; font-display: swap;
  src: url("../fonts/plexmono-500.woff2") format("woff2");
}

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --paper:   #F7F6F3;
  --paper-2: #EEECEA;
  --ink:     #18181B;
  --ink-2:   #71717A;
  --ink-3:   #A1A1AA;
  --accent:  #B4502E;
  --dark:    #18181B;
  --dark-text: #F4F4F5;
  --dark-muted: #71717A;
  --line:    rgba(24,24,27,.10);

  --display: "Fraunces", Georgia, serif;
  --sans:    "Hanken Grotesk", system-ui, sans-serif;
  --mono:    "IBM Plex Mono", ui-monospace, monospace;
  --gutter:  clamp(24px, 5vw, 80px);
  --maxw:    1200px;
  --hdr-h:   72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }
.em { font-style: italic; color: var(--accent); }
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }

/* ============================================================
   HEADER
   ============================================================ */
.hdr {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--hdr-h);
  z-index: 100;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  transition: transform .35s ease;
}
.hdr.hide { transform: translateY(-100%); }
.hdr-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: var(--gutter);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand {
  display: flex;
  align-items: center;
  gap: .5em;
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: -.02em;
  cursor: pointer;
}
.brand-mark { display: block; flex-shrink: 0; }
.brand-mark .gp { stroke: var(--ink); }
.brand-mark .gl { stroke: var(--accent); }
.hdr-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
.hdr-nav a {
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-3);
  transition: color .2s;
  cursor: pointer;
  position: relative;
  padding-bottom: 2px;
}
.hdr-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width .3s;
}
.hdr-nav a:hover,
.hdr-nav a.active { color: var(--ink); }
.hdr-nav a.active::after,
.hdr-nav a:hover::after { width: 100%; }
.hdr-cta {
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 10px 18px;
  border: 1px solid var(--ink);
  border-radius: 2px;
  color: var(--ink);
  transition: background .2s, color .2s;
  cursor: pointer;
  white-space: nowrap;
}
.hdr-cta:hover { background: var(--ink); color: var(--paper); }

/* burger */
.burger {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 2px;
  width: 40px; height: 40px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
}
.burger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--ink);
  transition: .25s;
}
.mob-menu {
  display: none;
  position: fixed;
  inset: var(--hdr-h) 0 0 0;
  background: var(--paper);
  z-index: 99;
  flex-direction: column;
  padding: 16px var(--gutter) 32px;
  border-top: 1px solid var(--line);
  overflow-y: auto;
}
.mob-menu.open { display: flex; }
.mob-menu a {
  font-family: var(--mono);
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-2);
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: color .2s;
}
.mob-menu a:hover { color: var(--ink); }

@media (max-width: 720px) {
  .hdr-nav, .hdr-cta { display: none; }
  .burger { display: flex; }
}

main { padding-top: var(--hdr-h); }

/* ============================================================
   HERO — single column, full viewport, cursor-paint animation
   ============================================================ */
.hero {
  position: relative;
  min-height: calc(100vh - var(--hdr-h));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(48px, 8vw, 100px) var(--gutter) clamp(48px, 7vh, 80px);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
#heroCanvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1040px;
  padding-left: clamp(28px, 4vw, 48px);
}
.hero-eyebrow {
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.hero-eyebrow::before {
  content: "";
  width: 20px; height: 1px;
  background: var(--accent);
  display: block;
  flex-shrink: 0;
}
.hero-h1 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(2.8rem, 5.5vw, 6rem);
  line-height: 1.02;
  letter-spacing: -.03em;
  font-optical-sizing: auto;
  margin-bottom: 36px;
}
.hero-h1 em { font-style: italic; color: var(--accent); }
.hero-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.hero-sub {
  font-size: .97rem;
  color: var(--ink-2);
  max-width: 64ch;
  line-height: 1.75;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0; }
.hero-scroll {
  position: absolute;
  bottom: 32px;
  right: var(--gutter);
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: .6rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-3);
  writing-mode: vertical-rl;
  z-index: 1;
}
.hero-scroll::after {
  content: "";
  display: block;
  width: 1px;
  height: 40px;
  background: var(--ink-3);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: .4; }
  50% { transform: scaleY(.4); opacity: 1; }
}
@media (max-width: 600px) {
  .hero-row { flex-direction: column; align-items: flex-start; gap: 20px; }
  .hero-scroll { display: none; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 13px 22px;
  border-radius: 2px;
  transition: .2s;
  cursor: pointer;
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn-solid { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn-solid:hover { background: var(--accent); border-color: var(--accent); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-outline:hover { border-color: var(--ink); }

/* ============================================================
   SECTION UTILITIES
   ============================================================ */
.sec {
  padding-block: clamp(64px, 9vw, 120px);
  border-bottom: 1px solid var(--line);
}
.sec-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: clamp(40px, 6vw, 72px);
  flex-wrap: wrap;
}
.sec-label {
  font-family: var(--mono);
  font-size: .66rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-3);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.sec:not(.page-head) .sec-label::before,
.spotlight .sec-label::before,
.cta .sec-label::before {
  content: "";
  width: 14px; height: 1px;
  background: var(--accent);
  display: block;
}
.sec-h2 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  letter-spacing: -.025em;
  line-height: 1.04;
}
.sec-h2 em { font-style: italic; color: var(--accent); }
.sec-link {
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-3);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color .2s, gap .25s;
  white-space: nowrap;
  cursor: pointer;
}
.sec-link:hover { color: var(--ink); gap: 14px; }

/* ============================================================
   SERVICES
   ============================================================ */
.svc-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  overflow: hidden;
}
.svc {
  padding: clamp(28px, 3.5vw, 48px) clamp(20px, 2.5vw, 36px);
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background .3s;
  min-height: 280px;
  justify-content: space-between;
}
.svc:first-child { border-left: 0; }
.svc:hover { background: var(--paper-2); }
.svc-top { display: flex; flex-direction: column; gap: 14px; }
.svc-ord {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 1;
  letter-spacing: -.04em;
  color: var(--paper-2);
  transition: color .3s;
  user-select: none;
}
.svc:hover .svc-ord { color: var(--accent); }
.svc-title {
  font-family: var(--display);
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  font-weight: 400;
  letter-spacing: -.01em;
  line-height: 1.2;
}
.svc-title em { font-style: italic; color: var(--accent); }
.svc-desc {
  font-size: .88rem;
  color: var(--ink-2);
  line-height: 1.65;
}
@media (max-width: 760px) { .svc-row { grid-template-columns: 1fr 1fr; } .svc:nth-child(3) { border-left: 0; } }
@media (max-width: 480px) { .svc-row { grid-template-columns: 1fr; } .svc { border-left: 0; border-top: 1px solid var(--line); min-height: 0; } .svc:first-child { border-top: 0; } }

/* ============================================================
   SPOTLIGHT
   ============================================================ */
.spotlight {
  background: var(--dark);
  color: var(--dark-text);
  padding-block: clamp(64px, 9vw, 120px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.spotlight-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: var(--gutter);
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.spotlight .sec-label { color: rgba(255,255,255,.25); }
.spot-h {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3.6rem);
  letter-spacing: -.025em;
  line-height: 1.04;
  margin-bottom: 18px;
}
.spot-h em { font-style: italic; color: var(--accent); }
.spot-desc { color: var(--dark-muted); font-size: .95rem; max-width: 46ch; margin-bottom: 26px; }
.spot-pills { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; }
.pill {
  font-family: var(--mono);
  font-size: .62rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 5px 12px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  color: rgba(255,255,255,.45);
}
.spot-links { display: flex; flex-direction: column; gap: 10px; }
.spot-link {
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--dark-muted);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: color .2s, gap .25s;
}
.spot-link:hover { color: var(--dark-text); gap: 16px; }
.browser {
  background: #0D0D10;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,.6);
}
.browser-bar {
  background: #1C1C20;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.browser-dots { display: flex; gap: 6px; }
.browser-dots span { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.12); }
.browser-url {
  flex: 1;
  background: rgba(255,255,255,.06);
  border-radius: 4px;
  padding: 4px 10px;
  font-family: var(--mono);
  font-size: .6rem;
  color: rgba(255,255,255,.25);
  letter-spacing: .04em;
}
.browser-body {
  background: #F2F3F1;
  padding: 22px 18px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mk-hdr { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2px; }
.mk-brand { font-family: Georgia, serif; font-size: 13px; font-style: italic; color: #1A1712; }
.mk-nav-dots { display: flex; gap: 12px; }
.mk-nav-dots span { width: 24px; height: 4px; background: rgba(26,23,18,.14); border-radius: 2px; }
.mk-kicker { font-size: 8px; font-family: monospace; color: #1F8CAD; letter-spacing: .12em; text-transform: uppercase; margin-top: 6px; }
.mk-h { font-family: Georgia, serif; font-size: 20px; color: #1A1712; line-height: 1.1; }
.mk-h i { color: #1F8CAD; }
.mk-line { height: 5px; background: rgba(26,23,18,.1); border-radius: 2px; }
.mk-line.s { width: 72%; } .mk-line.xs { width: 48%; }
.mk-cta { align-self: flex-start; background: #1A1712; color: #F2F3F1; padding: 5px 12px; border-radius: 1px; font-size: 7px; font-family: monospace; letter-spacing: .12em; text-transform: uppercase; margin-top: 4px; }
@media (max-width: 760px) { .spotlight-inner { grid-template-columns: 1fr; } }

/* ============================================================
   WORK
   ============================================================ */
.work-rows { }
.work-row {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 0 clamp(24px, 4vw, 56px);
  padding-block: clamp(28px, 4vw, 44px);
  border-top: 1px solid var(--line);
  align-items: start;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  transition: padding-left .35s cubic-bezier(.16,1,.3,1);
}
.work-row:hover { padding-left: 8px; }
.wy {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  letter-spacing: -.04em;
  line-height: 1;
  color: var(--paper-2);
  padding-top: 4px;
  transition: color .3s;
}
.work-row:hover .wy { color: var(--accent); }
.wi-type {
  font-family: var(--mono);
  font-size: .63rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 8px;
}
.wi-title {
  font-family: var(--display);
  font-size: clamp(1.15rem, 2vw, 1.6rem);
  font-weight: 400;
  letter-spacing: -.01em;
  line-height: 1.15;
  margin-bottom: 8px;
  transition: color .25s;
}
.work-row:hover .wi-title { color: var(--accent); }
.wi-body { font-size: .88rem; color: var(--ink-2); max-width: 58ch; }
.wi-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 12px; }
.wi-tag {
  font-family: var(--mono);
  font-size: .62rem;
  letter-spacing: .05em;
  padding: 4px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-3);
}
.work-arr {
  font-family: var(--mono);
  font-size: .68rem;
  color: var(--ink-3);
  padding-top: 6px;
  transition: color .25s, transform .3s;
}
.work-row:hover .work-arr { color: var(--accent); transform: translateX(4px); }
@media (max-width: 600px) { .work-row { grid-template-columns: 56px 1fr; } .work-arr { display: none; } .wy { font-size: 1.5rem; } }

/* ============================================================
   STUDIO TEASER
   ============================================================ */
.studio-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.studio-big {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(2rem, 4.5vw, 4rem);
  letter-spacing: -.03em;
  line-height: 1;
  position: relative;
}
.studio-big em { font-style: italic; color: var(--accent); }
.studio-big::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: var(--accent);
  margin-top: 28px;
}
.studio-body { color: var(--ink-2); font-size: .97rem; margin-bottom: 22px; }
.studio-link {
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap .25s, color .2s;
  cursor: pointer;
}
.studio-link:hover { gap: 14px; color: var(--accent); }
@media (max-width: 720px) { .studio-grid { grid-template-columns: 1fr; } }

/* ============================================================
   CTA
   ============================================================ */
.cta {
  padding-block: clamp(80px, 13vw, 160px);
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.cta .sec-label { justify-content: center; margin-bottom: 28px; }
.cta-h {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(2.4rem, 6vw, 5.6rem);
  letter-spacing: -.03em;
  line-height: .97;
  margin-bottom: 24px;
  max-width: 14ch;
  margin-inline: auto;
}
.cta-h em { font-style: italic; color: var(--accent); }
.cta p {
  color: var(--ink-2);
  font-size: .97rem;
  max-width: 46ch;
  margin: 0 auto 36px;
}
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.foot {
  padding-block: 48px 36px;
  border-top: 1px solid var(--line);
}
.foot-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
}
.foot-brand {
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 4px;
}
.foot-sub {
  font-family: var(--mono);
  font-size: .6rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.foot-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.foot-links a {
  font-family: var(--mono);
  font-size: .62rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-3);
  transition: color .2s;
  cursor: pointer;
}
.foot-links a:hover { color: var(--ink); }

/* ============================================================
   INNER PAGE SHELLS
   ============================================================ */
.page-head {
  padding-block: clamp(64px, 10vw, 120px) clamp(40px, 5vw, 56px);
}
.page-head .wrap {
  display: grid;
  grid-template-columns: 1px 1fr 1px;
  gap: 0 clamp(28px, 4vw, 48px);
  align-items: stretch;
}
.page-head-line {
  width: 1px;
  background: var(--line);
  border-radius: 0;
}
.page-head-line-r {
  width: 1px;
  background: var(--line);
  border-radius: 0;
}
.page-head-body {}
.page-head h1 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  letter-spacing: -.03em;
  line-height: 1;
  max-width: 22ch;
  margin-bottom: 20px;
  margin-top: 0;
}
.page-head h1 em { font-style: italic; color: var(--accent); }
.page-head .lede {
  font-size: 1rem;
  color: var(--ink-2);
  max-width: 56ch;
  line-height: 1.7;
}
.prose-sec {
  padding-block: clamp(48px, 7vw, 80px);
}
.prose-sec .wrap {
  max-width: calc(var(--maxw) * .6);
}
.prose-sec h2 {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: -.01em;
  margin: 36px 0 12px;
}
.prose-sec p { color: var(--ink-2); font-size: .97rem; line-height: 1.75; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  padding-block: clamp(48px, 7vw, 80px);
}
.field { margin-bottom: 22px; }
.field label {
  display: block;
  font-family: var(--mono);
  font-size: .63rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 8px;
}
.field input, .field textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: .95rem;
  color: var(--ink);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  padding: 10px 0;
  outline: none;
  transition: border-color .2s;
  resize: none;
}
.field input:focus, .field textarea:focus { border-bottom-color: var(--ink); }
.contact-aside-h {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  letter-spacing: -.02em;
  line-height: 1.15;
  margin-bottom: 18px;
}
.contact-aside-h em { font-style: italic; color: var(--accent); }
.contact-info { color: var(--ink-2); font-size: .92rem; }
.contact-info a { color: var(--accent); }
@media (max-width: 680px) { .contact-grid { grid-template-columns: 1fr; } }

/* ============================================================
   REVEAL
   ============================================================ */
.rev {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1);
}
.rev.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .rev { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   THIRD-PARTY PLUGIN OVERRIDES
   SiteSEO Pro's AI modal (#siteseo-ai) is meant only for the admin
   editor screens, but its own CSS doesn't hide it on the public
   front-end when a logged-in admin is viewing the site — it was
   rendering as a full-page white overlay on every inner page.
   ============================================================ */
#siteseo-ai { display: none !important; }