:root {
  --bg: #f7f7f5;
  --surface: #ffffff;
  --surface-muted: #eeeeeb;
  --ink: #151515;
  --muted: #55585d;
  --line: #deded9;
  --accent: #ee4036;
  --accent-dark: #c92f28;
  --dark: #050505;
  --max: 1180px;
  --side: clamp(20px, 5vw, 64px);
  --radius: 8px;
  --site-header-height: 78px;
  --chat-viewport-height: 100dvh;
  --chat-viewport-top: 0px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "azo-sans-web", sans-serif;
  font-size: 16px;
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding: 0 var(--side);
  background: rgba(247, 247, 245, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
  transition: box-shadow 160ms ease, background 160ms ease;
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.06);
}
.brand img { width: 156px; height: auto; }
.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: var(--muted);
  font-weight: 700;
}
.site-nav a {
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}
.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--accent);
  border-color: var(--accent);
}
.button,
button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 24px;
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  background: var(--accent);
  color: white;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}
.button:hover {
  transform: translateY(-1px);
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}
.button-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.button-secondary:hover {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
}
.button-small {
  min-height: 42px;
  padding: 9px 18px !important;
  color: white !important;
  border-color: var(--accent) !important;
}
.auth-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, color 160ms ease, background 160ms ease;
}
.auth-button:hover {
  transform: translateY(-1px);
  border-color: var(--accent);
  color: var(--accent);
}
.auth-button:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}
.auth-button[data-admin="true"] {
  border-color: rgba(238, 64, 54, 0.34);
  background: rgba(238, 64, 54, 0.08);
  color: var(--accent-dark);
}
.auth-button-footer {
  width: fit-content;
  margin-top: 4px;
}
.auth-status {
  max-width: 240px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.35;
}
.nav-toggle {
  display: none;
  position: relative;
  z-index: 45;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
  transform-origin: center;
  transition: opacity 160ms ease, transform 160ms ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero,
.page-hero,
.section,
.split-section,
.cta-band,
.contact-layout,
.story-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--side);
  padding-right: var(--side);
}
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.78fr);
  gap: clamp(36px, 7vw, 88px);
  align-items: center;
  min-height: calc(100vh - 78px);
  padding-top: 70px;
  padding-bottom: 86px;
}
.hero h1,
.page-hero h1,
.contact-copy h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3rem, 8vw, 6.8rem);
  font-family: "azo-sans-uber", sans-serif;
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0;
}
.hero h1::after {
  content: "";
  display: block;
  width: 86px;
  height: 8px;
  margin-top: 26px;
  background: var(--accent);
}
.lead {
  max-width: 620px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.45;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.hero-panel {
  position: relative;
  min-height: 530px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface-muted);
  border: 1px solid var(--line);
}
.hero-panel img {
  width: 100%;
  height: 100%;
  min-height: 530px;
  object-fit: cover;
}
.hero-stat {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  display: grid;
  gap: 3px;
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
}
.hero-stat strong { font-size: 1.45rem; }
.hero-stat span { color: var(--muted); }

.logo-strip {
  padding: 38px var(--side);
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.logo-strip p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.logo-strip div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 26px clamp(38px, 7vw, 88px);
  font-size: clamp(1.15rem, 3vw, 1.75rem);
  font-weight: 700;
}

