/*
  EDIT GUIDE:
  - Brand colors are grouped in :root. Change them first when adjusting tone.
  - Section copy and cards are intentionally separated in index.html for easy editing.
  - Keep max-width and overflow rules to avoid horizontal scroll on mobile.
*/
@font-face {
  font-family: "Dot Matrix";
  src: url("assets/fonts/DOTMATRI.TTF") format("truetype");
  font-display: swap;
}

:root {
  --cool-red: #c9202d;
  --deep-blue: #1e2a44;
  --true-blue: #2266cc;
  --warm-white: #fafafa;
  --paper: #fffaf0;
  --ink: #111827;
  --muted: #606572;
  --line: #d9dde6;
  --shadow: 0 20px 60px rgba(30, 42, 68, 0.16);
  --radius: 8px;
  --section-pad: clamp(64px, 8vw, 116px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Noto Sans KR", "Apple SD Gothic Neo", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  background:
    linear-gradient(rgba(30, 42, 68, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 42, 68, 0.035) 1px, transparent 1px),
    var(--warm-white);
  background-size: 28px 28px;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

:focus-visible {
  outline: 3px solid var(--true-blue);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 68px;
  padding: 8px clamp(18px, 5vw, 72px);
  background: rgba(250, 250, 250, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-mark img {
  width: 152px;
  max-height: 58px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: clamp(22px, 4vw, 52px);
  color: var(--deep-blue);
  font-size: 0.95rem;
  font-weight: 800;
}

.nav-links a,
.instagram-link {
  text-decoration: none;
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  color: var(--deep-blue);
  background: transparent;
  border: 0;
  border-radius: 0;
  transition: color 160ms ease, transform 160ms ease;
}

.instagram-link:hover {
  color: var(--cool-red);
  transform: translateY(-2px);
}

.instagram-link svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  min-height: calc(100vh - 76px);
  padding: clamp(78px, 10vw, 132px) clamp(18px, 5vw, 72px) var(--section-pad);
  overflow: hidden;
  isolation: isolate;
  background: var(--cool-red);
}

.hero::after {
  content: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  grid-column: 1;
  grid-row: 1;
  width: min(720px, 100%);
  min-width: 0;
  padding: clamp(28px, 4vw, 48px) 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.hero .eyebrow,
.hero h1,
.hero-lead {
  color: #fff;
  text-shadow: 0 4px 22px rgba(0, 0, 0, 0.68), 0 2px 7px rgba(0, 0, 0, 0.56), 0 1px 1px rgba(0, 0, 0, 0.8);
}

.hero .eyebrow {
  color: #fff4df;
}

.hero-title-kicker,
.hero-title-brand {
  display: block;
}

.hero-title-kicker {
  margin-bottom: 0.12em;
  font-size: 0.56em;
  font-weight: 650;
  line-height: 1.2;
}

.hero-title-brand {
  font-weight: 950;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cool-red);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--deep-blue);
  line-height: 1.08;
}

h1 {
  max-width: 13ch;
  font-size: 4.75rem;
  font-weight: 950;
  word-break: keep-all;
}

h2 {
  font-size: 3.25rem;
  font-weight: 950;
  word-break: keep-all;
}

h3 {
  font-size: 1.45rem;
}

.hero-lead {
  max-width: 58ch;
  margin: 24px 0 0;
  color: #fff;
  font-size: 1.18rem;
  font-weight: 750;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  font-weight: 950;
  text-decoration: none;
  border: 2px solid var(--deep-blue);
  border-radius: 999px;
  cursor: pointer;
}

.button-primary {
  color: #fff;
  background: var(--cool-red);
  border-color: var(--cool-red);
  box-shadow: 0 16px 36px rgba(201, 32, 45, 0.26), 0 5px 14px rgba(30, 42, 68, 0.18);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(201, 32, 45, 0.32), 0 8px 18px rgba(30, 42, 68, 0.18);
}

.hero .button-primary {
  color: var(--cool-red);
  background: #fffaf0;
  border-color: rgba(255, 255, 255, 0.88);
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.26), 0 0 0 1px rgba(255, 255, 255, 0.24) inset;
}

.hero .button-primary:hover {
  background: #fff;
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.34) inset;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  min-width: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.hero-media::after {
  content: none;
}

.section {
  padding: var(--section-pad) clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 820px;
  margin-bottom: clamp(28px, 5vw, 52px);
}

.section-heading p:not(.eyebrow) {
  max-width: 66ch;
  margin: 16px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.brand-section {
  background: #fff;
}


.brand-marquee {
  position: relative;
  left: 50%;
  width: 100vw;
  margin: calc(var(--section-pad) * -1) 0 0;
  padding: clamp(7px, 1vw, 11px) 0;
  overflow: hidden;
  transform: translateX(-50%);
  background: #050505;
  border-block: 1px solid var(--cool-red);
}

.brand-marquee::before,
.brand-marquee::after {
  content: none;
}

.brand-marquee-track {
  display: flex;
  width: max-content;
  animation: brand-marquee 18s linear infinite;
}

.brand-marquee-track span {
  flex: 0 0 auto;
  padding-right: 0.55em;
  color: var(--cool-red);
  font-family: "Dot Matrix", "Courier New", Courier, monospace;
  font-size: clamp(1.35rem, 4.2vw, 3.6rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 0.92;
  text-transform: uppercase;
  text-shadow: 0 0 7px rgba(201, 32, 45, 0.5);
}

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

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

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

.brand-grid,
.business-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.76fr);
  gap: clamp(24px, 5vw, 68px);
  align-items: center;
}

.brand-grid {
  grid-template-columns: minmax(220px, 0.7fr) minmax(clamp(360px, 54vw, 640px), 1fr);
  align-items: center;
  gap: 0;
  min-height: 0;
  margin-left: calc(clamp(18px, 5vw, 72px) * -1);
  margin-right: calc(clamp(18px, 5vw, 72px) * -1);
  margin-bottom: calc(var(--section-pad) * -1);
}

.brand-content {
  align-self: center;
  padding: clamp(22px, 3vw, 46px);
}

.brand-heading {
  margin-bottom: clamp(22px, 4vw, 38px);
}

.brand-story {
  max-width: 760px;
  color: #252a36;
  font-size: 1.16rem;
  font-weight: 650;
}

.brand-poster {
  position: relative;
  align-self: center;
  width: 100%;
  margin: 0;
  background: #fff;
}

.brand-poster::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 1;
  width: clamp(56px, 9vw, 140px);
  pointer-events: none;
  background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.9) 18%, rgba(255, 255, 255, 0) 100%);
}

