:root {
  --cream: #f6efe3;
  --cream-soft: #fbf7ef;
  --paper: #fffdf8;
  --forest: #176548;
  --forest-deep: #0b352b;
  --forest-black: #071f1a;
  --ink: #17211d;
  --muted: #69736d;
  --line: rgba(23, 33, 29, 0.14);
  --amber: #dc9d44;
  --kakao: #fee500;
  --serif: "Noto Serif KR", Georgia, serif;
  --sans: "Noto Sans KR", "DM Sans", sans-serif;
  --max: 1240px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream-soft);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  word-break: keep-all;
}

body.dialog-open {
  overflow: hidden;
}

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

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

button {
  color: inherit;
  font: inherit;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: white;
  background: var(--forest-deep);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  padding: 14px 24px;
  transition: 0.35s ease;
}

.site-header.is-scrolled {
  padding-top: 8px;
  padding-bottom: 8px;
  background: rgba(251, 247, 239, 0.9);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 12px 35px rgba(13, 47, 38, 0.05);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max);
  margin: 0 auto;
}

.brand img {
  width: 118px;
  height: 54px;
  object-fit: cover;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
  margin-right: 36px;
}

.desktop-nav a {
  position: relative;
  padding: 8px 0;
  color: #41504a;
  font-size: 14px;
  font-weight: 500;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: var(--forest);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  transition: transform 0.25s var(--ease), box-shadow 0.25s ease, background 0.25s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button svg,
.header-cta svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.button-primary {
  color: white;
  background: var(--forest);
  box-shadow: 0 12px 30px rgba(23, 101, 72, 0.18);
}

.button-primary:hover {
  background: #0d553b;
  box-shadow: 0 16px 35px rgba(23, 101, 72, 0.25);
}

.button-small {
  min-height: 44px;
  padding: 0 18px;
  font-size: 13px;
}

.button-kakao {
  color: #17160b;
  background: var(--kakao);
}

.button-outline {
  min-height: 52px;
  background: transparent;
  border-color: rgba(23, 101, 72, 0.35);
}

.button-outline:hover {
  color: white;
  background: var(--forest);
  border-color: var(--forest);
}

.button-cream {
  color: var(--forest-deep);
  background: var(--cream);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
}

.button-wide {
  width: 100%;
}

.hero {
  position: relative;
  display: grid;
  min-height: 850px;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.92fr);
  align-items: center;
  gap: clamp(45px, 7vw, 105px);
  max-width: 1440px;
  margin: 0 auto;
  padding: 130px max(32px, calc((100vw - var(--max)) / 2)) 90px;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 20%, rgba(220, 157, 68, 0.14), transparent 26%),
    var(--cream);
}

.hero::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 54%;
  width: 1px;
  background: linear-gradient(transparent, rgba(23, 33, 29, 0.13) 20%, rgba(23, 33, 29, 0.13) 80%, transparent);
  content: "";
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.24;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.16'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  color: var(--forest);
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.eyebrow span {
  width: 27px;
  height: 1px;
  background: currentColor;
}

.eyebrow.light {
  color: #cfdeca;
}

.hero h1,
.section-heading h2,
.why h2,
.product h2,
.reviews h2,
.faq h2,
.final-cta h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 1.34;
}

.hero h1 {
  max-width: 680px;
  font-size: clamp(43px, 4.3vw, 70px);
}

h1 em,
h2 em {
  color: var(--forest);
  font-style: normal;
}

.hero-description {
  margin: 30px 0 0;
  color: #54615b;
  font-size: 17px;
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 38px;
}

.text-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
}

.play-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(23, 33, 29, 0.3);
  border-radius: 50%;
  transition: 0.25s ease;
}

.play-icon svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.text-button:hover .play-icon {
  color: white;
  background: var(--forest);
  border-color: var(--forest);
}

.hero-meta {
  display: flex;
  gap: clamp(24px, 4vw, 54px);
  margin-top: 54px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
}

.hero-meta div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.hero-meta strong {
  font-family: "DM Sans", var(--sans);
  font-size: 21px;
  letter-spacing: -0.04em;
}

.hero-meta strong small {
  margin-left: 2px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
}

.hero-meta span {
  color: var(--muted);
  font-size: 12px;
}

