:root {
  --bg: #f5f1ea;
  --panel: #ebe0d2;
  --text: #171717;
  --muted: #625d57;
  --accent: #9f754d;
  --accent-deep: #7f5734;
  --ink-soft: #39332e;
  --line: rgba(127, 87, 52, 0.18);
  --card: rgba(255, 252, 247, 0.74);
  --shadow: 0 22px 55px rgba(32, 25, 19, 0.1);
  --max: 1180px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

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

/* HERO TOP */
.hero-section {
  min-height: 610px;
  color: #fff;
  background:
    linear-gradient(
      90deg,
      rgba(6, 5, 4, 0.9) 0%,
      rgba(18, 15, 12, 0.76) 36%,
      rgba(18, 15, 12, 0.42) 62%,
      rgba(18, 15, 12, 0.18) 100%
    ),
    url("value-studio.png");
  background-color: #17120d;
  background-size: min(44vw, 560px) auto;
  background-position: right 8vw center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 24% 48%, rgba(159, 117, 77, 0.13), transparent 28%),
    linear-gradient(90deg, rgba(15, 11, 8, 0) 0%, rgba(15, 11, 8, 0) 58%, rgba(15, 11, 8, 0.2) 100%);
}

.navbar {
  width: min(92%, var(--max));
  margin: 0 auto;
  padding: 34px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  position: relative;
  z-index: 2;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  padding: 0;
  flex: 0 0 auto;
}

.brand img {
  width: 104px;
  height: auto;
  max-width: 104px;
  max-height: 60px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.86);
}

.menu-toggle {
  display: none;
}

.nav-btn {
  padding: 10px 22px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 8px;
}

.hero-inner {
  width: min(92%, var(--max));
  margin: 0 auto;
  min-height: 480px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text {
  max-width: 520px;
  padding-left: 26px;
  position: relative;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.34);
}

.hero-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 1px;
  height: 100%;
  max-height: 370px;
  background: linear-gradient(180deg, rgba(178, 129, 82, 0.9), rgba(178, 129, 82, 0.08));
}

.eyebrow,
.section-label {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
}

.eyebrow {
  margin-bottom: 18px;
}

.hero-text .eyebrow {
  color: rgba(215, 181, 145, 0.94);
  font-size: 0.7rem;
  letter-spacing: 0.24em;
}

.hero-text h1 {
  font-family: "Fraunces", serif;
  font-size: clamp(2.65rem, 4.1vw, 3.65rem);
  letter-spacing: -0.03em;
  line-height: 1.02;
  font-weight: 520;
  max-width: 520px;
  margin-bottom: 32px;
}

.hero-text h1 em,
.hero-text h1 span {
  display: block;
}

.hero-text h1 em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.94);
  font-weight: 430;
}

.hero-text > p:not(.eyebrow) {
  max-width: 455px;
  color: rgba(245, 241, 234, 0.78);
  font-size: 0.93rem;
  line-height: 1.75;
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 22px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.84rem;
  letter-spacing: 0.01em;
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.btn:hover {
  transform: scale(1.02);
}

.btn-dark {
  background: #f6f0e8;
  color: #17120d;
  border: 1px solid #f6f0e8;
}

.btn-dark:hover {
  background: #ffffff;
  border-color: #ffffff;
}

.btn-light {
  border: 1px solid rgba(245, 241, 234, 0.42);
  background: rgba(245, 241, 234, 0.05);
  color: #fff;
}

.btn-light:hover {
  background: rgba(159, 117, 77, 0.34);
  border-color: rgba(215, 181, 145, 0.7);
}

/* BENEFITS */
.benefits {
  width: min(92%, var(--max));
  margin: 0 auto;
  padding: 112px 0 104px;
}

.center {
  text-align: center;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 42px;
}

.benefit-card {
  text-align: center;
  padding: 8px 30px;
  border-right: 1px solid var(--line);
}

.benefit-card:last-child {
  border-right: none;
}

.icon {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(159, 117, 77, 0.5);
  color: var(--accent);
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", sans-serif;
  font-size: 1.15rem;
  font-weight: 500;
}

.benefit-card h3 {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  margin-bottom: 10px;
}

.benefit-card p {
  color: var(--muted);
  font-size: 0.9rem;
}

/* PROCESS */
.process {
  width: min(88%, 1050px);
  margin: 0 auto;
  padding: 96px 0 48px;
  text-align: center;
}

.process-label {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 28px;
}

/* VISUAL BREAK */
.visual-break {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) 1fr;
  gap: clamp(38px, 5vw, 74px);
  width: min(88%, var(--max));
  margin: 0 auto;
  padding: clamp(34px, 4vw, 54px);
  align-items: center;
  background: #17120d;
  color: #fff;
}

.visual-break-image {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  min-height: 360px;
}

.visual-break-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23, 18, 13, 0.04), rgba(23, 18, 13, 0.26));
  pointer-events: none;
}

.visual-break-image img {
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.9) sepia(0.08) brightness(0.95);
}

.visual-break-text {
  max-width: 520px;
}

.visual-break h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(2rem, 3.3vw, 3.15rem);
  letter-spacing: -0.02em;
  line-height: 1.04;
  font-weight: 600;
  margin: 12px 0 28px;
}

.visual-break a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 700;
  border-bottom: 1px solid rgba(255, 255, 255, 0.44);
  padding-bottom: 6px;
}

.visual-break a span {
  transition: transform 0.22s ease;
}