.section { padding-top: 96px; padding-bottom: 104px; }
.section-heading { max-width: 680px; margin-bottom: 44px; }
.section-heading h2,
.split-section h2,
.cta-band h2,
.story-card h2 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4.1rem);
  font-family: "azo-sans-uber", sans-serif;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
}
.row-heading {
  display: flex;
  max-width: none;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
}
.row-heading > p {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
}
.service-grid,
.reference-grid,
.value-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}
.service-card,
.reference-card,
.value-card,
.detail-card,
.story-card,
.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}
.bot-field {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.service-card {
  display: block;
  grid-column: span 4;
  min-height: 260px;
  padding: 30px;
}
.service-card-large { grid-column: span 8; }
.service-card.dark,
.detail-card.dark {
  background: var(--dark);
  color: white;
  border-color: var(--dark);
}
.service-card h3,
.reference-card h3,
.value-card h3,
.detail-card h2 {
  margin: 22px 0 12px;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.08;
  overflow-wrap: anywhere;
}
.service-card p,
.reference-card span,
.value-card p,
.detail-card p,
.story-card p,
.copy-stack p { color: var(--muted); }
.dark p,
.dark span { color: rgba(255, 255, 255, 0.75); }
.service-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: var(--surface-muted);
  color: var(--accent);
  font-weight: 700;
}
.dark .service-icon {
  color: var(--accent);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 90px);
  padding-top: 96px;
  padding-bottom: 96px;
  border-top: 1px solid var(--line);
}
.copy-stack { font-size: 1.16rem; }
.white-section {
  max-width: none;
  background: var(--surface);
}
.white-section > * {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}
.reference-card {
  grid-column: span 3;
  min-height: 220px;
  padding: 28px;
}
.reference-card p {
  margin: 0 0 28px;
  color: var(--accent);
  font-weight: 700;
}
.reference-card span {
  display: block;
  margin-top: auto;
}
.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: 64px;
  margin-bottom: 82px;
  padding-top: 48px;
  padding-bottom: 48px;
  border-radius: var(--radius);
  background: var(--dark);
  color: white;
}
.cta-band p:not(.eyebrow) {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.page-hero { padding-top: 98px; padding-bottom: 54px; }
.page-hero h1 {
  font-size: clamp(3rem, 7vw, 5.8rem);
  overflow-wrap: anywhere;
}
.mobile-title { display: none; }
.legal-hero {
  padding-bottom: 34px;
}
.legal-updated {
  margin: 22px 0 0;
  color: var(--muted);
  font-weight: 700;
}
.legal-layout {
  display: grid;
  grid-template-columns: minmax(230px, 0.35fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px var(--side) 96px;
}
.legal-summary {
  position: sticky;
  top: calc(var(--site-header-height) + 24px);
  align-self: start;
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}
.legal-summary h2,
.legal-content h2 {
  margin: 0;
  font-family: "azo-sans-uber", sans-serif;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0;
}
.legal-summary p {
  margin: 0;
  color: var(--muted);
}
.legal-content {
  padding: clamp(26px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}
.legal-content h2 {
  margin-top: 42px;
  font-size: clamp(1.45rem, 2.4vw, 2.1rem);
}
.legal-content h2:first-child {
  margin-top: 0;
}
.legal-content p,
.legal-content li {
  color: var(--muted);
}
.legal-content a {
  color: var(--accent);
  font-weight: 700;
}
.legal-content ul {
  margin: 16px 0 0;
  padding-left: 22px;
}
.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
  padding-top: 36px;
}
.detail-card {
  grid-column: span 4;
  min-height: 310px;
  padding: 32px;
}
a.detail-card {
  display: block;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}
a.detail-card:hover {
  border-color: var(--accent);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}
a.service-card {
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}
a.service-card:hover {
  border-color: var(--accent);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}
.feature-detail { grid-column: span 8; }
.detail-card ul {
  margin: 22px 0 0;
  padding-left: 20px;
  color: var(--muted);
}
.detail-card.accent {
  background: #fff0ef;
  border-color: #fac6c2;
}
.dark-split {
  max-width: none;
  background: var(--dark);
  color: white;
  border: 0;
}
.process-list { display: grid; gap: 18px; }
.process-list div {
  display: grid;
  gap: 4px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}
.process-list span { color: rgba(255, 255, 255, 0.72); }

.social-hero,
.social-custom {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--side);
  padding-right: var(--side);
}
.social-hero {
  padding-top: 112px;
  padding-bottom: 118px;
}
.social-hero > div {
  max-width: 760px;
}
.social-hero h1 {
  max-width: 780px;
  margin: 0;
  font-family: "azo-sans-uber", sans-serif;
  font-size: clamp(2.9rem, 6vw, 5.3rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0;
}
.social-hero p:not(.eyebrow):not(.lead) {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--muted);
}
.social-heading {
  margin-inline: auto;
  text-align: center;
}
.social-heading h2 {
  margin: 0;
  font-family: "azo-sans-uber", sans-serif;
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1;
}
.social-heading p:not(.eyebrow) {
  margin: 14px auto 0;
  color: var(--muted);
}
.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}
.package-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 34px 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}
.package-card.featured {
  border-color: var(--accent);
  box-shadow: 0 22px 58px rgba(238, 64, 54, 0.12);
}
.package-card.premium {
  background: var(--dark);
  color: white;
  border-color: var(--dark);
}
.package-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 5px 13px;
  border-radius: 999px;
  background: var(--accent);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.package-card h3 {
  margin: 0 0 8px;
  font-size: clamp(1.45rem, 2vw, 1.9rem);
  line-height: 1.08;
}
.package-card p,
.package-card small {
  color: var(--muted);
}
.package-card.premium p,
.package-card.premium small {
  color: rgba(255, 255, 255, 0.72);
}
.package-card p {
  margin: 0 0 22px;
}
.package-price {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: baseline;
}
.package-price strong {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1;
}
.package-price span {
  color: var(--muted);
}
.premium .package-price span {
  color: rgba(255, 255, 255, 0.74);
}
.package-card ul {
  display: grid;
  gap: 13px;
  margin: 28px 0 30px;
  padding: 0;
  list-style: none;
}
.package-card li {
  position: relative;
  padding-left: 26px;
  color: var(--muted);
}
.package-card li::before {
  content: "";
  position: absolute;
  top: 0.48em;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: inset 0 0 0 4px white;
}
.package-card.premium li {
  color: rgba(255, 255, 255, 0.82);
}
.package-card.premium li::before {
  box-shadow: inset 0 0 0 4px var(--dark);
}
.package-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: auto;
  padding: 12px 18px;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  color: var(--ink);
  font-weight: 700;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}
