:root {
  --color-charcoal: #242321;
  --color-charcoal-soft: #302d29;
  --color-panel: #39332d;
  --color-cream: #f6f0e4;
  --color-paper: #fffaf2;
  --color-sage: #203f36;
  --color-leaf: #70ad4d;
  --color-gold: #b98c5f;
  --color-gold-soft: #d3b188;
  --color-text: #211f1c;
  --color-muted: #70685e;
  --color-line: rgb(36 35 33 / 14%);
  --color-white: #fff;
  --font-sans: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Malgun Gothic", system-ui, sans-serif;
  --font-serif: "Nanum Myeongjo", serif;
  --container: 1120px;
  --wide: 1440px;
  --edge: clamp(22px, 5vw, 72px);
  --section-y: clamp(92px, 9vw, 150px);
  --section-y-sm: clamp(64px, 7vw, 104px);
  --gap-xl: clamp(52px, 6vw, 92px);
  --gap-lg: clamp(34px, 4vw, 64px);
  --gap-md: clamp(20px, 2.6vw, 34px);
  --radius: 8px;
  --shadow-soft: 0 24px 70px rgb(0 0 0 / 18%);
  --ease: cubic-bezier(.2, .72, .18, 1);
  --fz-hero: clamp(52px, 6vw, 92px);
  --fz-display: clamp(40px, 4.5vw, 70px);
  --fz-section: clamp(34px, 3.4vw, 54px);
  --fz-subtitle: clamp(18px, 1.35vw, 24px);
  --fz-body: clamp(16px, .45vw + 14px, 18px);
  --fz-small: 14px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  padding-bottom: 120px;
  background: var(--color-charcoal);
  color: var(--color-text);
  font-family: var(--font-sans);
  font-size: var(--fz-body);
  line-height: 1.65;
  letter-spacing: 0;
  word-break: keep-all;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.lang-en {
  word-break: normal;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

img,
svg,
iframe {
  display: block;
}

img {
  max-width: 100%;
}

iframe {
  border: 0;
}

.nanum {
  font-family: var(--font-serif);
}

.full-bleed {
  width: 100%;
}

.container,
.container-wide,
.container-narrow {
  width: min(var(--container), calc(100% - var(--edge) * 2));
  margin-inline: auto;
}

.container-wide {
  width: min(var(--wide), calc(100% - var(--edge) * 2));
}

.container-narrow {
  width: min(780px, calc(100% - var(--edge) * 2));
}

.dark-section {
  background: var(--color-charcoal);
  color: var(--color-white);
}

.cream-section {
  background: var(--color-cream);
}

.photo-box,
.image-card,
.video-main,
.video-tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: #4d453c;
}

.photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contain-photo {
  object-fit: contain;
}

.photo-box::after,
.image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 16%, rgb(255 255 255 / 14%) 48%, transparent 78%);
  opacity: 0;
  transform: translate3d(-75%, 0, 0);
}

[data-animate] {
  opacity: 0;
  transform: translate3d(0, 34px, 0);
  transition: opacity .72s var(--ease), transform .72s var(--ease);
  transition-delay: calc(var(--stagger, 0) * 55ms);
  will-change: opacity, transform;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

[data-animate].is-visible .photo-box::after,
[data-animate].is-visible.image-card::after {
  animation: light-sweep 1.05s var(--ease) .18s both;
}

.photo-box img,
.image-card img,
.video-main,
.video-tile,
.btn,
.submit-btn,
.social-button,
.icon-button {
  transition: transform .28s var(--ease), filter .28s ease, background-color .28s ease, color .28s ease;
}

@media (hover: hover) and (pointer: fine) {
  .photo-box:hover img,
  .image-card:hover img {
    transform: scale(1.035);
    filter: saturate(1.06) contrast(1.03);
  }

  .btn:hover,
  .submit-btn:hover,
  .social-button:hover,
  .video-main:hover,
  .video-tile:hover,
  .icon-button:hover {
    transform: translate3d(0, -3px, 0);
    filter: brightness(1.05);
  }
}

.site-header {
  position: absolute;
  z-index: 40;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1160px, calc(100% - var(--edge) * 2));
  height: 92px;
  margin-inline: auto;
  color: var(--color-white);
}

.logo {
  display: inline-flex;
  align-items: flex-start;
  color: var(--color-white);
  font-size: 23px;
  font-weight: 900;
  line-height: 1;
}

.logo::after {
  content: "®";
  margin-left: 3px;
  font-size: .48em;
  line-height: 1;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 34px);
  color: rgb(255 255 255 / 84%);
  font-size: 15px;
  font-weight: 700;
}

.nav a {
  position: relative;
  line-height: 1;
}

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

.nav a:hover,
.nav a:focus-visible {
  color: var(--color-white);
}

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

.header-tools {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
}

.icon-button {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgb(255 255 255 / 9%);
  color: currentColor;
}

.icon-button svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.menu-trigger.icon-button {
  display: none;
}