.hero-visual {
  padding: 0 20px 30px 0;
}

.film-card {
  position: relative;
  padding: 13px;
  color: white;
  background: var(--forest-black);
  box-shadow: 0 34px 70px rgba(11, 53, 43, 0.27);
  transform: rotate(1.5deg);
}

.film-card::before,
.film-card::after {
  position: absolute;
  z-index: 2;
  top: 50%;
  width: 7px;
  height: 68%;
  background: repeating-linear-gradient(to bottom, var(--cream) 0 10px, transparent 10px 22px);
  content: "";
  opacity: 0.72;
  transform: translateY(-50%);
}

.film-card::before {
  left: -11px;
}

.film-card::after {
  right: -11px;
}

.film-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.03);
}

.film-topline {
  display: flex;
  justify-content: space-between;
  padding: 1px 2px 11px;
  color: #bfd0c8;
  font-family: "DM Sans", sans-serif;
  font-size: 8px;
  letter-spacing: 0.12em;
}

.film-caption {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 17px 8px 8px;
}

.film-caption span {
  color: #b6c6bf;
  font-size: 11px;
}

.film-caption strong {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 500;
}

.visual-play {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  color: var(--forest-deep);
  background: rgba(246, 239, 227, 0.9);
  border: 0;
  border-radius: 50%;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.23);
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: transform 0.3s var(--ease), background 0.2s ease;
}

.visual-play:hover {
  background: white;
  transform: translate(-50%, -50%) scale(1.08);
}

.visual-play svg {
  width: 30px;
  fill: currentColor;
}

.floating-note {
  position: absolute;
  z-index: 5;
  padding: 12px 17px;
  color: var(--forest-deep);
  background: #fffdf6;
  border: 1px solid rgba(23, 101, 72, 0.16);
  border-radius: 3px;
  box-shadow: 0 12px 30px rgba(11, 53, 43, 0.13);
  font-size: 12px;
  font-weight: 600;
}

.note-top {
  top: 13%;
  right: -20px;
  transform: rotate(4deg);
}

.note-bottom {
  bottom: 5px;
  left: -42px;
  color: white;
  background: var(--forest);
  transform: rotate(-3deg);
}

.scroll-cue {
  position: absolute;
  bottom: 36px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 11px;
  color: #728078;
  font-family: "DM Sans", sans-serif;
  font-size: 9px;
  letter-spacing: 0.2em;
  transform: translateX(-50%) rotate(90deg);
  transform-origin: center;
}

.scroll-cue i {
  width: 42px;
  height: 1px;
  background: currentColor;
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  color: #e7eee9;
  background: var(--forest-deep);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-bar div {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: center;
  gap: 13px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
}

.trust-bar span {
  color: var(--amber);
  font-family: "DM Sans", sans-serif;
  font-size: 10px;
}

.section {
  padding: 135px max(28px, calc((100vw - var(--max)) / 2));
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: end;
  column-gap: 60px;
  margin-bottom: 65px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
}

.section-heading h2,
.why h2,
.reviews h2,
.faq h2 {
  font-size: clamp(36px, 4vw, 57px);
}

.section-heading > p:last-child {
  max-width: 490px;
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
}

.scene-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  grid-template-rows: repeat(2, 310px);
  gap: 18px;
}

.scene {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #ddd6ca;
}

.scene-large {
  grid-row: 1 / 3;
}

.scene img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease), filter 0.5s ease;
}

.scene:hover img {
  filter: saturate(1.06);
  transform: scale(1.025);
}

.scene figcaption {
  position: absolute;
  right: 15px;
  bottom: 15px;
  left: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  color: white;
  background: rgba(7, 31, 26, 0.77);
  backdrop-filter: blur(9px);
  font-family: var(--serif);
  font-size: 14px;
}

.scene figcaption span {
  color: var(--amber);
  font-family: "DM Sans", sans-serif;
  font-size: 10px;
}

.portfolio-block {
  margin-top: 92px;
  padding-top: 42px;
  border-top: 1px solid rgba(15, 55, 46, 0.16);
}

.portfolio-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 30px;
}