.brand-poster img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1086 / 1019;
  margin-right: auto;
  object-fit: contain;
  object-position: center;
  border-radius: 0;
  box-shadow: none;
}

.menu-section {
  color: #fff;
  background: var(--cool-red);
}

.menu-section h2,
.menu-section .eyebrow,
.menu-section .section-heading p {
  color: #fff;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  background: transparent;
  border: 0;
}

.menu-item {
  position: relative;
  aspect-ratio: 1;
  min-height: 0;
  padding: 0;
  color: var(--deep-blue);
  overflow: hidden;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.menu-item img {
  display: block;
  width: 100%;
  height: 100%;
  padding: clamp(8px, 1.2vw, 18px);
  object-fit: contain;
  box-sizing: border-box;
  filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.16));
  transition: filter 180ms ease, transform 180ms ease;
}

.menu-item div {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 18px;
  opacity: 0;
  color: #fff;
  background: transparent;
  transition: opacity 180ms ease;
}

.menu-item div h3,
.menu-item div p {
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.72), 0 1px 3px rgba(0, 0, 0, 0.54);
}

.menu-item:hover img,
.menu-item:focus-within img,
.menu-item:active img {
  filter: blur(5px) drop-shadow(0 8px 12px rgba(0, 0, 0, 0.14));
  transform: scale(1.04);
}

.menu-item:hover div,
.menu-item:focus-within div,
.menu-item:active div {
  opacity: 1;
}

.menu-item p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 760;
}

.menu-item h3 {
  color: #fff;
}

.reviews-section {
  background: #fff;
}

.review-stack {
  --review-gap: 18px;
  display: flex;
  gap: var(--review-gap);
  width: max-content;
  padding: 12px 0 34px;
  animation: review-carousel 100s linear infinite;
  will-change: transform;
}