.language-switch {
  position: relative;
}

.language-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  display: grid;
  width: 64px;
  padding: 8px 0;
  border-radius: var(--radius);
  background: rgb(24 23 21 / 94%);
  box-shadow: var(--shadow-soft);
  transform: translateX(-50%);
}

.language-menu[hidden] {
  display: none;
}

.language-menu button {
  height: 34px;
  border: 0;
  background: transparent;
  color: var(--color-white);
  font-size: 14px;
  font-weight: 800;
}

.language-menu button:hover,
.language-menu button.is-active {
  background: rgb(255 255 255 / 12%);
  color: #d7efcf;
}

.hero {
  position: relative;
  display: grid;
  min-height: 760px;
  height: min(960px, 96svh);
  isolation: isolate;
  background-image: linear-gradient(rgb(0 0 0 / 34%), rgb(0 0 0 / 34%)), url("../img/2026/visual_bg.jpg");
  background-position: center;
  background-size: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 35%;
  background: linear-gradient(to bottom, transparent, rgb(0 0 0 / 28%));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  align-self: center;
  width: min(1160px, calc(100% - var(--edge) * 2));
  margin: 74px auto 0;
  color: var(--color-white);
  text-align: center;
}

.hero h1 {
  font-size: var(--fz-hero);
  font-weight: 800;
  line-height: 1.08;
}

.hero p {
  margin-top: clamp(34px, 5vw, 70px);
  font-size: clamp(22px, 1.75vw, 30px);
  font-weight: 700;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: var(--gap-md);
  margin-top: clamp(42px, 6vw, 84px);
}

.btn,
.submit-btn,
.social-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border: 0;
  border-radius: var(--radius);
  overflow: hidden;
  color: var(--color-white);
  font-size: 16px;
  font-weight: 800;
  isolation: isolate;
  white-space: nowrap;
}

.btn-primary,
.submit-btn.green {
  background: var(--color-leaf);
}

.btn-dark {
  background: rgb(20 20 20 / 88%);
}

.freehom-greeting {
  position: relative;
  background: var(--color-cream);
  color: var(--color-text);
}

.freehom-greeting-visual {
  position: relative;
  min-height: clamp(460px, 52vw, 720px);
  background-image: linear-gradient(90deg, rgb(0 0 0 / 50%), rgb(0 0 0 / 12%)), url("../img/2026/bg3.jpg");
  background-position: center;
  background-size: cover;
}

.freehom-greeting-visual-inner {
  width: min(1240px, calc(100% - var(--edge) * 2));
  margin-inline: auto;
  padding-top: clamp(116px, 12vw, 170px);
}

.freehom-greeting-heading {
  width: min(720px, 100%);
}

.freehom-greeting-title {
  display: flex;
  flex-wrap: wrap;
  gap: .16em;
  font-family: var(--font-serif);
  font-size: clamp(54px, 8.2vw, 104px);
  font-weight: 800;
  line-height: .95;
}

.freehom-greeting-title-white {
  color: var(--color-white);
}

.freehom-greeting-title-gold {
  color: var(--color-gold-soft);
}

.freehom-greeting-slogan {
  margin-top: clamp(26px, 3.8vw, 44px);
  padding-left: 18px;
  border-left: 2px solid var(--color-gold-soft);
  color: var(--color-white);
  font-size: var(--fz-subtitle);
  font-weight: 700;
  line-height: 1.65;
}

.freehom-greeting-body {
  padding: 0 var(--edge) var(--section-y);
}

.freehom-greeting-card {
  position: relative;
  width: min(1160px, 100%);
  margin: -74px auto 0;
  padding: clamp(64px, 8vw, 120px) clamp(36px, 8vw, 140px);
  border: 1px solid rgb(36 35 33 / 10%);
  border-radius: var(--radius);
  background: var(--color-paper);
  box-shadow: var(--shadow-soft);
}

.freehom-greeting-content {
  max-width: 850px;
  margin-inline: auto;
  color: var(--color-text);
  font-size: var(--fz-body);
  font-weight: 500;
  line-height: 1.9;
}

.freehom-greeting-content p + p {
  margin-top: 24px;
}

.freehom-greeting-company-start {
  color: var(--color-sage);
  font-weight: 800;
}

.freehom-greeting-deco,
.freehom-greeting-quote-close {
  position: absolute;
  color: rgb(185 140 95 / 26%);
  font-family: Georgia, serif;
  font-style: normal;
  line-height: 1;
  pointer-events: none;
}

.freehom-greeting-deco {
  top: 62px;
  left: 56px;
}

.freehom-greeting-quote-open::before {
  content: "“";
  font-size: 78px;
}

.freehom-greeting-quote-close {
  right: 62px;
  bottom: 42px;
}

.freehom-greeting-quote-close::before {
  content: "”";
  font-size: 78px;
}

.freehom-greeting-line {
  display: none;
}

