:root {
  --paper: #EDE6D3;
  --paper-dark: #E3DAC2;
  --ink: #211B14;
  --ink-soft: #4A4136;
  --walnut: #5C3A22;
  --brass: #A6752C;
  --rust: #9C4526;
  --steel: #46565A;
  --line: rgba(33, 27, 20, 0.18);
  --radius: 2px;
  --display: 'Space Grotesk', sans-serif;
  --body: 'IBM Plex Sans', sans-serif;
  --mono: 'IBM Plex Mono', monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* subtle paper texture via layered gradients */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(92, 58, 34, 0.05), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(166, 117, 44, 0.06), transparent 45%);
}

a {
  color: inherit;
}

h1,
h2,
h3 {
  font-family: var(--display);
  margin: 0;
  letter-spacing: -0.01em;
}

.eyebrow {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rust);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--rust);
  display: inline-block;
}

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
}

section {
  position: relative;
  z-index: 1;
  padding: 110px 0;
}

.divider {
  max-width: 1080px;
  margin: 0 auto;
  border: none;
  border-top: 1px dashed var(--line);
  position: relative;
}

.divider::after {
  content: "✂";
  position: absolute;
  left: 32px;
  top: -11px;
  background: var(--paper);
  padding: 0 8px;
  font-size: 0.8rem;
  color: var(--ink-soft);
  opacity: .5;
}

/* ---------- NAV ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(237, 230, 211, 0.88);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}

nav.wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.logo span {
  color: var(--rust);
}

.navlinks {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navlinks a {
  text-decoration: none;
  font-family: var(--mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: border-color .2s, color .2s;
}

.navlinks a:hover {
  color: var(--rust);
  border-color: var(--rust);
}

.navToggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.navToggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
}

/* ---------- RULER SCROLL INDICATOR ---------- */
#ruler {
  position: fixed;
  left: 18px;
  top: 90px;
  bottom: 90px;
  width: 26px;
  z-index: 40;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#ruler .track {
  position: relative;
  width: 2px;
  height: 100%;
  background: var(--line);
}

#ruler .fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: var(--brass);
  transition: height .05s linear;
}

#ruler .marker {
  position: absolute;
  left: -6px;
  width: 14px;
  height: 14px;
  background: var(--rust);
  border-radius: 50%;
  top: 0%;
  transform: translateY(-50%);
  box-shadow: 0 0 0 3px var(--paper);
  transition: top .05s linear;
}

/* ---------- HERO ---------- */
.hero {
  padding-top: 130px;
  padding-bottom: 90px;
  overflow: hidden;
}

.hero .wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.6rem, 5.4vw, 4.4rem);
  line-height: 1.02;
  font-weight: 700;
}

.hero .role {
  font-family: var(--mono);
  color: var(--walnut);
  font-size: 1rem;
  margin-top: 18px;
  letter-spacing: 0.02em;
}

.hero p.lede {
  margin-top: 22px;
  max-width: 46ch;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.hero .ctaRow {
  margin-top: 34px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  font-family: var(--mono);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 14px 24px;
  text-decoration: none;
  border-radius: var(--radius);
  display: inline-block;
  transition: transform .15s ease, box-shadow .15s ease;
}

.btn-primary {
  background: var(--ink);
  color: var(--paper);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 3px 4px 0 var(--brass);
}

.btn-ghost {
  border: 1px solid var(--ink);
  color: var(--ink);
}

.btn-ghost:hover {
  transform: translateY(-2px);
  box-shadow: 3px 4px 0 var(--rust);
}

.blueprint {
  width: 100%;
  height: auto;
}

.blueprint path,
.blueprint circle,
.blueprint line {
  stroke: var(--walnut);
  fill: none;
  stroke-width: 1.4;
}

.blueprint .accent {
  stroke: var(--rust);
}

.blueprint .dim-text {
  font-family: var(--mono);
  font-size: 9px;
  fill: var(--ink-soft);
  stroke: none;
}

.estBadge {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--ink-soft);
  margin-top: 40px;
  letter-spacing: 0.05em;
}

/* ---------- ABOUT ---------- */
.about .wrap {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
}