.portfolio-kicker,
.film-copy > span,
.dialog-meta > span {
  margin: 0 0 8px;
  color: var(--amber);
  font-family: "DM Sans", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.portfolio-heading h3 {
  margin: 0;
  color: var(--forest);
  font-family: var(--serif);
  font-size: clamp(29px, 3vw, 42px);
  font-weight: 500;
}

.portfolio-heading > p {
  max-width: 420px;
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.film-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px 18px;
}

.film-card {
  display: block;
  min-width: 0;
  padding: 0;
  color: inherit;
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.film-poster {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--forest-deep);
}

.film-poster::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 45%, rgba(2, 12, 10, 0.55));
  transition: background 0.35s ease;
}

.film-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease), filter 0.4s ease;
}

.film-card:hover .film-poster img,
.film-card:focus-visible .film-poster img {
  filter: saturate(1.08) brightness(0.9);
  transform: scale(1.025);
}

.film-play {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--forest-deep);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  box-shadow: 0 8px 35px rgba(0, 0, 0, 0.2);
  transform: translate(-50%, -50%);
  transition: transform 0.3s var(--ease), background 0.3s ease;
}

.film-card:hover .film-play,
.film-card:focus-visible .film-play {
  background: white;
  transform: translate(-50%, -50%) scale(1.08);
}

.film-play svg {
  width: 23px;
  fill: currentColor;
}

.film-duration {
  position: absolute;
  z-index: 2;
  right: 14px;
  bottom: 12px;
  padding: 5px 8px;
  color: white;
  background: rgba(3, 15, 12, 0.72);
  font-family: "DM Sans", sans-serif;
  font-size: 10px;
  letter-spacing: 0.08em;
  backdrop-filter: blur(7px);
}

.film-copy {
  display: block;
  padding: 18px 2px 0;
}

.film-copy > span {
  display: block;
  margin-bottom: 7px;
}

.film-copy strong {
  color: var(--forest);
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
}

.film-card:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 5px;
}

.section-action {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.why {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(500px, 1.2fr);
  gap: clamp(60px, 10vw, 150px);
  color: white;
  background:
    radial-gradient(circle at 8% 87%, rgba(220, 157, 68, 0.13), transparent 25%),
    var(--forest-deep);
}

.why-intro {
  position: sticky;
  top: 145px;
  align-self: start;
}

.why h2 em,
.reviews h2 em {
  color: #b9d2c2;
}

.why-intro > p:last-child {
  margin: 28px 0 0;
  color: #adbbb5;
  font-size: 15px;
  line-height: 1.95;
}

.feature {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 22px;
  padding: 44px 0 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.feature:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.feature-number {
  color: var(--amber);
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
}

.feature h3 {
  margin: -8px 0 15px;
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 500;
  line-height: 1.5;
}

.feature p {
  max-width: 520px;
  margin: 0;
  color: #9eb0a8;
  font-size: 14px;
  line-height: 1.85;
}

.product {
  background: var(--cream);
}

.product-card {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid rgba(23, 101, 72, 0.16);
  box-shadow: 0 30px 70px rgba(11, 53, 43, 0.08);
}

.product-copy {
  padding: clamp(46px, 6vw, 82px);
}

.product h2 {
  font-size: clamp(39px, 4vw, 58px);
}

.product-copy > p:not(.eyebrow) {
  max-width: 560px;
  margin: 26px 0 32px;
  color: var(--muted);
  line-height: 1.9;
}

.product ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 30px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
}

.product li {
  display: flex;
  align-items: center;
  gap: 9px;
}

.product li span {
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  color: var(--forest);
  background: #e5eee7;
  border-radius: 50%;
  font-size: 11px;
}

.product-price {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 5vw, 66px);
  color: white;
  background: var(--forest);
}

.product-price > span {
  color: #c2d8ce;
  font-size: 12px;
}

.product-price strong {
  margin-top: 7px;
  font-family: "DM Sans", sans-serif;
  font-size: clamp(45px, 5vw, 65px);
  letter-spacing: -0.06em;
}

.product-price strong small {
  margin-left: 6px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
}

.product-price p {
  margin: 10px 0 35px;
  color: #c6d7d0;
  font-size: 12px;
}

.product-price .button-primary {
  color: var(--forest-deep);
  background: var(--cream);
  box-shadow: none;
}