.freehom-greeting-signature {
  margin-top: clamp(40px, 5vw, 70px);
  text-align: right;
  font-family: var(--font-serif);
}

.freehom-greeting-signature-name {
  display: inline-flex;
  align-items: baseline;
  gap: 16px;
  font-weight: 800;
}

.freehom-greeting-signature-ceo {
  color: var(--color-gold);
  font-size: 15px;
}

.freehom-greeting-signature-person {
  font-size: 24px;
}

.freehom-greeting-signature-company {
  margin-top: 6px;
  color: var(--color-muted);
  font-size: 15px;
  font-weight: 700;
}

.vision {
  display: grid;
  place-items: center;
  min-height: clamp(520px, 64vw, 800px);
  padding: var(--section-y) 0;
  color: var(--color-white);
  text-align: center;
  background-image: linear-gradient(rgb(0 0 0 / 42%), rgb(0 0 0 / 42%)), url("../img/2026/bg1.jpg");
  background-position: center;
  background-size: cover;
}

.vision h2,
.section-title h2,
.dark-heading,
.experience-title h2,
.fh-mainbiz__heading h2,
.fh-consult-process__header h2 {
  font-size: var(--fz-display);
  font-weight: 800;
  line-height: 1.12;
}

.vision h2 {
  margin-bottom: clamp(24px, 4vw, 42px);
}

.vision p,
.experience-hero p,
.section-title p,
.experience-title p,
.fh-mainbiz__subtitle,
.fh-consult-process__header p {
  font-size: var(--fz-subtitle);
  font-weight: 700;
  line-height: 1.65;
}

.vision p {
  max-width: 900px;
  margin-inline: auto;
}

.fh-mainbiz {
  background: var(--color-charcoal);
  color: var(--color-white);
}

.fh-mainbiz__inner,
.fh-consult-process__inner {
  width: min(var(--wide), calc(100% - var(--edge) * 2));
  margin-inline: auto;
  padding: var(--section-y) 0;
}

.fh-mainbiz__header,
.fh-consult-process__header,
.section-title,
.experience-title {
  text-align: center;
}

.fh-mainbiz__heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.fh-mainbiz__logo {
  width: clamp(170px, 17vw, 276px);
  height: auto;
}

.fh-mainbiz__subtitle {
  margin-top: 22px;
  color: rgb(255 255 255 / 86%);
}

.fh-mainbiz__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--gap-md);
  margin-top: var(--gap-xl);
}

.fh-mainbiz__item {
  min-width: 0;
}

.fh-mainbiz__item-head {
  min-height: 112px;
  padding: 22px 26px;
  border-top: 2px solid rgb(218 203 190 / 46%);
  background: linear-gradient(180deg, #66574a 0%, #574a3f 100%);
  color: var(--color-white);
}

.fh-mainbiz__number {
  display: block;
  margin-bottom: 8px;
  color: var(--color-gold-soft);
  font-size: clamp(24px, 2vw, 32px);
  font-weight: 700;
  line-height: 1;
}

.fh-mainbiz__item-head h3 {
  font-size: clamp(18px, 1.55vw, 22px);
  font-weight: 700;
  line-height: 1.28;
}

.fh-mainbiz__item-body {
  min-height: 220px;
  padding: 36px 26px;
  border: 1px solid rgb(255 255 255 / 10%);
  border-top: 0;
  background: rgb(255 255 255 / 3%);
}

.fh-mainbiz__item-body h4,
.fh-mainbiz__partner-text h3 {
  color: var(--color-gold-soft);
  font-size: clamp(17px, 1.25vw, 19px);
  font-weight: 800;
  line-height: 1.45;
}

.fh-mainbiz__item-body p,
.fh-mainbiz__partner-text p {
  margin-top: 14px;
  color: rgb(255 255 255 / 70%);
  font-size: var(--fz-body);
  line-height: 1.75;
}

.fh-mainbiz__partner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 5vw, 64px);
  margin-top: var(--gap-lg);
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgb(255 255 255 / 9%);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #292522 0%, #342f29 100%);
}

.fh-mainbiz__partner-icon img {
  width: clamp(120px, 14vw, 190px);
}

.fh-mainbiz__partner-text {
  max-width: 520px;
}

.business {
  padding: var(--section-y) 0;
}

.dark-heading {
  max-width: var(--wide);
  margin: 0 auto var(--gap-lg);
  color: var(--color-white);
}

.b2b-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--gap-md);
}

.image-card {
  aspect-ratio: 1.55 / 1;
}

.image-card::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(to top, rgb(0 0 0 / 56%), transparent 58%);
  pointer-events: none;
}

.image-card span {
  position: absolute;
  z-index: 2;
  bottom: clamp(20px, 3vw, 34px);
  left: clamp(20px, 3vw, 34px);
  color: var(--color-white);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 800;
  line-height: 1.2;
}

.fh-consult-process {
  background: var(--color-charcoal);
  color: var(--color-white);
}