.review-track {
  display: flex;
  flex: 0 0 auto;
  gap: var(--review-gap);
}

.reviews-section {
  overflow: hidden;
}

.review-card {
  flex: 0 0 clamp(280px, 34vw, 420px);
  margin: 0;
  padding: clamp(22px, 3vw, 34px);
  background: var(--warm-white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.review-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  height: clamp(176px, 24vw, 264px);
  margin-bottom: 0;
  object-fit: cover;
  border-radius: var(--radius);
}


.stars {
  margin: 10px 0;
  color: var(--cool-red);
  font-size: 1.18rem;
  line-height: 1;
  letter-spacing: 0.08em;
}

.review-card p {
  display: -webkit-box;
  min-height: 6.4em;
  margin: 0;
  overflow: hidden;
  color: var(--deep-blue);
  font-size: 1.08rem;
  font-weight: 850;
  line-height: 1.6;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.review-card cite {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
}

.review-card cite img {
  display: block;
  width: 18px;
  height: 18px;
  margin: 0;
  object-fit: contain;
  border-radius: 4px;
  flex: 0 0 auto;
}

@keyframes review-carousel {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(calc(-50% - (var(--review-gap) / 2)), 0, 0);
  }
}

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

.business-section {
  grid-template-columns: 1fr;
  align-items: start;
  gap: clamp(28px, 4vw, 48px);
  background: var(--paper);
}

.business-intro {
  align-self: start;
  max-width: 820px;
  padding: 0;
}

.business-intro h2,
.business-intro p {
  color: var(--ink);
  text-shadow: none;
}

.business-intro .eyebrow {
  color: var(--cool-red);
}

.business-intro > p:not(.eyebrow) {
  margin: 18px 0 0;
  color: #3d4451;
  font-size: 1.08rem;
  font-weight: 760;
}

.business-copy {
  align-self: start;
  min-width: 0;
}

.business-copy .startup-steps {
  width: 100%;
  margin-top: 0;
}

.startup-steps {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(10px, 1.2vw, 16px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.startup-steps li {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr auto;
  aspect-ratio: 1;
  gap: clamp(6px, 0.8vw, 8px);
  padding: clamp(12px, 1.2vw, 18px);
  color: var(--deep-blue);
  font-weight: 850;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.startup-steps span {
  grid-column: 1;
  grid-row: 1;
  align-self: start;
  color: var(--cool-red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 1.7vw, 1.8rem);
  font-weight: 900;
  line-height: 1;
}

.startup-steps strong {
  grid-column: 1;
  grid-row: 3;
  align-self: end;
  font-size: clamp(0.82rem, 0.95vw, 1rem);
  line-height: 1.25;
}

.startup-steps svg {
  grid-column: 1;
  grid-row: 2;
  align-self: center;
  justify-self: center;
  width: clamp(38px, 3.8vw, 56px);
  height: clamp(38px, 3.8vw, 56px);
  color: var(--cool-red);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.strength-grid,
.data-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.strength-grid article {
  position: relative;
  min-width: 0;
  overflow: hidden;
}

.strength-grid article img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  margin-bottom: 0;
  object-fit: cover;
  border-radius: 0;
}

.strength-grid article:nth-child(6) img {
  object-fit: cover;
  object-position: center;
  background: var(--paper);
}


.strength-grid article::after {
  content: "";
  position: absolute;
  inset: 38% 0 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 14, 24, 0.32) 35%, rgba(10, 14, 24, 0.9) 100%);
}

.strength-copy {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding: clamp(18px, 2.4vw, 28px);
  color: #fff;
}

.strength-copy h3 {
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
}

.strength-copy p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 720;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.62);
}


.data-section {
  color: var(--ink);
  background: #fff;
}

.data-section h2 {
  color: var(--deep-blue);
}

.data-section .eyebrow {
  color: var(--cool-red);
}

.data-section .section-heading p {
  color: var(--muted);
}

.data-grid {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  align-items: center;
  gap: clamp(34px, 5vw, 72px);
}

.profit-table-block,
.chart-block {
  min-width: 0;
}

.chart-block {
  display: grid;
  place-items: center;
}