.photoFrame {
  position: relative;
  background: #fff;
  padding: 14px 14px 46px;
  box-shadow: 0 10px 26px rgba(33, 27, 20, 0.18);
  transform: rotate(-2deg);
}

.photoFrame img {
  width: 100%;
  display: block;
  filter: sepia(.15) contrast(1.02);
}

.photoFrame figcaption {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--ink-soft);
}

.tape {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%) rotate(-3deg);
  width: 90px;
  height: 26px;
  background: rgba(166, 117, 44, 0.35);
  border: 1px solid rgba(166, 117, 44, 0.5);
}

.about h2 {
  font-size: 2.1rem;
  margin-bottom: 22px;
}

.about p {
  color: var(--ink-soft);
  margin: 0 0 16px;
}

.pullquote {
  font-family: var(--display);
  font-size: 1.3rem;
  color: var(--walnut);
  border-left: 3px solid var(--brass);
  padding-left: 20px;
  margin: 28px 0;
}

/* ---------- SECTION HEADINGS (work/skills/qual/interests/gallery/contact) ---------- */
.sectionHeading {
  font-size: 2.1rem;
  max-width: 26ch;
}

/* ---------- WHAT HE DOES ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 46px;
}

.card {
  background: var(--paper-dark);
  border: 1px solid var(--line);
  padding: 28px 24px;
  border-radius: var(--radius);
  transition: transform .2s ease, box-shadow .2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(33, 27, 20, 0.12);
}

.card .tag {
  font-family: var(--mono);
  font-size: 0.68rem;
  color: var(--rust);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.card h3 {
  font-size: 1.15rem;
  margin: 10px 0 10px;
}

.card p {
  color: var(--ink-soft);
  font-size: 0.94rem;
  margin: 0;
}

/* ---------- SKILLS ---------- */
.skillGrid {
  margin-top: 44px;
  display: grid;
  gap: 22px;
}

.skillRow {
  display: grid;
  grid-template-columns: 200px 1fr 60px;
  align-items: center;
  gap: 18px;
}

.skillRow .name {
  font-family: var(--mono);
  font-size: 0.85rem;
}

.gauge {
  height: 8px;
  background: var(--paper-dark);
  border: 1px solid var(--line);
  position: relative;
}

.gauge i {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background: var(--brass);
  width: 0%;
  transition: width 1.1s ease;
}

.skillRow .pct {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--ink-soft);
  text-align: right;
}

/* ---------- QUALIFICATIONS ---------- */
.qualList {
  list-style: none;
  margin: 44px 0 0;
  padding: 0;
  display: grid;
  gap: 18px;
}

.qualList li {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.qualList .year {
  font-family: var(--mono);
  color: var(--rust);
  font-size: 0.85rem;
}

.qualList strong {
  display: block;
  font-family: var(--display);
  font-size: 1.02rem;
  margin-bottom: 4px;
}

.qualList span {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

/* ---------- INTERESTS ---------- */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.chip {
  font-family: var(--mono);
  font-size: 0.8rem;
  padding: 9px 16px;
  border: 1px solid var(--walnut);
  border-radius: 999px;
  color: var(--walnut);
  background: rgba(92, 58, 34, 0.05);
}

/* ---------- GALLERY ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 46px;
}

.gPhoto {
  background: #fff;
  padding: 10px 10px 34px;
  box-shadow: 0 8px 18px rgba(33, 27, 20, 0.15);
  transition: transform .2s ease;
}

.gPhoto:nth-child(odd) {
  transform: rotate(-1.6deg);
}

.gPhoto:nth-child(even) {
  transform: rotate(1.6deg);
}

.gPhoto:hover {
  transform: rotate(0deg) scale(1.02);
}

.gPhoto img {
  width: 100%;
  display: block;
  height: 220px;
  object-fit: cover;
  filter: sepia(.12);
}

.gPhoto figcaption {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--ink-soft);
  margin-top: 10px;
}

/* ---------- CONTACT ---------- */
.ticket {
  margin-top: 44px;
  border: 1px solid var(--ink);
  position: relative;
  background: var(--paper-dark);
  padding: 40px;
}

.ticket::before {
  content: "WORK ORDER";
  position: absolute;
  top: -13px;
  left: 32px;
  background: var(--paper);
  padding: 0 10px;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: .1em;
  color: var(--rust);
}

.ticketGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px 40px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field label {
  font-family: var(--mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--ink-soft);
}

.field input,
.field textarea {
  font-family: var(--body);
  font-size: 0.95rem;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  padding: 8px 2px;
  color: var(--ink);
  outline: none;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--rust);
}

.field.full {
  grid-column: 1 / -1;
}

.contactDirect {
  margin-top: 30px;
  display: flex;
  gap: 34px;
  flex-wrap: wrap;
}

.contactDirect a {
  text-decoration: none;
  font-family: var(--mono);
  font-size: 0.88rem;
  border-bottom: 1px solid var(--brass);
  padding-bottom: 2px;
}

.formNote {
  margin-top: 14px;
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--ink-soft);
  opacity: .8;
}