.fh-consult-process__header p {
  width: min(760px, 100%);
  margin: 22px auto 0;
  color: rgb(255 255 255 / 84%);
}

.fh-consult-process__list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 48px);
  margin-top: var(--gap-xl);
}

.fh-consult-process__item {
  position: relative;
  text-align: center;
}

.fh-consult-process__step {
  display: grid;
  place-items: center;
  min-height: 54px;
  background: var(--color-gold-soft);
  color: #111;
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 800;
}

.fh-consult-process__icon {
  display: grid;
  place-items: center;
  min-height: clamp(140px, 14vw, 205px);
  border-bottom: 3px solid rgb(255 255 255 / 26%);
  background: linear-gradient(150deg, #66584b 0%, #54483e 100%);
}

.fh-consult-process__icon img {
  width: min(58%, 116px);
  height: auto;
}

.fh-consult-process__info {
  padding-top: 22px;
  border-bottom: 1px solid rgb(255 255 255 / 22%);
  padding-bottom: 22px;
}

.fh-consult-process__info h3 {
  color: var(--color-white);
  font-size: clamp(19px, 1.6vw, 24px);
  font-weight: 800;
  line-height: 1.35;
}

.fh-consult-process__info p {
  margin-top: 8px;
  color: rgb(255 255 255 / 70%);
  font-size: clamp(14px, 1.1vw, 17px);
  line-height: 1.55;
}

.fh-consult-process__connector {
  position: absolute;
  top: calc(54px + clamp(70px, 7vw, 102px));
  right: calc(clamp(18px, 3vw, 48px) * -1);
  width: clamp(18px, 3vw, 48px);
  height: 2px;
  background: repeating-linear-gradient(to right, rgb(255 255 255 / 48%) 0 2px, transparent 2px 6px);
  pointer-events: none;
}

.fh-consult-process__connector::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 10px solid rgb(255 255 255 / 48%);
  transform: translate(-25%, -50%);
}

.space {
  padding: var(--section-y) 0;
}

.section-title h2 {
  color: var(--color-sage);
}

.section-title p {
  margin-top: 22px;
  color: var(--color-muted);
}

.dark-title h2,
.dark-title p {
  color: var(--color-white);
}

.dark-title p {
  color: rgb(255 255 255 / 78%);
}

.space-feature,
.thumb-grid,
.product-small-grid,
.indoor-top,
.indoor-bottom,
.stove-grid,
.hat-grid,
.accessory-grid {
  display: grid;
  gap: var(--gap-md);
}

.space-feature {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-top: var(--gap-xl);
}

.space-feature .photo-box:nth-child(1),
.space-feature .photo-box:nth-child(2) {
  grid-column: span 3;
  aspect-ratio: 1.48 / 1;
}

.space-feature .photo-box:nth-child(n+3) {
  grid-column: span 2;
  aspect-ratio: 1.12 / 1;
}

.thumb-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: var(--gap-lg);
}

.thumb-grid .photo-box,
.product-small-grid .photo-box,
.accessory-grid .photo-box {
  aspect-ratio: 1.28 / 1;
}

.product {
  padding-top: var(--section-y);
  border-top: 1px solid var(--color-line);
}

.factory {
  width: min(920px, calc(100% - var(--edge) * 2));
  margin: var(--gap-lg) auto 0;
}

.factory .photo-box {
  aspect-ratio: 1.68 / 1;
}

.caption {
  margin-top: 12px;
  color: var(--color-muted);
  text-align: right;
  font-size: var(--fz-small);
  font-weight: 700;
}

.product-lead {
  width: min(780px, calc(100% - var(--edge) * 2));
  margin: var(--gap-md) auto var(--section-y-sm);
  color: var(--color-text);
  text-align: center;
  font-size: var(--fz-subtitle);
  font-weight: 800;
  line-height: 1.65;
}

.product-block {
  padding: var(--section-y-sm) 0;
  border-top: 1px solid var(--color-line);
}

.product-block h3 {
  margin-bottom: var(--gap-lg);
  color: var(--color-text);
  text-align: center;
  font-size: var(--fz-section);
  font-weight: 800;
  line-height: 1.2;
  text-transform: capitalize;
}

.outdoor-mosaic,
.plunge-grid {
  display: grid;
  gap: var(--gap-md);
}

.outdoor-mosaic {
  grid-template-columns: 1.08fr 1fr 1.08fr;
  grid-auto-rows: clamp(180px, 17vw, 250px);
}

.outdoor-mosaic .photo-box:nth-child(1),
.outdoor-mosaic .photo-box:nth-child(3) {
  grid-row: span 2;
}

.outdoor-mosaic .photo-box:nth-child(3) {
  grid-column: 3;
}

.outdoor-mosaic .photo-box:nth-child(5) {
  grid-column: span 2;
}

.product-small-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: var(--gap-lg);
}

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

.indoor-top .photo-box {
  aspect-ratio: .82 / 1;
}

