:root {
  --bg: #faf5ec;
  --paper: #fffdf8;
  --ink: #21160f;
  --muted: #6c5346;
  --brand: #8f4f2c;
  --brand-dark: #69371d;
  --line: #e9d8c7;
  --card: #f4e8d7;
  --shadow: 0 12px 34px rgba(47, 24, 13, 0.14);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 18% 12%, #fff8ee 0, #faf5ec 45%, #f1e5d5 100%);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, calc(100% - 2.5rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(10px);
  background: rgba(250, 245, 236, 0.78);
  border-bottom: 1px solid rgba(105, 55, 29, 0.12);
}

.header-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.btn-header {
  padding: 0.6rem 1.1rem;
  font-size: 0.9rem;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 180px;
  height: auto;
}

.site-nav {
  display: flex;
  gap: 1.15rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.site-nav a:hover {
  color: var(--brand);
}

.hero {
  position: relative;
  min-height: 82vh;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(27, 14, 9, 0.74), rgba(27, 14, 9, 0.43));
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff7ee;
  text-wrap: balance;
  animation: rise 0.9s ease-out both;
}

.eyebrow {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0.25rem;
  font-size: 0.79rem;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", serif;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2rem, 4.4vw, 4rem);
  margin: 0.2rem 0 1rem;
  max-width: 20ch;
}

.hero p {
  max-width: 58ch;
  margin-bottom: 1.4rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.75rem 1.35rem;
  background: linear-gradient(180deg, #b7673d 0%, #8f4f2c 100%);
  color: #fff7f0;
  font-weight: 700;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 15px 36px rgba(47, 24, 13, 0.24);
}

.section {
  padding: 4.3rem 0;
}

.two-col {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 2rem;
  align-items: center;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.9rem);
  margin: 0 0 0.8rem;
}

.intro p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.pill-list {
  list-style: none;
  padding: 0;
  margin: 1.1rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.pill-list li {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.35rem 0.8rem;
  background: var(--paper);
  font-size: 0.9rem;
}

.image-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 0.6rem;
  box-shadow: var(--shadow);
}

.image-card img {
  border-radius: 14px;
  width: 100%;
  max-height: 520px;
  object-fit: cover;
}

.benefits {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 2%, rgba(255, 246, 233, 0.85), rgba(255, 246, 233, 0) 44%),
    radial-gradient(circle at 95% 20%, rgba(228, 215, 196, 0.52), rgba(228, 215, 196, 0) 36%),
    linear-gradient(180deg, #f4ecdf, #e8ddd0);
  border-top: 1px solid rgba(121, 79, 49, 0.2);
  border-bottom: 1px solid rgba(121, 79, 49, 0.2);
}

.benefits::before,
.benefits::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.benefits::before {
  width: 200px;
  height: 200px;
  left: -40px;
  bottom: -28px;
  background: radial-gradient(circle at 60% 40%, rgba(115, 145, 87, 0.25), rgba(115, 145, 87, 0) 70%);
}

.benefits::after {
  width: 230px;
  height: 230px;
  right: -34px;
  bottom: -60px;
  background: radial-gradient(circle at 30% 40%, rgba(115, 145, 87, 0.22), rgba(115, 145, 87, 0) 70%);
}

.benefits-top {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 420px);
  gap: 1.1rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.benefits-head {
  max-width: 740px;
}