table.profit-table {
  width: 100%;
  min-width: 0;
  table-layout: fixed;
  font-size: 0.96rem;
  box-shadow: none;
}

.profit-table th,
.profit-table td {
  width: 33.333%;
  color: var(--ink);
  padding: 14px clamp(16px, 2vw, 24px);
}

.profit-table thead th {
  color: #fff;
  text-align: center;
  background: var(--deep-blue);
}

.profit-table tbody th {
  color: var(--ink);
  text-align: center;
}

.profit-table tbody td {
  color: var(--ink);
  text-align: right;
}

.profit-table tbody tr:last-child th,
.profit-table tbody tr:last-child td {
  color: var(--cool-red);
  font-weight: 950;
}

.fine-print,
.cost-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 700;
}

.pie-chart {
  display: block;
  width: min(460px, 100%);
  height: auto;
  margin: 0 auto;
  overflow: visible;
}

.pie-slice {
  stroke: #fff;
  stroke-width: 2;
  stroke-linejoin: round;
}

.pie-slice-net {
  fill: var(--cool-red);
  stroke-width: 4;
  filter: url(#profit-slice-shadow);
}

.pie-slice-food {
  fill: #f3b33d;
}

.pie-slice-labor {
  fill: var(--true-blue);
}

.pie-slice-rent {
  fill: #9aa4b2;
}

.pie-slice-etc {
  fill: #1f2937;
}

.pie-svg-label {
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
}

.pie-svg-label text {
  fill: currentColor;
  paint-order: stroke;
  stroke: rgba(0, 0, 0, 0.34);
  stroke-width: 2px;
  stroke-linejoin: round;
}

.pie-svg-label-net {
  font-size: 14px;
  font-weight: 950;
}

.pie-svg-label-small {
  font-size: 10.5px;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  background: #fff;
}

table.profit-table {
  min-width: 0;
}

.profit-table thead th {
  text-align: center;
}

.cost-section table {
  min-width: 0;
  table-layout: fixed;
}

.cost-section .cost-col-item {
  width: 20%;
}

.cost-section .cost-col-amount {
  width: 24%;
}

.cost-section .cost-col-note {
  width: 56%;
}

.cost-section table th,
.cost-section table td {
  padding: 16px clamp(10px, 1.8vw, 18px);
}

.cost-section table th:first-child,
.cost-section table td:first-child,
.cost-section table tbody th {
  text-align: center;
}

.cost-section table th:nth-child(2),
.cost-section table td:nth-child(2) {
  text-align: right;
}

.cost-section table thead th:nth-child(n) {
  text-align: center;
}

.cost-section .promo-price {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 8px;
  white-space: nowrap;
}

.promo-price-old {
  color: var(--muted);
  font-size: 0.88em;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}

.promo-price-new {
  color: #b5121b;
  font-size: 1.2em;
  font-weight: 950;
}

.cost-section .promo-note {
  color: var(--ink);
  font-size: 1.05em;
  font-weight: 900;
}

caption {
  padding: 18px;
  color: var(--deep-blue);
  font-weight: 950;
  text-align: left;
}

th,
td {
  padding: 18px;
  text-align: left;
  border-top: 1px solid var(--line);
}

thead th {
  color: #fff;
  background: var(--cool-red);
}

tbody th {
  color: var(--deep-blue);
}

.cost-section table,
.cost-section th,
.cost-section td,
.cost-section caption,
.cost-section thead th,
.cost-section tbody th {
  color: var(--ink);
}

.cost-section thead th {
  background: #f3f4f6;
}

@media (max-width: 560px) {
  .cost-section .table-wrap {
    overflow-x: visible;
  }

  .cost-section table {
    font-size: 0.82rem;
  }

  .cost-section table th,
  .cost-section table td {
    padding: 11px 6px;
    word-break: keep-all;
  }

  .cost-section .promo-price {
    flex-direction: column;
    align-items: flex-end;
    gap: 1px;
    white-space: normal;
  }

  .promo-price-old {
    font-size: 0.72em;
  }

  .promo-price-new {
    font-size: 1.15em;
  }

  .cost-section .promo-note {
    font-size: 0.94em;
    line-height: 1.35;
  }
}

.contact-section {
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  align-items: start;
  background: #fff;
}

.contact-copy {
  position: static;
  top: auto;
}

.contact-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 720;
}