.indoor-bottom {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: var(--gap-lg);
}

.indoor-bottom .photo-box {
  aspect-ratio: 1.18 / 1;
}

.plunge-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: clamp(240px, 30vw, 500px);
}

.plunge-grid .photo-box:nth-child(3),
.plunge-grid .photo-box:nth-child(4) {
  grid-column: span 2;
}

.plunge-small {
  margin-top: var(--gap-lg);
}

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

.stove-grid .photo-box,
.hat-grid .photo-box {
  aspect-ratio: .9 / 1.18;
  background: var(--color-white);
}

.stove-grid .photo-box,
.hat-grid .photo-box,
.accessory-grid .photo-box {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
}

.stove-grid .photo,
.hat-grid .photo,
.accessory-grid .photo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

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

.accessory-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: var(--gap-lg);
}

.accessory-toggle {
  display: none;
}

.accessory-mobile-panel {
  display: contents;
}

.experience-hero {
  display: grid;
  place-items: center;
  min-height: clamp(500px, 56vw, 760px);
  padding: var(--section-y) 0;
  color: var(--color-white);
  text-align: center;
  background-image: linear-gradient(rgb(0 0 0 / 46%), rgb(0 0 0 / 46%)), url("../img/2026/bg2.jpg");
  background-position: center;
  background-size: cover;
}

.experience-hero h2 {
  margin-bottom: 26px;
  font-size: var(--fz-section);
  font-weight: 800;
  line-height: 1.16;
}

.experience {
  padding: var(--section-y) 0 var(--section-y-sm);
}

.experience-title p {
  margin-top: 18px;
  color: rgb(255 255 255 / 78%);
}

.experience-list {
  display: grid;
  gap: var(--gap-md);
  width: min(900px, calc(100% - var(--edge) * 2));
  margin: var(--gap-xl) auto 0;
}

.experience-item {
  display: grid;
  grid-template-columns: minmax(180px, 265px) 1fr;
  align-items: center;
  gap: var(--gap-md);
}

.experience-item .photo-box {
  aspect-ratio: 1 / 1;
}

