:root {
  --ink: #060606;
  --paper: #f6f6f3;
  --white: #ffffff;
  --muted: #6f6f6f;
  --line: #d4d4d0;
  --gray: #636363;
  --green: #1d3822;
  --acid: #eef7e8;
  --red: #e54339;
  --blue: #0f64e8;
  --peach: #ffd2bd;
  --pink: #c4a8bc;
  --serif: Georgia, "Times New Roman", serif;
  --display: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  --mono: "Courier New", Courier, monospace;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

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

@keyframes soft-scale {
  from {
    opacity: 0;
    transform: scale(0.96);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes gradient-drift {
  0% {
    background-position: 0% 50%, 50% 50%, 0% 50%;
  }

  50% {
    background-position: 60% 45%, 42% 55%, 100% 50%;
  }

  100% {
    background-position: 0% 50%, 50% 50%, 0% 50%;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 140px 1fr 140px;
  align-items: center;
  min-height: 90px;
  padding: 8px clamp(16px, 3vw, 36px);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.brand-mark {
  width: clamp(76px, 9vw, 112px);
  height: clamp(58px, 7vw, 76px);
  object-fit: contain;
  object-position: left center;
}

.brand-title {
  justify-self: center;
  font-family: var(--serif);
  font-size: clamp(25px, 3.2vw, 34px);
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.brand-mark,
.brand-title,
.menu-toggle {
  animation: fade-up 700ms ease both;
}

.brand-title {
  animation-delay: 90ms;
}

.menu-toggle {
  animation-delay: 160ms;
}

.menu-toggle,
.menu-close {
  justify-self: end;
  display: grid;
  place-items: center;
  width: 72px;
  height: 58px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.menu-lines,
.menu-lines::before,
.menu-lines::after {
  display: block;
  width: 52px;
  height: 4px;
  background: currentColor;
  content: "";
}

.menu-lines {
  position: relative;
}

.menu-lines::before,
.menu-lines::after {
  position: absolute;
  left: 0;
}

.menu-lines::before {
  top: -15px;
}

.menu-lines::after {
  top: 15px;
}

.menu-close {
  position: absolute;
  top: 28px;
  right: 34px;
  width: 54px;
  height: 54px;
}

.close-icon,
.close-icon::after {
  display: block;
  width: 42px;
  height: 4px;
  background: currentColor;
  content: "";
}

.close-icon {
  transform: rotate(45deg);
}

.close-icon::after {
  transform: rotate(90deg);
}

.menu-panel {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: 1fr minmax(280px, 420px);
  visibility: hidden;
  pointer-events: none;
}

.menu-panel.is-open {
  visibility: visible;
  pointer-events: auto;
}

.menu-scrim {
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(3px);
}

.menu-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  min-height: 100vh;
  padding: 100px 42px 48px;
  background: var(--white);
  border-left: 1px solid var(--line);
  transform: translateX(100%);
  transition: transform 220ms ease;
}

.menu-panel.is-open .menu-content {
  transform: translateX(0);
}

.menu-content a {
  padding: 12px 0;
  font-family: var(--display);
  font-size: clamp(34px, 6vw, 54px);
  line-height: 0.95;
  text-transform: uppercase;
}

.menu-content a:hover {
  color: var(--blue);
}

.hero {
  min-height: calc(100vh - 90px);
  display: grid;
  place-items: start center;
  padding-top: clamp(95px, 15vh, 140px);
  text-align: center;
  color: var(--white);
  background:
    radial-gradient(circle at 62% 17%, rgba(255, 206, 186, 0.95), transparent 22%),
    radial-gradient(circle at 55% 55%, rgba(0, 96, 228, 0.9), transparent 34%),
    linear-gradient(110deg, #b9aac6 0%, #c5aabc 34%, #f2bdb5 55%, #8d9acb 100%);
  background-size: 120% 120%, 140% 140%, 220% 220%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  animation: gradient-drift 16s ease-in-out infinite;
}

.hero h1 {
  margin: 0 0 24px;
  font-family: var(--display);
  font-size: clamp(38px, 4.4vw, 52px);
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
  animation: fade-up 850ms 180ms ease both;
}

.hero .pill-button {
  animation: fade-up 850ms 320ms ease both;
}

.pill-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--white);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 15px;
  line-height: 1.2;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.pill-button:hover,
.pill-button:focus-visible {
  transform: translateY(-2px);
  background: var(--ink);
  color: var(--white);
}

.collage {
  position: relative;
  min-height: 1120px;
  overflow: hidden;
  background:
    radial-gradient(circle at 60% 4%, rgba(255, 208, 187, 0.95), transparent 18%),
    radial-gradient(circle at 62% 42%, rgba(0, 98, 224, 0.98), transparent 38%),
    linear-gradient(110deg, #c7abc0 0%, #f3c1b1 35%, #0768e7 72%, #1268e8 100%);
}

.collage-inner {
  position: sticky;
  top: 110px;
  min-height: 700px;
  will-change: transform;
}

.visual-card {
  position: absolute;
  overflow: hidden;
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.12);
  transition: transform 500ms ease, box-shadow 500ms ease;
  will-change: transform;
}

.visual-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.visual-card:hover {
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.18);
}

.visual-card:hover img {
  transform: scale(1.035);
}

.architecture-card {
  left: 0;
  top: 190px;
  width: min(38vw, 480px);
  height: 520px;
}

.architecture-card img {
  opacity: 0.72;
}

.logo-card {
  left: 50%;
  top: 72px;
  width: min(25vw, 320px);
  height: 594px;
  transform: translateX(-50%);
}

.logo-card img {
  object-fit: contain;
}

.network-card {
  right: 8%;
  top: 285px;
  width: min(19vw, 235px);
  height: 465px;
}

.dream-word {
  position: absolute;
  left: 22%;
  bottom: 0;
  margin: 0;
  color: rgba(0, 0, 0, 0.72);
  font-family: var(--display);
  font-size: clamp(104px, 21vw, 286px);
  font-style: italic;
  line-height: 0.72;
  text-transform: uppercase;
  white-space: nowrap;
  mix-blend-mode: multiply;
  will-change: transform, opacity;
}

.dark-band {
  position: relative;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.72);
  background: var(--ink);
}

.dark-band::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.72)),
    var(--flower-url) left top / cover no-repeat;
  opacity: 0.78;
  content: "";
}

.about-section,
.services-section {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  padding: 150px clamp(22px, 4vw, 42px) 80px;
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 720ms ease, transform 720ms ease;
}

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

.about-section {
  min-height: 620px;
}

.section-label {
  margin: 0 0 32px;
  color: var(--white);
  font-family: var(--display);
  font-size: 14px;
  line-height: 1;
  text-transform: uppercase;
}

.dark-band h2,
.dark-band h3 {
  margin: 0;
  font-family: var(--display);
  line-height: 0.95;
  text-transform: uppercase;
}

.about-section h2 {
  max-width: 760px;
  margin: 0 auto 26px;
  color: rgba(255, 255, 255, 0.62);
  font-size: clamp(40px, 5.8vw, 70px);
}

.about-section p {
  max-width: 690px;
  margin: 0 auto 32px;
  font-family: var(--mono);
  font-size: 15px;
  line-height: 1.58;
}

.services-section {
  padding-top: 90px;
  padding-bottom: 140px;
}

.services-section .section-label {
  margin-bottom: 30px;
}

.services-section h2 {
  margin-bottom: 70px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(40px, 6vw, 72px);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 58px 56px;
  text-align: center;
}

.service-item h3 {
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 18px;
  line-height: 1.2;
}

.service-item p {
  margin: 0;
  font-family: var(--mono);
  font-size: 15px;
  line-height: 1.55;
}

.dream-cta {
  display: grid;
  place-items: center;
  min-height: 260px;
  padding: 54px 20px;
  text-align: center;
  background: var(--white);
}

.dream-cta h2 {
  margin: 0 0 28px;
  color: var(--muted);
  font-family: var(--display);
  font-size: clamp(18px, 2.7vw, 36px);
  line-height: 1;
  text-transform: uppercase;
}

.dream-cta p {
  margin: 0;
  color: var(--muted);
  font-family: var(--display);
  font-size: clamp(46px, 8vw, 96px);
  line-height: 0.9;
  text-transform: uppercase;
}

.site-footer {
  background: var(--gray);
  color: var(--white);
}

.footer-brand {
  padding: 54px clamp(24px, 6vw, 72px) 34px;
  font-family: var(--display);
  font-size: clamp(84px, 17vw, 206px);
  line-height: 0.8;
  text-transform: uppercase;
  overflow: hidden;
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 32px;
  padding: 22px clamp(24px, 6vw, 72px) 44px;
  font-family: var(--display);
  font-size: 15px;
  line-height: 1.65;
  text-transform: uppercase;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-legal {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding: 20px clamp(24px, 6vw, 72px) 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-family: var(--display);
  font-size: 13px;
  text-transform: uppercase;
}

.legal-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.page-hero {
  padding: 118px 24px 78px;
  text-align: center;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(44px, 7vw, 76px);
  font-style: italic;
  line-height: 1;
  text-transform: uppercase;
}

.portfolio-list {
  max-width: 1130px;
  margin: 0 auto;
  padding: 76px clamp(20px, 4vw, 40px) 120px;
}

.portfolio-row {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
  gap: clamp(28px, 5vw, 54px);
  align-items: stretch;
  margin-bottom: 36px;
  transition: transform 320ms ease;
}

.portfolio-row img {
  width: 100%;
  min-height: 260px;
  object-fit: cover;
  transition: transform 600ms ease, filter 600ms ease;
}

.portfolio-row:hover {
  transform: translateY(-6px);
}

.portfolio-row:hover img {
  filter: contrast(1.05);
  transform: scale(1.012);
}

.portfolio-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--ink);
  border-radius: 40px 0 0 88px;
  font-family: var(--display);
  font-size: clamp(42px, 5vw, 74px);
  line-height: 0.95;
  text-align: center;
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.portfolio-link:hover,
.portfolio-link:focus-visible {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.portfolio-link span {
  font-size: 0.55em;
  margin-left: 8px;
}

.studio-story {
  position: relative;
  overflow: hidden;
  padding: 72px 24px 210px;
  text-align: center;
  background: #f1f1f1;
}

.studio-story h1,
.studio-story h2,
.studio-story p {
  animation: fade-up 760ms ease both;
}

.studio-story h2 {
  animation-delay: 120ms;
}

.studio-story p {
  animation-delay: 220ms;
}

.studio-story h1,
.studio-story h2,
.values h2,
.team h2,
.contact-copy h1,
.contact-copy h2,
.form-panel h2,
.text-page h1 {
  margin: 0;
  font-family: var(--display);
  line-height: 1;
  text-transform: uppercase;
}

.studio-story h1 {
  margin-bottom: 30px;
  font-size: clamp(24px, 3vw, 34px);
}

.studio-story h2 {
  max-width: 720px;
  margin: 0 auto 28px;
  font-size: clamp(46px, 6vw, 74px);
}

.studio-story p {
  max-width: 690px;
  margin: 0 auto;
  font-family: var(--mono);
  font-size: 15px;
  line-height: 1.45;
  text-transform: uppercase;
}

.studio-story::after {
  position: absolute;
  left: -3%;
  right: -3%;
  bottom: -2px;
  height: 160px;
  background: var(--gray);
  clip-path: polygon(0 48%, 9% 35%, 17% 58%, 26% 36%, 33% 72%, 41% 34%, 50% 55%, 59% 37%, 67% 59%, 75% 34%, 82% 72%, 89% 36%, 100% 53%, 100% 100%, 0 100%);
  content: "";
}

.values {
  padding: 32px clamp(24px, 6vw, 72px) 92px;
  color: var(--white);
  background: var(--gray);
  text-align: center;
}

.values h2 {
  margin-bottom: 74px;
  font-size: clamp(42px, 6vw, 72px);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px 70px;
  text-align: center;
}

.values-grid h3 {
  margin: 0 0 24px;
  color: var(--red);
  font-family: var(--display);
  font-size: 18px;
  text-transform: uppercase;
  transition: color 220ms ease, transform 220ms ease;
}

.values-grid p {
  margin: 0;
  font-family: var(--mono);
  font-size: 15px;
  line-height: 1.45;
}

.values-grid article:hover h3 {
  color: var(--white);
  transform: translateY(-2px);
}

.team {
  display: grid;
  grid-template-columns: minmax(240px, 0.75fr) 1.25fr;
  gap: 78px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 112px clamp(24px, 5vw, 48px) 120px;
}

.team h2 {
  margin-bottom: 24px;
  font-size: clamp(44px, 5vw, 70px);
  text-transform: none;
}

.team p {
  margin: 0;
  font-family: var(--mono);
  font-size: 15px;
  line-height: 1.55;
  text-transform: uppercase;
}

.team-list {
  display: grid;
  gap: 42px;
}

.team-member {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 40px;
  align-items: start;
}

.team-member h3 {
  margin: 0 0 12px;
  font-family: var(--display);
  font-size: 30px;
  line-height: 1;
}

.contact-main {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
  gap: clamp(36px, 7vw, 86px);
  max-width: 1120px;
  margin: 0 auto;
  padding: 118px clamp(24px, 5vw, 48px) 98px;
}

.contact-main::before {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 96px;
  background:
    repeating-linear-gradient(90deg, rgba(0,0,0,0.05) 0 1px, transparent 1px 18px),
    repeating-linear-gradient(0deg, rgba(0,0,0,0.05) 0 1px, transparent 1px 18px);
  opacity: 0.5;
  clip-path: polygon(0 0, 100% 0, 100% 72%, 92% 61%, 83% 78%, 73% 55%, 62% 77%, 51% 62%, 40% 78%, 28% 57%, 15% 78%, 0 60%);
  content: "";
}

.contact-copy {
  position: relative;
  z-index: 1;
  text-align: center;
}

.contact-copy h1 {
  margin-bottom: 54px;
  font-size: clamp(34px, 4vw, 52px);
}

.contact-copy h2 {
  margin-bottom: 44px;
  font-size: clamp(48px, 6vw, 80px);
}

.contact-copy p {
  max-width: 600px;
  margin: 0 auto 32px;
  font-family: var(--mono);
  font-size: 16px;
  line-height: 1.48;
  text-transform: uppercase;
}

.contact-details {
  font-family: var(--display);
  line-height: 1.35;
  text-transform: uppercase;
}

.contact-poster {
  width: min(600px, 92%);
  margin: 26px auto 0;
}

.form-panel {
  position: relative;
  z-index: 1;
  padding: 30px 26px 34px;
  color: var(--white);
  background: var(--green);
}

.form-panel h2 {
  margin-bottom: 42px;
  font-size: 18px;
  text-align: center;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px 22px;
}

.field {
  display: grid;
  gap: 10px;
  font-family: var(--display);
  font-size: 16px;
  line-height: 1.1;
}

.field.wide {
  grid-column: span 2;
}

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

.field input,
.field textarea {
  width: 100%;
  min-height: 42px;
  border: 0;
  border-radius: 0;
  padding: 10px 12px;
  background: var(--acid);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  outline: 2px solid transparent;
  transition: background 160ms ease, outline-color 160ms ease;
}

.field input:focus,
.field textarea:focus {
  background: var(--white);
  outline-color: #9bc89b;
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.field.trap {
  display: none;
}

.form-submit {
  grid-column: 2 / span 1;
  min-height: 78px;
  border: 0;
  background: transparent;
  color: var(--white);
  font-family: var(--display);
  font-size: 18px;
  text-transform: uppercase;
  cursor: pointer;
}

.form-submit:hover,
.form-submit:focus-visible {
  color: #bfe6bf;
}

.form-note {
  grid-column: 1 / -1;
  min-height: 22px;
  margin: 0;
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.4;
}

.admin-main {
  min-height: calc(100vh - 84px);
  padding: 120px clamp(22px, 6vw, 86px) 70px;
  background: var(--paper);
}

.admin-panel {
  max-width: 980px;
  margin: 0 auto;
}

.admin-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
}

.admin-heading h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(46px, 9vw, 112px);
  line-height: 0.9;
}

.admin-login {
  display: grid;
  grid-template-columns: minmax(220px, 420px) minmax(140px, 210px);
  align-items: end;
  gap: 18px;
  margin-bottom: 18px;
}

.admin-submit {
  grid-column: auto;
  min-height: 62px;
  background: var(--ink);
}

.admin-list {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.admin-card {
  border: 1px solid var(--ink);
  background: var(--white);
  padding: 18px;
}

.admin-card-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 12px;
}

.admin-card h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 28px;
  line-height: 1;
}

