/* Hallmark · macrostructure: Long Document · tone: utilitarian · anchor hue: warm umber
 * pre-emit critique: P5 H5 E4 S5 R5 V5 · contrast: pass (40–41) */
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css");

:root {
  color-scheme: light;
  --paper: #fffdf8;
  --ink: #423a35;
  --heading-ink: #423c3c;
  --muted: #6f6760;
  --accent: #d6814d;
  --header-button: #c9a88c;
  --header-button-hover: #b99578;
  --blue: #2d6ea3;
  --shadow-card: 0 18px 42px rgba(28, 31, 34, 0.2);
  --font-sans: "Pretendard", "Noto Sans KR", "Apple SD Gothic Neo", "Segoe UI", sans-serif;
  --display-font: var(--font-sans);
  --body-font: var(--font-sans);
  --document-rule: rgba(66, 58, 53, 0.2);
  --document-subtle: rgba(66, 58, 53, 0.68);
  --document-note: #f4ede4;
}

* {
  box-sizing: border-box;
  word-break: keep-all;
  overflow-wrap: normal;
  hyphens: none;
}

html,
body {
  min-height: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: #f7f2ea;
  color: var(--ink);
  font-family: var(--body-font);
  word-break: keep-all;
}

body.splash-active {
  overflow: hidden;
}

body.menu-open {
  overflow: hidden;
  width: 100%;
  position: fixed;
  left: 0;
  right: 0;
  overscroll-behavior: none;
  touch-action: none;
}

body.menu-open .hero-shell {
  animation: none;
  transform: none;
}