.experience-label {
  display: block;
  margin-bottom: 10px;
  color: var(--color-gold-soft);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.experience-item h3 {
  color: var(--color-white);
  font-size: clamp(18px, 1.35vw, 22px);
  font-weight: 800;
  line-height: 1.35;
}

.experience-item p {
  margin-top: 8px;
  color: rgb(255 255 255 / 72%);
  font-size: var(--fz-body);
  line-height: 1.65;
}

.what {
  width: min(1080px, calc(100% - var(--edge) * 2));
  margin: var(--section-y) auto 0;
}

.what h2 {
  color: var(--color-white);
  font-size: var(--fz-section);
  font-weight: 900;
  line-height: 1.1;
}

.what h2 span {
  display: inline-block;
  margin-left: 12px;
  font-weight: 400;
}

.channel {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
  color: rgb(255 255 255 / 78%);
  font-size: var(--fz-small);
  font-weight: 800;
}

.channel-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: radial-gradient(circle at 34% 28%, #d8c7ad, #5f554a 70%);
}

.video-main {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-top: 20px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.video-tile {
  aspect-ratio: 16 / 9;
}

.video-embed iframe,
.video-embed-tile iframe {
  width: 100%;
  height: 100%;
}

.socials {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
  margin-top: 34px;
}

.social-button {
  justify-content: center;
  width: 100%;
  min-width: 0;
  min-height: 42px;
  gap: 8px;
  padding: 0 12px;
  background: rgb(255 255 255 / 10%);
  color: var(--color-white);
  font-size: 14px;
  line-height: 1.2;
}

.social-icon {
  flex: 0 0 18px;
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  font-weight: 900;
  line-height: 1;
}

.youtube .social-icon { color: #ff3050; }
.facebook .social-icon { color: #79a6ff; }
.instagram .social-icon { color: #f180dd; }
.threads .social-icon { color: #fff; }

.footer {
  padding: var(--section-y-sm) 0;
  background: #181715;
  color: var(--color-white);
}

.footer-inner {
  width: min(760px, calc(100% - var(--edge) * 2));
  margin-inline: auto;
  text-align: center;
}

.footer .logo {
  justify-content: center;
  margin-inline: auto;
  font-size: 24px;
}

.footer address {
  margin-top: 30px;
  color: rgb(255 255 255 / 70%);
  font-style: normal;
  font-size: 14px;
  line-height: 1.8;
}

.copyright {
  margin-top: 20px;
  color: rgb(255 255 255 / 42%);
  font-size: 12px;
}

.mobile-phone-quick,
.consult-fab {
  display: none;
}

.consult-panel {
  position: fixed;
  z-index: 80;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  width: min(420px, calc(100vw - 32px));
  height: 100svh;
  padding: 24px;
  overflow-y: auto;
  background: var(--color-paper);
  box-shadow: -28px 0 70px rgb(0 0 0 / 26%);
  transform: translate3d(110%, 0, 0);
  transition: transform .38s var(--ease);
}

body.consult-panel-open .consult-panel {
  transform: translate3d(0, 0, 0);
}

.consult-close {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
  margin-bottom: 20px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--color-text);
  font-weight: 800;
}

.consult-close svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.quick-form,
.bottom-quick-form {
  display: grid;
  gap: 12px;
}

.quick-field,
.bottom-quick-field {
  display: grid;
  gap: 6px;
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 800;
}

.quick-field input,
.quick-field select,
.bottom-quick-field input,
.bottom-quick-field select,
.privacy-text {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgb(36 35 33 / 18%);
  border-radius: var(--radius);
  background: var(--color-white);
  color: var(--color-text);
  padding: 0 14px;
  outline: 0;
}

.quick-field input:focus,
.quick-field select:focus,
.bottom-quick-field input:focus,
.bottom-quick-field select:focus,
.privacy-text:focus {
  border-color: var(--color-leaf);
  box-shadow: 0 0 0 3px rgb(112 173 77 / 18%);
}

.quick-agree,
.bottom-quick-agree {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.5;
}

.quick-agree input,
.bottom-quick-agree input {
  margin-top: 4px;
  accent-color: var(--color-leaf);
}

.privacy-text {
  height: 120px;
  padding: 14px;
  resize: vertical;
  color: #555;
  font-size: 12px;
  line-height: 1.6;
}

.submit-btn {
  width: 100%;
  margin-top: 4px;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.bottom-quickbar {
  position: fixed;
  z-index: 70;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 16px var(--edge);
  border-top: 1px solid rgb(36 35 33 / 10%);
  background: rgb(255 250 242 / 96%);
  box-shadow: 0 -16px 44px rgb(0 0 0 / 12%);
  backdrop-filter: blur(12px);
}

.bottom-quick-form {
  grid-template-columns: 1fr 1fr 180px minmax(220px, 1.2fr) 180px;
  align-items: end;
  width: min(var(--wide), 100%);
  margin-inline: auto;
}

.bottom-quick-submit {
  min-height: 48px;
}

@keyframes light-sweep {
  0% {
    opacity: 0;
    transform: translate3d(-75%, 0, 0);
  }
  38% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate3d(75%, 0, 0);
  }
}

@media (max-width: 1180px) {
  .fh-mainbiz__list,
  .fh-consult-process__list {
    grid-template-columns: 1fr;
    width: min(720px, 100%);
    margin-inline: auto;
  }

  .fh-consult-process__item {
    display: grid;
    grid-template-columns: 180px 1fr;
    text-align: left;
    background: rgb(255 255 255 / 3%);
  }

  .fh-consult-process__visual {
    display: grid;
    grid-template-rows: 54px 1fr;
  }

  .fh-consult-process__info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 170px;
    padding: 24px 28px;
    border-bottom: 0;
  }

  .fh-consult-process__connector {
    top: auto;
    right: auto;
    bottom: calc(var(--gap-md) * -1);
    left: 90px;
    width: 2px;
    height: var(--gap-md);
    background: repeating-linear-gradient(to bottom, rgb(255 255 255 / 44%) 0 2px, transparent 2px 6px);
    transform: translateX(-50%);
  }

  .fh-consult-process__connector::after {
    top: 52%;
    left: 50%;
    border-top: 9px solid rgb(255 255 255 / 44%);
    border-right: 6px solid transparent;
    border-bottom: 0;
    border-left: 6px solid transparent;
    transform: translate(-50%, -10%);
  }
}

@media (max-width: 900px) {
  body {
    padding-bottom: 84px;
  }

  .site-header {
    width: calc(100% - 40px);
    height: 76px;
  }

  .nav {
    position: absolute;
    top: 70px;
    right: 0;
    display: grid;
    width: min(260px, calc(100vw - 40px));
    gap: 0;
    padding: 10px;
    border: 1px solid rgb(255 255 255 / 16%);
    border-radius: var(--radius);
    background: rgb(24 23 21 / 94%);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    transform: translate3d(0, -8px, 0);
    visibility: hidden;
    transition: opacity .24s ease, transform .24s var(--ease), visibility .24s ease;
  }

  .nav.is-open {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }

  .nav a {
    padding: 14px 12px;
  }

  .nav a::after {
    display: none;
  }

  .menu-trigger.icon-button {
    display: inline-grid;
  }

  .bottom-quickbar {
    display: none;
  }

  .mobile-phone-quick,
  .consult-fab {
    position: fixed;
    z-index: 72;
    bottom: 18px;
    display: inline-grid;
    place-items: center;
    min-height: 54px;
    border: 0;
    border-radius: 999px;
    box-shadow: 0 14px 36px rgb(0 0 0 / 24%);
  }

  .mobile-phone-quick {
    left: 18px;
    width: 54px;
    background: var(--color-charcoal);
    color: var(--color-white);
  }

  .mobile-phone-quick svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
  }

  .consult-fab {
    right: 18px;
    padding: 0 22px;
    background: var(--color-leaf);
    color: var(--color-white);
    font-weight: 900;
  }

  .hero {
    min-height: 680px;
    height: 88svh;
  }
}

@media (max-width: 760px) {
  :root {
    --edge: 20px;
    --section-y: 72px;
    --section-y-sm: 56px;
    --gap-xl: 44px;
    --gap-lg: 32px;
    --gap-md: 16px;
    --fz-hero: clamp(34px, 9.6vw, 43px);
	--fz-display: clamp(24.8px, 6.56vw, 30.4px);
    --fz-section: clamp(27px, 7vw, 34px);
    --fz-subtitle: clamp(15px, 4.1vw, 17px);
    --fz-body: clamp(15px, 3.9vw, 16px);
    --fz-small: 13px;
  }

  body {
    line-height: 1.62;
  }

  [data-animate] {
    transform: translate3d(0, 22px, 0);
    transition-duration: .58s;
    transition-delay: calc(var(--stagger, 0) * 30ms);
  }

  .logo {
    font-size: 21px;
  }

  .hero {
    min-height: 620px;
    background-position: center;
  }

  .hero-content {
    width: calc(100% - 40px);
    margin-top: 56px;
  }

  .hero p {
    margin-top: 26px;
    font-size: clamp(18px, 5.2vw, 22px);
    line-height: 1.52;
  }

  .hero-actions {
    margin-top: 36px;
  }

  .btn {
    width: min(100%, 240px);
    min-height: 50px;
    padding-inline: 20px;
    font-size: 15px;
  }

  .freehom-greeting-visual {
    min-height: 360px;
    background-image: linear-gradient(90deg, rgb(0 0 0 / 54%), rgb(0 0 0 / 16%)), url("../img/2026/m_bg3.jpg");
  }

  .freehom-greeting-visual-inner {
    width: calc(100% - 40px);
    padding-top: 92px;
  }

  .freehom-greeting-title {
    font-size: clamp(34px, 10vw, 42px);
  }

  .freehom-greeting-slogan {
    margin-top: 20px;
    padding-left: 12px;
  }

  .freehom-greeting-body {
    padding-right: 20px;
    padding-left: 20px;
  }

  .freehom-greeting-card {
    margin-top: -42px;
    padding: 42px 22px 46px;
  }

  .freehom-greeting-pc-br,
  .fh-mainbiz__pc-br {
    display: none;
  }

  .freehom-greeting-content {
    line-height: 1.78;
  }

  .freehom-greeting-content p + p {
    margin-top: 18px;
  }

  .freehom-greeting-deco,
  .freehom-greeting-quote-close {
    display: none;
  }

  .freehom-greeting-signature {
    text-align: left;
  }

  .freehom-greeting-signature-person {
    font-size: 20px;
  }

  .vision,
  .experience-hero {
    min-height: 440px;
  }

  .vision p,
  .experience-hero p,
  .section-title p,
  .experience-title p,
  .fh-mainbiz__subtitle,
  .fh-consult-process__header p {
    line-height: 1.62;
  }

  .fh-mainbiz__heading {
    flex-direction: column;
    gap: 10px;
  }

  .fh-mainbiz__logo {
    width: 126px;
  }

  .fh-mainbiz__subtitle {
    width: min(320px, 100%);
    margin-inline: auto;
  }

  .fh-mainbiz__item-head {
    min-height: 74px;
    padding: 16px 18px;
  }

  .fh-mainbiz__item-body {
    min-height: 0;
    padding: 24px 18px;
  }

  .fh-mainbiz__item-body p,
  .fh-mainbiz__partner-text p {
    line-height: 1.68;
  }

  .fh-mainbiz__partner {
    flex-direction: column;
    text-align: center;
  }

  .business,
  .space,
  .product,
  .experience,
  .fh-mainbiz__inner,
  .fh-consult-process__inner {
    padding-top: var(--section-y);
    padding-bottom: var(--section-y);
  }

  .dark-heading {
    margin-bottom: 28px;
  }

  .b2b-grid,
  .thumb-grid,
  .product-small-grid,
  .indoor-top,
  .indoor-bottom,
  .stove-grid,
  .hat-grid,
  .accessory-grid,
  .video-grid {
    grid-template-columns: 1fr;
  }

  .image-card {
    aspect-ratio: 1.18 / 1;
  }

  .image-card span {
    font-size: 20px;
  }

  .fh-consult-process__item {
    grid-template-columns: 40% 60%;
  }

  .fh-consult-process__visual {
    grid-template-rows: 46px 132px;
  }

  .fh-consult-process__step {
    min-height: 46px;
    font-size: 18px;
  }

  .fh-consult-process__icon {
    min-height: 132px;
  }

  .fh-consult-process__info {
    min-height: 178px;
    padding: 18px;
  }

  .fh-consult-process__connector {
    left: 20%;
  }

  .space-feature {
    grid-template-columns: 1fr;
  }

  .space-feature .photo-box:nth-child(n) {
    grid-column: auto;
    aspect-ratio: 1.18 / 1;
  }

  .factory {
    width: calc(100% - 40px);
  }

  .caption {
    text-align: left;
  }

  .product-lead {
    margin-top: 26px;
    margin-bottom: 56px;
  }

  .product-block h3 {
    margin-bottom: 28px;
  }

  .outdoor-mosaic,
  .plunge-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .outdoor-mosaic .photo-box:nth-child(n),
  .plunge-grid .photo-box:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 1.15 / 1;
  }

  .product-small-grid,
  .indoor-bottom,
  .plunge-small,
  .accessory-grid {
    margin-top: 16px;
  }

  .accessory-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 54px;
    margin: 0 0 22px;
    padding: 0 20px;
    border: 0;
    border-radius: var(--radius);
    background: var(--color-leaf);
    color: #fff;
    font-size: 16px;
    font-weight: 900;
    line-height: 1.2;
    box-shadow: 0 14px 28px rgb(112 173 77 / 28%);
  }

  .accessory-toggle-icon {
    display: inline-grid;
    place-items: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgb(255 255 255 / 18%);
    color: #fff;
    font-size: 16px;
    line-height: 1;
    transition: transform .28s var(--ease);
  }
  .accessory-toggle {
    scroll-margin-top: 18px;
  }

  .accessory-block.is-open .accessory-toggle {
    position: sticky;
    top: 12px;
    z-index: 25;
    margin-bottom: 18px;
    box-shadow: 0 14px 34px rgb(112 173 77 / 34%);
  }
  .accessory-block.is-open .accessory-toggle-icon {
    transform: rotate(180deg);
  }

  .accessory-toggle:active {
    transform: translateY(1px);
  }

  .accessory-mobile-panel {
    display: block;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translate3d(0, -8px, 0);
    transition: max-height .44s var(--ease), opacity .24s ease, transform .24s var(--ease);
  }

  .accessory-block.is-open .accessory-mobile-panel {
    max-height: 7200px;
    opacity: 1;
    pointer-events: auto;
    transform: translate3d(0, 0, 0);
  }

  .indoor-top .photo-box,
  .indoor-bottom .photo-box,
  .stove-grid .photo-box,
  .hat-grid .photo-box,
  .accessory-grid .photo-box {
    aspect-ratio: 1.12 / 1;
  }

  .experience-list {
    width: calc(100% - 40px);
  }

  .experience-item {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .experience-label {
    margin-top: 4px;
    margin-bottom: 6px;
  }

  .what {
    width: calc(100% - 40px);
  }

  .socials {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .social-button {
    justify-content: flex-start;
    min-height: 42px;
    padding: 0 18px;
  }

  .consult-panel {
    width: 100%;
    max-width: none;
    padding: 20px;
  }
}

@media (max-width: 380px) {
  :root {
    --edge: 18px;
    --fz-display: 30px;
    --fz-section: 26px;
    --fz-subtitle: 15px;
    --fz-body: 15px;
  }

  .fh-consult-process__info {
    padding: 14px;
  }

  .fh-consult-process__info p {
    font-size: 13px;
  }
}

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

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

  [data-animate] {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* final fix: preserve server paths/fonts, restore repeat motion, and improve consult panel UX */
.nanum,
.fh-mainbiz__heading h2,
.fh-consult-process__header h2 {
  font-family: "Nanum Myeongjo", serif;
}

.fh-mainbiz__heading h2,
.fh-consult-process__header h2 {
  font-weight: 400;
}

.consult-backdrop {
  position: fixed;
  z-index: 79;
  inset: 0;
  display: none;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: rgb(0 0 0 / 42%);
  cursor: pointer;
}

body.consult-panel-open {
  overflow: hidden;
}

body.consult-panel-open .consult-backdrop {
  display: block;
}

.consult-panel {
  z-index: 80;
}

@media (min-width: 761px) {
  .experience-item {
    display: grid;
    grid-template-columns: minmax(220px, 265px) minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: var(--gap-md);
    row-gap: 6px;
    align-items: center;
  }

  .experience-item .photo-box {
    grid-column: 1;
    grid-row: 1 / span 2;
  }

  .experience-label {
    grid-column: 2;
    grid-row: 1;
    align-self: end;
    margin: 0 0 2px;
  }

  .experience-item > div:last-child {
    grid-column: 2;
    grid-row: 2;
    align-self: start;
    min-width: 0;
  }
}

@media (max-width: 760px) {
  .experience-item {
    display: grid;
    grid-template-columns: 1fr;
  }

  .experience-item .photo-box,
  .experience-label,
  .experience-item > div:last-child {
    grid-column: 1;
    grid-row: auto;
  }
}