.section-heading.centered {
  display: block;
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

.process-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list::before {
  position: absolute;
  top: 83px;
  right: 8%;
  left: 8%;
  height: 1px;
  background: var(--line);
  content: "";
}

.process-list li {
  position: relative;
  text-align: center;
}

.step {
  display: block;
  margin-bottom: 19px;
  color: var(--forest);
  font-family: "DM Sans", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.step-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  margin: 0 auto 25px;
  color: var(--forest);
  background: var(--cream-soft);
  border: 1px solid rgba(23, 101, 72, 0.22);
  border-radius: 50%;
}

.step-icon svg {
  width: 33px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
}

.process-list h3 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
}

.process-list p {
  margin: 0 auto;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
}

.reviews {
  color: white;
  background: var(--forest-black);
}

.reviews-heading {
  margin-bottom: 56px;
}

.reviews-heading > p:last-child {
  margin: 25px 0 0;
  color: #9cada6;
}

.quote-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.quote-card {
  min-height: 250px;
  margin: 0;
  padding: 34px;
  background: #0e3028;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.quote-card.featured {
  color: var(--forest-deep);
  background: var(--cream);
}

.quote-card > span {
  display: block;
  height: 38px;
  color: var(--amber);
  font-family: Georgia, serif;
  font-size: 58px;
  line-height: 1;
}

.quote-card p {
  margin: 17px 0 25px;
  font-family: var(--serif);
  font-size: clamp(18px, 1.8vw, 23px);
  line-height: 1.65;
}

.quote-card cite {
  color: #92a39b;
  font-size: 11px;
  font-style: normal;
}

.quote-card.featured cite {
  color: var(--muted);
}

.review-gallery {
  display: flex;
  gap: 12px;
  margin-top: 46px;
  padding-bottom: 12px;
  overflow-x: auto;
  scrollbar-color: var(--amber) rgba(255, 255, 255, 0.08);
}

.review-gallery button {
  flex: 0 0 285px;
  height: 185px;
  padding: 0;
  overflow: hidden;
  background: #edf1f4;
  border: 0;
  border-radius: 3px;
  cursor: zoom-in;
}

.review-gallery img {
  width: 100%;
  height: 100%;
  padding: 7px;
  object-fit: contain;
  transition: transform 0.4s var(--ease);
}

.review-gallery button:hover img {
  transform: scale(1.025);
}

.review-note {
  margin: 12px 0 0;
  color: #778b82;
  font-size: 10px;
  text-align: right;
}

.faq {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(55px, 9vw, 130px);
  background: var(--cream-soft);
}

