:root {
  --ink: #243b43;
  --ink-soft: #60737a;
  --paper: #f8f8f5;
  --line: rgba(28, 52, 61, 0.16);
  --teal: #0e5264;
  --teal-light: #70aeb9;
  --hero-h: clamp(620px, 71.59vw, 1050px);
}

* { box-sizing: border-box; }
.scene-tools { position:fixed; bottom:18px; left:50%; transform:translateX(-50%); z-index:20; display:flex; align-items:center; gap:14px; padding:8px 10px 8px 18px; border:1px solid #9ab1b580; background:#f5faf5dc; backdrop-filter:blur(16px); border-radius:30px; font-size:11px; white-space:nowrap; }
.scene-tools button { border:1px solid #93a9a8; border-radius:20px; background:transparent; padding:7px 12px; color:#284d54; cursor:pointer; }
.scene-tools button:focus-visible { outline:2px solid #225461; outline-offset:3px; }
.reference-layer { position:absolute; top:0; left:0; width:100%; height:auto; z-index:18; pointer-events:none; }
.reference-layer[hidden] { display:none; }
@media(max-width:600px){.scene-tools{gap:6px;font-size:9px;max-width:96vw;padding-left:10px}.scene-tools button{padding:6px 9px}#scene-status{display:none}}
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}
.loading-screen {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  color: #264c57;
  background:
    radial-gradient(circle at 50% 42%, rgba(255,255,255,.74), transparent 34%),
    linear-gradient(145deg, #edf8f7 0%, #d8eeed 48%, #c2e2e3 100%);
  transition: opacity .7s ease, visibility .7s ease;
}
.loading-screen::before,
.loading-screen::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(54, 123, 135, .18);
  border-radius: 50%;
  pointer-events: none;
}
.loading-screen::before { width: min(74vw, 720px); aspect-ratio: 1; transform: translate(-28%, -18%); }
.loading-screen::after { width: min(54vw, 520px); aspect-ratio: 1; transform: translate(42%, 26%); }
.loading-screen.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loading-screen[data-state="error"] { background: linear-gradient(145deg, #f3f8f6, #dceceb); }
.loading-card {
  position: relative;
  z-index: 1;
  width: min(420px, 100%);
  padding: 30px 32px 24px;
  border: 1px solid rgba(78, 139, 147, .35);
  border-radius: 28px;
  background: rgba(248, 253, 251, .72);
  box-shadow: 0 24px 70px rgba(43, 101, 111, .15);
  backdrop-filter: blur(18px);
  text-align: center;
}
.loading-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #4d7780;
  font-size: 10px;
  letter-spacing: .16em;
}
.loading-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3d91a1;
  box-shadow: 0 0 0 5px rgba(61, 145, 161, .11);
  animation: loading-pulse 1.5s ease-in-out infinite;
}
.loading-visual {
  position: relative;
  width: 190px;
  height: 150px;
  margin: 12px auto 4px;
  overflow: hidden;
}
.loading-ripple {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(47, 128, 143, .38);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(.35);
  opacity: 0;
  animation: loading-ripple 3.6s cubic-bezier(.2, .7, .25, 1) infinite;
}
.loading-ripple-b { animation-delay: 1.2s; }
.loading-ripple-c { animation-delay: 2.4s; }
.loading-turtle {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  border: 1px solid rgba(61, 145, 161, .28);
  border-radius: 50%;
  background: rgba(231, 247, 246, .78);
  box-shadow: 0 9px 24px rgba(40, 105, 116, .15), inset 0 0 24px rgba(255,255,255,.7);
  transform: translate(-50%, -50%);
  animation: loading-float 2.8s ease-in-out infinite;
}
.loading-turtle::after {
  content: "";
  position: absolute;
  inset: -9px;
  border: 1px dashed rgba(61, 145, 161, .35);
  border-radius: 50%;
  animation: loading-spin 8s linear infinite;
}
.loading-turtle img { width: 66px; height: 66px; opacity: .82; }
.loading-card h1 {
  margin: 3px 0 8px;
  color: #254b56;
  font-family: "Playfair Display", serif;
  font-size: clamp(31px, 6vw, 40px);
  font-weight: 500;
  letter-spacing: -.035em;
}
.loading-card p {
  min-height: 20px;
  margin: 0 0 24px;
  color: #638189;
  font-size: 12px;
}
.loading-progress-row,
.loading-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.loading-progress-row {
  margin-bottom: 9px;
  color: #47747f;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.loading-track {
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(59, 130, 143, .15);
}
.loading-track span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #4d9aaa, #1f6071);
  box-shadow: 0 0 12px rgba(50, 136, 151, .55);
  transition: width .35s ease;
}
.loading-meta {
  margin-top: 14px;
  color: #75939a;
  font-size: 9px;
  letter-spacing: .04em;
}
@keyframes loading-ripple {
  0% { opacity: 0; transform: translate(-50%, -50%) scale(.35); }
  14% { opacity: .76; }
  72%, 100% { opacity: 0; transform: translate(-50%, -50%) scale(3.6); }
}
@keyframes loading-float {
  0%, 100% { transform: translate(-50%, -54%); }
  50% { transform: translate(-50%, -46%); }
}
@keyframes loading-spin { to { transform: rotate(360deg); } }
@keyframes loading-pulse {
  0%, 100% { opacity: .35; transform: scale(.82); }
  50% { opacity: 1; transform: scale(1); }
}
@media (max-width: 600px) {
  .loading-screen { padding: 18px; }
  .loading-card { padding: 24px 22px 20px; border-radius: 24px; }
  .loading-visual { height: 132px; margin-top: 8px; }
  .loading-card p { margin-bottom: 20px; }
}
@media (prefers-reduced-motion: reduce) {
  .loading-dot, .loading-ripple, .loading-turtle, .loading-turtle::after { animation: none; }
  .loading-ripple { opacity: .22; transform: translate(-50%, -50%) scale(2.8); }
}
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.page-shell { overflow: hidden; }
.dot {
  width: 5px; height: 5px; border-radius: 50%; background: #3a8aa0;
  display: inline-block; vertical-align: middle; flex: 0 0 auto;
}

.hero {
  position: relative;
  min-height: var(--hero-h);
  overflow: hidden;
  isolation: isolate;
  color: #203a43;
}
#water-scene {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: -4;
}
.hero-wash {
  opacity: 0;
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(240,249,250,.24) 0%, rgba(236,247,248,.07) 36%, rgba(230,244,246,.01) 62%),
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(225,241,244,.02));
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0;
  background-image: linear-gradient(rgba(37,75,88,.15) 1px, transparent 1px), linear-gradient(90deg, rgba(37,75,88,.12) 1px, transparent 1px);
  background-size: 92px 92px;
  mask-image: linear-gradient(to right, black, transparent 35%);
  pointer-events: none;
}
.left-rule {
  position: absolute;
  top: 22px; bottom: 0; left: 44px;
  width: 1px; background: rgba(47, 76, 87, .28);
}
.brand {
  position: absolute;
  top: 25px; left: 78px;
  font-family: "Playfair Display", serif;
  font-size: clamp(20px, 2vw, 29px);
  color: #162b32;
  display: flex; align-items: center; gap: 12px;
}
.top-actions {
  position: absolute;
  top: 23px; right: 48px;
  display: flex; gap: 36px; align-items: center;
  font-size: 12px;
}
.menu-btn {
  border: 1px solid rgba(42,74,85,.34);
  background: rgba(255,255,255,.18);
  color: #1d3840;
  padding: 13px 20px;
  min-width: 86px;
  display: flex; align-items: center; justify-content: space-between; gap: 15px;
  cursor: pointer;
  backdrop-filter: blur(5px);
}
.menu-btn:hover { background: rgba(255,255,255,.35); }
.side-note,
.side-year {
  position: absolute;
  font-size: 10px;
  letter-spacing: .01em;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  color: rgba(32,58,67,.78);
}
.side-note-left { left: 38px; top: 44%; }
.side-year { right: 43px; top: 15%; padding-top: 25px; border-top: 1px solid rgba(46,75,86,.55); }
.side-note-right { right: 42px; top: 38%; }