.formStatus {
  font-family: var(--mono);
  font-size: 0.82rem;
  margin-top: 14px;
  min-height: 1.2em;
}

.formStatus.success {
  color: var(--walnut);
}

.formStatus.error {
  color: var(--rust);
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

footer {
  padding: 50px 0 60px;
  border-top: 1px solid var(--line);
}

footer .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

footer .fname {
  font-family: var(--display);
  font-weight: 600;
}

footer .social {
  display: flex;
  gap: 20px;
}

footer .social a {
  font-family: var(--mono);
  font-size: 0.78rem;
  text-decoration: none;
  color: var(--ink-soft);
}

footer .quote {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--ink-soft);
}

/* ---------- BIRTHDAY CARD ---------- */
#bdayConfetti {
  position: fixed;
  inset: 0;
  z-index: 210;
  pointer-events: none;
}

.bdayOverlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(33, 27, 20, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 24px;
  opacity: 0;
  transition: opacity .3s ease;
  overflow-y: auto;
}

.bdayOverlay.show {
  display: flex;
  opacity: 1;
}

.bdayCard {
  position: relative;
  max-width: 440px;
  width: 100%;
  margin: auto;
  background: var(--paper);
  border: 1px solid var(--ink);
  padding: 48px 36px 36px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 0 6px rgba(166, 117, 44, 0.15);
  animation: bdayPop .55s cubic-bezier(.2, .85, .35, 1.25);
}

.bdayCard p {
  color: var(--ink-soft);
  margin: 18px 0 0;
  line-height: 1.7;
  white-space: pre-line;
}

@keyframes bdayPop {
  0% {
    transform: scale(.6) rotate(-6deg);
    opacity: 0;
  }

  60% {
    transform: scale(1.04) rotate(1.5deg);
    opacity: 1;
  }

  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}

.bdaySeal {
  position: absolute;
  top: -26px;
  left: 50%;
  transform: translateX(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--rust);
  color: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  border: 3px solid var(--paper);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  animation: bdaySealPop .6s .1s cubic-bezier(.3, 1.4, .4, 1) backwards,
    bdaySealGlow 2s 0.7s ease-in-out infinite;
}

@keyframes bdaySealPop {
  from {
    transform: translateX(-50%) scale(0);
  }

  to {
    transform: translateX(-50%) scale(1);
  }
}

@keyframes bdaySealGlow {

  0%,
  100% {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25), 0 0 0 0 rgba(166, 117, 44, 0.5);
  }

  50% {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25), 0 0 0 9px rgba(166, 117, 44, 0);
  }
}

.bdayCard h2 {
  font-size: 1.9rem;
  color: var(--walnut);
  margin-top: 10px;
}

.bdayCard p {
  color: var(--ink-soft);
  margin: 18px 0 0;
  line-height: 1.7;
}

.bdayGif {
  display: none;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 4px;
  margin-top: 14px;
  border: 1px solid var(--line);
  background: var(--paper-dark);
}

.bdaySignOff {
  margin-top: 22px;
  font-family: var(--mono);
  font-size: 0.8rem;
  color: var(--rust);
}

.bdayClose {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  color: var(--ink-soft);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s ease;
}

.bdayClose:hover {
  background: var(--paper-dark);
}

.bdayReopenBtn {
  display: none;
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 190;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--rust);
  color: var(--paper);
  border: 3px solid var(--paper);
  font-size: 1.4rem;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
  animation: bdayFloat 2.4s ease-in-out infinite;
}