.package-button:hover,
.package-button.primary {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}
.package-button.primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}
.premium .package-button {
  background: white;
  border-color: white;
  color: var(--ink);
}
.package-note {
  display: flex;
  gap: 10px;
  margin: 28px 0 0;
  padding: 18px 22px;
  border-radius: var(--radius);
  background: var(--surface-muted);
  color: var(--muted);
}
.package-note span {
  color: var(--accent);
  font-weight: 700;
}
.social-custom {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  gap: clamp(34px, 7vw, 90px);
  align-items: center;
  max-width: none;
  padding-top: 92px;
  padding-bottom: 92px;
  background: var(--dark);
  color: white;
}
.social-custom > * {
  max-width: calc((var(--max) - (2 * var(--side))) / 2);
}
.social-custom > div:first-child {
  justify-self: end;
}
.social-custom h2 {
  margin: 0;
  font-family: "azo-sans-uber", sans-serif;
  font-size: clamp(2.1rem, 4.5vw, 4rem);
  font-weight: 400;
  line-height: 1;
}
.social-custom p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.74);
}
.social-custom-image {
  width: 100%;
  overflow: hidden;
  border: 12px solid rgba(238, 64, 54, 0.35);
  border-radius: var(--radius);
}
.social-custom-image img {
  width: 100%;
  min-height: 300px;
  object-fit: cover;
  filter: saturate(0.8);
}
.text-link {
  color: var(--accent);
  font-weight: 700;
}
.text-link::after {
  content: " ->";
}
.other-service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.other-service-grid a {
  display: flex;
  min-height: 118px;
  align-items: end;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  font-weight: 700;
  transition: border-color 160ms ease, color 160ms ease, transform 160ms ease;
}
.other-service-grid a:hover {
  color: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
}
.social-other-copy {
  max-width: 680px;
  margin: 28px 0 0;
  color: var(--muted);
}