.visual-break a:hover span {
  transform: translateX(4px);
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.step-top {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.step-number,
.step-icon {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(184, 143, 99, 0.38);
  border-radius: 50%;
  background: var(--bg);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-family: "Inter", sans-serif;
  font-weight: 500;
}

.step-line {
  height: 1px;
  background: rgba(184, 143, 99, 0.32);
}

.process-step h3 {
  font-family: "Fraunces", serif;
  font-size: 1.35rem;
  line-height: 1;
  font-weight: 600;
  margin-bottom: 8px;
}

.process-step p {
  max-width: 240px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.process-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 34px;
  color: var(--accent-deep);
  font-weight: 700;
  border-bottom: 1px solid rgba(127, 87, 52, 0.26);
  padding-bottom: 6px;
}

.process-link span {
  transition: transform 0.22s ease;
}

.process-link:hover span {
  transform: translateX(4px);
}

/* PRICING */
.pricing {
  width: min(92%, var(--max));
  margin: 0 auto;
  padding: 56px 0 112px;
  text-align: center;
}

.pricing h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  letter-spacing: -0.02em;
  font-weight: 600;
  margin: 10px 0 34px;
}

.pricing > .section-label {
  font-size: 0.9rem;
  font-weight: 600;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  text-align: left;
  align-items: start;
}

.price-card {
  position: relative;
  padding: 40px 38px 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 252, 247, 0.62);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.price-card.popular {
  transform: translateY(-8px);
  border-color: rgba(159, 117, 77, 0.78);
  box-shadow: 0 22px 48px rgba(127, 87, 52, 0.13);
}

.price-card:hover {
  transform: translateY(-4px);
  border-color: rgba(159, 117, 77, 0.38);
  box-shadow: 0 18px 42px rgba(32, 25, 19, 0.08);
}

.price-card.popular:hover {
  transform: translateY(-10px);
}

.popular-label {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 0.7rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.price-card h3 {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.price {
  font-family: "Fraunces", serif;
  font-size: 2.15rem;
  line-height: 1;
  margin-bottom: 26px;
  font-weight: 600;
}

.price-description {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.72;
  margin-bottom: 28px;
}

.price-card ul {
  list-style: none;
  display: grid;
  gap: 14px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.65;
}

.price-features li,
.detail-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 14px;
}

.feature-icon {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(159, 117, 77, 0.38);
  border-radius: 50%;
  color: var(--accent);
  background: rgba(159, 117, 77, 0.065);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  font-size: 0.82rem;
  line-height: 1;
  font-weight: 500;
}

.package-note {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.82rem;
  line-height: 1.6;
  font-weight: 650;
}

.package-link,
.package-detail-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 28px;
  color: var(--accent-deep);
  font-size: 0.84rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(127, 87, 52, 0.26);
  padding-bottom: 6px;
}

.package-link span,
.package-detail-link span {
  transition: transform 0.22s ease;
}

.package-link:hover span,
.package-detail-link:hover span {
  transform: translateX(4px);
}

.custom-examples {
  margin-top: 28px;
}

.custom-examples h4 {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.68rem;
  margin-bottom: 16px;
}

.custom-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}

.custom-grid div {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
}

.custom-grid .feature-icon {
  font-size: 0;
}

.custom-grid .feature-icon::before {
  content: "";
  width: 9px;
  height: 9px;
  border: 1.4px solid currentColor;
  transform: rotate(45deg);
}

.custom-grid strong {
  font-size: 0.86rem;
  line-height: 1.25;
}

.price-note {
  max-width: 760px;
  margin: 38px auto 0;
  padding: 18px 24px 8px;
  border: 1px solid rgba(159, 117, 77, 0.18);
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  background: rgba(255, 252, 247, 0.58);
  text-align: center;
  color: rgba(98, 93, 87, 0.72);
  font-size: 0.84rem;
  letter-spacing: 0.03em;
}

.payment-note {
  max-width: 760px;
  margin: 0 auto;
  padding: 6px 24px 20px;
  border: 1px solid rgba(159, 117, 77, 0.18);
  border-top: 0;
  border-radius: 0 0 8px 8px;
  background: rgba(255, 252, 247, 0.58);
  color: var(--ink-soft);
  font-size: 0.86rem;
  line-height: 1.6;
}

/* VALUE */
.value-contact {
  display: grid;
  grid-template-columns: minmax(260px, 350px) 1fr;
  gap: clamp(30px, 4.6vw, 64px);
  width: min(88%, var(--max));
  margin: 0 auto;
  padding: clamp(34px, 4.5vw, 54px);
  align-items: center;
  background: var(--panel);
}

.value-image {
  align-self: center;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(32, 25, 19, 0.12);
}

.value-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23, 18, 13, 0.02), rgba(23, 18, 13, 0.18));
  pointer-events: none;
}

.value-image img {
  height: auto;
  aspect-ratio: 4 / 4.7;
  object-fit: cover;
  object-position: 34% center;
  border-radius: 8px;
}

.value-content {
  padding: 0;
}

.value-content h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(2.05rem, 2.75vw, 2.75rem);
  letter-spacing: -0.02em;
  line-height: 1.03;
  max-width: 560px;
  margin: 10px 0 30px;
  font-weight: 600;
}

.mini-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 760px;
}

.mini-value {
  padding: 0 22px;
  border-right: 1px solid rgba(23, 23, 23, 0.12);
}