.hero-copy {
  position: absolute;
  left: clamp(70px, 10vw, 130px);
  top: 22%;
  width: min(610px, 54vw);
}
.pill {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid rgba(31,74,89,.43);
  border-radius: 999px;
  padding: 7px 12px;
  background: rgba(239,248,250,.28);
  backdrop-filter: blur(4px);
  font-size: 11px;
  color: #3c6573;
}
.pill-top { margin-bottom: 24px; }
.pill-mid { position: absolute; left: 45%; top: 49%; }
.hero h1 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(74px, 8vw, 134px);
  line-height: .84;
  font-weight: 500;
  letter-spacing: -.045em;
  color: rgba(36, 64, 74, .95);
  text-shadow: 0 2px 18px rgba(255,255,255,.35);
}
.submerged-heading { position:absolute; pointer-events:none; opacity:0; z-index:0; }
.heading-underwater .submerged-heading { opacity:1; }
.heading-underwater h1 { opacity:0; }
.hero-copy .pill, .hero-cta-row { z-index:1; }
.pill-top, .hero-cta-row { position:relative; }
.hero-cta-row { display: flex; gap: 26px; margin-top: 58px; }
.btn {
  min-width: 124px;
  padding: 15px 22px;
  font-size: 12px;
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  border: 1px solid rgba(29,67,80,.5);
  transition: .25s ease;
}
.btn-primary { background: #0c4a5a; color: #f2fbfc; border-color: #0c4a5a; }
.btn-primary:hover { transform: translateY(-2px); background: #0a3d4a; }
.btn-ghost { background: rgba(255,255,255,.26); }
.btn-ghost:hover { background: rgba(255,255,255,.5); }

.hero-bottom-left {
  position: absolute;
  left: 78px;
  bottom: 70px;
  font-size: 11px;
}
.hero-bottom-left span { opacity: .6; padding: 0 12px; }
.scroll-cue {
  position: absolute;
  right: 42px;
  bottom: 37px;
  font-size: 11px;
  display: flex; flex-direction: column; align-items: flex-end; gap: 9px;
}
.scroll-cue span { font-size: 31px; font-weight: 300; }

main { background: #f9f9f7; }
.work-section,
.about-section {
  padding-left: clamp(70px, 7.8vw, 120px);
  padding-right: clamp(70px, 7.8vw, 120px);
}
.work-section { padding-top: 70px; padding-bottom: 75px; }
.section-heading-row {
  display: flex; justify-content: space-between; align-items: flex-end;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}
.section-heading-row h2,
.about-copy h2,
.contact-section h2 {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  letter-spacing: -.025em;
}
.section-heading-row h2 { margin: 0; font-size: clamp(30px, 3vw, 44px); }
.section-heading-row p { font-size: 11px; color: var(--ink-soft); display: flex; gap: 10px; align-items: center; }

.project-row {
  display: grid;
  grid-template-columns: 70px 1.35fr 1.4fr 65px 22px;
  gap: 20px;
  align-items: center;
  min-height: 86px;
  border-bottom: 1px solid var(--line);
  transition: background .25s ease, padding .25s ease;
}
.project-row:hover { background: rgba(119,170,181,.08); padding-inline: 10px; }
.project-no,
.project-title {
  font-family: "Playfair Display", serif;
}
.project-no { font-size: 26px; }
.project-title { font-size: clamp(23px, 2.2vw, 34px); }
.project-desc { font-size: 11px; line-height: 1.55; color: #5b6b70; max-width: 270px; }
.project-year, .project-arrow { font-size: 11px; }
.project-arrow { font-size: 18px; }

.about-section {
  min-height: 580px;
  border-top: 1px solid var(--line);
  padding-top: 56px;
  padding-bottom: 75px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}
.eyebrow { font-size: 11px; display: flex; gap: 10px; align-items: center; }
.about-copy h2 {
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.05;
  max-width: 600px;
  margin: 50px 0 26px;
}
.about-copy p {
  font-size: 12px;
  line-height: 1.7;
  max-width: 565px;
  color: #4b5e65;
}
.text-link {
  display: inline-block;
  margin-top: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #728e97;
  font-size: 11px;
}
.text-link span { margin-left: 28px; }
.stats-grid {
  align-self: end;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-left: 1px solid var(--line);
  border-top: 1px solid transparent;
}
.stat-card {
  min-height: 190px;
  padding: 18px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat-card:nth-child(3), .stat-card:nth-child(4) { border-bottom: 0; }
.icon {
  width: 54px; height: 54px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(189,214,218,.22);
  margin-bottom: 14px;
  color: #2d6c7d;
  font-size: 25px;
}
.stat-card strong {
  font-family: "Playfair Display", serif;
  font-size: 29px;
  font-weight: 500;
}
.ocean-icon {
  width: 80px; height: 80px;
  margin-bottom: 10px;
  background: radial-gradient(circle at 38% 30%, #f6faf7, #e4efec);
  box-shadow: inset 0 0 0 1px rgba(100,153,157,.08);
}
.ocean-icon img { display: block; transition: transform 450ms ease; }
.stat-card:nth-child(2) .ocean-icon { background: radial-gradient(circle at 38% 30%, #fcf9f2, #f0eae0); }
.stat-card:nth-child(3) .ocean-icon,
.stat-card:nth-child(4) .ocean-icon { background: radial-gradient(circle at 38% 30%, #f4f9fa, #e4eef1); }
@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .stat-card:hover .ocean-icon img { transform: translateY(-3px) rotate(-5deg); }
  .stat-card:nth-child(even):hover .ocean-icon img { transform: translateY(-3px) rotate(5deg); }
}
.stat-card span { margin-top: 8px; font-size: 11px; color: #53676e; }

.contact-section {
  min-height: 430px;
  position: relative;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
  background: #e3ecec url('./assets/water-caustics-v4.png') center 42% / cover;
}
.contact-section::after {
  content: "";
  position: absolute; inset: -20%;
  background: url('./assets/water-caustics-v4.png') center / cover;
  opacity: .18;
  animation: drift 16s ease-in-out infinite alternate;
}
@keyframes drift { to { transform: translate3d(3%, -2%, 0) rotate(4deg); } }
.contact-inner { position: relative; z-index: 1; width: 100%; min-width: 0; padding: 50px 20px 35px; }
.footer-water { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; visibility: hidden; }
.footer-water-ready .footer-water { visibility: visible; }
.footer-water-ready::after { display: none; }
.centered { justify-content: center; }
.contact-section h2 { margin: 22px 0 4px; font-size: clamp(48px, 5vw, 80px); color: #172f36; }
.email-link {
  display: inline-block;
  max-width: 100%;
  overflow-wrap: anywhere;
  font-family: "Playfair Display", serif;
  font-size: clamp(34px, 4.4vw, 67px);
  color: #337b8c;
}
.email-underline { width: 120px; height: 1px; background: #547c86; margin: 20px auto 45px; }
.socials { display: flex; justify-content: center; gap: 42px; font-size: 11px; }
.socials span { opacity: .55; }
.copyright { font-size: 10px; margin: 26px 0 0; color: #5d6e74; }

@media (max-width: 900px) {
  .hero-copy { width: 72vw; left: 70px; top: 25%; }
  .hero h1 { font-size: clamp(64px, 12vw, 100px); }
  .pill-mid { left: 52%; top: 45%; }
  .side-note-right, .side-year { right: 22px; }
  .project-row { grid-template-columns: 45px 1.3fr 1fr 50px 20px; }
  .about-section { grid-template-columns: 1fr; }
  .stats-grid { border-left: 0; }
}

@media (max-width: 760px) {
  .email-link { font-size: clamp(24px, 7.6vw, 34px); }
  :root {
    --turtle-height: clamp(400px, 93vw, 520px);
    --hero-h: calc(var(--turtle-height) + 470px);
  }
  .left-rule, .side-note, .side-year, .projects-link { display: none; }
  .scene-tools { position: absolute; top: calc(var(--hero-h) - 58px); bottom: auto; }
  .brand { left: 22px; top: 22px; }
  .top-actions { right: 20px; top: 18px; }
  .hero-copy { left: 22px; width: calc(100% - 44px); top: calc(var(--turtle-height) + 64px); }
  .hero-wash {
    background: linear-gradient(180deg, rgba(238,247,248,.01) 0%, rgba(238,247,248,.01) 42%, rgba(241,248,248,.16) 72%, rgba(241,248,248,.08) 100%);
  }
  .hero h1 { font-size: clamp(58px, 14vw, 74px); line-height: .94; }
  .pill-top { margin-bottom: 18px; }
  .pill-mid { position: static; margin-top: 20px; }
  .hero-cta-row { margin-top: 24px; gap: 12px; }
  .hero-bottom-left, .scroll-cue { display: none; }
  .work-section, .about-section { padding-left: 22px; padding-right: 22px; }
  .section-heading-row { align-items: flex-start; gap: 25px; }
  .section-heading-row p { max-width: 130px; line-height: 1.5; }
  .project-row {
    grid-template-columns: 38px 1fr 25px;
    gap: 12px;
    padding: 20px 0;
  }
  .project-desc, .project-year { display: none; }
  .project-title { font-size: 24px; }
  .about-copy h2 { margin-top: 34px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-card { min-height: 150px; }
  .socials { gap: 14px; flex-wrap: wrap; }
}

@media (min-width: 761px) and (max-width: 820px) {
  .hero-copy { left: 44px; width: 60vw; }
  .hero h1 { font-size: 86px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .contact-section::after { animation: none; }
  .btn, .project-row { transition: none; }
}

/* An ocean-toned contact pocket, separate from the water controls. */
.contact-dock { position:fixed; right:24px; bottom:26px; z-index:40; color:#284e59; }
.contact-toggle { display:flex; align-items:center; gap:9px; min-height:54px; padding:11px 17px 11px 13px; border:1px solid #9dbac1; border-radius:28px; background:#f5faf8ee; color:#285966; box-shadow:0 5px 24px #254c5818; backdrop-filter:blur(18px); cursor:pointer; }
.contact-toggle svg { width:30px; height:30px; }
.contact-toggle-label { font:500 12px 'DM Sans',sans-serif; }
.contact-popover { position:absolute; right:0; bottom:68px; width:316px; max-width:calc(100vw - 32px); max-height:calc(100dvh - 110px); overflow:auto; padding:22px; border:1px solid #afc8ca; border-radius:22px; background:linear-gradient(145deg,#fcfdfbed,#e9f3f2f5); box-shadow:0 16px 55px #284c5824; backdrop-filter:blur(24px); text-align:left; }
.contact-popover[hidden] { display:none; }
.contact-popover-top { display:flex; align-items:center; justify-content:space-between; }
.contact-mini-brand { display:flex; gap:7px; align-items:center; font-size:9px; letter-spacing:1.6px; }
.contact-mini-brand i { width:4px; height:4px; border-radius:50%; background:#488994; }
.contact-close { width:32px; height:32px; border:0; border-radius:50%; background:#dceae880; color:#456770; cursor:pointer; font-size:24px; line-height:1; }
.contact-popover h2 { font-family:'Playfair Display',serif; font-weight:500; font-size:36px; margin:12px 0 8px; letter-spacing:-1px; }
.contact-intro { font-size:12px; line-height:1.7; color:#61767d; margin:0 0 19px; }
.contact-email-row { display:flex; align-items:center; gap:3px; padding:12px 9px; background:#fff9; border:1px solid #cadcdb; border-radius:12px; }
.contact-email-row a { display:flex; align-items:center; gap:9px; min-width:0; flex:1; font-size:11px; }
.contact-email-row svg { width:20px; height:20px; flex-shrink:0; }
.contact-email-row small { display:block; font-size:8px; letter-spacing:1px; color:#718b90; margin-bottom:3px; }
.copy-contact { border:0; background:transparent; color:#557d85; cursor:pointer; padding:8px 4px; min-width:30px; min-height:36px; }
.copy-contact svg { width:16px; height:16px; }
.contact-social-label { display:block; margin:21px 0 10px; font-size:10px; color:#71858a; }
.contact-social-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:8px; }
.contact-social-grid>:last-child:nth-child(3n + 2) { grid-column:span 2; }
.contact-social-grid>a,.contact-social-pending { display:flex; flex-direction:column; align-items:center; gap:8px; border:1px solid #cddedd; border-radius:12px; padding:12px 1px 10px; font-size:8px; background:#ffffff60; }
.contact-social-grid svg { width:22px; height:22px; }
.contact-social-pending { color:#768e94; cursor:default; }
.contact-copy-status { font-size:10px; line-height:1.5; color:#386d76; margin:10px 0 0; }
.contact-copy-status:empty { display:none; }
.contact-signoff { display:block; margin-top:20px; padding-top:15px; border-top:1px solid #d1e0df; color:#809496; font-size:10px; }
.contact-dock button:focus-visible,.contact-dock a:focus-visible { outline:2px solid #347e8c; outline-offset:3px; }
@media(max-width:760px) {
  .contact-dock { right:16px; bottom:max(84px,calc(env(safe-area-inset-bottom) + 72px)); }
  .contact-toggle { width:52px; height:52px; min-height:52px; padding:10px; justify-content:center; }
  .contact-toggle-label { display:none; }
  .contact-popover { bottom:64px; max-height:calc(100dvh - 168px); padding:19px; }
}
@media(prefers-reduced-motion:no-preference) {
  .contact-toggle { transition:transform 180ms ease,box-shadow 180ms ease; }
  .contact-toggle:hover { transform:translateY(-2px); box-shadow:0 8px 28px #254c5825; }
}

.socials-with-icons { gap:24px; flex-wrap:wrap; }
.socials-with-icons a { display:flex; flex-direction:column; align-items:center; gap:8px; min-width:52px; color:#315e6a; }
.socials-with-icons .footer-social-icon { display:grid; place-items:center; width:46px; height:46px; border-radius:50%; border:1px solid #9ebdc080; background:#f5faf7b8; backdrop-filter:blur(8px); opacity:1; }
.footer-social-icon svg { width:21px; height:21px; }
.socials-with-icons .footer-social-name { opacity:1; font-size:10px; }
.socials-with-icons a:focus-visible { outline:2px solid #347e8c; outline-offset:5px; border-radius:5px; }
@media(max-width:760px) { .socials-with-icons { gap:10px; } .socials-with-icons a { min-width:44px; } .socials-with-icons .footer-social-name { font-size:9px; } .contact-dock.footer-links-visible .contact-toggle[aria-expanded="false"] { visibility:hidden; pointer-events:none; } }
@media(prefers-reduced-motion:no-preference) { .footer-social-icon { transition:transform 180ms ease,background 180ms ease; } .socials-with-icons a:hover .footer-social-icon { transform:translateY(-3px); background:#fff; } }