.admin-card time,
.admin-line,
.admin-empty {
  font-family: var(--mono);
  font-size: 14px;
  line-height: 1.5;
}

.admin-line {
  margin: 6px 0 0;
  white-space: pre-wrap;
  word-break: break-word;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  .collage-inner,
  .visual-card,
  .dream-word {
    transform: none !important;
  }
}

.text-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 100px 24px 120px;
}

.text-page h1 {
  margin-bottom: 28px;
  font-size: clamp(44px, 7vw, 78px);
}

.text-page p {
  font-family: var(--mono);
  font-size: 16px;
  line-height: 1.65;
}

.wix-page {
  background: var(--white);
}

.wix-spacer {
  min-height: clamp(360px, 48vw, 760px);
}

.hub-feature {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(240px, 0.65fr);
  gap: clamp(48px, 10vw, 190px);
  align-items: center;
  max-width: 1050px;
  min-height: 640px;
  margin: 0 auto;
  padding: 70px clamp(24px, 7vw, 86px);
}

.hub-feature.reverse {
  grid-template-columns: minmax(240px, 0.65fr) minmax(260px, 0.9fr);
}

.hub-feature.reverse .hub-copy {
  order: 2;
}

.hub-feature.reverse .phone-photo {
  order: 1;
}

.hub-copy h1,
.hub-copy h2,
.split-title-hero h1,
.store-hero h1,
.partners-hero h1 {
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(42px, 6vw, 82px);
  line-height: 0.92;
  text-transform: uppercase;
}