.design-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.78fr);
  gap: clamp(34px, 7vw, 88px);
  align-items: center;
  max-width: var(--max);
  min-height: calc(100vh - var(--site-header-height));
  margin: 0 auto;
  padding: 82px var(--side) 96px;
}
.design-hero h1 {
  max-width: 820px;
  margin: 0;
  font-family: "azo-sans-uber", sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  overflow-wrap: normal;
  hyphens: none;
}
.design-hero-copy p:not(.eyebrow):not(.lead) {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--muted);
}
.design-hero-image {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-muted);
}
.design-hero-image img {
  width: 100%;
  min-height: 560px;
  object-fit: cover;
}
.design-intro {
  padding-top: 42px;
}
.design-copy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 5vw, 70px);
  max-width: 980px;
  color: var(--muted);
  font-size: 1.12rem;
}
.design-service-section {
  padding-top: 64px;
}
.design-service-grid,
.design-requirements,
.design-why-grid,
.faq-list {
  display: grid;
  gap: 14px;
}
.design-service-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.design-service-grid span,
.design-requirements span {
  display: flex;
  min-height: 92px;
  align-items: end;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  font-weight: 700;
}
.design-service-grid span::before,
.design-requirements span::before {
  content: "";
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  margin: 0 10px 7px 0;
  border-radius: 999px;
  background: var(--accent);
}
.design-media-band {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 88px);
  align-items: center;
  max-width: none;
  padding: 92px var(--side);
  background: var(--dark);
  color: white;
}
.design-media-band > * {
  max-width: calc((var(--max) - (2 * var(--side))) / 2);
}
.design-media-copy {
  justify-self: end;
}
.design-media-copy h2,
.design-ai-card h2,
.design-price-card h2 {
  margin: 0;
  font-family: "azo-sans-uber", sans-serif;
  font-size: clamp(2.1rem, 4.5vw, 4rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
}
.design-media-copy p:not(.eyebrow),
.design-ai-card p,
.design-price-card p {
  color: var(--muted);
}
.design-media-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.74);
}
.design-requirements {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.design-requirements span {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  color: white;
}
.design-ai-section,
.design-price-section {
  padding-top: 72px;
  padding-bottom: 72px;
}
.design-ai-card,
.design-price-card {
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}
.design-ai-card {
  max-width: 920px;
}
.design-ai-card strong {
  display: block;
  max-width: 640px;
  margin-top: 24px;
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  line-height: 1.2;
}
.design-price-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  background: #fff4f3;
  border-color: #f5c0bc;
}
.design-price-number {
  display: grid;
  gap: 7px;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--dark);
  color: white;
}
.design-price-number span,
.design-price-number small {
  color: rgba(255, 255, 255, 0.72);
}
.design-price-number strong {
  font-size: clamp(2.5rem, 5vw, 4.3rem);
  line-height: 0.96;
}
.design-why-section {
  padding-top: 62px;
}
.design-why-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.design-why-grid article {
  display: grid;
  gap: 10px;
  min-height: 170px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}