.mini-value:first-child {
  padding-left: 0;
}

.mini-value:last-child {
  border-right: none;
  padding-right: 0;
}

.mini-icon {
  color: var(--accent);
  font-size: 1.65rem;
  line-height: 1;
  margin-bottom: 16px;
}

.mini-values h3 {
  font-family: "Fraunces", serif;
  font-size: 1.38rem;
  line-height: 1.05;
  margin-bottom: 12px;
}

.mini-values p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* DESIGN CONCEPTS */
.design-concepts {
  width: min(88%, var(--max));
  margin: 110px auto 0;
  padding: clamp(34px, 4.5vw, 58px);
  background:
    linear-gradient(135deg, rgba(23, 18, 13, 0.98), rgba(36, 28, 21, 0.94)),
    #17120d;
  color: #fff;
  border-radius: 8px;
  overflow: hidden;
}

.concept-heading {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(320px, 1fr);
  gap: 28px 58px;
  align-items: end;
  margin-bottom: 36px;
}

.concept-heading .section-label {
  grid-column: 1 / -1;
  color: rgba(215, 181, 145, 0.94);
}

.concept-heading h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(2.05rem, 3.3vw, 3.15rem);
  line-height: 1.04;
  letter-spacing: -0.025em;
  font-weight: 600;
}

.concept-heading > p:not(.section-label) {
  color: rgba(245, 241, 234, 0.72);
  font-size: 0.96rem;
  line-height: 1.75;
  max-width: 520px;
}

.concept-card {
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(320px, 0.82fr);
  gap: 0;
  min-height: 430px;
  border: 1px solid rgba(245, 241, 234, 0.14);
  border-radius: 8px;
  background: rgba(245, 241, 234, 0.055);
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.18);
}

.concept-media {
  position: relative;
  min-height: 430px;
  overflow: hidden;
}

.concept-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23, 18, 13, 0.02), rgba(23, 18, 13, 0.28));
  pointer-events: none;
}

.concept-media img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.9) sepia(0.08) brightness(0.92);
  transition: transform 0.45s ease, filter 0.45s ease;
}

.concept-card:hover .concept-media img {
  transform: scale(1.035);
  filter: saturate(0.96) sepia(0.06) brightness(0.98);
}

.concept-content {
  display: flex;
  flex-direction: column;
  padding: clamp(32px, 4vw, 52px);
  background: rgba(12, 10, 8, 0.42);
}

.concept-kicker {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(215, 181, 145, 0.9);
  font-size: 0.72rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.concept-content h3 {
  font-family: "Fraunces", serif;
  font-size: clamp(2.15rem, 3.6vw, 3.35rem);
  line-height: 1;
  letter-spacing: -0.025em;
  font-weight: 600;
  margin-bottom: 18px;
}

.concept-content > p:not(.concept-kicker) {
  color: rgba(245, 241, 234, 0.74);
  font-size: 0.95rem;
  line-height: 1.75;
}

.concept-tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 30px 0;
}

.concept-tags li {
  padding: 8px 12px;
  border: 1px solid rgba(215, 181, 145, 0.24);
  border-radius: 999px;
  color: rgba(245, 241, 234, 0.82);
  background: rgba(245, 241, 234, 0.055);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.concept-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  margin-top: auto;
  padding-bottom: 6px;
  color: #fff;
  border-bottom: 1px solid rgba(215, 181, 145, 0.42);
  font-size: 0.86rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.concept-link span {
  transition: transform 0.22s ease;
}

.concept-link:hover span {
  transform: translateX(4px);
}

/* FAQ */
.faq {
  width: min(92%, 920px);
  margin: 104px auto 0;
}

.section-heading {
  text-align: center;
  margin-bottom: 34px;
}

.section-heading h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-top: 10px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 252, 247, 0.68);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 22px 24px;
  color: var(--text);
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.faq-question span:first-child {
  font-family: "Fraunces", serif;
  font-size: 1.24rem;
  line-height: 1.12;
  font-weight: 600;
}

.faq-icon {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(159, 117, 77, 0.42);
  border-radius: 50%;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.22s ease, background 0.22s ease;
}

.faq-item.is-open .faq-icon {
  background: rgba(159, 117, 77, 0.1);
  transform: rotate(180deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.24s ease;
}

.faq-answer p {
  overflow: hidden;
  padding: 0 24px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer p {
  padding-bottom: 22px;
}

/* CONTACT */
.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  width: min(84%, 1050px);
  margin: 110px auto 0;
  padding: 58px 62px;
  align-items: center;
  background: rgba(255, 252, 247, 0.54);
  border: 1px solid rgba(127, 87, 52, 0.14);
  border-radius: 8px;
  box-shadow: 0 18px 55px rgba(32, 25, 19, 0.055);
}

.contact h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(2.2rem, 3vw, 3.05rem);
  letter-spacing: -0.02em;
  line-height: 1.02;
  max-width: 500px;
  margin: 10px 0 20px;
  font-weight: 600;
}

.contact p {
  color: var(--muted);
  max-width: 430px;
  font-size: 0.98rem;
}

.contact-cards {
  display: grid;
  gap: 12px;
}

.contact-card {
  position: relative;
  display: grid;
  gap: 8px;
  padding: 24px 58px 24px 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 252, 247, 0.86);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(159, 117, 77, 0.48);
  background: rgba(255, 252, 247, 0.92);
  box-shadow: 0 16px 36px rgba(32, 25, 19, 0.07);
}