.hub-copy p {
  max-width: 360px;
  margin: 28px 0 28px;
  font-size: 17px;
  line-height: 1.45;
}

.outline-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 14px;
  line-height: 1.2;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.outline-pill:hover,
.outline-pill:focus-visible {
  transform: translateY(-2px);
  background: var(--ink);
  color: var(--white);
}

.phone-photo {
  justify-self: center;
  width: min(265px, 52vw);
  aspect-ratio: 0.48;
  overflow: hidden;
  border: 7px solid var(--ink);
  border-radius: 24px;
  background: var(--white);
}

.phone-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stacked-photo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: min(535px, 82vw);
  border-radius: 22px;
}

.stacked-photo img {
  min-width: 0;
}

.split-title-hero {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(250px, 1fr);
  align-items: end;
  gap: clamp(34px, 6vw, 84px);
  min-height: 820px;
  padding: clamp(120px, 17vw, 260px) clamp(26px, 5vw, 56px) 58px;
  overflow: hidden;
  background: var(--white);
}

.split-title-hero.soft-gray {
  background: #eeeeee;
}

.split-title-hero h1 {
  font-size: clamp(34px, 4.5vw, 62px);
}

.fine-line {
  display: block;
  width: min(430px, 46vw);
  height: 2px;
  margin-top: 16px;
  background: var(--ink);
}