.design-why-grid strong {
  font-size: 1.18rem;
}
.design-why-grid span {
  color: var(--muted);
}
.design-projects {
  padding-top: 96px;
  padding-bottom: 104px;
}
.design-project-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}
.design-project-card {
  position: relative;
  display: flex;
  grid-column: span 4;
  min-height: 320px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--dark);
  color: white;
}
.design-project-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.design-project-card.large {
  grid-column: span 8;
  min-height: 430px;
}
.design-project-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.78)),
    var(--project-bg, linear-gradient(135deg, #663222, #c5793b));
  z-index: 1;
}
.design-project-card::after {
  content: "";
  position: absolute;
  inset: 34px 30px auto;
  height: 150px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.28);
  transform: rotate(-8deg);
}
.design-project-card:has(img)::before {
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.82));
}
.design-project-card:has(img)::after {
  display: none;
}
.design-project-card h3,
.design-project-card p,
.design-project-card span {
  position: relative;
  z-index: 2;
}
.design-project-card span {
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.design-project-card h3 {
  margin: 7px 0 2px;
  font-size: 1.34rem;
  line-height: 1.08;
}
.design-project-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}
.project-security { --project-bg: linear-gradient(135deg, #081115, #36515a); }
.project-menu { --project-bg: linear-gradient(135deg, #2d1f18, #8a674a); }
.project-packaging { --project-bg: linear-gradient(135deg, #2d4f45, #d7d3ad); }
.project-web { --project-bg: linear-gradient(135deg, #1a1a1a, #ee4036); }
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}
.faq-list summary {
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 700;
}
.faq-list p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}
.design-cta {
  margin-top: 22px;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  align-items: stretch;
  padding-bottom: 84px;
}
.story-image {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--radius);
}
.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.story-image div {
  position: absolute;
  left: 24px;
  bottom: 24px;
  display: grid;
  gap: 2px;
  padding: 18px 22px;
  background: var(--accent);
  color: white;
  border-radius: var(--radius);
}
.story-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 5vw, 54px);
}
.value-card {
  grid-column: span 3;
  padding: 28px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: clamp(34px, 7vw, 86px);
  align-items: start;
  padding-top: 98px;
  padding-bottom: 96px;
}
.contact-copy h1 { font-size: clamp(2.9rem, 6vw, 5rem); }
.contact-list {
  display: grid;
  gap: 18px;
  margin-top: 42px;
}
.contact-list a,
.contact-list p {
  display: grid;
  gap: 3px;
  margin: 0;
  padding: 18px;
  border-top: 1px solid var(--line);
}
.contact-list span,
label {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.contact-list strong { font-size: 1.12rem; }
.contact-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 6px;
}
.contact-list .contact-socials .social-link {
  display: inline-flex;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid var(--line);
}
.contact-form {
  display: grid;
  gap: 20px;
  padding: clamp(24px, 5vw, 46px);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.07);
}
.form-row { display: grid; gap: 8px; }
input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--ink);
  font: inherit;
  padding: 14px 15px;
}
textarea { resize: vertical; }
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(238, 64, 54, 0.24);
  border-color: var(--accent);
}
.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}
.form-status[data-type="success"] { color: #256234; }
.form-status[data-type="error"] { color: var(--accent-dark); }
.form-note {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}
.form-note a {
  color: var(--accent);
  font-weight: 700;
}
.login-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.78fr);
  gap: clamp(36px, 7vw, 88px);
  align-items: start;
  max-width: var(--max);
  min-height: calc(100vh - var(--site-header-height));
  margin: 0 auto;
  padding: 84px var(--side) 96px;
}
.login-copy h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(3rem, 8vw, 6.3rem);
  font-family: "azo-sans-uber", sans-serif;
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0;
}
.login-copy h1::after {
  content: "";
  display: block;
  width: 86px;
  height: 8px;
  margin-top: 26px;
  background: var(--accent);
}
.login-panel {
  display: grid;
  gap: 22px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.08);
}
.google-login-button {
  width: 100%;
}
.login-divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
  align-items: center;
  color: var(--muted);
  font-weight: 700;
}
.login-divider::before,
.login-divider::after {
  content: "";
  height: 1px;
  background: var(--line);
}
.auth-form {
  display: grid;
  gap: 18px;
}
.auth-form h2 {
  margin: 0;
  font-size: 1.45rem;
}
.auth-form .button {
  width: 100%;
}
.auth-form.compact {
  margin-top: 16px;
}
.auth-details {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.auth-details summary {
  color: var(--ink);
  cursor: pointer;
  font-weight: 700;
}
.auth-details summary:hover {
  color: var(--accent);
}
.auth-message {
  margin: 0;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  font-weight: 700;
}
.auth-message[data-type="success"] {
  border-color: rgba(52, 135, 72, 0.28);
  background: rgba(52, 135, 72, 0.08);
  color: #256234;
}
.auth-message[data-type="error"] {
  border-color: rgba(238, 64, 54, 0.32);
  background: rgba(238, 64, 54, 0.08);
  color: var(--accent-dark);
}

.file-workspace {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  max-width: var(--max);
  min-height: calc(100vh - var(--site-header-height));
  margin: 0 auto;
  padding: 76px var(--side) 96px;
}
.file-heading,
.file-panel {
  min-width: 0;
}
.file-heading h1 {
  max-width: 100%;
  margin: 0;
  font-size: clamp(3rem, 5.6vw, 4.9rem);
  font-family: "azo-sans-uber", sans-serif;
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0;
  overflow-wrap: normal;
}
.file-heading h1::after {
  content: "";
  display: block;
  width: 76px;
  height: 8px;
  margin-top: 24px;
  background: var(--accent);
}
.file-panel {
  display: grid;
  gap: 22px;
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.08);
}
.file-access-header {
  display: flex;
  gap: 18px;
  align-items: start;
  justify-content: space-between;
}
.file-access-header h2 {
  margin: 0 0 6px;
  font-size: 1.35rem;
}
.file-access-header p {
  margin: 0;
  color: var(--muted);
}
.user-picker,
.file-list {
  display: grid;
  gap: 10px;
}
.user-option {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background: var(--bg);
  cursor: pointer;
}
.user-option input {
  width: 18px;
  height: 18px;
}
.user-option strong,
.user-option small {
  display: block;
}
.user-option small {
  margin-top: 2px;
  color: var(--muted);
}
.file-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background: var(--bg);
}
.file-item h2 {
  margin: 0 0 5px;
  overflow-wrap: anywhere;
  font-size: 1.1rem;
}
.file-item p {
  margin: 0;
  color: var(--muted);
}