.inquiry-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  padding: clamp(20px, 4vw, 38px);
  background: var(--warm-white);
  border: 2px solid var(--deep-blue);
  border-radius: var(--radius);
  box-shadow: 12px 12px 0 var(--cool-red);
}

.inquiry-form .button {
  font-size: 1.08rem;
}

.form-status {
  min-height: 1.4em;
  margin: 0;
  color: var(--deep-blue);
  font-size: 0.95rem;
  font-weight: 850;
}

.form-status:empty {
  display: none;
}

.form-status[data-type="success"] {
  color: #126b3a;
}

.form-status[data-type="error"] {
  color: var(--cool-red);
}

.form-status[data-type="loading"] {
  color: #3d4451;
}

.inquiry-form .button:disabled {
  cursor: not-allowed;
  opacity: 0.68;
  transform: none;
}

.privacy-consent {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--deep-blue);
  font-weight: 800;
}

.privacy-consent input {
  width: 18px;
  min-height: 18px;
  accent-color: var(--cool-red);
}

.privacy-consent label {
  font-weight: 800;
}

.privacy-consent a {
  color: var(--cool-red);
  text-underline-offset: 3px;
}

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

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

label {
  color: var(--deep-blue);
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  font: inherit;
  background: #fff;
  border: 1px solid #b9bfcb;
  border-radius: var(--radius);
}

textarea {
  resize: vertical;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: clamp(28px, 5vw, 72px);
  padding: 42px clamp(18px, 5vw, 72px);
  color: var(--deep-blue);
  background: #fff;
  border-top: 1px solid var(--line);
}

.footer-left {
  justify-self: start;
}

.footer-brand img {
  width: 320px;
  padding: 0;
  background: #fff;
  border-radius: var(--radius);
}

.site-footer p,
.site-footer address {
  margin: 0;
  color: #3d4451;
  font-style: normal;
  font-weight: 700;
}

.site-footer a {
  color: var(--deep-blue);
}

.copyright {
  margin-top: 14px;
  font-size: 0.92rem;
}

.footer-right {
  display: grid;
  justify-items: end;
  gap: 10px;
  max-width: 440px;
  font-size: 0.78rem;
  line-height: 1.65;
  text-align: right;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 14px;
  max-width: none;
  color: var(--deep-blue);
  font-size: 0.78rem;
  font-weight: 850;
}

.footer-legal a {
  text-decoration: none;
  border-bottom: 1px solid rgba(30, 42, 68, 0.35);
}

@media (max-width: 760px) {
  .site-footer {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 24px;
  }

  .footer-right {
    justify-items: start;
    max-width: none;
    text-align: left;
  }

  .footer-legal {
    justify-content: flex-start;
  }
}

.sticky-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  color: #fff;
  font-weight: 950;
  text-decoration: none;
  background: var(--cool-red);
  border: 2px solid #fff;
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(30, 42, 68, 0.28);
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.sticky-cta:hover {
  background: #b51d28;
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(30, 42, 68, 0.32);
}

.privacy-popup {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  place-items: center;
  padding: 20px;
}

.privacy-popup:target {
  display: grid;
}

.privacy-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 39, 0.58);
}

.privacy-popup-panel {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  padding: clamp(24px, 4vw, 38px);
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.26);
}

.privacy-popup-panel h2 {
  font-size: 2rem;
}

.privacy-popup-panel p {
  color: #3d4451;
  font-weight: 700;
}

.privacy-popup-panel .button {
  margin-top: 12px;
}

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.75fr);
    min-height: calc(100vh - 76px);
  }

  h1 {
    max-width: 15ch;
    font-size: 4.15rem;
  }

  h2 {
    font-size: 2.75rem;
  }

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

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

  .startup-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

.business-section,
.contact-section {
  grid-template-columns: 1fr;
}

.brand-grid {
  grid-template-columns: minmax(180px, 0.62fr) minmax(clamp(260px, 52vw, 520px), 1fr);
  min-height: 0;
}