.hero-mark-tall {
  justify-self: center;
  width: min(420px, 42vw);
  max-height: 620px;
  object-fit: contain;
  filter: contrast(1.18);
}

.service-matrix {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 86px 62px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 110px clamp(24px, 6vw, 70px);
  text-align: center;
}

.service-matrix article {
  min-height: 160px;
}

.service-matrix p,
.website-package p,
.store-hero-copy p,
.image-copy-row p,
.partners-hero p,
.worked-list p {
  margin: 0;
  font-size: 16px;
  line-height: 1.45;
}

.service-matrix h2,
.website-package h2,
.website-package h3,
.store-hero-copy h2,
.image-copy-row h2,
.worked-list h2,
.worked-label {
  margin: 24px 0 0;
  font-family: var(--display);
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1;
  text-transform: uppercase;
}

.website-package {
  max-width: 1080px;
  margin: 0 auto;
  padding: 40px clamp(24px, 6vw, 70px) 120px;
}

.website-package > h2 {
  margin: 0 0 54px;
  font-size: clamp(48px, 8vw, 104px);
  text-align: center;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px 54px;
  align-items: center;
}

.package-grid img {
  width: 100%;
  min-height: 260px;
  object-fit: cover;
  grid-row: span 2;
}

.package-grid h3 {
  margin: 0 0 18px;
}