.site-footer {
  background: var(--surface-muted);
  border-top: 1px solid var(--line);
}
.footer-main,
.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--side);
  padding-right: var(--side);
}
.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.9fr;
  gap: 42px;
  padding-top: 54px;
  padding-bottom: 46px;
}
.footer-logo {
  width: 148px;
  margin-bottom: 16px;
}
.footer-main p,
.footer-contact,
.footer-bottom { color: var(--muted); }
.footer-main nav,
.footer-contact { display: grid; gap: 10px; }
.footer-main a:hover,
.footer-bottom a:hover { color: var(--accent); }
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}
.social-link::before {
  content: "";
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  background: currentColor;
  mask: center / contain no-repeat;
  -webkit-mask: center / contain no-repeat;
}
.social-link[data-social="instagram"]::before {
  mask-image: url("/assets/social-instagram.svg");
  -webkit-mask-image: url("/assets/social-instagram.svg");
}
.social-link[data-social="facebook"]::before {
  mask-image: url("/assets/social-facebook.svg");
  -webkit-mask-image: url("/assets/social-facebook.svg");
}
.social-link[data-social="tiktok"]::before {
  mask-image: url("/assets/social-tiktok.svg");
  -webkit-mask-image: url("/assets/social-tiktok.svg");
}
.social-link:hover {
  background: var(--surface);
  border-color: var(--accent);
  color: var(--accent);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding-top: 22px;
  padding-bottom: 28px;
  border-top: 1px solid #d4d4cf;
  font-size: 0.95rem;
}
.footer-bottom div {
  display: flex;
  gap: 22px;
}
.quick-contact {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 15;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 999px;
  background: var(--accent);
  color: white;
  font-weight: 700;
  box-shadow: 0 14px 34px rgba(238, 64, 54, 0.34);
  border: 0;
  cursor: pointer;
}
.ai-chat {
  position: fixed;
  right: 22px;
  bottom: 98px;
  z-index: 16;
  display: none;
  width: min(390px, calc(100vw - 40px));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}