.bdayReopenBtn.show {
  display: block;
}

.bdayReopenBtn::before {
  content: "🎂";
}

@keyframes bdayFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .bdayCard {
    animation: none;
  }

  .bdaySeal {
    animation: none;
  }

  .bdayReopenBtn {
    animation: none;
  }
}

/* ---------- REVEAL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  html {
    scroll-behavior: auto;
  }
}

/* ---------- MESSAGE SENT CONFIRMATION ---------- */
.sentOverlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 220;
  background: rgba(33, 27, 20, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 24px;
  opacity: 0;
  transition: opacity .3s ease;
  overflow-y: auto;
}

.sentOverlay.show {
  display: flex;
  opacity: 1;
}

.sentCard {
  position: relative;
  max-width: 440px;
  width: 100%;
  margin: auto;
  background: var(--paper);
  border: 1px solid var(--ink);
  padding: 48px 36px 36px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 0 6px rgba(166, 117, 44, 0.15);
  animation: bdayPop .5s cubic-bezier(.2, .85, .35, 1.25);
}

.sentSeal {
  position: absolute;
  top: -26px;
  left: 50%;
  transform: translateX(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--walnut);
  color: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  border: 3px solid var(--paper);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  animation: bdaySealPop .55s .1s cubic-bezier(.3, 1.4, .4, 1) backwards;
}

.sentCard h2 {
  font-size: 1.7rem;
  color: var(--walnut);
  margin-top: 6px;
}

.sentSub {
  color: var(--ink-soft);
  margin: 10px 0 0;
  font-size: 0.92rem;
}

.sentRecap {
  margin-top: 26px;
  text-align: left;
  border-top: 1px dashed var(--line);
  padding-top: 20px;
}

.sentRow {
  display: flex;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}

.sentRowFull {
  flex-direction: column;
  gap: 4px;
}

.sentLabel {
  font-family: var(--mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--rust);
  min-width: 80px;
}

.sentRow span:last-child {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.sentClose {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  color: var(--ink-soft);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s ease;
}

.sentClose:hover {
  background: var(--paper-dark);
}

#mailFlight {
  position: fixed;
  inset: 0;
  z-index: 230;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .sentCard {
    animation: none;
  }

  .sentSeal {
    animation: none;
  }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1160px) {
  #ruler {
    display: none;
  }
}

@media (max-width: 900px) {

  .hero {
    padding-top: 44px;
    padding-bottom: 60px;
  }

  .hero .wrap,
  .about .wrap {
    grid-template-columns: 1fr;
  }

  .hero .blueprint {
    order: -1;
    max-width: 320px;
    margin: 0 auto 30px;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .gallery {
    grid-template-columns: 1fr 1fr;
  }

  .ticketGrid {
    grid-template-columns: 1fr;
  }

  .navlinks {
    position: fixed;
    top: 72px;
    right: 0;
    left: 0;
    background: var(--paper);
    flex-direction: column;
    padding: 8px 32px calc(20px + env(safe-area-inset-bottom, 0px));
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform .25s ease, opacity .25s ease, visibility .25s ease;
    gap: 0;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .navlinks a {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 0 0;
    border-bottom: 1px solid var(--line);
  }

  .navlinks a:last-child {
    border-bottom: none;
  }

  .navlinks.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .navToggle {
    display: block;
  }
}

@media (max-width: 560px) {
  .eyebrow {
    font-size: 0.66rem;
    letter-spacing: 0.08em;
  }

  .gallery {
    grid-template-columns: 1fr;
  }

  section {
    padding: 80px 0;
  }

  .qualList li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .skillRow {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "name pct"
      "gauge gauge";
    row-gap: 10px;
  }

  .skillRow .name {
    grid-area: name;
  }

  .skillRow .pct {
    grid-area: pct;
  }

  .skillRow .gauge {
    grid-area: gauge;
  }

  .contactDirect {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 28px;
  }

  .contactDirect a {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 12px 14px;
    background: rgba(92, 58, 34, 0.04);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    font-size: 0.82rem;
    box-sizing: border-box;
    transition: background .15s ease, border-color .15s ease;
  }

  .contactDirect a:hover {
    background: rgba(92, 58, 34, 0.08);
    border-color: var(--walnut);
  }
}