.store-hero {
  position: relative;
  min-height: 980px;
  overflow: hidden;
  display: grid;
  align-items: start;
  padding: 110px 0 0;
  background: #c8b7a9;
}

.store-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.store-hero h1 {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 100px auto 0;
  color: rgba(0, 0, 0, 0.58);
  font-size: clamp(64px, 10vw, 138px);
}

.store-hero-copy {
  position: absolute;
  left: clamp(22px, 7vw, 120px);
  bottom: clamp(42px, 8vw, 110px);
  z-index: 1;
  max-width: 330px;
  text-align: center;
}

.store-hero-copy h2 {
  margin: 0 0 28px;
  font-size: clamp(28px, 4vw, 46px);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 400;
}

.store-services {
  display: grid;
  gap: 96px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 120px clamp(24px, 6vw, 70px);
}

.image-copy-row {
  display: grid;
  grid-template-columns: minmax(260px, 1.15fr) minmax(260px, 0.85fr);
  gap: clamp(34px, 6vw, 74px);
  align-items: center;
}

.image-copy-row.reverse {
  grid-template-columns: minmax(260px, 0.85fr) minmax(260px, 1.15fr);
}

.image-copy-row.reverse img {
  order: 2;
}

.image-copy-row.reverse div {
  order: 1;
}