.ai-chat.is-open {
  display: grid;
  grid-template-rows: auto minmax(220px, 360px) auto;
}
.ai-chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 18px 16px;
  background: var(--dark);
  color: white;
}
.ai-chat-header p {
  margin: 0;
  font-weight: 700;
}
.ai-chat-header span {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.88rem;
}
.ai-chat-header button {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: white;
  font: inherit;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}
.ai-chat-log {
  display: grid;
  align-content: start;
  gap: 12px;
  overflow: auto;
  min-height: 0;
  padding: 16px;
  background: var(--bg);
}
.ai-message {
  max-width: 88%;
  padding: 12px 14px;
  border-radius: var(--radius);
  font-size: 0.96rem;
  line-height: 1.42;
}
.ai-message.assistant {
  justify-self: start;
  background: white;
  border: 1px solid var(--line);
  color: var(--ink);
}
.ai-message.user {
  justify-self: end;
  background: var(--accent);
  color: white;
}
.ai-message a {
  color: var(--accent);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.ai-message.user a {
  color: white;
}
.ai-chat-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 14px;
  border-top: 1px solid var(--line);
  background: white;
}
.ai-chat-form textarea {
  min-height: 48px;
  max-height: 120px;
}
.ai-chat-form button {
  align-self: end;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  background: var(--accent);
  color: white;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}
.chat-consent-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.chat-consent-actions .button {
  min-height: 42px;
  padding: 9px 16px;
}
.chat-consent-actions a {
  color: var(--accent);
  font-weight: 700;
}
.privacy-banner {
  position: fixed;
  right: 22px;
  bottom: 22px;
  left: 22px;
  z-index: 80;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}