.card-arrow {
  position: absolute;
  right: 24px;
  top: 50%;
  color: var(--accent);
  font-size: 1.35rem;
  transform: translateY(-50%);
  transition: transform 0.22s ease;
}

.contact-card:hover .card-arrow {
  transform: translate(5px, -50%);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn,
  .price-card,
  .contact-cards a,
  .reveal {
    transition: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

.contact-cards span:not(.card-arrow) {
  display: block;
  font-size: 0.78rem;
  color: var(--accent);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
}

.contact-cards strong {
  font-size: 0.98rem;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(84%, 1050px);
  margin: 0 auto;
  padding: 34px 0 46px;
  color: rgba(98, 93, 87, 0.82);
  font-size: 0.85rem;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
}

.footer-logo img {
  width: auto;
  max-height: 38px;
  object-fit: contain;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

/* LEGAL PAGES */
.legal-page {
  background:
    linear-gradient(180deg, rgba(235, 224, 210, 0.78), rgba(245, 241, 234, 0.96) 360px),
    var(--bg);
}

.legal-header {
  width: min(92%, var(--max));
  margin: 0 auto;
  padding: 32px 0 58px;
}

.legal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.legal-nav .brand img {
  width: 92px;
  max-width: 92px;
  max-height: 54px;
}

.legal-nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
}

.legal-nav-links a {
  transition: color 0.2s ease;
}

.legal-nav-links a:hover {
  color: var(--accent);
}

.legal-home-btn {
  padding: 9px 16px;
  border: 1px solid rgba(159, 117, 77, 0.3);
  border-radius: 8px;
  background: rgba(255, 252, 247, 0.48);
  color: var(--text);
}

.legal-home-btn:hover {
  border-color: rgba(159, 117, 77, 0.56);
  background: rgba(255, 252, 247, 0.76);
}

.legal-hero {
  max-width: 760px;
  padding-top: 92px;
}

.legal-hero h1 {
  font-family: "Fraunces", serif;
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  letter-spacing: -0.03em;
  line-height: 1.02;
  font-weight: 600;
  margin: 12px 0 16px;
}

.legal-hero > p:not(.section-label) {
  color: var(--muted);
  font-weight: 600;
}

.legal-content {
  width: min(92%, 900px);
  margin: 0 auto;
  padding: 0 0 92px;
}

.legal-card {
  padding: clamp(34px, 5vw, 62px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 252, 247, 0.76);
  box-shadow: 0 24px 60px rgba(32, 25, 19, 0.06);
}

.legal-card h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 36px 0 12px;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.75;
}

.legal-card p + p,
.legal-card ul + p,
.legal-card p + ul {
  margin-top: 10px;
}

.legal-card ul {
  padding-left: 20px;
}

.legal-card a {
  color: var(--accent-deep);
  font-weight: 700;
  border-bottom: 1px solid rgba(127, 87, 52, 0.26);
}

.legal-card hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 34px 0 6px;
}

/* PROCESS PAGE */
.process-page {
  background:
    linear-gradient(180deg, rgba(23, 18, 13, 0.08), rgba(245, 241, 234, 0.96) 420px),
    var(--bg);
}

.subpage-hero {
  width: min(92%, var(--max));
  margin: 0 auto;
  padding: 32px 0 82px;
}

.subpage-nav .brand img {
  width: 92px;
  max-width: 92px;
  max-height: 54px;
}

.subpage-hero-inner {
  max-width: 820px;
  padding-top: 92px;
}

.subpage-hero-inner h1 {
  font-family: "Fraunces", serif;
  font-size: clamp(2.65rem, 5vw, 4.7rem);
  letter-spacing: -0.035em;
  line-height: 1.02;
  font-weight: 600;
  margin: 12px 0 22px;
}

.subpage-hero-inner > p:not(.section-label) {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 620px;
  margin-bottom: 28px;
}

.subpage-hero-inner .btn-dark {
  background: #17120d;
  color: #fff;
  border-color: #17120d;
}

.subpage-hero-inner .btn-dark:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.full-process {
  width: min(92%, 1020px);
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.process-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 30px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 252, 247, 0.7);
  box-shadow: 0 18px 48px rgba(32, 25, 19, 0.045);
}

.process-card-top {
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 14px;
}

.process-card-number {
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
}

.process-card-icon {
  width: 54px;
  height: 54px;
  border: 1px solid rgba(159, 117, 77, 0.45);
  border-radius: 50%;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}

.process-card h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(1.6rem, 2.6vw, 2.15rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.process-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.68;
}

.detail-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin: 18px 0;
  color: var(--ink-soft);
}

.highlight-box {
  margin-top: 18px;
  padding: 16px 18px;
  border: 1px solid rgba(159, 117, 77, 0.24);
  border-radius: 8px;
  background: rgba(159, 117, 77, 0.08);
  color: var(--ink-soft) !important;
  font-weight: 600;
}

.launch-icons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.launch-icons span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-soft);
  font-weight: 700;
  font-size: 0.88rem;
}

.process-cta {
  width: min(92%, 920px);
  margin: 90px auto 0;
  padding: 54px;
  border-radius: 8px;
  background: #17120d;
  color: #fff;
  text-align: center;
}

.process-cta h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.03;
  letter-spacing: -0.02em;
  margin: 10px 0 16px;
}