.faq-heading {
  position: sticky;
  top: 145px;
  align-self: start;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq details {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  position: relative;
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 20px 50px 20px 0;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary span,
.faq summary span::after {
  position: absolute;
  right: 4px;
  width: 18px;
  height: 1px;
  background: var(--forest);
  content: "";
  transition: transform 0.25s ease;
}

.faq summary span::after {
  right: 0;
  transform: rotate(90deg);
}

.faq details[open] summary span::after {
  transform: rotate(0deg);
}

.faq details p {
  max-width: 660px;
  margin: -4px 0 28px;
  padding-right: 55px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

.final-cta {
  position: relative;
  min-height: 590px;
  display: grid;
  place-items: center;
  padding: 100px 28px;
  overflow: hidden;
  color: white;
  background: var(--forest);
  text-align: center;
}

.final-cta::before {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(220, 157, 68, 0.19), transparent 52%);
  content: "";
}

.final-cta-copy {
  position: relative;
  z-index: 2;
}

.final-cta .eyebrow {
  justify-content: center;
}

.final-cta h2 {
  font-size: clamp(42px, 5vw, 67px);
}

.final-cta-copy > p:not(.eyebrow) {
  margin: 27px 0 34px;
  color: #d1dfd8;
  line-height: 1.85;
}

.frame {
  position: absolute;
  display: block;
  width: 190px;
  aspect-ratio: 16 / 10;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.frame::before,
.frame::after {
  position: absolute;
  top: -9px;
  bottom: -9px;
  width: 4px;
  background: repeating-linear-gradient(to bottom, rgba(255, 255, 255, 0.4) 0 6px, transparent 6px 14px);
  content: "";
}

.frame::before { left: -8px; }
.frame::after { right: -8px; }
.frame-one { top: 15%; left: 5%; transform: rotate(-12deg); }
.frame-two { right: 4%; bottom: 12%; transform: rotate(14deg); }
.frame-three { top: 7%; right: 21%; width: 95px; transform: rotate(7deg); }

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  padding: 55px max(28px, calc((100vw - var(--max)) / 2));
  color: #8ea098;
  background: #061a16;
  font-size: 12px;
}

.footer-brand img {
  width: 105px;
  height: 42px;
  margin-bottom: 7px;
  object-fit: cover;
  filter: saturate(0.65) brightness(1.35);
}

.footer-brand p,
.copyright {
  margin: 0;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 25px;
  color: #d2ddd8;
  font-family: "DM Sans", sans-serif;
}

.footer-links a:hover {
  color: var(--amber);
}

.copyright {
  grid-column: 1 / -1;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: #60736a;
  font-family: "DM Sans", sans-serif;
  font-size: 10px;
  letter-spacing: 0.08em;
}

.mobile-kakao {
  display: none;
}

.media-dialog,
.review-dialog {
  position: fixed;
  max-width: min(980px, calc(100vw - 36px));
  max-height: calc(100dvh - 36px);
  padding: 0;
  overflow: visible;
  background: #050605;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 25px 100px rgba(0, 0, 0, 0.55);
}

.media-dialog::backdrop,
.review-dialog::backdrop {
  background: rgba(3, 15, 12, 0.88);
  backdrop-filter: blur(8px);
}

.media-dialog video {
  display: block;
  width: min(960px, calc(100vw - 48px));
  max-height: calc(100dvh - 108px);
  background: black;
}

.dialog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 15px 18px;
  color: white;
  background: var(--forest-deep);
}

.dialog-meta > span {
  flex: 0 0 auto;
  margin: 0;
  font-size: 9px;
}

.dialog-meta strong {
  overflow: hidden;
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dialog-close {
  position: absolute;
  z-index: 5;
  top: -42px;
  right: 0;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: white;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  cursor: pointer;
  font-size: 25px;
  font-weight: 300;
  line-height: 1;
}

.review-dialog {
  background: white;
}

.review-dialog img {
  max-width: min(820px, calc(100vw - 48px));
  max-height: calc(100dvh - 70px);
  object-fit: contain;
}

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

.reveal[data-delay="1"] { transition-delay: 0.09s; }
.reveal[data-delay="2"] { transition-delay: 0.18s; }
.reveal[data-delay="3"] { transition-delay: 0.27s; }
.reveal[data-delay="4"] { transition-delay: 0.36s; }

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

@media (max-width: 1050px) {
  .desktop-nav {
    display: none;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr 0.82fr;
    gap: 48px;
    padding-top: 135px;
    padding-bottom: 85px;
  }

  .hero::before {
    display: none;
  }

  .hero h1 {
    font-size: clamp(40px, 5vw, 56px);
  }

  .hero-description br {
    display: none;
  }

  .hero-meta {
    gap: 23px;
  }

  .floating-note {
    display: none;
  }

  .section {
    padding-top: 105px;
    padding-bottom: 105px;
  }

  .why {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 65px;
  }

  .product-card {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .product ul {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  html {
    scroll-padding-top: 70px;
  }

  body {
    padding-bottom: 76px;
  }

  .site-header {
    padding: 8px 16px;
  }

  .brand img {
    width: 96px;
    height: 48px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    display: flex;
    flex-direction: column;
    gap: 55px;
    padding: 112px 21px 70px;
  }

  .hero-copy {
    width: 100%;
  }

  .eyebrow {
    margin-bottom: 18px;
    font-size: 9px;
  }

  .hero h1 {
    font-size: clamp(37px, 11vw, 50px);
    line-height: 1.42;
  }

  .hero-description {
    margin-top: 22px;
    font-size: 14px;
    line-height: 1.8;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
    margin-top: 30px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .text-button {
    justify-content: center;
  }

  .hero-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 38px;
    padding-top: 20px;
  }

  .hero-meta strong {
    font-size: 17px;
  }

  .hero-meta span {
    font-size: 9px;
  }

  .hero-visual {
    width: calc(100% - 16px);
    max-width: 520px;
    margin: 0 auto;
    padding: 0;
  }

  .film-card {
    transform: rotate(0.7deg);
  }

  .film-card img {
    aspect-ratio: 4 / 4.7;
  }

  .film-caption strong {
    font-size: 17px;
  }

  .scroll-cue {
    display: none;
  }

  .trust-bar {
    grid-template-columns: 1fr 1fr;
  }

  .trust-bar div {
    min-height: 67px;
    justify-content: flex-start;
    padding: 0 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 11px;
  }

  .section {
    padding: 88px 21px;
  }

  .section-heading {
    display: block;
    margin-bottom: 42px;
  }

  .section-heading h2,
  .why h2,
  .reviews h2,
  .faq h2 {
    font-size: 36px;
  }

  .section-heading > p:last-child {
    margin-top: 22px;
    font-size: 13px;
  }

  .scene-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .scene {
    height: 260px;
  }

  .scene-large {
    height: 380px;
  }

  .portfolio-block {
    margin-top: 66px;
    padding-top: 32px;
  }

  .portfolio-heading {
    display: block;
    margin-bottom: 24px;
  }

  .portfolio-heading > p {
    margin-top: 14px;
  }

  .film-gallery {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .film-play {
    width: 50px;
    height: 50px;
  }

  .film-copy strong {
    font-size: 18px;
  }

  .why,
  .faq {
    display: block;
  }

  .why-intro,
  .faq-heading {
    position: static;
    margin-bottom: 42px;
  }

  .feature {
    grid-template-columns: 33px 1fr;
    gap: 12px;
    padding: 34px 0;
  }

  .feature h3 {
    font-size: 22px;
  }

  .product-card {
    display: block;
  }

  .product-copy,
  .product-price {
    padding: 39px 27px;
  }

  .product h2 {
    font-size: 37px;
  }

  .product-price strong {
    font-size: 48px;
  }

  .process-list {
    display: block;
  }

  .process-list::before {
    top: 20px;
    right: auto;
    bottom: 25px;
    left: 40px;
    width: 1px;
    height: auto;
  }

  .process-list li {
    display: grid;
    grid-template-columns: 82px 1fr;
    column-gap: 20px;
    align-items: center;
    margin-bottom: 28px;
    text-align: left;
  }

  .step {
    display: none;
  }

  .step-icon {
    grid-row: 1 / 3;
    width: 72px;
    height: 72px;
    margin: 0;
  }

  .process-list h3,
  .process-list p {
    grid-column: 2;
    margin-left: 0;
  }

  .process-list h3 {
    align-self: end;
    margin-bottom: 6px;
  }

  .process-list p {
    align-self: start;
  }

  .quote-row {
    display: flex;
    gap: 12px;
    margin-right: -21px;
    padding-right: 21px;
    overflow-x: auto;
  }

  .quote-card {
    min-width: 280px;
    min-height: 225px;
    padding: 27px;
  }

  .review-gallery {
    margin-right: -21px;
    padding-right: 21px;
  }

  .review-gallery button {
    flex-basis: 245px;
    height: 158px;
  }

  .faq summary {
    min-height: 75px;
    padding-right: 40px;
    font-size: 15px;
  }

  .faq details p {
    padding-right: 15px;
    font-size: 13px;
  }

  .final-cta {
    min-height: 540px;
    padding: 80px 21px;
  }

  .final-cta h2 {
    font-size: 40px;
    line-height: 1.4;
  }

  .frame-one { left: -100px; }
  .frame-two { right: -110px; }

  .site-footer {
    display: block;
    padding: 45px 21px;
    text-align: center;
  }

  .footer-brand img {
    margin-right: auto;
    margin-left: auto;
  }

  .footer-links {
    justify-content: center;
    margin: 28px 0;
  }

  .mobile-kakao {
    position: fixed;
    z-index: 90;
    right: 12px;
    bottom: 11px;
    left: 12px;
    display: flex;
    height: 57px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: #17160b;
    background: var(--kakao);
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(7, 31, 26, 0.23);
    font-size: 14px;
    font-weight: 700;
  }

  .mobile-kakao svg {
    width: 22px;
    fill: #2d2a18;
  }

  .dialog-close {
    top: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.55);
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

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