.privacy-banner p {
  margin: 0;
  color: var(--muted);
}
.privacy-banner .privacy-banner-title {
  margin-bottom: 5px;
  color: var(--ink);
  font-weight: 700;
}
.privacy-banner a {
  display: inline-block;
  margin-top: 8px;
  color: var(--accent);
  font-weight: 700;
}
.privacy-banner-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}
.privacy-banner-actions .button {
  min-height: 44px;
  white-space: nowrap;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 880px) {
  :root { --site-header-height: 70px; }
  .site-header { min-height: 70px; }
  .brand img { width: 132px; }
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: none;
    padding: 18px var(--side) 22px;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.08);
  }
  .site-nav.is-open { display: grid; }
  .site-nav .auth-button,
  .site-nav .button-small {
    width: 100%;
  }
  .hero,
  .design-hero,
  .contact-layout,
  .login-layout,
  .file-workspace,
  .story-grid,
  .split-section,
  .legal-layout,
  .privacy-banner,
  .package-grid,
  .social-custom,
  .other-service-grid,
  .design-copy-grid,
  .design-service-grid,
  .design-media-band,
  .design-requirements,
  .design-price-card,
  .design-why-grid { grid-template-columns: 1fr; }
  .legal-summary {
    position: static;
  }
  .privacy-banner-actions {
    justify-content: flex-start;
  }
  .hero {
    min-height: auto;
    padding-top: 52px;
  }
  .hero-panel,
  .hero-panel img,
  .story-image { min-height: 380px; }
  .service-card,
  .service-card-large,
  .reference-card,
  .value-card,
  .detail-card,
  .feature-detail { grid-column: 1 / -1; }
  .row-heading,
  .cta-band,
  .footer-bottom {
    align-items: start;
    flex-direction: column;
  }
  .social-custom > *,
  .social-custom > div:first-child,
  .design-media-band > *,
  .design-media-copy {
    max-width: none;
    justify-self: stretch;
  }
  .design-hero {
    min-height: auto;
    padding-top: 56px;
  }
  .design-hero-image img {
    min-height: 430px;
  }
  .design-project-card,
  .design-project-card.large {
    grid-column: 1 / -1;
  }
  .footer-main { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .hero h1,
  .page-hero h1,
  .contact-copy h1 { font-size: 3.1rem; }
  .design-hero h1 { font-size: 2.18rem; }
  .social-hero h1 { font-size: 2.75rem; }
  .legal-hero h1 {
    font-size: clamp(2.65rem, 14vw, 3.1rem);
    line-height: 0.98;
  }
  .desktop-title { display: none; }
  .mobile-title { display: inline; }
  .button-row,
  .button-row .button,
  .cta-band .button,
  .contact-form .button { width: 100%; }
  .design-hero .button-row {
    padding-right: 72px;
  }
  .section,
  .page-hero,
  .social-hero,
  .design-hero,
  .social-custom,
  .design-media-band,
  .login-layout,
  .file-workspace,
  .contact-layout {
    padding-top: 64px;
    padding-bottom: 72px;
  }
  .file-heading h1 {
    font-size: 3.1rem;
  }
  .file-access-header,
  .file-item {
    grid-template-columns: 1fr;
  }
  .file-access-header {
    display: grid;
  }
  .file-access-header .button,
  .file-item .button {
    width: 100%;
  }
  .login-copy h1 {
    font-size: 3.1rem;
  }
  .package-card {
    padding: 28px 24px;
  }
  .package-note {
    display: block;
  }
  .social-custom-image {
    border-width: 8px;
  }
  .other-service-grid a {
    min-height: 58px;
    align-items: center;
  }
  .design-service-grid span,
  .design-requirements span {
    min-height: 64px;
    align-items: center;
  }
  .design-hero-image img {
    min-height: 360px;
  }
  .design-price-number {
    padding: 22px;
  }
  .design-project-card,
  .design-project-card.large {
    min-height: 300px;
  }
  .quick-contact {
    width: 56px;
    height: 56px;
  }
  .legal-content {
    padding: 24px;
  }
  .privacy-banner {
    right: 12px;
    bottom: 12px;
    left: 12px;
    padding: 16px;
  }
  .privacy-banner-actions,
  .privacy-banner-actions .button {
    width: 100%;
  }
  html.chat-open {
    overflow: hidden;
    overscroll-behavior: none;
  }
  body.chat-open {
    position: fixed;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    overscroll-behavior: none;
  }
  body.chat-open .site-header {
    position: fixed;
    top: var(--chat-viewport-top, 0px);
    left: 0;
    right: 0;
    z-index: 50;
  }
  body.chat-open .quick-contact {
    display: none;
  }
  .ai-chat {
    top: calc(var(--chat-viewport-top, 0px) + var(--site-header-height));
    right: 0;
    bottom: auto;
    left: 0;
    width: 100vw;
    height: calc(var(--chat-viewport-height, 100dvh) - var(--site-header-height));
    max-height: calc(var(--chat-viewport-height, 100dvh) - var(--site-header-height));
    min-height: 0;
    border: 0;
    border-radius: 0;
    overscroll-behavior: contain;
  }
  .ai-chat.is-open {
    grid-template-rows: auto minmax(0, 1fr) auto;
  }
  .ai-chat-header {
    padding: 14px 18px;
  }
  .ai-chat-log {
    padding: 16px 14px;
  }
  .ai-message {
    max-width: 92%;
  }
  .ai-chat-form {
    padding: 12px 12px calc(12px + env(safe-area-inset-bottom));
    grid-template-columns: minmax(0, 1fr) auto;
  }
  .ai-chat-form textarea {
    min-height: 56px;
  }
  .ai-chat-form button {
    min-width: 78px;
  }
}