.process-cta p {
  max-width: 610px;
  margin: 0 auto 24px;
  color: rgba(245, 241, 234, 0.78);
}

.process-cta-info {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  color: rgba(245, 241, 234, 0.86);
  font-size: 0.88rem;
  margin-bottom: 28px;
}

.process-cta-info a {
  color: #fff;
  font-weight: 700;
}

/* PACKAGES PAGE */
.package-details {
  width: min(92%, 1040px);
  margin: 0 auto;
  display: grid;
  gap: 22px;
}

.package-detail-card {
  position: relative;
  padding: clamp(34px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 252, 247, 0.72);
  box-shadow: 0 18px 52px rgba(32, 25, 19, 0.045);
}

.package-detail-popular {
  border-color: rgba(159, 117, 77, 0.7);
  box-shadow: 0 24px 58px rgba(127, 87, 52, 0.12);
}

.package-detail-header {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: flex-start;
}

.package-detail-header h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-top: 10px;
}

.package-detail-price {
  font-family: "Fraunces", serif;
  font-size: clamp(2rem, 3.8vw, 3.1rem);
  line-height: 1;
  font-weight: 600;
  white-space: nowrap;
}

.package-detail-intro {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.72;
  max-width: 720px;
  margin-top: 24px;
}

.package-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 34px;
  margin-top: 28px;
}

.package-detail-grid .detail-list {
  margin: 0;
}

.package-custom-list {
  max-width: 680px;
}

.package-custom-list .custom-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 32px;
}

.package-payment-box {
  max-width: 860px;
  margin: 22px auto 0;
  padding: 24px 28px;
  border: 1px solid rgba(159, 117, 77, 0.18);
  border-radius: 8px;
  background: rgba(255, 252, 247, 0.62);
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.65;
}

.package-payment-box p + p {
  margin-top: 8px;
}