.brand-content {
  padding: clamp(18px, 2.8vw, 34px);
}

  .contact-copy {
    position: static;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 72px;
  }

  .site-header {
    min-height: 66px;
  }

  .site-header {
    justify-content: center;
  }

  .brand-mark {
    margin-inline: auto;
  }

  .instagram-link {
    position: absolute;
    right: 18px;
  }

  .nav-links {
    display: none;
  }

  .hero {
  grid-template-columns: 1fr;
  padding: 74px 18px var(--section-pad);
  min-height: calc(100vh - 66px);
  }

  .hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  max-width: none;
  }

  .hero-media img {
  width: 100%;
  height: 100%;
  max-height: none;
  margin: 0;
  object-fit: cover;
  }

  .hero-copy {
  grid-column: 1;
  grid-row: 1;
  }

  h1 {
    font-size: 2.55rem;
  }

  .hero h1 {
    max-width: 8.5ch;
    white-space: normal;
    word-break: keep-all;
  }

  h2 {
    font-size: 2.25rem;
  }

  h3 {
    font-size: 1.28rem;
  }

  .hero-lead {
    font-size: 0.98rem;
  }

.inquiry-form .button {
  width: 100%;
}

.hero-actions .button {
  width: auto;
}

.hero-copy {
  width: 100%;
  max-width: calc(100vw - 56px);
  padding: 24px 0;
  overflow: visible;
  background: transparent;
}

.hero .button-primary {
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(255, 255, 255, 0.22) inset;
}

.hero-copy p {
  word-break: break-all;
}

.brand-grid {
  grid-template-columns: 1fr;
  grid-template-areas:
    "heading"
    "story"
    "poster";
  min-height: 0;
  margin-inline: calc(clamp(18px, 5vw, 72px) * -1);
  margin-bottom: calc(var(--section-pad) * -1);
}

.brand-content {
  display: contents;
}

.brand-heading {
  grid-area: heading;
  padding: 28px 18px 10px;
  margin-bottom: 0;
}

.brand-poster {
  grid-area: poster;
  min-height: 0;
}

.brand-poster::after {
  inset: 0 0 auto;
  width: 100%;
  height: clamp(42px, 12vw, 82px);
  background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.88) 20%, rgba(255, 255, 255, 0) 100%);
}

.brand-poster img {
  object-fit: contain;
  object-position: center;
}

.brand-story {
  grid-area: story;
  max-width: none;
  padding: 0 18px 22px;
  font-size: 0.92rem;
  line-height: 1.55;
}

  .data-grid,
  .inquiry-form {
    grid-template-columns: 1fr;
  }

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

.menu-item img {
  padding: 4px;
  filter: drop-shadow(0 5px 8px rgba(0, 0, 0, 0.14));
}

.menu-item div {
  padding: 8px;
}

.menu-item h3 {
  font-size: clamp(0.62rem, 2.3vw, 0.82rem);
  line-height: 1.08;
}

.menu-item p {
  margin-top: 6px;
  font-size: clamp(0.52rem, 1.8vw, 0.68rem);
  line-height: 1.25;
}

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

.startup-steps {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.startup-steps li {
  gap: 5px;
  padding: clamp(8px, 2.4vw, 12px);
}

.startup-steps span {
  font-size: clamp(1rem, 4.4vw, 1.35rem);
}

.startup-steps strong {
  font-size: clamp(0.64rem, 2.45vw, 0.82rem);
  line-height: 1.18;
}

.startup-steps svg {
  width: clamp(26px, 8vw, 38px);
  height: clamp(26px, 8vw, 38px);
}

.review-stack {
  --review-gap: 14px;
}

.review-track {
  gap: var(--review-gap);
}

  .review-card,
  .review-card:nth-child(n) {
    flex-basis: min(82vw, 320px);
    filter: none;
    opacity: 1;
  }

}

@media (max-width: 420px) {
  .hero-copy {
    width: 100%;
    max-width: calc(100vw - 36px);
  }

  h1 {
    font-size: 2.2rem;
  }

  .hero h1 {
    max-width: 8.5ch;
  }

  h2 {
    font-size: 2rem;
  }

  .review-card {
    padding: 18px;
  }

  .button {
    padding: 0 14px;
  }
}