.benefits-kicker {
  display: inline-block;
  margin: 0 0 1rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: #fff9f2;
  border: 2px solid rgba(143, 79, 44, 0.4);
  border-radius: 999px;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, #d89a5f 0%, #b86d3e 50%, #8f4f2c 100%);
  box-shadow: 
    0 4px 12px rgba(89, 52, 26, 0.2),
    0 8px 24px rgba(89, 52, 26, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  animation: badge-glow 3s ease-in-out infinite;
}

@keyframes badge-glow {
  0%, 100% {
    box-shadow: 
      0 4px 12px rgba(89, 52, 26, 0.2),
      0 8px 24px rgba(89, 52, 26, 0.15),
      inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }
  50% {
    box-shadow: 
      0 4px 12px rgba(89, 52, 26, 0.3),
      0 8px 24px rgba(89, 52, 26, 0.25),
      0 0 30px rgba(143, 79, 44, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.3);
  }
}

.benefits-head h2 {
  font-size: clamp(2.8rem, 6.5vw, 6.5rem);
  line-height: 0.92;
  margin: 0.3rem 0 0.6rem;
  max-width: 12ch;
  font-weight: 700;
  text-shadow: 
    0 2px 4px rgba(33, 22, 15, 0.1),
    0 4px 12px rgba(143, 79, 44, 0.15),
    0 8px 24px rgba(143, 79, 44, 0.1);
  letter-spacing: -0.02em;
  position: relative;
  animation: cinematic-reveal 1.2s ease-out both;
}

@keyframes cinematic-reveal {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

.benefits-head h2 span {
  color: #ad6e3b;
  display: inline-block;
  background: linear-gradient(135deg, #c98252 0%, #8f4f2c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.benefits-visual {
  position: relative;
  min-height: 260px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 1;
}

.benefits-visual img {
  width: min(100%, 410px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 14px 20px rgba(48, 27, 12, 0.24));
  mix-blend-mode: multiply;
  -webkit-mask-image: radial-gradient(ellipse 74% 72% at 50% 48%, #000 67%, transparent 100%);
  mask-image: radial-gradient(ellipse 74% 72% at 50% 48%, #000 67%, transparent 100%);
}

.benefit-grid {
  margin-top: 1.65rem;
  display: grid;
  gap: 1.1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  position: relative;
  z-index: 3;
}

.section-copy {
  margin: 0.5rem 0 0;
  color: #5f4b3f;
  max-width: 62ch;
  font-size: 1.15rem;
  line-height: 1.7;
  font-weight: 400;
}

.section-copy strong {
  color: #8f4f2c;
  font-weight: 700;
}

.book-service {
  margin-top: 1.5rem;
  display: flex;
  width: fit-content;
  margin-inline: auto;
}

.benefit-card {
  position: relative;
  isolation: isolate;
  background: linear-gradient(180deg, #ffffff 0%, #fffbf5 50%, #f8f2ea 100%);
  border: 2px solid #d4bc9e;
  border-radius: 20px;
  padding: 3.5rem 1.3rem 1.5rem;
  box-shadow: 
    0 4px 12px rgba(65, 35, 16, 0.08),
    0 12px 28px rgba(65, 35, 16, 0.12),
    0 20px 40px rgba(65, 35, 16, 0.1);
  overflow: visible;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}

.benefit-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 
    0 8px 16px rgba(65, 35, 16, 0.12),
    0 16px 36px rgba(65, 35, 16, 0.16),
    0 28px 50px rgba(65, 35, 16, 0.14);
  border-color: #b86d3e;
}

.benefit-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #b86d3e, #ddae79);
}

.benefit-index {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #fff9f2;
  background: radial-gradient(circle at 30% 30%, #c98252, #8f4f2c);
}

.benefit-icon {
  width: 5.2rem;
  height: 5.2rem;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  color: #fff6e9;
  background: radial-gradient(circle at 34% 28%, #d89a5f, #b86d3e, #8f4f2c);
  border: 5px solid #ffffff;
  box-shadow: 
    0 4px 12px rgba(76, 42, 20, 0.15),
    0 8px 24px rgba(76, 42, 20, 0.2),
    0 0 0 1px rgba(143, 79, 44, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10;
}

.benefit-card:hover .benefit-icon {
  transform: translate(-50%, -50%) scale(1.1) rotate(5deg);
  box-shadow: 
    0 6px 16px rgba(76, 42, 20, 0.2),
    0 12px 32px rgba(76, 42, 20, 0.25),
    0 0 0 2px rgba(143, 79, 44, 0.2);
}

.benefit-icon svg {
  width: 2.2rem;
  height: 2.2rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit-grid h3 {
  margin: 0.8rem 0 0.6rem;
  font-size: 1.85rem;
  line-height: 1.15;
  color: #1c140e;
  font-weight: 700;
}

.benefit-grid p {
  margin: 0;
  color: #4a3a2e;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
}


.difference {
  padding-top: 3.8rem;
  padding-bottom: 4.6rem;
  background: linear-gradient(180deg, #f2e8d8 0%, #efe3d2 100%);
}

.difference-paper {
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(circle at 15% 25%, rgba(201, 214, 152, 0.16), rgba(201, 214, 152, 0) 38%),
    linear-gradient(180deg, #fdf5e6 0%, #f8ecd8 100%);
  border: 1px solid #d8c39f;
  border-radius: 38px 52px 42px 56px;
  padding: 2.1rem 2rem 2.4rem;
  box-shadow: 0 18px 34px rgba(64, 44, 21, 0.12);
}

.difference-paper::before,
.difference-paper::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.difference-paper::before {
  width: 190px;
  height: 190px;
  top: -56px;
  left: -64px;
  background: radial-gradient(circle at 40% 35%, rgba(124, 161, 72, 0.32), rgba(124, 161, 72, 0) 70%);
}

.difference-paper::after {
  width: 250px;
  height: 250px;
  right: -78px;
  bottom: -56px;
  background: radial-gradient(circle at 40% 50%, rgba(122, 160, 70, 0.2), rgba(122, 160, 70, 0) 72%);
}

.difference h2 {
  text-align: center;
  margin: 0;
  max-width: 24ch;
  margin-inline: auto;
  font-size: clamp(2.05rem, 4vw, 3.7rem);
  line-height: 1.08;
  color: #1b2e15;
}

.difference-divider {
  margin: 0.7rem auto 1.2rem;
  width: min(520px, 80%);
  text-align: center;
  position: relative;
  color: #789340;
  font-size: 1.05rem;
}

.difference-divider::before,
.difference-divider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 42%;
  height: 2px;
  background: linear-gradient(90deg, rgba(120, 147, 64, 0.75), rgba(120, 147, 64, 0.15));
}

.difference-divider::before {
  left: 0;
}

.difference-divider::after {
  right: 0;
  transform: scaleX(-1);
}

.difference-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  width: min(980px, 100%);
  margin: 0 auto;
}

.difference-card {
  position: relative;
  background: rgba(255, 248, 235, 0.88);
  border: 2px dotted #9b7a48;
  border-radius: 18px;
  padding: 2.85rem 1rem 1rem;
  min-height: 230px;
}

.difference-grid .difference-card:nth-child(1) {
  animation: slide-left-card 3.2s ease-in-out infinite;
}

.difference-grid .difference-card:nth-child(2) {
  z-index: 2;
}

.difference-grid .difference-card:nth-child(3) {
  animation: slide-right-card 3.2s ease-in-out infinite;
}

.difference-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 3px solid #7e9e3c;
  background: radial-gradient(circle at 30% 30%, #89ad3f, #607c28);
  color: #f5efd8;
  display: grid;
  place-items: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -38px;
  box-shadow: 0 10px 18px rgba(58, 79, 20, 0.22);
}

.difference-icon svg {
  width: 38px;
  height: 38px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.difference-card h3 {
  text-align: center;
  margin: 0 0 0.55rem;
  color: #1f2d19;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  line-height: 1.1;
}

.difference-card p {
  margin: 0;
  color: #63482f;
  font-size: 0.94rem;
  line-height: 1.48;
}

.difference-product {
  position: absolute;
  right: -24px;
  bottom: -34px;
  width: clamp(200px, 26vw, 350px);
  height: auto;
  mix-blend-mode: multiply;
  filter: saturate(1.05) contrast(1.03);
  -webkit-mask-image: radial-gradient(ellipse 70% 72% at 52% 55%, #000 64%, transparent 100%);
  mask-image: radial-gradient(ellipse 70% 72% at 52% 55%, #000 64%, transparent 100%);
}

@keyframes slide-left-card {
  0%,
  100% {
    transform: translateX(0);
  }
  45% {
    transform: translateX(-16px);
  }
}

@keyframes slide-right-card {
  0%,
  100% {
    transform: translateX(0);
  }
  45% {
    transform: translateX(16px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .difference-grid .difference-card:nth-child(1),
  .difference-grid .difference-card:nth-child(3) {
    animation: none;
  }
}

.traditional {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 18%, rgba(176, 202, 136, 0.28) 0, rgba(176, 202, 136, 0.04) 46%, transparent 76%),
    radial-gradient(circle at 91% 12%, rgba(153, 178, 114, 0.22) 0, rgba(153, 178, 114, 0) 50%),
    linear-gradient(180deg, #edf2dd 0%, #e8edd8 52%, #e2e8d0 100%);
  border-top: 1px solid rgba(94, 122, 65, 0.24);
  border-bottom: 1px solid rgba(94, 122, 65, 0.24);
}

.traditional::before,
.traditional::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.traditional::before {
  width: 420px;
  height: 420px;
  left: -180px;
  bottom: -220px;
  background: radial-gradient(circle at 65% 35%, rgba(130, 159, 92, 0.24), rgba(130, 159, 92, 0));
}

.traditional::after {
  width: 340px;
  height: 340px;
  right: -120px;
  top: -130px;
  background: radial-gradient(circle at 30% 60%, rgba(126, 154, 87, 0.22), rgba(126, 154, 87, 0));
}

.traditional-layout {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 1.2rem;
  align-items: center;
}

.traditional-copy {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.traditional-copy h2 {
  margin: 0;
  color: #234c22;
  font-size: clamp(3.2rem, 5.6vw, 5.8rem);
  line-height: 0.95;
}

.traditional-copy h2::after {
  content: "";
  display: block;
  width: min(300px, 65%);
  height: 2px;
  margin-top: 0.55rem;
  background: linear-gradient(90deg, rgba(58, 100, 43, 0.6), rgba(58, 100, 43, 0.15));
}

.traditional-copy p {
  color: #1b2d1f;
  font-size: 1.22rem;
  margin: 1.15rem 0 0;
  max-width: 39ch;
}

.traditional-copy strong {
  color: #163f1f;
  font-weight: 800;
}


.traditional-visual {
  position: relative;
  z-index: 1;
  min-height: 620px;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.traditional-visual img {
  width: min(980px, 138%);
  max-width: none;
  height: auto;
  object-fit: contain;
  transform: translateX(9%) translateY(5%);
  mix-blend-mode: multiply;
  filter: saturate(1.04) contrast(1.03);
  -webkit-mask-image: radial-gradient(ellipse 78% 76% at 58% 56%, #000 64%, transparent 100%);
  mask-image: radial-gradient(ellipse 78% 76% at 58% 56%, #000 64%, transparent 100%);
  display: block;
}

.how-to-use {
  background: linear-gradient(180deg, #f3e6d5, #f8efe2);
}

.steps {
  margin-top: 1rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.steps article {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem;
}

.step-no {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fffaf4;
  background: var(--brand-dark);
  font-weight: 700;
  margin-bottom: 0.7rem;
}

.steps img {
  border-radius: 12px;
  height: auto;
  width: 100%;
  object-fit: contain;
  max-height: none;
}

.steps h3 {
  font-size: 1.65rem;
  margin: 0.7rem 0 0.25rem;
}

.steps p {
  margin: 0;
  color: var(--muted);
}

.cta-wrap {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 1.35rem;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1rem;
  background: linear-gradient(105deg, #f3e4d2, #fff7ed);
}

.cta-wrap img {
  width: 100%;
  max-width: 240px;
  margin-inline: auto;
}

.cta-wrap h3 {
  font-size: 1.6rem;
  margin: 0.2rem 0 0.3rem;
}

.phone {
  margin-top: 0;
  margin-bottom: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.site-footer {
  border-top: 1px solid rgba(105, 55, 29, 0.14);
  background: #f4e9dc;
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 78px;
  color: var(--muted);
  font-size: 0.95rem;
}

@keyframes rise {
  from {
    transform: translateY(16px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 980px) {
  .site-nav {
    display: none;
  }

  .btn-header {
    font-size: 0.85rem;
    padding: 0.5rem 0.9rem;
  }

  .btn-header svg {
    width: 18px;
    height: 18px;
  }

  .benefits-top {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .benefits-head h2 {
    max-width: 100%;
    font-size: clamp(2rem, 8vw, 3.5rem);
  }

  .benefits-visual {
    min-height: 220px;
    justify-content: flex-start;
  }

  .benefits-visual img {
    width: min(340px, 88%);
    -webkit-mask-image: none;
    mask-image: none;
    mix-blend-mode: normal;
  }

  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .benefit-card {
    padding: 3.2rem 1rem 1.3rem;
  }

  .benefit-icon {
    width: 4.5rem;
    height: 4.5rem;
  }

  .two-col,
  .traditional-layout,
  .benefit-grid,
  .steps,
  .cta-wrap {
    grid-template-columns: 1fr;
  }

  .traditional-copy h2 {
    font-size: clamp(2.2rem, 8vw, 4.2rem);
  }

  .difference-paper {
    border-radius: 26px;
    padding: 1.8rem 1rem 1.2rem;
  }

  .difference-grid {
    grid-template-columns: 1fr;
    width: min(460px, 100%);
  }

  .difference-card {
    min-height: 0;
    padding-top: 2.5rem;
  }

  .traditional-copy p {
    max-width: 100%;
  }

  .traditional-visual {
    min-height: 460px;
    justify-content: center;
  }

  .traditional-visual img {
    width: min(700px, 100%);
    transform: none;
    mix-blend-mode: normal;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .cta-wrap img {
    max-width: 220px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(1120px, calc(100% - 1.25rem));
  }

  .section {
    padding: 3.2rem 0;
  }

  .hero {
    min-height: 74vh;
  }

  .benefits-visual {
    min-height: 180px;
  }

  .benefits-visual img {
    width: min(310px, 96%);
  }

  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    padding: 3rem 1rem 1.3rem;
  }

  .benefit-icon {
    width: 4.5rem;
    height: 4.5rem;
  }

  .benefit-grid h3 {
    font-size: 1.8rem;
  }

  h1 {
    font-size: clamp(1.8rem, 10vw, 2.4rem);
  }

  .traditional-copy h2 {
    font-size: 2.6rem;
  }

  .difference h2 {
    font-size: 1.95rem;
  }

  .traditional-copy p {
    font-size: 1.05rem;
  }

  .traditional-visual {
    min-height: 320px;
  }

  .traditional-visual img {
    width: 100%;
  }
}