/* RESPONSIVE */
@media (max-width: 950px) {
  .hero-section {
    background:
      linear-gradient(
        90deg,
        rgba(6, 5, 4, 0.86),
        rgba(18, 15, 12, 0.48)
      ),
      url("value-studio.png");
    background-size: auto 540px;
    background-position: right -20px center;
  }

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

  .nav-links {
    flex-wrap: wrap;
    gap: 16px;
  }

  .hero-inner {
    min-height: 470px;
  }

  .benefit-grid,
  .visual-break,
  .concept-heading,
  .concept-card,
  .process-timeline,
  .pricing-grid,
  .mini-values,
  .contact-cards,
  .value-contact,
  .contact,
  .process-card {
    grid-template-columns: 1fr;
  }

  .value-image img {
    max-height: 300px;
    aspect-ratio: 16 / 10;
    object-position: 36% center;
  }

  .benefit-card {
    border-right: none;
    border-bottom: 1px solid var(--line);
    padding: 28px 0;
  }

  .benefit-card:last-child {
    border-bottom: none;
  }

  .visual-break {
    width: min(92%, var(--max));
  }

  .visual-break-image,
  .visual-break-image img {
    min-height: 300px;
  }

  .design-concepts {
    width: min(92%, var(--max));
  }

  .concept-card,
  .concept-media {
    min-height: 360px;
  }

  .mini-value {
    border-right: none;
    border-bottom: 1px solid rgba(23, 23, 23, 0.12);
    padding: 22px 0;
  }

  .mini-value:last-child {
    border-bottom: none;
  }

  .contact {
    width: min(92%, var(--max));
    margin-top: 72px;
  }

  .custom-grid,
  .detail-list {
    grid-template-columns: 1fr;
  }

  .process-card {
    gap: 18px;
  }

  .package-detail-header,
  .package-detail-grid,
  .package-custom-list .custom-grid {
    grid-template-columns: 1fr;
  }

  .package-detail-header {
    display: grid;
  }

  .process-card-top {
    justify-items: start;
    grid-template-columns: auto auto;
    align-items: center;
  }

  .legal-nav {
    align-items: flex-start;
  }

  .legal-nav-links {
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 12px 18px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    min-height: 640px;
    background:
      linear-gradient(180deg, rgba(8, 7, 6, 0.72) 0%, rgba(8, 7, 6, 0.62) 38%, rgba(8, 7, 6, 0.9) 100%),
      url("value-studio.png");
    background-size: cover;
    background-position: 58% center;
    background-repeat: no-repeat;
  }

  .navbar {
    width: min(88%, var(--max));
    padding-top: 24px;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
  }

  .brand {
    overflow: hidden;
    border-radius: 8px;
  }

  .brand img {
    width: 82px;
    max-width: 82px;
    max-height: 48px;
  }

  .nav-links {
    display: none;
    width: 100%;
    margin-left: 0;
    padding: 14px;
    border: 1px solid rgba(245, 241, 234, 0.18);
    border-radius: 8px;
    background: rgba(23, 18, 13, 0.88);
    backdrop-filter: blur(14px);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
    gap: 6px;
  }

  .nav-links.is-open {
    display: grid;
  }

  .nav-links a {
    display: flex;
    align-items: center;
    min-height: 42px;
    padding: 0 12px;
    border-radius: 6px;
    font-size: 0.86rem;
    color: rgba(255, 255, 255, 0.88);
  }

  .nav-links a:hover {
    background: rgba(245, 241, 234, 0.08);
  }

  .nav-btn {
    justify-content: center;
    margin-top: 6px;
    padding: 0 14px;
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
    min-height: 42px;
    padding: 0 14px;
    border: 1px solid rgba(245, 241, 234, 0.42);
    border-radius: 8px;
    background: rgba(23, 18, 13, 0.32);
    color: #fff;
    font: inherit;
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    backdrop-filter: blur(10px);
  }

  .menu-lines,
  .menu-lines::before,
  .menu-lines::after {
    display: block;
    width: 15px;
    height: 1px;
    border-radius: 99px;
    background: currentColor;
    transition: transform 0.22s ease, opacity 0.22s ease;
  }

  .menu-lines {
    position: relative;
  }

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

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

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

  .menu-toggle[aria-expanded="true"] .menu-lines {
    background: transparent;
  }

  .menu-toggle[aria-expanded="true"] .menu-lines::before {
    transform: translateY(5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] .menu-lines::after {
    transform: translateY(-5px) rotate(-45deg);
  }

  .hero-inner {
    width: min(88%, var(--max));
    min-height: 500px;
    align-items: center;
    padding: 34px 0 44px;
  }

  .hero-text {
    max-width: 100%;
    padding-left: 18px;
  }

  .hero-text::before {
    max-height: 300px;
  }

  .hero-text h1 em,
  .hero-text h1 span {
    display: inline;
  }

  .hero-text h1 span::after {
    content: " ";
  }

  .hero-text h1 {
    font-size: clamp(1.9rem, 7.5vw, 2.45rem);
    max-width: 340px;
    line-height: 1.08;
    letter-spacing: -0.025em;
    margin-bottom: 20px;
  }

  .hero-text > p:not(.eyebrow) {
    font-size: 0.9rem;
    line-height: 1.55;
    max-width: 325px;
    margin-bottom: 22px;
  }

  .hero-buttons {
    flex-direction: column;
    max-width: 100%;
    width: min(100%, 340px);
  }

  .hero-buttons .btn {
    width: 100%;
    min-height: 48px;
  }

  .benefits {
    padding: 58px 0 52px;
  }

  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 28px;
  }

  .benefit-card {
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 20px 14px;
    background: rgba(255, 252, 247, 0.44);
  }

  .benefit-card:last-child {
    border: 1px solid var(--line);
  }

  .benefit-card .icon {
    width: 38px;
    height: 38px;
    margin-bottom: 14px;
    font-size: 0.95rem;
  }

  .benefit-card h3 {
    font-size: 0.66rem;
    letter-spacing: 0.1em;
    margin-bottom: 7px;
  }

  .benefit-card p {
    font-size: 0.76rem;
    line-height: 1.45;
  }

  .visual-break {
    padding: 28px;
    gap: 24px;
  }

  .visual-break-image,
  .visual-break-image img {
    min-height: 220px;
  }

  .visual-break h2 {
    font-size: clamp(1.65rem, 7vw, 2.1rem);
    margin-bottom: 20px;
  }

  .design-concepts {
    margin-top: 58px;
    padding: 28px;
  }

  .concept-heading {
    gap: 14px;
    margin-bottom: 24px;
  }

  .concept-heading h2 {
    font-size: clamp(1.65rem, 7vw, 2.1rem);
  }

  .concept-heading > p:not(.section-label) {
    font-size: 0.86rem;
    line-height: 1.6;
  }

  .concept-card,
  .concept-media {
    min-height: 0;
  }

  .concept-media img {
    height: auto;
    min-height: 240px;
    aspect-ratio: 4 / 3;
  }

  .concept-content {
    padding: 24px;
  }

  .concept-kicker {
    font-size: 0.62rem;
    letter-spacing: 0.13em;
    margin-bottom: 12px;
  }

  .concept-content h3 {
    font-size: clamp(1.8rem, 8vw, 2.25rem);
  }

  .concept-content > p:not(.concept-kicker) {
    font-size: 0.86rem;
    line-height: 1.58;
  }

  .concept-tags {
    margin: 22px 0;
  }

  .process {
    padding: 54px 0 34px;
  }

  .process-label {
    margin-bottom: 22px;
  }

  .process-timeline {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .process-step {
    position: relative;
    padding: 22px 18px 20px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 252, 247, 0.44);
  }

  .step-top {
    display: flex;
    justify-content: center;
    margin-bottom: 12px;
  }

  .step-line {
    display: none;
  }

  .step-number {
    position: absolute;
    top: 16px;
    left: 16px;
    width: auto;
    height: auto;
    padding: 4px 8px;
    border-radius: 999px;
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    background: rgba(159, 117, 77, 0.1);
    border-color: rgba(159, 117, 77, 0.22);
  }

  .step-icon {
    width: 42px;
    height: 42px;
  }

  .process-step h3 {
    font-size: 1.15rem;
    line-height: 1.08;
    margin-bottom: 6px;
  }

  .process-step p {
    font-size: 0.8rem;
    max-width: 260px;
  }

  .pricing {
    padding: 42px 0 60px;
  }

  .pricing h2 {
    font-size: clamp(1.55rem, 6.3vw, 2rem);
    line-height: 1.08;
    margin-bottom: 26px;
  }

  .value-content h2,
  .contact h2 {
    font-size: clamp(1.75rem, 7vw, 2.15rem);
    line-height: 1.08;
  }

  .pricing-grid {
    gap: 12px;
  }

  .price-card {
    padding: 22px;
  }

  .price-card h3 {
    margin-bottom: 18px;
  }

  .price-description {
    font-size: 0.82rem;
    line-height: 1.5;
    margin-bottom: 16px;
  }

  .price-card.popular,
  .price-card.popular:hover {
    transform: none;
  }

  .price {
    font-size: 2.2rem;
    margin-bottom: 22px;
  }

  .price-card ul {
    gap: 9px;
    font-size: 0.95rem;
    line-height: 1.38;
  }

  .price-features li,
  .detail-list li {
    gap: 8px;
  }

  .feature-icon {
    width: 20px;
    height: 20px;
    font-size: 0.66rem;
  }

  .package-note {
    margin-top: 16px;
    padding-top: 14px;
    font-size: 0.78rem;
  }

  .custom-examples {
    margin-top: 16px;
  }

  .custom-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .custom-grid div {
    padding: 10px;
    gap: 8px;
  }

  .custom-grid strong {
    font-size: 0.72rem;
  }

  .price-note {
    margin-top: 16px;
    font-size: 0.78rem;
  }

  .package-link {
    margin-top: 22px;
    font-size: 0.72rem;
  }

  .payment-note {
    margin-top: 12px;
    padding: 13px 14px;
    font-size: 0.78rem;
    line-height: 1.55;
  }

  .value-content {
    padding: 0;
  }

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

  .value-image img {
    max-height: 250px;
  }

  .value-content h2 {
    font-size: clamp(1.35rem, 5.4vw, 1.65rem);
    line-height: 1.08;
    margin: 8px 0 18px;
    max-width: 100%;
  }

  .mini-value {
    padding: 16px 0;
  }

  .mini-icon {
    margin-bottom: 8px;
    font-size: 1.35rem;
  }

  .mini-values h3 {
    font-size: 1.12rem;
    margin-bottom: 7px;
  }

  .mini-values p {
    font-size: 0.82rem;
    line-height: 1.45;
  }

  .contact {
    gap: 28px;
    padding: 30px 24px;
    margin-top: 58px;
  }

  .faq {
    margin-top: 58px;
  }

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

  .section-heading h2 {
    font-size: clamp(1.45rem, 6vw, 1.85rem);
  }

  .faq-question {
    padding: 18px;
    gap: 12px;
  }

  .faq-question span:first-child {
    font-size: 1.06rem;
  }

  .faq-icon {
    width: 30px;
    height: 30px;
  }

  .faq-answer p {
    padding: 0 18px;
    font-size: 0.82rem;
    line-height: 1.58;
  }

  .faq-item.is-open .faq-answer p {
    padding-bottom: 18px;
  }

  .contact h2 {
    font-size: clamp(1.3rem, 5.2vw, 1.55rem);
    line-height: 1.08;
    margin-bottom: 14px;
    max-width: 100%;
  }

  .contact p {
    font-size: 0.88rem;
    line-height: 1.55;
  }

  .contact-card {
    overflow: hidden;
    padding-top: 20px;
    padding-right: 52px;
    padding-bottom: 20px;
  }

  .card-arrow {
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
  }

  .contact-card:hover .card-arrow {
    transform: translate(4px, -50%);
  }

  .footer {
    width: min(92%, var(--max));
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    margin-top: 34px;
    padding: 28px 0 36px;
    border-top: 1px solid var(--line);
  }

  .footer-logo img {
    max-height: 32px;
  }

  .footer a:not(.footer-logo) {
    color: var(--accent);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.72rem;
  }

  .footer-links {
    justify-content: flex-start;
    gap: 10px 16px;
  }

  .legal-header {
    padding: 24px 0 40px;
  }

  .legal-nav {
    gap: 18px;
  }

  .legal-nav .brand img {
    width: 76px;
    max-width: 76px;
    max-height: 46px;
  }

  .legal-nav-links {
    font-size: 0.76rem;
    gap: 10px 14px;
  }

  .legal-home-btn {
    padding: 8px 12px;
  }

  .legal-hero {
    padding-top: 58px;
  }

  .legal-hero h1 {
    font-size: clamp(2.05rem, 9vw, 3rem);
  }

  .legal-content {
    padding-bottom: 58px;
  }

  .legal-card {
    padding: 28px 22px;
  }

  .legal-card h2 {
    margin-top: 30px;
    font-size: 1.28rem;
  }

  .legal-card p,
  .legal-card li {
    font-size: 0.88rem;
    line-height: 1.68;
  }

  .subpage-hero {
    padding: 24px 0 54px;
  }

  .subpage-nav .brand img {
    width: 76px;
    max-width: 76px;
    max-height: 46px;
  }

  .subpage-hero-inner {
    padding-top: 58px;
  }

  .subpage-hero-inner h1 {
    font-size: clamp(2rem, 8vw, 3rem);
    line-height: 1.04;
  }

  .subpage-hero-inner > p:not(.section-label) {
    font-size: 0.92rem;
  }

  .full-process {
    gap: 12px;
  }

  .process-card {
    padding: 22px 18px;
  }

  .process-card-icon {
    width: 42px;
    height: 42px;
    font-size: 0.95rem;
  }

  .process-card h2 {
    font-size: 1.45rem;
  }

  .process-card p {
    font-size: 0.84rem;
    line-height: 1.58;
  }

  .detail-list {
    gap: 8px;
    font-size: 0.82rem;
  }

  .highlight-box {
    padding: 13px 14px;
    font-size: 0.82rem !important;
  }

  .process-cta {
    margin-top: 58px;
    padding: 34px 24px;
  }

  .process-cta h2 {
    font-size: clamp(1.55rem, 7vw, 2rem);
  }

  .process-cta p,
  .process-cta-info {
    font-size: 0.84rem;
  }

  .package-details {
    gap: 14px;
  }

  .package-detail-card {
    padding: 24px 20px;
  }

  .package-detail-header {
    gap: 14px;
  }

  .package-detail-header h2 {
    font-size: clamp(1.45rem, 6vw, 1.9rem);
  }

  .package-detail-price {
    font-size: clamp(1.85rem, 8vw, 2.35rem);
  }

  .package-detail-intro {
    font-size: 0.86rem;
    line-height: 1.58;
    margin-top: 16px;
  }

  .package-detail-grid {
    gap: 8px;
    margin-top: 18px;
  }

  .package-custom-list {
    margin-top: 20px;
  }

  .package-custom-list .custom-grid div {
    padding: 11px 0;
  }

  .package-detail-link {
    margin-top: 16px;
    font-size: 0.72rem;
  }

  .package-payment-box {
    padding: 18px;
    font-size: 0.78rem;
  }
}