.image-copy-row img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
}

.image-copy-row.compact img {
  max-width: 420px;
  justify-self: center;
}

.partners-page {
  background: #eeeeee;
}

.partners-hero {
  min-height: 900px;
  display: grid;
  place-items: start center;
  align-content: start;
  padding: clamp(95px, 13vw, 150px) 24px;
  text-align: center;
}

.partners-hero h1 {
  font-family: var(--serif);
  font-size: clamp(52px, 8vw, 98px);
  font-weight: 400;
  letter-spacing: 0;
}

.partners-hero .glow-line {
  margin-top: 54px;
  font-size: 20px;
}

.partners-hero p:not(.glow-line) {
  max-width: 620px;
  margin: 26px auto 28px;
  font-size: 17px;
}

.worked-list {
  max-width: 980px;
  margin: 0 auto;
  padding: 70px clamp(24px, 6vw, 72px) 140px;
}

.worked-label {
  margin: 0 0 38px;
  font-size: 24px;
  text-transform: none;
}

.worked-list article {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 34px;
  align-items: start;
  padding: 34px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.18);
}

.worked-number {
  font-family: var(--display);
  font-size: clamp(64px, 10vw, 116px);
  line-height: 0.82;
}

.worked-list h2 {
  margin: 0 0 18px;
  font-size: 20px;
}