a {
  color: inherit;
  text-decoration: none;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.hero-shell {
  width: min(100%, 1680px);
  min-height: 100vh;
  margin: 0 auto;
  position: relative;
}

.home-page .hero-shell {
  animation: page-open 900ms ease 1550ms both;
}

.home-page.splash-skipped .hero-shell {
  animation: none;
}

.site-header {
  height: 82px;
  display: grid;
  grid-template-columns: minmax(150px, 1fr) auto minmax(150px, 1fr);
  align-items: center;
  gap: 28px;
  padding: 0 clamp(24px, 4vw, 64px);
  position: relative;
  z-index: 10;
}

.brand {
  display: inline-flex;
  width: max-content;
  align-items: center;
}

.brand img {
  display: block;
  width: 174px;
  height: auto;
  filter: drop-shadow(0 8px 16px rgba(24, 28, 32, 0.12));
}

.splash-screen {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 255, 255, 0.98) 0 0.5rem, rgba(255, 253, 248, 0.96) 18rem, rgba(247, 242, 234, 0.98) 100%),
    #fffdf8;
  opacity: 1;
  pointer-events: none;
  animation: splash-exit 2200ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.splash-screen img {
  width: clamp(240px, 28vw, 420px);
  height: auto;
  filter: drop-shadow(0 18px 28px rgba(24, 31, 38, 0.18));
  transform-origin: center;
  animation: splash-logo 2200ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.splash-screen.is-done {
  display: none;
}

@keyframes splash-logo {
  0% {
    opacity: 0;
    transform: translateY(12px) scale(0.9);
  }

  16%,
  62% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  100% {
    opacity: 0;
    transform: translateY(-16px) scale(1.08);
  }
}

@keyframes splash-exit {
  0%,
  68% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes page-open {
  0% {
    opacity: 0;
    transform: translateY(14px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 36px);
  font-size: 15px;
  font-weight: 700;
  color: #4a413b;
}

.mobile-home-link {
  display: none;
}

.mobile-menu-close {
  display: none;
}

.header-cta {
  justify-self: end;
  min-width: 118px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(84, 64, 48, 0.14);
  border-radius: 8px;
  background: var(--header-button);
  color: #fffaf4;
  box-shadow: 0 10px 24px rgba(75, 58, 44, 0.1);
  font-size: 15px;
  font-weight: 800;
  transition:
    background 260ms ease,
    box-shadow 260ms ease;
}

.menu-toggle {
  justify-self: end;
  min-width: 92px;
  min-height: 44px;
  display: none;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(84, 64, 48, 0.14);
  border-radius: 8px;
  background: var(--header-button);
  color: #fffaf4;
  box-shadow: 0 10px 24px rgba(75, 58, 44, 0.1);
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition:
    background 260ms ease,
    box-shadow 260ms ease;
}

.header-cta:hover,
.menu-toggle:hover {
  background: var(--header-button-hover);
  box-shadow: 0 12px 26px rgba(75, 58, 44, 0.14);
}

.hero {
  min-height: min(720px, calc(100vh - 82px));
  display: grid;
  grid-template-columns: minmax(310px, 0.58fr) minmax(680px, 1.42fr);
  align-items: center;
  gap: clamp(10px, 1.6vw, 28px);
  padding: 42px clamp(22px, 4.4vw, 84px) 68px;
  position: relative;
  overflow: hidden;
}

.hero-backgrounds,
.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-backgrounds {
  z-index: 0;
  overflow: hidden;
}

.hero-bg {
  background:
    linear-gradient(90deg, rgba(250, 247, 241, 0.96) 0%, rgba(250, 247, 241, 0.68) 34%, rgba(250, 247, 241, 0.14) 72%),
    linear-gradient(180deg, rgba(23, 29, 36, 0.02), rgba(23, 29, 36, 0.16)),
    var(--slide-image) center / cover no-repeat;
  opacity: 0;
  transform: scale(1.04);
  transition:
    opacity 1000ms ease,
    transform 5200ms ease;
}

.hero-bg.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-bg-memory {
  background:
    radial-gradient(circle at 82% 14%, rgba(80, 108, 73, 0.14), transparent 22rem),
    radial-gradient(circle at 16% 88%, rgba(214, 129, 77, 0.16), transparent 24rem),
    linear-gradient(135deg, #fcfaf5 0%, #faf6ef 58%, #f4ece3 100%);
}

.hero-copy {
  width: min(100%, 430px);
  max-width: 430px;
  justify-self: start;
  position: relative;
  z-index: 4;
  transform: translate(18px, -14px);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
}

.hero-eyebrow {
  margin: 0 0 16px;
  color: #c77445;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.5;
  transition: color 700ms ease;
}

.hero[data-active-slide="1"] .hero-eyebrow,
.hero[data-active-slide="4"] .hero-eyebrow {
  color: #2d6ea3;
}

h1 {
  margin: 0;
  color: var(--heading-ink);
  font-family: var(--display-font);
  font-size: clamp(42px, 3.35vw, 58px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.4;
}

h1 span,
h1 strong {
  display: block;
}

.heading-accent {
  display: inline;
  color: #ff6b12;
}

.home-page h1 span,
.home-page h1 strong {
  opacity: 0;
  transform: translateY(22px);
  animation: hero-title-rise 760ms cubic-bezier(0.18, 0.86, 0.22, 1) 1850ms both;
}

.home-page h1 strong {
  animation-delay: 1970ms;
}

h1 strong {
  width: 100%;
  max-width: 100%;
  color: #c77748;
  font-weight: inherit;
  font-style: normal;
  text-shadow: none;
}

.home-page h1 strong {
  width: max-content;
  max-width: 100%;
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.home-page h1 strong::after {
  display: none;
}

.hero[data-active-slide="1"] h1 strong,
.hero[data-active-slide="4"] h1 strong {
  color: #27699f;
}

@keyframes hero-title-rise {
  0% {
    opacity: 0;
    transform: translateY(22px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-title-sweep {
  0% {
    opacity: 0;
    transform: translateX(-115%);
  }

  35% {
    opacity: 1;
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-note {
  margin: 30px 0 0;
  padding-left: 18px;
  position: relative;
  color: #5a514a;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.88;
}

.hero-note::before {
  content: "";
  width: 1px;
  height: calc(100% - 6px);
  position: absolute;
  left: 0;
  top: 3px;
  background: linear-gradient(180deg, rgba(214, 129, 77, 0.52), rgba(214, 129, 77, 0.05));
}

.hero-note span {
  display: block;
}

.memory-stage {
  width: 100%;
  min-height: min(650px, 56vw);
  display: grid;
  place-items: center;
  justify-self: start;
  position: relative;
  z-index: 3;
  opacity: 0;
  transform: translate(-68px, -92px) scale(0.96);
  pointer-events: none;
  transition:
    opacity 800ms ease,
    transform 1000ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero[data-active-slide="2"] .memory-stage {
  opacity: 1;
  transform: translate(-68px, -112px) scale(1);
}

.memory-stage::before {
  content: "";
  position: absolute;
  inset: 48% 4% 2% 2%;
  z-index: -1;
  border-radius: 50%;
  background: rgba(63, 54, 47, 0.18);
  filter: blur(36px);
  transform: translateY(52px) scaleX(0.94);
}

.photo-stack {
  width: min(860px, 100%);
  height: min(620px, 55vw);
  min-height: 540px;
  position: relative;
}

.memory-collage {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.archive-photo {
  --x: 0px;
  --y: 0px;
  --r: 0deg;
  --w: 160px;
  width: var(--w);
  height: calc(var(--w) * 1.2);
  display: block;
  position: absolute;
  border: 9px solid rgba(255, 255, 255, 0.88);
  border-bottom-width: 34px;
  border-radius: 5px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(120, 116, 108, 0.08)),
    radial-gradient(circle at 28% 34%, rgba(112, 110, 104, 0.18) 0 16%, transparent 17%),
    radial-gradient(circle at 72% 42%, rgba(116, 113, 105, 0.13) 0 20%, transparent 21%),
    linear-gradient(165deg, rgba(190, 187, 178, 0.4), rgba(128, 125, 118, 0.16));
  box-shadow:
    0 26px 42px rgba(61, 54, 48, 0.08),
    0 5px 14px rgba(61, 54, 48, 0.06);
  opacity: 0.46;
  transform: translate3d(var(--x), var(--y), 0) rotate(var(--r));
}

.archive-1 { --x: 18px; --y: 326px; --r: -8deg; --w: 170px; }
.archive-2 { --x: 120px; --y: 420px; --r: -12deg; --w: 178px; }
.archive-3 { --x: 250px; --y: 372px; --r: 8deg; --w: 158px; }
.archive-4 { --x: 348px; --y: 118px; --r: -5deg; --w: 190px; }
.archive-5 { --x: 502px; --y: 40px; --r: 10deg; --w: 168px; }
.archive-6 { --x: 636px; --y: 32px; --r: -5deg; --w: 184px; }
.archive-7 { --x: 726px; --y: 112px; --r: 10deg; --w: 172px; }
.archive-8 { --x: 704px; --y: 300px; --r: -5deg; --w: 176px; }
.archive-9 { --x: 584px; --y: 414px; --r: 10deg; --w: 174px; }
.archive-10 { --x: 434px; --y: 452px; --r: -8deg; --w: 160px; }
.archive-11 { --x: 74px; --y: 206px; --r: 6deg; --w: 168px; }
.archive-12 { --x: 224px; --y: 238px; --r: -7deg; --w: 176px; }

.memory-photo {
  margin: 0;
  padding: 12px 12px 42px;
  position: absolute;
  overflow: hidden;
  border-radius: 5px;
  background: #fffdf8;
  box-shadow: var(--shadow-card);
  transition:
    left 1200ms cubic-bezier(0.22, 1, 0.36, 1),
    top 1200ms cubic-bezier(0.22, 1, 0.36, 1),
    width 1200ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 1200ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 1200ms ease;
  will-change: left, top, width, transform;
}

.memory-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.82) contrast(0.98) brightness(1);
}

.featured-photo {
  width: clamp(218px, 19.4vw, 296px);
  z-index: 3;
}

.support-left {
  left: 212px;
  top: 238px;
  z-index: 2;
  transform: rotate(-8deg);
  filter: saturate(0.9) brightness(0.98);
}

.hero-center {
  left: 392px;
  top: 168px;
  width: clamp(250px, 21.8vw, 336px);
  z-index: 4;
  transform: rotate(-2deg);
}

.support-right {
  left: 604px;
  top: 238px;
  z-index: 2;
  transform: rotate(5deg);
}

.home-section {
  background: #fff;
  padding: clamp(78px, 9vw, 126px) clamp(20px, 5vw, 46px);
}

.section-heading {
  width: min(100%, 1120px);
  margin: 0 auto clamp(34px, 5vw, 64px);
}

.section-kicker {
  margin: 0 0 12px;
  color: #d46f3d;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

.section-heading h2,
.contact-copy h2 {
  max-width: 860px;
  margin: 0;
  color: var(--heading-ink);
  font-family: var(--display-font);
  font-size: clamp(28px, 3.35vw, 42px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.4;
}

.event-card-grid {
  width: min(100%, 1120px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin: 0 auto;
}

.event-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(38, 34, 31, 0.14);
  border-radius: 6px;
  background: #fffaf1;
  box-shadow: 0 20px 42px rgba(38, 34, 31, 0.08);
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 700ms ease,
    transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--card-delay, 0ms);
}

.event-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.event-card:nth-child(2) {
  --card-delay: 110ms;
}

.event-card:nth-child(3) {
  --card-delay: 220ms;
}

.event-card-media {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  position: relative;
  background: #f5efe6;
  padding: 0;
}

.event-card img {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: center;
  max-width: none;
}

.event-card:first-child img {
  object-position: 66% center;
  transform: scale(1.14);
  transform-origin: 66% center;
}

.event-card-slider {
  width: 400%;
  height: 100%;
  display: flex;
  animation: event-card-slide 14s ease-in-out infinite;
}

.event-card-slider img,
.event-card:first-child .event-card-slider img {
  width: 25%;
  height: 100%;
  flex: 0 0 25%;
  position: static;
  object-fit: cover;
  object-position: center;
  transform: none;
  transform-origin: center;
}

.event-card > div:not(.event-card-media) {
  padding: clamp(22px, 3vw, 30px);
}

.event-card h3,
.process-grid h3 {
  margin: 0;
  color: #423a35;
  font-size: clamp(19px, 1.65vw, 22px);
  font-weight: 740;
  letter-spacing: 0;
  line-height: 1.42;
}

.event-card p,
.process-grid p,
.contact-copy p {
  margin: 14px 0 0;
  color: #5d554f;
  font-size: 15.5px;
  font-weight: 600;
  line-height: 1.76;
}

.process-section {
  background: #fffdf8;
}

.process-grid {
  width: min(100%, 1120px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 30px);
  margin: 0 auto;
  padding: 42px 0 0;
  position: relative;
  list-style: none;
}

.process-grid::before,
.process-grid::after {
  content: "";
  height: 2px;
  position: absolute;
  top: 15px;
  right: clamp(44px, 4vw, 58px);
  left: clamp(44px, 4vw, 58px);
  border-radius: 999px;
}

.process-grid::before {
  background: rgba(66, 58, 53, 0.16);
}

.process-grid::after {
  width: 22%;
  right: auto;
  background: linear-gradient(90deg, rgba(255, 138, 36, 0), rgba(255, 138, 36, 0.98), rgba(255, 190, 94, 0));
  box-shadow: 0 0 18px rgba(255, 138, 36, 0.26);
  animation: process-flow 4.8s ease-in-out infinite;
}

.process-grid li {
  min-width: 0;
  padding: 32px 0 0;
  position: relative;
}

.process-grid span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  margin: 0 0 24px;
  position: absolute;
  top: -44px;
  left: 0;
  z-index: 1;
  border: 2px solid rgba(255, 253, 248, 0.96);
  border-radius: 999px;
  background: #fffaf1;
  box-shadow:
    0 0 0 1px rgba(44, 168, 170, 0.22),
    0 10px 24px rgba(66, 58, 53, 0.12);
  color: #2ca8aa;
  font-size: 12px;
  font-weight: 850;
  animation: process-dot 4.8s ease-in-out infinite;
}

.process-grid li:nth-child(2) span {
  animation-delay: 1.2s;
}

.process-grid li:nth-child(3) span {
  animation-delay: 2.4s;
}

.process-grid li:nth-child(4) span {
  animation-delay: 3.6s;
}

.process-grid li::after {
  content: "";
  width: 100%;
  height: 100%;
  min-height: 172px;
  position: absolute;
  inset: 18px 0 auto;
  z-index: -1;
  border-radius: 6px;
  background: rgba(255, 250, 241, 0.78);
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 240ms ease,
    transform 240ms ease;
}

.process-grid li:hover::after {
  opacity: 1;
  transform: translateY(0);
}

@keyframes process-flow {
  0%,
  8% {
    transform: translateX(0);
  }

  92%,
  100% {
    transform: translateX(355%);
  }
}

@keyframes event-card-slide {
  0%,
  22% {
    transform: translateX(0);
  }

  30%,
  52% {
    transform: translateX(-25%);
  }

  60%,
  82% {
    transform: translateX(-50%);
  }

  90%,
  100% {
    transform: translateX(-75%);
  }
}

@keyframes process-dot {
  0%,
  22%,
  100% {
    background: #fffaf1;
    box-shadow:
      0 0 0 1px rgba(44, 168, 170, 0.22),
      0 10px 24px rgba(66, 58, 53, 0.12);
    color: #2ca8aa;
    transform: scale(1);
  }

  10% {
    background: #ff8a24;
    box-shadow:
      0 0 0 7px rgba(255, 138, 36, 0.2),
      0 12px 26px rgba(255, 138, 36, 0.22);
    color: #fffdf8;
    transform: scale(1.06);
  }
}

.contact-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.8fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  padding: clamp(78px, 9vw, 126px) clamp(20px, 5vw, 72px);
  background:
    linear-gradient(90deg, rgba(38, 34, 31, 0.94), rgba(38, 34, 31, 0.78)),
    url("./assets/roblox-popup-hero.jpg") center / cover no-repeat;
  color: #fff;
}

.contact-copy {
  width: min(100%, 720px);
  justify-self: end;
}

.contact-copy .section-kicker {
  color: #ffbd84;
}

.contact-copy h2,
.contact-copy p {
  color: #fff;
}

.contact-copy p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.8;
}

.contact-phone {
  width: min(100%, 360px);
  display: grid;
  gap: 8px;
  margin-top: 30px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.12);
  color: #fff;
  text-decoration: none;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.contact-phone span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}

.contact-phone strong {
  color: #fff;
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 900;
  line-height: 1.2;
}

.contact-phone:hover {
  border-color: rgba(255, 189, 132, 0.56);
  background: rgba(255, 253, 248, 0.18);
  transform: translateY(-2px);
}

.contact-phone:hover strong {
  color: #ffbd84;
}

.contact-form {
  width: min(100%, 520px);
  display: grid;
  gap: 16px;
  justify-self: start;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.96);
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.24);
  color: #423a35;
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row label {
  font-size: 14px;
  font-weight: 850;
}

.form-row input,
.form-row textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(38, 34, 31, 0.2);
  border-radius: 6px;
  background: #fff;
  color: #423a35;
  font: inherit;
  font-size: 15px;
  line-height: 1.5;
  padding: 11px 12px;
}

.form-row textarea {
  min-height: 136px;
  resize: vertical;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: 3px solid rgba(45, 110, 163, 0.22);
  border-color: rgba(45, 110, 163, 0.68);
}

.privacy-consent {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(66, 58, 53, 0.86);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
  cursor: pointer;
}

.privacy-consent label {
  cursor: pointer;
}

.privacy-consent a {
  color: #2d6ea3;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy-consent input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--accent);
  flex: 0 0 auto;
}

.turnstile-wrap {
  min-height: 65px;
}

.turnstile-status,
.contact-form-status {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.turnstile-status,
.contact-form-status.is-error {
  color: #b42318;
}

.contact-form-status:not(.is-error) {
  color: #1e6b46;
}

.form-submit {
  min-height: 52px;
  margin-top: 4px;
  border: 0;
  border-radius: 6px;
  background: var(--accent);
  color: #fffaf7;
  box-shadow: 0 14px 28px rgba(214, 129, 77, 0.28);
  font: inherit;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
}

.form-submit:disabled {
  background: color-mix(in srgb, var(--accent) 84%, #fff 16%);
  color: rgba(255, 250, 247, 0.88);
  box-shadow: 0 10px 22px rgba(214, 129, 77, 0.16);
  opacity: 0.82;
  cursor: not-allowed;
}

.site-footer {
  padding: 20px clamp(20px, 5vw, 72px) 22px;
  background: #111;
  color: rgba(255, 255, 255, 0.86);
  text-align: left;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.privacy-page {
  min-height: 100vh;
  background: #fffdf8;
  color: #26221f;
}

.policy-main {
  width: min(100%, 980px);
  margin: 0 auto;
  padding: clamp(104px, 12vw, 132px) clamp(20px, 5vw, 72px) clamp(72px, 9vw, 112px);
}

.policy-document {
  width: min(100%, 68ch);
  margin: 0 auto;
  color: #26221f;
}

.policy-document-header {
  padding-bottom: clamp(28px, 4vw, 44px);
  border-bottom: 2px solid var(--heading-ink);
}

.policy-kicker {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.policy-document h1 {
  margin: 0;
  color: var(--heading-ink);
  font-family: var(--display-font);
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.16;
  letter-spacing: -0.04em;
  overflow-wrap: anywhere;
}

.policy-metadata {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin: 24px 0 0;
  color: var(--document-subtle);
  font-size: 14px;
  font-weight: 650;
}

.policy-metadata div {
  display: flex;
  gap: 8px;
}

.policy-metadata dt {
  color: var(--heading-ink);
  font-weight: 850;
}

.policy-metadata dd {
  margin: 0;
}

.policy-toc {
  margin: 40px 0 52px;
  padding: 20px 0;
  border-top: 1px solid var(--document-rule);
  border-bottom: 1px solid var(--document-rule);
}

.policy-toc h2 {
  margin: 0 0 12px;
  color: var(--heading-ink);
  font-size: 14px;
  font-weight: 850;
}

.policy-toc ol {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 24px;
  margin: 0;
  padding-left: 20px;
  color: var(--document-subtle);
  font-size: 14px;
  line-height: 1.55;
}

.policy-toc a {
  text-decoration: underline;
  text-decoration-color: rgba(214, 129, 77, 0.48);
  text-underline-offset: 3px;
}

.policy-content {
  color: rgba(38, 34, 31, 0.86);
  font-size: 16px;
  line-height: 1.9;
}

.policy-content h2 {
  margin: 56px 0 16px;
  padding-top: 8px;
  color: var(--heading-ink);
  font-size: clamp(20px, 2.3vw, 25px);
  line-height: 1.4;
  letter-spacing: -0.02em;
}

.policy-content h3 {
  margin: 28px 0 8px;
  color: var(--heading-ink);
  font-size: 16px;
  line-height: 1.65;
}

.policy-content p,
.policy-content li {
  margin: 0;
}

.policy-content p + p,
.policy-content p + ul,
.policy-content ul + p {
  margin-top: 12px;
}

.policy-content ul,
.policy-content ol {
  margin: 12px 0 0;
  padding-left: 1.35em;
}

.policy-content li + li {
  margin-top: 4px;
}

.policy-notice {
  margin: 28px 0 0;
  padding: 18px 20px;
  border-left: 3px solid var(--accent);
  background: var(--document-note);
  color: rgba(38, 34, 31, 0.78);
  font-size: 14px;
  line-height: 1.75;
}

.policy-source {
  margin: 0;
  white-space: pre-wrap;
  word-break: keep-all;
  overflow-wrap: normal;
  color: rgba(38, 34, 31, 0.82);
  font: inherit;
  font-size: 15px;
  line-height: 1.85;
}

.policy-archive {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--document-rule);
}

.policy-archive summary {
  color: var(--heading-ink);
  font-weight: 850;
  cursor: pointer;
}

.policy-archive .policy-source {
  margin-top: 24px;
}

@media (max-width: 40rem) {
  .policy-document-header {
    padding-bottom: 28px;
  }

  .policy-toc {
    margin: 32px 0 40px;
  }

  .policy-toc ol {
    grid-template-columns: minmax(0, 1fr);
  }

  .policy-content {
    font-size: 15px;
    line-height: 1.8;
  }

  .policy-content h2 {
    margin-top: 44px;
  }
}

.footer-links {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 12px;
  color: #fff;
  font-size: 13px;
  font-weight: 850;
}

.footer-app-downloads {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 2px 0 14px;
}

.footer-app-downloads a {
  display: block;
  border-radius: 6px;
  line-height: 0;
  outline-offset: 3px;
}

.footer-app-downloads a:focus-visible {
  outline: 2px solid #fff;
}

.footer-app-downloads img {
  display: block;
  width: auto;
  height: 34px;
}

.footer-app-downloads a:first-child img {
  height: 43px;
}

.site-footer p {
  margin: 0;
}

.site-footer p + p {
  margin-top: 2px;
}

.site-footer .footer-credit {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 700;
}

.site-footer .footer-credit a {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.site-footer a {
  color: inherit;
  font-weight: 900;
}

.footer-links a {
  color: inherit;
}

.company-section {
  background:
    radial-gradient(circle at 86% 8%, rgba(93, 116, 73, 0.08), transparent 22rem),
    radial-gradient(circle at 14% 88%, rgba(214, 129, 77, 0.1), transparent 24rem),
    linear-gradient(135deg, #fcfaf5 0%, #faf6ef 58%, #f4ece3 100%);
  color: #423a35;
  padding: clamp(92px, 10vw, 150px) clamp(24px, 6vw, 96px) clamp(88px, 9vw, 132px);
}

.company-inner {
  width: min(100%, 1120px);
  margin: 0 auto;
}

.company-section h1,
.company-section h2 {
  margin: 0 0 clamp(58px, 7vw, 92px);
  color: var(--heading-ink);
  font-family: var(--display-font);
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0;
}

.company-eyebrow {
  margin: 0 0 12px;
  color: #d46f3d;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

.company-lede {
  max-width: 1040px;
  margin: 0;
  font-size: clamp(17px, 1.75vw, 24px);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0;
}

.company-lede strong {
  color: #ff6b12;
  font-weight: 500;
}

.company-intro-copy {
  padding: clamp(34px, 4vw, 56px) clamp(24px, 6vw, 96px);
  background: #fffaf4;
}

.company-intro-copy p {
  width: min(100%, 1040px);
  margin: 0 auto;
  color: #423a35;
  font-size: clamp(17px, 1.75vw, 24px);
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: 0;
}

.company-character-marquee {
  overflow: hidden;
  padding: clamp(28px, 3.2vw, 44px) 0;
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.86), transparent 28rem),
    linear-gradient(180deg, #f4ece3 0%, #fffaf4 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.company-character-track {
  width: max-content;
  display: flex;
  gap: clamp(18px, 2.4vw, 34px);
  animation: company-character-marquee 42s linear infinite;
}

.company-character-set {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 34px);
  padding-right: clamp(18px, 2.4vw, 34px);
}

.company-character-set img {
  width: clamp(118px, 12vw, 178px);
  height: clamp(118px, 12vw, 178px);
  flex: 0 0 auto;
  object-fit: cover;
  border-radius: clamp(18px, 2vw, 28px);
  clip-path: inset(2px round clamp(16px, 1.8vw, 26px));
  box-shadow: 0 18px 34px rgba(66, 58, 53, 0.14);
}

@keyframes company-character-marquee {
  from {
    transform: translateX(0);
  }

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

.company-overview {
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 26%, rgba(235, 122, 74, 0.16), transparent 22rem),
    radial-gradient(circle at 86% 82%, rgba(136, 166, 142, 0.16), transparent 20rem),
    linear-gradient(135deg, #fffaf4 0%, #fbf6ef 58%, #fff8ef 100%);
  padding: clamp(72px, 8vw, 126px) clamp(20px, 5vw, 74px) clamp(78px, 8vw, 124px);
}

.company-overview-inner {
  width: min(100%, 1120px);
  margin: 0 auto;
}

.company-overview-head {
  margin-bottom: clamp(36px, 5vw, 70px);
}

.company-overview-kicker {
  margin: 0 0 12px;
  color: #d46f3d;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

.company-overview h2 {
  margin: 0;
  color: #3f3d3a;
  font-family: var(--display-font);
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0;
}

.company-overview-head p:last-child {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(63, 61, 58, 0.78);
  font-size: clamp(15.5px, 1.45vw, 20px);
  font-weight: 560;
  line-height: 1.75;
}

.company-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.6vw, 34px);
}

.company-service-card {
  min-width: 0;
  min-height: clamp(460px, 40vw, 620px);
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 3vw, 44px) clamp(26px, 3.4vw, 48px);
  border: 1px solid color-mix(in srgb, var(--service-color, #e56f43) 24%, #fff3e9);
  border-top: 5px solid var(--service-color, #e56f43);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 252, 247, 0.98), rgba(250, 244, 236, 0.82)),
    radial-gradient(circle at 86% 100%, rgba(245, 231, 216, 0.5), transparent 48%);
  box-shadow: 0 18px 42px rgba(63, 52, 42, 0.08);
}

.company-service-card-video {
  --service-color: #e76f43;
}

.company-service-card-photo {
  --service-color: #7fa38b;
}

.company-service-card-app {
  --service-color: #e76f43;
}

.company-service-icon {
  width: 100%;
  height: clamp(190px, 18vw, 260px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 clamp(30px, 3.4vw, 48px);
  border-radius: 0;
  background: transparent;
}

.company-service-icon img {
  display: block;
  width: min(100%, 360px);
  height: 100%;
  object-fit: contain;
  opacity: 0.94;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 14px 20px rgba(63, 52, 42, 0.04));
  -webkit-mask-image: radial-gradient(ellipse at center, #000 60%, rgba(0, 0, 0, 0.84) 78%, transparent 100%);
  mask-image: radial-gradient(ellipse at center, #000 60%, rgba(0, 0, 0, 0.84) 78%, transparent 100%);
}

.company-service-card-app .company-service-icon img {
  width: min(100%, 360px);
  height: 100%;
}

.company-service-card h3 {
  margin: 0;
  color: var(--service-color);
  font-size: clamp(25px, 2.4vw, 38px);
  font-weight: 900;
  line-height: 1.36;
  text-align: center;
}

.company-service-card p {
  margin: clamp(22px, 2.3vw, 30px) 0 0;
  padding-top: clamp(20px, 2.2vw, 28px);
  border-top: 1px solid color-mix(in srgb, var(--service-color) 34%, transparent);
  color: rgba(63, 61, 58, 0.78);
  font-size: clamp(16px, 1.45vw, 21px);
  font-weight: 560;
  line-height: 1.78;
}

.company-process-section {
  background: #fffdf8;
  padding: clamp(68px, 7vw, 108px) clamp(24px, 6vw, 96px) clamp(78px, 8vw, 122px);
}

.company-process-inner {
  width: min(100%, 1120px);
  margin: 0 auto;
}

.company-page,
.characters-page,
.locations-page {
  background:
    radial-gradient(circle at 86% 8%, rgba(93, 116, 73, 0.08), transparent 22rem),
    radial-gradient(circle at 14% 88%, rgba(214, 129, 77, 0.1), transparent 24rem),
    linear-gradient(135deg, #fcfaf5 0%, #faf6ef 58%, #f4ece3 100%);
}

.guide-page {
  background:
    radial-gradient(circle at 84% 10%, rgba(255, 189, 63, 0.14), transparent 22rem),
    radial-gradient(circle at 16% 82%, rgba(45, 110, 163, 0.1), transparent 24rem),
    linear-gradient(135deg, #fcfaf5 0%, #faf6ef 58%, #f4ece3 100%);
}

.portfolio-page {
  background:
    radial-gradient(circle at 82% 12%, rgba(45, 110, 163, 0.12), transparent 22rem),
    radial-gradient(circle at 14% 86%, rgba(214, 129, 77, 0.12), transparent 24rem),
    linear-gradient(135deg, #fcfaf5 0%, #faf6ef 58%, #f4ece3 100%);
}

.page-header {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  background:
    radial-gradient(circle at 86% 8%, rgba(93, 116, 73, 0.08), transparent 22rem),
    linear-gradient(135deg, rgba(252, 250, 245, 0.98) 0%, rgba(250, 246, 239, 0.98) 58%, rgba(244, 236, 227, 0.98) 100%);
}

.characters-main {
  background: transparent;
}

.guide-main {
  width: min(100%, 1480px);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px) clamp(64px, 7vw, 104px);
}

.portfolio-main {
  width: min(100%, 1480px);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px) clamp(64px, 7vw, 104px);
}

.guide-hero,
.guide-process,
.polaroid-section {
  margin: 0 auto;
}

.guide-hero {
  margin-bottom: clamp(58px, 7vw, 96px);
}

.guide-heading {
  max-width: 920px;
}

.guide-heading h1 {
  margin: 0;
  color: var(--heading-ink);
  font-family: var(--display-font);
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0;
}

.guide-heading p:last-child {
  max-width: 700px;
  margin: 22px 0 0;
  color: rgba(38, 34, 31, 0.68);
  font-size: clamp(16px, 1.45vw, 20px);
  font-weight: 650;
  line-height: 1.72;
}

.guide-hero-refresh {
  display: grid;
  place-items: center;
  text-align: center;
}

.guide-hero-branded {
  position: relative;
  min-height: clamp(320px, 44vh, 460px);
  margin: 0 calc(clamp(24px, 4vw, 72px) * -1) clamp(58px, 7vw, 96px);
  padding: clamp(80px, 9vw, 126px) clamp(24px, 6vw, 96px);
  overflow: hidden;
}

.guide-hero-branded::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 255, 255, 0.62), transparent 24rem),
    linear-gradient(135deg, #d9ebe5 0%, #f5eadc 64%, #fff8ef 100%);
  opacity: 1;
  filter: none;
}

.guide-hero-branded > * {
  position: relative;
  z-index: 1;
}

.guide-title-overlay {
  max-width: none;
}

.guide-hero-branded .guide-heading h1 {
  color: #2f3438;
  font-size: clamp(38px, 5.4vw, 72px);
  line-height: 1.16;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.76),
    0 12px 28px rgba(71, 82, 92, 0.16);
}

.subpage-photo-hero {
  --subpage-hero-gradient:
    radial-gradient(circle at 16% 18%, rgba(255, 255, 255, 0.62), transparent 24rem),
    linear-gradient(135deg, #d9ebe5 0%, #f5eadc 64%, #fff8ef 100%);
  position: relative;
  min-height: clamp(182px, 24vw, 294px);
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  border-radius: 0;
  text-align: center;
}

.subpage-photo-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--subpage-hero-gradient);
  opacity: 1;
}

.subpage-photo-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04));
}

.subpage-photo-hero > * {
  position: relative;
  z-index: 1;
}

.subpage-photo-hero h1,
.subpage-photo-hero h2 {
  color: #2f3438;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.72),
    0 12px 28px rgba(71, 82, 92, 0.14);
}

.subpage-photo-hero .section-kicker,
.subpage-photo-hero .company-eyebrow {
  color: #bc6a3d;
  text-shadow: none;
}

.subpage-photo-hero p,
.subpage-photo-hero .company-lede {
  color: rgba(47, 52, 56, 0.74);
  text-shadow: none;
}

.subpage-photo-hero .heading-accent,
.subpage-photo-hero .company-lede strong,
.subpage-photo-hero h1 strong {
  color: #2f3438;
}

.subpage-hero-company {
  --subpage-hero-gradient:
    radial-gradient(circle at 16% 18%, rgba(255, 255, 255, 0.62), transparent 24rem),
    linear-gradient(135deg, #d9ebe5 0%, #f5eadc 64%, #fff8ef 100%);
}

.subpage-hero-characters {
  --subpage-hero-gradient:
    radial-gradient(circle at 16% 18%, rgba(255, 255, 255, 0.62), transparent 24rem),
    linear-gradient(135deg, #d9ebe5 0%, #f5eadc 64%, #fff8ef 100%);
}

.subpage-hero-portfolio {
  --subpage-hero-gradient:
    radial-gradient(circle at 16% 18%, rgba(255, 255, 255, 0.62), transparent 24rem),
    linear-gradient(135deg, #d9ebe5 0%, #f5eadc 64%, #fff8ef 100%);
}

.subpage-hero-locations {
  --subpage-hero-gradient:
    radial-gradient(circle at 16% 18%, rgba(255, 255, 255, 0.62), transparent 24rem),
    linear-gradient(135deg, #d9ebe5 0%, #f5eadc 64%, #fff8ef 100%);
}

.characters-title-hero {
  min-height: clamp(168px, 21vw, 252px);
  margin: 0 0 clamp(42px, 5vw, 76px);
  padding: clamp(22px, 3.5vw, 48px) clamp(20px, 4vw, 56px);
}

.characters-title-hero h1 {
  margin: 0;
}

.guide-hero-board {
  min-height: 460px;
  position: relative;
}

.guide-hero-board img {
  display: block;
  position: absolute;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 26px 70px rgba(62, 49, 35, 0.18);
}

.guide-hero-board-main {
  width: min(72%, 360px);
  aspect-ratio: 1 / 0.78;
  left: 0;
  top: 56px;
  transform: rotate(-4deg);
}

.guide-hero-board-phone {
  width: min(48%, 230px);
  aspect-ratio: 9 / 16;
  right: 0;
  top: 0;
  transform: rotate(5deg);
  object-position: top center;
}

.guide-flow-section,
.guide-feature-section,
.guide-app-section {
  padding: clamp(64px, 7vw, 108px) clamp(24px, 5vw, 72px);
}

.guide-flow-list {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  list-style: none;
  background: rgba(38, 34, 31, 0.12);
  border: 1px solid rgba(38, 34, 31, 0.12);
}

.guide-flow-list:not(.guide-flow-cards) {
  display: none;
}

.guide-flow-cards {
  width: min(100%, 1180px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  background: transparent;
  border: 0;
}

.guide-flow-card {
  min-height: clamp(250px, 24vw, 340px);
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(260px, 0.58fr);
  align-items: center;
  gap: clamp(18px, 4vw, 56px);
  padding: clamp(28px, 4vw, 46px) clamp(26px, 5vw, 58px);
  overflow: hidden;
  border: 1px solid rgba(38, 34, 31, 0.1);
  border-radius: 8px;
  background:
    radial-gradient(circle at 80% 48%, rgba(216, 191, 160, 0.13), transparent 18rem),
    #fffefa;
  box-shadow: 0 14px 34px rgba(38, 34, 31, 0.08);
}

.guide-flow-copy {
  position: relative;
  z-index: 1;
}

.guide-flow-card .guide-flow-copy span {
  display: block;
  margin: 0 0 clamp(24px, 3vw, 38px);
  color: #e36f13;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}

.guide-flow-card .guide-flow-copy h3 {
  margin: 0;
  color: #26221f;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 500;
  line-height: 1.28;
}

.guide-flow-card .guide-flow-copy p {
  max-width: 420px;
  margin: 18px 0 0;
  color: rgba(38, 34, 31, 0.74);
  font-size: clamp(15px, 1.65vw, 21px);
  font-weight: 520;
  line-height: 1.72;
}

.guide-flow-visual {
  margin: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.guide-flow-visual img {
  display: block;
  width: min(100%, 430px);
  max-height: 250px;
  object-fit: contain;
  opacity: 0.92;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 16px 24px rgba(38, 34, 31, 0.04));
  -webkit-mask-image: radial-gradient(ellipse at center, #000 58%, rgba(0, 0, 0, 0.82) 76%, transparent 100%);
  mask-image: radial-gradient(ellipse at center, #000 58%, rgba(0, 0, 0, 0.82) 76%, transparent 100%);
}

.guide-flow-list li {
  min-height: 260px;
  padding: 28px 24px;
  background: #fffdf8;
}

.guide-flow-list span {
  display: inline-flex;
  margin-bottom: 34px;
  color: #ff6b12;
  font-size: 13px;
  font-weight: 800;
}

.guide-flow-list h3,
.guide-app-copy h3 {
  margin: 0;
  color: #26221f;
  font-size: clamp(20px, 2.1vw, 27px);
  line-height: 1.35;
}

.guide-flow-list p,
.guide-feature-copy p,
.guide-app-copy p {
  margin: 16px 0 0;
  color: rgba(38, 34, 31, 0.68);
  font-size: 16px;
  line-height: 1.75;
}

@media (min-width: 681px) {
  .guide-hero-branded {
    margin-bottom: 0;
  }

  .guide-flow-section {
    padding-top: clamp(34px, 4vw, 56px);
    padding-bottom: clamp(34px, 4vw, 54px);
  }

  .guide-feature-section {
    padding-top: clamp(38px, 4vw, 58px);
  }

  .guide-flow-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(14px, 1.5vw, 22px);
  }

  .guide-flow-cards .guide-flow-card {
    min-height: clamp(250px, 22vw, 310px);
    grid-template-columns: minmax(170px, 0.46fr) minmax(190px, 0.54fr);
    gap: clamp(14px, 2vw, 28px);
    padding: clamp(24px, 3vw, 36px);
  }

  .guide-flow-cards .guide-flow-copy span {
    margin-bottom: 18px;
    font-size: clamp(30px, 2.8vw, 38px);
  }

  .guide-flow-cards .guide-flow-copy h3 {
    font-size: clamp(22px, 2vw, 28px);
    line-height: 1.28;
  }

  .guide-flow-cards .guide-flow-copy p {
    margin-top: 12px;
    font-size: clamp(14px, 1.2vw, 16px);
    line-height: 1.68;
  }

  .guide-flow-visual img {
    max-height: 220px;
  }
}

.guide-flow-cards .guide-flow-card {
  min-height: clamp(250px, 24vw, 340px);
  padding: clamp(28px, 4vw, 46px) clamp(26px, 5vw, 58px);
  background:
    radial-gradient(circle at 80% 48%, rgba(216, 191, 160, 0.13), transparent 18rem),
    #fffefa;
}

.guide-flow-cards .guide-flow-copy span {
  display: block;
  margin: 0 0 clamp(24px, 3vw, 38px);
  color: #e36f13;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 500;
  line-height: 1;
}

.guide-flow-cards .guide-flow-copy h3 {
  font-size: clamp(24px, 3vw, 38px);
}

.guide-flow-cards .guide-flow-copy p {
  max-width: 420px;
  margin: 18px 0 0;
  color: rgba(38, 34, 31, 0.74);
  font-size: clamp(15px, 1.65vw, 21px);
}

.guide-feature-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  background: #fff7f3;
}

.guide-feature-copy {
  max-width: 520px;
}

.guide-flow-section .section-heading h2,
.guide-feature-copy h2,
.guide-app-section .section-heading h2 {
  margin: 0;
  color: #26221f;
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 500;
  line-height: 1.48;
}

.guide-safety-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
  align-items: start;
}

.guide-safety-grid img {
  width: 100%;
  display: block;
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(60, 35, 61, 0.14);
}

.guide-app-section {
  background: #f6fbff;
}

.guide-app-layout {
  width: min(100%, 1080px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(240px, 360px) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.guide-phone-shot {
  margin: 0;
}

.guide-phone-shot img {
  width: min(100%, 330px);
  display: block;
  border-radius: 8px;
  box-shadow: 0 22px 58px rgba(46, 35, 64, 0.2);
}

.guide-app-copy {
  display: grid;
  gap: 0;
}

.guide-app-copy h3 {
  font-size: clamp(24px, 2.2vw, 30px);
  font-weight: 500;
  line-height: 1.32;
}

.guide-app-copy h3:not(:first-child) {
  margin-top: 24px;
}

.guide-app-copy p {
  max-width: 620px;
  margin-top: 8px;
  font-size: clamp(17px, 1.55vw, 19px);
  line-height: 1.68;
}

.guide-process {
  width: min(100%, 1120px);
  margin-bottom: clamp(70px, 8vw, 116px);
}

.polaroid-section {
  width: min(100%, 1240px);
}

.guide-page .polaroid-section {
  margin-top: clamp(48px, 6vw, 86px);
}

.polaroid-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 34px);
  align-items: start;
}

.polaroid-card {
  min-width: 0;
  margin: 0;
  padding: clamp(9px, 1.1vw, 14px) clamp(9px, 1.1vw, 14px) clamp(26px, 2.6vw, 38px);
  border: 1px solid rgba(38, 34, 31, 0.1);
  background: #fffefb;
  box-shadow: 0 22px 44px rgba(38, 34, 31, 0.14);
  transform: rotate(var(--tilt, -2deg));
}

.polaroid-card:nth-child(2n) {
  --tilt: 1.8deg;
}

.polaroid-card:nth-child(3n) {
  --tilt: -1.1deg;
}

.polaroid-card:nth-child(5n) {
  --tilt: 2.4deg;
}

.polaroid-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1.1;
  object-fit: cover;
  object-position: center;
  background: #f2eee7;
}

.polaroid-card figcaption {
  margin: 18px 0 0;
  color: #423a35;
  font-size: clamp(17px, 1.45vw, 21px);
  font-weight: 500;
  line-height: 1.35;
  text-align: center;
}

.portfolio-hero {
  margin: 0 0 clamp(42px, 6vw, 76px);
}

.portfolio-heading {
  max-width: 900px;
}

.portfolio-heading h1 {
  margin: 0;
  color: var(--heading-ink);
  font-family: var(--display-font);
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0;
}

.portfolio-heading p:last-child {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(38, 34, 31, 0.68);
  font-size: clamp(16px, 1.45vw, 20px);
  font-weight: 650;
  line-height: 1.72;
}

.portfolio-list {
  display: grid;
  gap: clamp(26px, 4vw, 54px);
}

.portfolio-case {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  align-items: stretch;
  overflow: hidden;
  border: 1px solid rgba(38, 34, 31, 0.1);
  border-radius: 8px;
  background: rgba(255, 254, 251, 0.92);
  box-shadow: 0 24px 54px rgba(38, 34, 31, 0.12);
}

.portfolio-case-stacked {
  grid-template-columns: 1fr;
}

.portfolio-case-media {
  min-height: clamp(320px, 34vw, 520px);
  overflow: hidden;
  background: #eee7dc;
}

.portfolio-case-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.portfolio-photo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 8px;
}

.portfolio-case-stacked .portfolio-photo-grid {
  min-height: clamp(210px, 24vw, 360px);
}

.portfolio-case-stacked .portfolio-photo-grid-three {
  min-height: 0;
}

@media (min-width: 681px) {
  .portfolio-case-stacked .portfolio-photo-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: 1fr;
  }

  .portfolio-case-stacked .portfolio-photo-grid-three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.portfolio-photo-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: 1fr;
}

.portfolio-photo-grid-three img {
  aspect-ratio: 4 / 3;
  height: auto;
}

.portfolio-photo-grid img {
  min-width: 0;
  min-height: 0;
  border-radius: 6px;
  cursor: zoom-in;
}

.portfolio-case-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 4vw, 54px);
}

.portfolio-case-type {
  margin: 0 0 16px;
  color: #d46f3d;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
}

.portfolio-case h2 {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #423c3c;
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 700;
  line-height: 1.32;
}

.portfolio-case h2::before {
  content: "";
  width: 3px;
  height: 1.08em;
  flex: 0 0 auto;
  background:
    linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.72) 44%, transparent 58%),
    #ff6b12;
  background-size: 100% 220%, 100% 100%;
  background-position: 0 140%, 0 0;
  animation: portfolio-title-line-glow 3.8s ease-in-out infinite;
}

.portfolio-title-letters > span {
  display: inline-flex;
  flex-wrap: wrap;
}

.portfolio-title-letters > span > span {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.52em);
}

.portfolio-title-letters.is-visible > span > span {
  animation-name: portfolio-title-letter-in;
  animation-duration: 650ms;
  animation-timing-function: cubic-bezier(0.16, 0.86, 0.18, 1);
  animation-delay: var(--letter-delay, 0ms);
  animation-fill-mode: both;
}

.portfolio-title-space {
  width: 0.35em;
}

@keyframes portfolio-title-line-glow {
  0%,
  34% {
    background-position: 0 140%, 0 0;
  }

  74%,
  100% {
    background-position: 0 -80%, 0 0;
  }
}

@keyframes portfolio-title-letter-in {
  0% {
    opacity: 0;
    transform: translateY(0.52em);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.portfolio-case-copy p:last-child {
  margin: 18px 0 0;
  color: rgba(38, 34, 31, 0.68);
  font-size: clamp(15px, 1.35vw, 18px);
  font-weight: 650;
  line-height: 1.72;
}

.portfolio-case-support {
  grid-template-columns: 1fr;
}

.portfolio-support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-content: center;
  gap: 10px;
  padding: clamp(16px, 2vw, 24px);
  background: #eee7dc;
}

.portfolio-support-grid figure {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 254, 251, 0.95);
  box-shadow: 0 10px 24px rgba(38, 34, 31, 0.1);
}

.portfolio-support-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  cursor: zoom-in;
}

.portfolio-support-grid figcaption {
  min-height: 54px;
  display: flex;
  align-items: center;
  padding: 10px 12px 12px;
  color: rgba(38, 34, 31, 0.74);
  font-size: clamp(12px, 1vw, 14px);
  font-weight: 800;
  line-height: 1.4;
}

.portfolio-lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: clamp(14px, 4vw, 36px);
  visibility: hidden;
  background: rgba(13, 15, 18, 0.82);
  opacity: 0;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.portfolio-lightbox.is-open {
  visibility: visible;
  opacity: 1;
}

.portfolio-lightbox__dialog {
  position: relative;
  width: min(100%, 1120px);
  max-height: 90vh;
}

.portfolio-lightbox__image {
  display: block;
  width: 100%;
  max-height: 86vh;
  border-radius: 8px;
  background: #111;
  object-fit: contain;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.portfolio-lightbox__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: #1e1b18;
  cursor: pointer;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

body.portfolio-lightbox-open {
  overflow: hidden;
}

.locations-main {
  width: min(100%, 1480px);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px) clamp(64px, 7vw, 104px);
}

.locations-hero {
  margin-bottom: clamp(28px, 4vw, 52px);
}

.locations-heading {
  max-width: 780px;
}

.locations-heading h1 {
  margin: 0;
  color: var(--heading-ink);
  font-family: var(--display-font);
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0;
}

.locations-heading p:last-child {
  max-width: 560px;
  margin: 18px 0 0;
  color: rgba(38, 34, 31, 0.64);
  font-size: clamp(16px, 1.4vw, 19px);
  font-weight: 650;
  line-height: 1.7;
}

.locations-map-section {
  display: block;
}

.branch-panel {
  border: 1px solid rgba(38, 34, 31, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 24px 60px rgba(38, 34, 31, 0.08);
}

.branch-panel {
  max-height: none;
  overflow: visible;
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: clamp(26px, 3vw, 38px);
}

.branch-panel-head {
  margin-bottom: 18px;
}

.branch-panel-head h2 {
  margin: 0;
  color: var(--heading-ink);
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.4;
}

.branch-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(18px, 2.6vw, 32px);
  margin: 0 0 18px;
  border-bottom: 1px solid rgba(38, 34, 31, 0.12);
}

.branch-tabs button {
  min-height: 44px;
  padding: 0 0 12px;
  border: 0;
  border-bottom: 3px solid transparent;
  background: transparent;
  color: rgba(38, 34, 31, 0.58);
  font: inherit;
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
}

.branch-tabs button.is-active {
  border-bottom-color: #ff6b12;
  color: #26221f;
  box-shadow: none;
}

.branch-content {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(280px, 0.72fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}

.branch-groups {
  display: grid;
  gap: 12px;
}

.branch-groups section {
  padding: 12px 0 14px;
  border-top: 1px solid rgba(38, 34, 31, 0.12);
}

.branch-groups h3 {
  margin: 0 0 8px;
  color: #ff6b12;
  font-size: 26px;
  font-weight: 950;
}

.branch-groups ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.branch-groups li {
  position: relative;
  padding-left: 20px;
  color: rgba(38, 34, 31, 0.74);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.45;
}

.branch-groups li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #ffbd3f;
}

.locations-page .line-rise {
  animation: line-rise 560ms cubic-bezier(0.2, 0.82, 0.2, 1) both;
  animation-delay: var(--line-delay, 0ms);
}

@keyframes line-rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes mobile-menu-drop {
  from {
    clip-path: inset(0 0 100% 0);
  }

  to {
    clip-path: inset(0);
  }
}

@keyframes mobile-menu-link-rise {
  from {
    opacity: 0;
    transform: translateY(-14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.branch-map {
  position: sticky;
  top: 24px;
  align-self: start;
}

.locations-map-image {
  display: block;
  width: min(100%, 360px);
  margin: 0 auto;
  border-radius: 8px;
  opacity: 0.68;
  filter: saturate(0.92);
}

.characters-page-section {
  min-height: calc(100vh - 82px);
  padding: 0 clamp(24px, 4vw, 72px) clamp(72px, 7vw, 108px);
}

.characters-inner {
  width: min(100%, 1500px);
  margin: 0 auto;
}

.characters-page-section h1 {
  margin: 0 0 clamp(58px, 6vw, 96px);
  color: var(--heading-ink);
  text-align: center;
  font-family: var(--display-font);
  font-size: clamp(32px, 3vw, 46px);
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0;
}

.characters-page-section h1 strong {
  display: inline;
  width: auto;
  color: #ff6b12;
  font-weight: 600;
  background: none;
  -webkit-text-fill-color: currentColor;
}

.character-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 1.5vw, 24px);
}

.character-card {
  --character-card-bg: #fff;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(15, 15, 15, 0.18);
  border-radius: 8px;
  background: var(--character-card-bg);
  box-shadow: 0 16px 34px rgba(38, 34, 31, 0.08);
}

.character-card img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 5;
  border-radius: 8px;
  background: var(--character-card-bg);
  object-fit: cover;
  object-position: center;
}

.character-card img.character-card-zoom {
  transform: scale(1.015);
}

.character-card h2 {
  min-height: 48px;
  display: grid;
  place-items: center;
  margin: 0;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(15, 15, 15, 0.12);
  font-size: clamp(17px, 1.5vw, 24px);
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
}

.character-card h2 + img,
.character-card img + h2 {
  border-top: 1px solid rgba(15, 15, 15, 0.12);
}

@media (max-width: 1060px) {
  body {
    padding-top: 82px;
  }

  .home-page .hero-shell {
    animation: none;
    transform: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 30;
    background:
      radial-gradient(circle at 86% 8%, rgba(93, 116, 73, 0.08), transparent 22rem),
      linear-gradient(135deg, rgba(252, 250, 245, 0.94) 0%, rgba(250, 246, 239, 0.94) 58%, rgba(244, 236, 227, 0.94) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .nav-links {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-header.is-menu-open .nav-links {
    width: 100%;
    height: 100vh;
    height: 100dvh;
    min-height: 100svh;
    max-height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: clamp(10px, 2.2dvh, 16px);
    position: fixed;
    inset: 0;
    z-index: 40;
    padding: calc(env(safe-area-inset-top) + clamp(126px, 16dvh, 156px)) 28px calc(env(safe-area-inset-bottom) + 34px);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    background:
      radial-gradient(circle at 78% 18%, rgba(255, 189, 63, 0.24), transparent 16rem),
      radial-gradient(circle at 18% 82%, rgba(45, 110, 163, 0.14), transparent 18rem),
      rgba(255, 253, 248, 0.98);
    color: #26221f;
    animation: mobile-menu-drop 420ms cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .site-header.is-menu-open .brand {
    position: fixed;
    top: calc(env(safe-area-inset-top) + 22px);
    left: 50%;
    z-index: 41;
    transform: translateX(-50%);
  }

  .site-header.is-menu-open .brand img {
    width: 190px;
    filter: drop-shadow(0 10px 22px rgba(24, 28, 32, 0.16));
  }

  .site-header.is-menu-open .menu-toggle {
    display: none;
  }

  .site-header.is-menu-open .mobile-home-link {
    display: flex;
    color: inherit;
  }

  .site-header.is-menu-open .nav-links a {
    position: relative;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px 0;
    border-radius: 0;
    font-family: var(--body-font);
    font-size: clamp(24px, 6.8vw, 36px);
    font-weight: 600;
    line-height: 1.24;
    text-align: center;
    opacity: 0;
    animation: mobile-menu-link-rise 520ms cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .site-header.is-menu-open .nav-links a::before,
  .site-header.is-menu-open .nav-links a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -8px;
    height: 2px;
    border-radius: 999px;
    transform: translateX(-50%);
    pointer-events: none;
  }

  .site-header.is-menu-open .nav-links a::before {
    width: 100%;
    background: rgba(255, 107, 18, 0.18);
    opacity: 0;
    transition: opacity 180ms ease;
  }

  .site-header.is-menu-open .nav-links a::after {
    width: 0;
    background: #ff6b12;
    transition: width 320ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .site-header.is-menu-open .nav-links a.is-selecting {
    color: #ff6b12;
  }

  .site-header.is-menu-open .nav-links a.is-selecting::before {
    opacity: 1;
  }

  .site-header.is-menu-open .nav-links a.is-selecting::after {
    width: 100%;
  }

  .site-header.is-menu-open .nav-links a:nth-child(1) {
    animation-delay: 110ms;
  }

  .site-header.is-menu-open .nav-links a:nth-child(2) {
    animation-delay: 160ms;
  }

  .site-header.is-menu-open .nav-links a:nth-child(3) {
    animation-delay: 210ms;
  }

  .site-header.is-menu-open .nav-links a:nth-child(4) {
    animation-delay: 260ms;
  }

  .site-header.is-menu-open .nav-links a:nth-child(5) {
    animation-delay: 310ms;
  }

  .site-header.is-menu-open .nav-links a:nth-child(6) {
    animation-delay: 360ms;
  }

  .site-header.is-menu-open .mobile-menu-close {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: clamp(6px, 1.6dvh, 14px);
    padding: 0 22px;
    border: 1px solid rgba(75, 58, 44, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.68);
    color: rgba(38, 34, 31, 0.72);
    font: inherit;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    box-shadow: 0 10px 24px rgba(75, 58, 44, 0.08);
    cursor: pointer;
    opacity: 0;
    animation: mobile-menu-link-rise 520ms cubic-bezier(0.22, 1, 0.36, 1) 410ms both;
  }

  .site-header.is-menu-open .mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.86);
    color: #26221f;
  }

  .site-header.is-menu-open .nav-links a:hover {
    color: #ff6b12;
    background: transparent;
  }

  .contact-cta {
    grid-template-columns: 1fr;
  }

  .guide-hero-refresh,
  .guide-feature-section,
  .guide-app-layout {
    grid-template-columns: 1fr;
  }

  .guide-hero-board {
    width: min(100%, 620px);
    min-height: 420px;
  }

  .guide-flow-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .guide-feature-copy {
    max-width: 760px;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0 0 0 48px;
  }

  .polaroid-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .portfolio-case {
    grid-template-columns: 1fr;
  }

  .process-grid::before,
  .process-grid::after {
    width: 2px;
    height: auto;
    top: 10px;
    bottom: 10px;
    right: auto;
    left: 17px;
  }

  .process-grid::after {
    height: 28%;
    bottom: auto;
    animation: process-flow-mobile 4.8s ease-in-out infinite;
  }

  .process-grid li {
    padding: 0 0 34px;
  }

  .process-grid li:last-child {
    padding-bottom: 0;
  }

  .process-grid span {
    top: -2px;
    left: -48px;
    margin: 0;
  }

  .process-grid li::after {
    display: none;
  }

  .contact-copy,
  .contact-form {
    justify-self: center;
    width: min(100%, 720px);
  }

  .branch-panel {
    max-height: none;
  }
}

@media (max-width: 1060px) {
  .hero-shell {
    min-height: auto;
  }

  .hero {
    min-height: 620px;
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 28px;
  }

  .hero-bg {
    background:
      linear-gradient(180deg, rgba(250, 247, 241, 0.4) 0%, rgba(250, 247, 241, 0.86) 52%, rgba(250, 247, 241, 0.98) 100%),
      linear-gradient(180deg, rgba(23, 29, 36, 0.04), rgba(23, 29, 36, 0.18)),
      var(--slide-image) var(--mobile-focus, center center) / cover no-repeat;
  }

  .hero-copy {
    width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
    justify-self: start;
    transform: none;
  }

  .memory-stage,
  .hero[data-active-slide="2"] .memory-stage {
    width: min(660px, 100%);
    justify-self: start;
    transform: none;
  }

  .photo-stack {
    height: 360px;
    min-height: 360px;
    transform: translateX(-84px) scale(0.76);
    transform-origin: top left;
  }

  .event-fields {
    padding-top: 38px;
  }
}

@media (min-width: 681px) and (max-width: 1060px) {
  .hero {
    min-height: 560px;
    align-items: start;
    align-content: start;
    padding: 12px 32px 44px;
  }

  .hero-copy {
    order: 2;
    width: min(100%, 640px);
    max-width: 640px;
    margin-top: -36px;
    transform: none;
  }

  .hero[data-active-slide="2"] .hero-copy {
    margin-top: -36px;
  }

  h1 {
    font-size: 40px;
    line-height: 1.4;
  }

  .hero-note {
    display: none;
  }

  .memory-stage {
    order: 1;
    min-height: 260px;
    width: min(660px, 100%);
    margin-top: 0;
    margin-bottom: 0;
    transform: translateY(-86px);
  }

  .hero[data-active-slide="2"] .memory-stage {
    margin-top: 0;
    margin-bottom: 0;
    transform: translateY(-82px);
  }

  .hero[data-active-slide="2"] .photo-stack {
    transform: translate(-84px, -20px) scale(0.76);
  }

  .event-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }

  .event-card-media {
    aspect-ratio: 16 / 9;
  }

  .event-card > div:not(.event-card-media) {
    padding: 16px 15px 18px;
  }

  .event-card h3 {
    font-size: 18px;
    line-height: 1.38;
  }

  .event-card p {
    margin-top: 10px;
    font-size: 13.5px;
    line-height: 1.62;
  }
}

@media (min-width: 901px) and (max-width: 1060px) {
  .event-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }

  .event-card-media {
    aspect-ratio: 16 / 9;
  }

  .event-card > div:not(.event-card-media) {
    padding: 18px 18px 20px;
  }

  .event-card h3 {
    font-size: 19px;
    line-height: 1.38;
  }

  .event-card p {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.64;
  }
}

@media (max-width: 680px) {
  body {
    padding-top: 72px;
  }

  .hero-shell {
    min-height: auto;
  }

  .site-header {
    height: 72px;
    padding: 0 20px;
  }

  .brand img {
    width: 150px;
  }

  .hero {
    min-height: 560px;
    align-items: start;
    gap: 0;
    padding: 6px 20px 34px;
  }

  .hero-bg {
    background:
      linear-gradient(180deg, rgba(250, 247, 241, 0.1) 0%, rgba(250, 247, 241, 0.16) 48%, rgba(250, 247, 241, 0.76) 72%, rgba(250, 247, 241, 0.96) 100%),
      linear-gradient(180deg, rgba(23, 29, 36, 0.02), rgba(23, 29, 36, 0.1)),
      var(--slide-image) var(--mobile-focus, center center) / cover no-repeat;
  }

  .hero-copy {
    order: 2;
    margin-top: -28px;
  }

  .hero[data-active-slide="2"] .hero-copy {
    margin-top: -42px;
  }

  .hero-eyebrow {
    margin-bottom: 12px;
    font-size: 13px;
  }

  h1 {
    font-size: 32px;
    line-height: 1.4;
  }

  .hero-note {
    display: none;
  }

  .guide-hero-refresh {
    gap: 24px;
  }

  .guide-hero-branded {
    min-height: 280px;
    margin-right: -20px;
    margin-left: -20px;
    padding: 72px 20px 58px;
  }

  .guide-hero-branded::before {
    content: "";
    background:
      radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.3), transparent 22rem),
      linear-gradient(132deg, #dcad88 0%, #d0b69a 54%, #a6c0c2 100%);
    opacity: 1;
    filter: none;
  }

  .guide-hero-branded .guide-heading h1 {
    font-size: 34px;
    line-height: 1.22;
  }

  .guide-hero-board {
    min-height: 360px;
  }

  .guide-hero-board-main {
    width: 70%;
    top: 42px;
  }

  .guide-hero-board-phone {
    width: 44%;
  }

  .guide-flow-section,
  .guide-feature-section,
  .guide-app-section {
    padding: 52px 20px;
  }

  .guide-flow-section {
    padding-top: 28px;
    padding-right: 10px;
    padding-left: 10px;
  }

  .guide-flow-list {
    grid-template-columns: 1fr;
  }

  .guide-flow-list li {
    min-height: auto;
    padding: 24px 20px;
  }

  .guide-flow-list span {
    margin-bottom: 18px;
  }

  .guide-safety-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    gap: 8px;
    margin: 0 auto;
  }

  .guide-safety-grid img {
    box-shadow: 0 10px 24px rgba(60, 35, 61, 0.12);
  }

  .guide-phone-shot img {
    width: min(100%, 280px);
    margin: 0 auto;
  }

  .memory-stage {
    order: 1;
    min-height: 280px;
  }

  .photo-stack {
    width: 760px;
    height: 400px;
    min-height: 400px;
    transform: translateX(-28px) scale(0.46);
    transform-origin: top left;
  }

  .hero[data-active-slide="2"] .photo-stack {
    transform: translate(-28px, 24px) scale(0.46);
  }

  .archive-photo {
    border-width: 7px;
    border-bottom-width: 26px;
    opacity: 0.42;
  }

  .featured-photo {
    width: 230px;
    padding: 9px 9px 32px;
  }

  .support-left {
    left: 142px;
    top: 184px;
  }

  .hero-center {
    left: 306px;
    top: 106px;
    width: 282px;
  }

  .support-right {
    left: 516px;
    top: 188px;
  }

  .home-section {
    padding: 52px 20px;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .section-kicker {
    font-size: 12px;
  }

  .section-heading h2,
  .contact-copy h2 {
    font-size: 25px;
    font-weight: 720;
    line-height: 1.4;
  }

  .event-card-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .event-card-media {
    width: 100%;
    height: clamp(148px, 42vw, 176px);
    aspect-ratio: auto;
    max-height: none;
  }

  .event-card > div:not(.event-card-media) {
    padding: 18px 20px 20px;
  }

  .event-card h3,
  .process-grid h3 {
    font-size: 19px;
    font-weight: 720;
    line-height: 1.44;
  }

  .event-card p,
  .process-grid p,
  .contact-copy p {
    font-size: 14.5px;
    line-height: 1.72;
  }

  .process-grid li {
    padding-bottom: 30px;
  }

  .process-grid span {
    margin-bottom: 0;
  }

  .contact-cta {
    gap: 28px;
    padding: 58px 20px;
  }

  .contact-form {
    padding: 20px;
  }

  .locations-main {
    padding: 0 18px 68px;
  }

  .guide-main {
    padding: 0 20px 72px;
  }

  .portfolio-main {
    padding: 0 20px 72px;
  }

  .guide-hero {
    margin-bottom: 46px;
  }

  .guide-heading h1 {
    font-size: 28px;
    line-height: 1.4;
  }

  .portfolio-heading h1 {
    font-size: 28px;
    line-height: 1.4;
  }

  .guide-heading p:last-child {
    margin-top: 16px;
    font-size: 14.5px;
    line-height: 1.68;
  }

  .portfolio-heading p:last-child {
    margin-top: 16px;
    font-size: 14.5px;
    line-height: 1.68;
  }

  .company-overview {
    padding: 54px 20px 68px;
  }

  .company-character-marquee {
    padding: 18px 0 22px;
  }

  .company-character-track,
  .company-character-set {
    gap: 18px;
  }

  .company-character-set {
    padding-right: 18px;
  }

  .company-character-set img {
    width: 108px;
    height: 108px;
    border-radius: 18px;
    clip-path: inset(2px round 16px);
  }

  .company-overview-head {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 34px;
  }

  .company-overview h2 {
    font-size: 28px;
  }

  .company-overview-head p:last-child {
    margin-top: 16px;
    font-size: 14.5px;
    line-height: 1.68;
  }

  .company-service-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .company-service-card {
    min-height: auto;
    padding: 24px 22px 28px;
  }

  .company-service-icon {
    width: 100%;
    height: 160px;
    margin-bottom: 22px;
  }

  .company-service-icon img {
    width: min(100%, 260px);
    height: 100%;
  }

  .company-service-card-app .company-service-icon img {
    width: min(100%, 260px);
    height: 100%;
  }

  .company-service-card h3 {
    font-size: 24px;
    text-align: center;
  }

  .company-service-card p {
    margin-top: 16px;
    padding-top: 16px;
    font-size: 14.5px;
    line-height: 1.68;
  }

  .portfolio-case-media {
    min-height: 232px;
  }

  .portfolio-support-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
    padding: 7px;
  }

  .portfolio-support-grid figcaption {
    min-height: 48px;
    padding: 8px 7px 9px;
    font-size: 11px;
    line-height: 1.35;
  }

  .portfolio-photo-grid {
    gap: 7px;
    padding: 7px;
  }

  .portfolio-photo-grid-three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: 1fr;
  }

  .portfolio-case-copy {
    padding: 22px 20px 24px;
  }

  .portfolio-case h2 {
    font-size: 25px;
    gap: 10px;
  }

  .portfolio-case h2::before {
    width: 3px;
  }

  .portfolio-case-copy p:last-child {
    font-size: 14.5px;
    line-height: 1.68;
  }

  .guide-process {
    margin-bottom: 58px;
  }

  .polaroid-grid {
    gap: 16px;
  }

  .polaroid-card {
    padding: 8px 8px 24px;
    box-shadow: 0 16px 32px rgba(38, 34, 31, 0.12);
  }

  .polaroid-card figcaption {
    margin-top: 12px;
    font-size: 17px;
  }

  .locations-heading h1 {
    font-size: 28px;
    line-height: 1.4;
  }

  .branch-panel {
    padding: 18px;
  }

  .branch-content {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .locations-map-image {
    width: 100%;
    opacity: 0.76;
  }

  .branch-groups li {
    font-size: 20px;
  }

  .branch-panel-head h2 {
    font-size: 28px;
  }

  .site-footer {
    padding: 18px 20px 20px;
    font-size: 11px;
    line-height: 1.55;
  }

  .footer-links {
    margin-bottom: 10px;
    font-size: 12px;
  }

  .company-section {
    padding: 76px 20px 80px;
  }

  .company-section h1,
  .company-section h2 {
    margin-bottom: 42px;
    font-size: 28px;
  }

  .company-lede {
    font-size: 15px;
    line-height: 1.58;
  }

  .characters-page-section {
    min-height: auto;
    padding: 0 20px 72px;
  }

  .characters-page-section h1 {
    margin-bottom: 38px;
    text-align: left;
    font-size: 28px;
  }

  .character-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .character-card h2 {
    min-height: 40px;
    font-size: 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-page .hero-shell,
  .home-page h1 span,
  .home-page h1 strong,
  .home-page h1 strong::after,
  .splash-screen,
  .splash-screen img,
  .event-card-slider,
  .company-character-track,
  .process-grid::after,
  .process-grid span,
  .portfolio-case h2::before,
  .portfolio-title-letters > span > span,
  .site-header.is-menu-open .nav-links,
  .site-header.is-menu-open .nav-links a,
  .site-header.is-menu-open .mobile-menu-close {
    animation: none;
  }

  .locations-page .line-rise {
    animation: none;
  }

  .splash-screen {
    display: none;
  }

  .hero-bg,
  .memory-photo,
  .memory-stage,
  .event-card,
  .process-grid li::after {
    transition: none;
  }

  .event-card {
    opacity: 1;
    transform: none;
  }

  .home-page h1 span,
  .home-page h1 strong {
    opacity: 1;
    transform: none;
  }

  .portfolio-title-letters > span > span {
    opacity: 1;
    transform: none;
  }

  .site-header.is-menu-open .nav-links a,
  .site-header.is-menu-open .mobile-menu-close {
    opacity: 1;
    transform: none;
  }

  .home-page h1 strong::after {
    display: none;
  }
}

@keyframes process-flow-mobile {
  0%,
  8% {
    transform: translateY(0);
  }

  92%,
  100% {
    transform: translateY(260%);
  }
}

.portfolio-hero.subpage-photo-hero,
.locations-hero.subpage-photo-hero,
.characters-title-hero.subpage-photo-hero {
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: clamp(35px, 5vw, 67px) clamp(24px, 5vw, 72px);
}

.portfolio-hero.subpage-photo-hero,
.locations-hero.subpage-photo-hero {
  margin-top: 0;
  margin-bottom: clamp(42px, 6vw, 76px);
}

.characters-title-hero.subpage-photo-hero {
  margin-top: 0;
  margin-bottom: clamp(42px, 5vw, 76px);
}

.company-section.subpage-photo-hero,
.guide-hero-branded {
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.company-section.subpage-photo-hero {
  padding: clamp(58px, 7vw, 96px) clamp(24px, 6vw, 96px);
}

.company-section.subpage-photo-hero h1 {
  margin-bottom: clamp(24px, 3vw, 42px);
}

.subpage-photo-hero .portfolio-heading,
.subpage-photo-hero .locations-heading,
.subpage-photo-hero .company-inner,
.guide-hero-branded .guide-heading {
  max-width: min(100%, 980px);
  margin: 0 auto;
}

.subpage-photo-hero .portfolio-heading h1,
.subpage-photo-hero .locations-heading h1,
.subpage-photo-hero .company-inner h1,
.characters-title-hero h1,
.characters-title-hero h1 strong,
.guide-hero-branded .guide-heading h1 {
  color: #fffef8;
  text-shadow:
    0 3px 10px rgba(38, 34, 31, 0.42),
    0 12px 34px rgba(38, 34, 31, 0.36);
}

.subpage-photo-hero .company-inner h1,
.subpage-photo-hero .portfolio-heading h1,
.subpage-photo-hero .locations-heading h1,
.characters-title-hero h1,
.guide-hero-branded .guide-heading h1 {
  margin: 0;
  font-size: clamp(30px, 3.5vw, 48px);
  line-height: 1.4;
}

.subpage-photo-hero .section-kicker,
.subpage-photo-hero .company-eyebrow,
.guide-hero-branded .section-kicker {
  margin: 0 0 12px;
  color: rgba(246, 224, 190, 0.94);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  text-shadow: 0 5px 16px rgba(38, 34, 31, 0.18);
}

.subpage-photo-hero .portfolio-heading p:last-child,
.subpage-photo-hero .company-lede {
  color: rgba(255, 254, 248, 0.92);
  text-shadow: 0 3px 12px rgba(38, 34, 31, 0.36);
}

.subpage-photo-hero .portfolio-heading p:last-child {
  display: none;
}

.locations-page {
  --locations-point: #b87843;
  --locations-point-deep: #8a5730;
  --locations-point-soft: #d29a56;
}

.locations-page .branch-tabs button.is-active {
  border-bottom-color: var(--locations-point);
  color: var(--locations-point-deep);
}

.locations-page .branch-groups h3 {
  color: var(--locations-point-deep);
}

.locations-page .branch-groups li::before {
  background: var(--locations-point-soft);
}

.subpage-hero-company {
  --subpage-hero-gradient:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.28), transparent 22rem),
    linear-gradient(135deg, #98b5ad 0%, #d2a484 58%, #e2c4a3 100%);
}

.subpage-hero-characters {
  --subpage-hero-gradient:
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.3), transparent 21rem),
    linear-gradient(150deg, #94bad4 0%, #d5abc8 54%, #e2b78f 100%);
}

.subpage-hero-portfolio {
  --subpage-hero-gradient:
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.3), transparent 22rem),
    linear-gradient(128deg, #a2a0c8 0%, #b0c7d3 52%, #d5b694 100%);
}

.subpage-hero-locations {
  --subpage-hero-gradient:
    radial-gradient(circle at 78% 20%, rgba(255, 255, 255, 0.28), transparent 22rem),
    linear-gradient(140deg, #9ab895 0%, #a7bfb5 54%, #d3bc96 100%);
}

.guide-hero-branded::before {
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.3), transparent 22rem),
    linear-gradient(132deg, #dcad88 0%, #d0b69a 54%, #a6c0c2 100%);
}

.company-section.subpage-photo-hero,
.portfolio-hero.subpage-photo-hero,
.locations-hero.subpage-photo-hero,
.characters-title-hero.subpage-photo-hero,
.guide-hero-branded {
  min-height: clamp(182px, 24vw, 294px);
  padding-top: clamp(46px, 6vw, 72px);
  padding-bottom: clamp(46px, 6vw, 72px);
}

@media (max-width: 680px) {
  .company-section.subpage-photo-hero,
  .portfolio-hero.subpage-photo-hero,
  .locations-hero.subpage-photo-hero,
  .characters-title-hero.subpage-photo-hero,
  .guide-hero-branded {
    min-height: 182px;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .subpage-photo-hero .company-inner h1,
  .subpage-photo-hero .portfolio-heading h1,
  .subpage-photo-hero .locations-heading h1,
  .characters-title-hero h1,
  .guide-hero-branded .guide-heading h1 {
    font-size: 26px;
    line-height: 1.28;
  }
}

@media (max-width: 680px) {
  .guide-flow-cards {
    gap: 12px;
  }

  .guide-flow-cards .guide-flow-card {
    min-height: 188px;
    grid-template-columns: minmax(0, 0.48fr) minmax(112px, 0.52fr);
    gap: 8px;
    padding: 20px 14px 20px 18px;
  }

  .guide-flow-cards .guide-flow-copy span {
    margin-bottom: 14px;
    font-size: 28px;
  }

  .guide-flow-cards .guide-flow-copy h3 {
    font-size: 21px;
    line-height: 1.28;
  }

  .guide-flow-cards .guide-flow-copy p {
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.58;
  }

  .guide-flow-visual img {
    width: 100%;
    max-height: 146px;
  }
}

@media (min-width: 681px) {
  .guide-flow-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(14px, 1.5vw, 22px);
  }

  .guide-flow-cards .guide-flow-card {
    min-height: clamp(250px, 22vw, 310px);
    grid-template-columns: minmax(170px, 0.46fr) minmax(190px, 0.54fr);
    gap: clamp(14px, 2vw, 28px);
    padding: clamp(24px, 3vw, 36px);
  }

  .guide-flow-cards .guide-flow-copy span {
    margin-bottom: 18px;
    font-size: clamp(30px, 2.8vw, 38px);
  }

  .guide-flow-cards .guide-flow-copy h3 {
    font-size: clamp(22px, 2vw, 28px);
    line-height: 1.28;
  }

  .guide-flow-cards .guide-flow-copy p {
    margin-top: 12px;
    font-size: clamp(14px, 1.2vw, 16px);
    line-height: 1.68;
  }

  .guide-flow-visual img {
    max-height: 220px;
  }
}