@media (max-width: 480px) {
  .hero-section {
    min-height: 620px;
    background-position: 56% center;
  }

  .brand img {
    width: 76px;
    max-width: 76px;
    max-height: 44px;
  }

  .hero-text {
    padding-left: 16px;
    max-width: 100%;
  }

  .hero-text h1 {
    font-size: clamp(1.55rem, 7.4vw, 1.85rem);
    max-width: 330px;
    margin-bottom: 18px;
  }

  .hero-text .eyebrow {
    max-width: 255px;
    font-size: 0.58rem;
    letter-spacing: 0.17em;
    line-height: 1.5;
  }

  .hero-text > p:not(.eyebrow) {
    font-size: 0.84rem;
    max-width: 300px;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .contact-cards a {
    padding: 24px;
  }

  .price-card {
    padding: 20px;
  }

  .price {
    font-size: 1.65rem;
  }

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

  .custom-grid div {
    grid-template-columns: auto 1fr;
  }

  .benefits {
    padding: 48px 0 44px;
  }

  .benefit-grid {
    gap: 12px;
  }

  .benefit-card {
    padding: 18px 10px;
  }

  .benefit-card h3 {
    font-size: 0.6rem;
  }

  .benefit-card p {
    font-size: 0.72rem;
  }

  .process {
    padding: 44px 0 28px;
  }

  .process-timeline {
    gap: 12px;
  }

  .process-step {
    padding: 20px 14px 18px;
  }

  .step-number {
    top: 14px;
    left: 14px;
  }

  .process-step h3 {
    font-size: 1.05rem;
  }

  .pricing {
    padding: 34px 0 52px;
  }

  .pricing h2 {
    font-size: clamp(1.42rem, 6vw, 1.75rem);
  }

  .value-contact {
    padding: 24px;
    gap: 18px;
  }

  .value-content h2 {
    font-size: clamp(1.22rem, 5.2vw, 1.45rem);
    margin-bottom: 16px;
  }

  .mini-value {
    padding: 14px 0;
  }

  .contact {
    margin-top: 46px;
  }

  .faq {
    margin-top: 46px;
  }

  .faq-question {
    padding: 16px 14px;
  }

  .faq-question span:first-child {
    font-size: 0.98rem;
  }

  .faq-answer p {
    padding: 0 14px;
  }

  .faq-item.is-open .faq-answer p {
    padding-bottom: 16px;
  }

  .contact h2 {
    font-size: clamp(1.18rem, 5vw, 1.35rem);
  }

  .contact-card {
    padding-right: 52px;
  }

  .footer {
    margin-top: 28px;
    padding-bottom: 32px;
  }

  .footer-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .legal-nav {
    flex-direction: column;
  }

  .legal-nav-links {
    justify-content: flex-start;
  }

  .legal-hero {
    padding-top: 42px;
  }

  .legal-hero h1 {
    font-size: clamp(1.9rem, 10vw, 2.5rem);
  }

  .legal-card {
    padding: 24px 18px;
  }

  .subpage-hero {
    padding-bottom: 44px;
  }

  .subpage-hero-inner {
    padding-top: 42px;
  }

  .subpage-hero-inner h1 {
    font-size: clamp(1.85rem, 9vw, 2.45rem);
  }

  .process-card {
    padding: 20px 14px;
  }

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

  .launch-icons {
    display: grid;
    gap: 8px;
  }

  .process-cta {
    padding: 30px 18px;
  }

  .visual-break {
    padding: 26px;
  }

  .visual-break-image,
  .visual-break-image img {
    min-height: 240px;
  }

  .design-concepts {
    margin-top: 46px;
    padding: 22px;
  }

  .concept-heading {
    margin-bottom: 18px;
  }

  .concept-heading h2 {
    font-size: clamp(1.42rem, 6vw, 1.75rem);
  }

  .concept-media img {
    min-height: 210px;
    aspect-ratio: 1 / 1;
  }

  .concept-content {
    padding: 22px 18px;
  }

  .concept-content h3 {
    font-size: 1.72rem;
  }

  .concept-tags {
    gap: 6px;
  }

  .concept-tags li {
    padding: 7px 9px;
    font-size: 0.58rem;
    letter-spacing: 0.09em;
  }

  .concept-link {
    font-size: 0.72rem;
  }
}