.service-industry-page .hero-mark-tall {
  width: min(520px, 44vw);
  max-height: 520px;
  border-radius: 0;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 86px 1fr 76px;
    min-height: 78px;
  }

  .admin-heading,
  .admin-card-head {
    align-items: start;
    flex-direction: column;
  }

  .admin-login {
    grid-template-columns: 1fr;
  }

  .admin-submit {
    width: 100%;
  }

  .menu-toggle {
    width: 56px;
    height: 48px;
  }

  .menu-lines,
  .menu-lines::before,
  .menu-lines::after {
    width: 38px;
    height: 3px;
  }

  .menu-lines::before {
    top: -12px;
  }

  .menu-lines::after {
    top: 12px;
  }

  .collage {
    min-height: 880px;
  }

  .collage-inner {
    position: relative;
    top: auto;
    min-height: 820px;
  }

  .architecture-card {
    left: -22px;
    top: 92px;
    width: 48vw;
    height: 390px;
  }

  .logo-card {
    top: 40px;
    width: 38vw;
    height: 500px;
  }

  .network-card {
    right: 4vw;
    top: 260px;
    width: 28vw;
    height: 360px;
  }

  .dream-word {
    left: 10%;
    bottom: 80px;
  }

  .service-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-row,
  .team,
  .contact-main {
    grid-template-columns: 1fr;
  }

  .portfolio-link {
    min-height: 180px;
  }

  .team-member {
    grid-template-columns: 1fr;
    gap: 14px;
  }

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

  .field.wide,
  .form-submit {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .footer-legal {
    align-items: flex-start;
    flex-direction: column;
  }

  .hub-feature,
  .hub-feature.reverse,
  .split-title-hero,
  .service-matrix,
  .package-grid,
  .image-copy-row,
  .image-copy-row.reverse {
    grid-template-columns: 1fr;
  }

  .hub-feature.reverse .hub-copy,
  .hub-feature.reverse .phone-photo,
  .image-copy-row.reverse img,
  .image-copy-row.reverse div {
    order: initial;
  }

  .wix-spacer {
    min-height: 260px;
  }

  .hub-feature {
    min-height: auto;
  }

  .split-title-hero {
    min-height: auto;
    padding-top: 110px;
  }

  .hero-mark-tall {
    width: min(420px, 78vw);
  }

  .service-matrix {
    gap: 46px;
  }

  .store-hero {
    min-height: 760px;
  }

  .store-hero h1 {
    margin-top: 70px;
  }

  .store-hero-copy {
    left: 24px;
    right: 24px;
    bottom: 54px;
    margin: 0 auto;
  }

  .partners-hero {
    min-height: 640px;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding-inline: 12px;
  }

  .brand-title {
    max-width: 190px;
    font-size: 20px;
  }

  .hero {
    padding-inline: 18px;
  }

  .hero h1 {
    max-width: 320px;
  }

  .pill-button {
    min-height: 46px;
    padding-inline: 20px;
    font-size: 13px;
  }

  .menu-panel {
    grid-template-columns: 1fr;
  }

  .menu-scrim {
    display: none;
  }

  .menu-content {
    border-left: 0;
  }

  .collage {
    min-height: 760px;
  }

  .architecture-card {
    top: 88px;
    width: 68vw;
    height: 300px;
  }

  .logo-card {
    left: 62%;
    top: 32px;
    width: 46vw;
    height: 380px;
  }

  .network-card {
    top: 420px;
    width: 40vw;
    height: 250px;
  }

  .dream-word {
    left: 4%;
    bottom: 150px;
  }

  .about-section,
  .services-section {
    padding-top: 86px;
  }

  .footer-brand {
    padding-inline: 22px;
  }
}
