:root {
  --blue: #1f4ed8;
  --black: #111111;
  --ink: #202124;
  --muted: #707070;
  --line: #e5e5e5;
  --soft: #f6f6f6;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--white);
  color: var(--ink);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family:
    Pretendard,
    "Pretendard Variable",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
  overflow-wrap: break-word;
  word-break: keep-all;
}

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

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

.site-shell {
  width: min(100% - 48px, 1240px);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.homax-logo {
  width: 150px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
  flex-wrap: wrap;
}

.nav-link {
  color: #222;
  font-size: 14px;
  font-weight: 700;
  padding: 6px 0;
  border-bottom: 1px solid transparent;
}

.nav-link:hover,
.nav-link[aria-current="page"] {
  color: var(--blue);
  border-bottom-color: var(--blue);
}

.section-label {
  margin: 0 0 14px;
  color: #555;
  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

.section-label.on-dark {
  color: #cfcfcf;
}

.hero-slider,
.hero-image-section {
  position: relative;
  min-height: calc(100vh - 68px);
  overflow: hidden;
  background: var(--soft);
}

.hero-slider-track {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero-slide-image,
.hero-image {
  width: 100%;
  height: calc(100vh - 68px);
  min-height: 680px;
  object-fit: cover;
  object-position: center;
}

.hero-slide-copy,
.hero-copy-on-image {
  position: absolute;
  left: max(24px, calc((100vw - 1240px) / 2 + 24px));
  top: 50%;
  width: min(440px, calc(100vw - 48px));
  transform: translateY(-50%);
}

.hero-slide-copy h1,
.hero-copy-on-image h1 {
  margin: 0;
  color: var(--black);
  font-family:
    Inter,
    Pretendard,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: clamp(40px, 4.8vw, 70px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-slide-copy p:not(.section-label),
.hero-copy-on-image p:not(.section-label) {
  margin: 24px 0 0;
  color: #353535;
  font-size: 20px;
  font-weight: 600;
}

.hero-slider-nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(17, 17, 17, 0.2);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    border-color 0.2s ease,
    background 0.2s ease;
}

.hero-slider-nav::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 9px;
  border-top: 2px solid var(--black);
  border-left: 2px solid var(--black);
}

.hero-slider-nav.prev {
  left: max(18px, calc((100vw - 1240px) / 2));
}

.hero-slider-nav.next {
  right: max(18px, calc((100vw - 1240px) / 2));
}

.hero-slider-nav.prev::before {
  transform: translate(-35%, -50%) rotate(-45deg);
}

.hero-slider-nav.next::before {
  transform: translate(-65%, -50%) rotate(135deg);
}

.hero-slider-nav:hover {
  border-color: var(--blue);
  background: rgba(255, 255, 255, 0.92);
}

.hero-slider-dots {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 3;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

.hero-slider-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(17, 17, 17, 0.28);
  cursor: pointer;
}

.hero-slider-dots button.is-active {
  background: var(--blue);
}

.hero-slider-nav[hidden],
.hero-slider-dots[hidden] {
  display: none;
}

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

.button,
.arrow-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 42px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
}

.button {
  padding: 0 20px;
}

.button.primary {
  background: var(--blue);
  color: var(--white);
}

.button.primary:hover {
  background: #183fb0;
}

.button.secondary {
  border: 1px solid rgba(17, 17, 17, 0.55);
  background: rgba(255, 255, 255, 0.62);
  color: var(--black);
}

.arrow-link {
  color: var(--blue);
  width: fit-content;
}

.arrow-link:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-thickness: 1px;
}

.editorial-intro {
  padding: 98px 0 82px;
  background: var(--white);
}

.intro-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 80px;
  align-items: start;
}

.intro-kicker {
  margin: 8px 0 0;
  color: var(--muted);
  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-weight: 800;
}

.intro-grid h2 {
  max-width: 820px;
  margin: 0;
  color: var(--black);
  font-size: clamp(30px, 3.4vw, 48px);
  font-weight: 900;
  line-height: 1.16;
  letter-spacing: 0;
}

.section-block {
  padding: 76px 0;
  background: var(--white);
}

.section-block.soft {
  background: var(--soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.home-curation-section {
  padding-top: 88px;
}

.section-title {
  max-width: 780px;
  margin-bottom: 30px;
}

.section-title h2,
.story-lead h2,
.support-clean h2 {
  margin: 0;
  color: var(--black);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: 0;
}

.section-title p:not(.section-label),
.support-clean p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.curation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.curation-item {
  position: relative;
  display: grid;
  gap: 18px;
  padding-bottom: 12px;
}

.curation-item::after,
.product-editorial::after,
.journal-card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--blue);
  transition: width 0.3s ease;
}

.curation-item.large {
  grid-column: span 2;
}

.curation-item.large .editorial-image {
  aspect-ratio: 1.65 / 1;
}

.editorial-image {
  width: 100%;
  aspect-ratio: 1 / 1.14;
  background: var(--soft);
  border: 1px solid var(--line);
}

.image-placeholder {
  display: grid;
  place-items: center;
  min-height: 190px;
  color: #9a9a9a;
}

.placeholder-content {
  display: grid;
  justify-items: center;
  gap: 10px;
  color: #8d8d8d;
  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 12px;
  font-weight: 900;
}

.camera-mark {
  position: relative;
  display: block;
  width: 34px;
  height: 25px;
  border: 2px solid #9d9d9d;
  border-radius: 5px;
}

.camera-mark::before {
  content: "";
  position: absolute;
  left: 7px;
  top: -7px;
  width: 12px;
  height: 6px;
  border: 2px solid #9d9d9d;
  border-bottom: 0;
  border-radius: 4px 4px 0 0;
}

.camera-mark span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 10px;
  border: 2px solid #9d9d9d;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

@media (hover: hover) {
  .curation-item .image-placeholder {
    transition: transform 0.3s ease;
  }

  .curation-item:hover .image-placeholder {
    transform: scale(1.04);
  }

  .curation-item:hover::after,
  .product-editorial:hover::after,
  .journal-card:hover::after {
    width: 100%;
  }
}

.curation-copy span,
.product-editorial-copy span,
.journal-meta span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.curation-copy h3,
.journal-card h3,
.journal-row h2 {
  margin: 0;
  color: var(--black);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.28;
}

.journal-card h3 {
  min-height: 62px;
}

.curation-copy p,
.journal-card p,
.journal-row p,
.product-editorial-copy p,
.story-copy p,
.meaning-editorial p {
  margin: 12px 0 0;
  color: var(--muted);
}

.section-action {
  margin-top: 42px;
}

.experience-band {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(0, 0, 0, 0.64), rgba(0, 0, 0, 0.64)),
    url("./assets/home-brand-message-bg.jpg"),
    linear-gradient(135deg, #111 0%, #1c1c1c 55%, #080808 100%);
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  color: var(--white);
  padding: 106px 0;
}

.experience-inner {
  position: relative;
  z-index: 1;
  max-width: 920px;
}

.experience-inner::before {
  content: "";
  display: block;
  width: 56px;
  margin-bottom: 24px;
  border-top: 2px solid var(--blue);
}

.experience-inner h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(30px, 4vw, 56px);
  font-weight: 900;
  line-height: 1.14;
  letter-spacing: 0;
}

.experience-inner p:not(.section-label) {
  max-width: 820px;
  margin: 26px 0 0;
  color: #d2d2d2;
  font-size: 17px;
  line-height: 1.7;
}

.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.journal-card {
  position: relative;
  display: grid;
  grid-template-rows: auto auto minmax(62px, auto) 1fr;
  gap: 16px;
  padding-bottom: 14px;
}

.journal-card .editorial-image {
  aspect-ratio: 1.48 / 1;
  min-height: 0;
}

.journal-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.journal-meta time {
  color: var(--muted);
  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.page-hero {
  position: relative;
  min-height: clamp(360px, 39vw, 520px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0;
  background: var(--soft);
  border-bottom: 1px solid var(--line);
}

.page-hero-inner {
  max-width: 800px;
}

.page-hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  aspect-ratio: auto;
  border: 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: max(48px, calc((100vw - 1240px) / 2 + 140px));
}

.page-hero-media .placeholder-content {
  opacity: 0.72;
}

.page-hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.96) 0%,
    rgba(255, 255, 255, 0.88) 38%,
    rgba(255, 255, 255, 0.48) 66%,
    rgba(255, 255, 255, 0.1) 100%
  );
}

.page-hero-content {
  position: relative;
  z-index: 1;
  padding: 86px 0 76px;
}

.page-hero h1 {
  margin: 0;
  color: var(--black);
  font-family:
    Inter,
    Pretendard,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: clamp(28px, 3.3vw, 44px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0;
}

.page-hero p:not(.section-label) {
  max-width: 640px;
  margin: 16px 0 0;
  color: #454545;
  font-size: 18px;
}

.story-grid {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 90px;
  align-items: start;
}

.story-copy p {
  max-width: 700px;
  font-size: 19px;
}

.story-copy p + p {
  margin-top: 24px;
}

.meaning-editorial {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px;
}

.meaning-editorial article {
  padding-top: 22px;
  border-top: 2px solid var(--black);
}

.meaning-editorial h3 {
  margin: 0;
  color: var(--black);
  font-size: 24px;
  font-weight: 900;
}

.brand-story-section {
  padding: 82px 0 46px;
  background: var(--white);
}

.brand-story-inner {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 0.78fr);
  gap: clamp(36px, 6vw, 88px);
  align-items: start;
}

.brand-story-heading {
  padding-top: 4px;
  border-top: 2px solid var(--blue);
}

.brand-story-heading h2 {
  max-width: 420px;
  margin: 0;
  color: var(--black);
  font-size: clamp(25px, 2.6vw, 36px);
  line-height: 1.32;
  font-weight: 700;
}

.brand-story-copy {
  max-width: 760px;
}

.brand-story-copy p {
  margin: 0;
  color: #383838;
  font-size: 18px;
  line-height: 1.9;
  word-break: keep-all;
}

.brand-story-copy p + p {
  margin-top: 18px;
}

.quote-section {
  padding: 0 0 116px;
  background: var(--white);
}

.quote-inner {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 0.78fr);
  gap: clamp(36px, 6vw, 88px);
  align-items: start;
}

.quote-inner::before {
  content: "";
  grid-column: 2;
  width: 72px;
  border-top: 1px solid var(--blue);
}

.quote-inner p {
  grid-column: 2;
  margin: 0;
  color: #1b1b1b;
  max-width: 760px;
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 700;
  line-height: 1.5;
  word-break: keep-all;
  text-wrap: balance;
}

.product-editorial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 34px;
  row-gap: 54px;
}

.product-editorial {
  position: relative;
  display: grid;
  gap: 16px;
  padding-bottom: 14px;
}

.product-editorial .editorial-image {
  aspect-ratio: 4 / 3;
  min-height: 0;
}

.product-editorial-copy h2 {
  margin: 0;
  color: var(--black);
  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 18px;
  font-weight: 900;
}

.product-price {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.journal-list,
.notice-list {
  display: grid;
  gap: 0;
}

.journal-row {
  display: grid;
  grid-template-columns: 42% 1fr;
  gap: 44px;
  align-items: center;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}

.journal-row .editorial-image {
  aspect-ratio: 1.55 / 1;
}

.notice-row {
  display: grid;
  grid-template-columns: 148px 1fr;
  gap: 28px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.notice-row:first-child {
  border-top: 1px solid var(--line);
}

.notice-thumb {
  aspect-ratio: 4 / 3;
  min-height: 0;
}

.notice-thumb .placeholder-content {
  gap: 6px;
  font-size: 10px;
}

.notice-thumb .camera-mark {
  width: 26px;
  height: 20px;
  border-width: 1.5px;
}

.notice-thumb .camera-mark::before {
  left: 5px;
  top: -6px;
  width: 10px;
  height: 5px;
  border-width: 1.5px;
  border-bottom: 0;
}

.notice-thumb .camera-mark span {
  width: 8px;
  height: 8px;
  border-width: 1.5px;
}

.notice-content h2 {
  margin: 8px 0 0;
  color: var(--black);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.3;
}

.notice-content p {
  max-width: 720px;
  margin: 10px 0 0;
  color: var(--muted);
}

.support-clean {
  min-height: 360px;
}

.support-clean-grid {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 56px;
  align-items: center;
}

.support-clean h2 {
  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: clamp(34px, 4.6vw, 62px);
}

.support-clean-grid > div:last-child {
  max-width: 520px;
}

.support-contact p:not(.section-label) {
  margin-top: 8px;
}

.support-cta {
  padding-left: 40px;
  border-left: 1px solid var(--line);
}

.support-cta p {
  margin: 0 0 22px;
  color: #454545;
  font-size: 18px;
}

.support-button {
  min-width: 150px;
}

.site-footer {
  background: #1c1c1c;
  color: var(--white);
  padding: 54px 0 46px;
}

.site-footer .homax-logo {
  width: 170px;
}

.footer-top,
.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: start;
}

.footer-top {
  padding-bottom: 42px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-brand p,
.footer-service p,
.footer-info p {
  margin: 10px 0 0;
  color: #cfcfcf;
}

.footer-info p:nth-child(2) {
  color: #a9a9a9;
  font-size: 12px;
}

.footer-service span {
  color: #bcbcbc;
  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.footer-service strong {
  display: block;
  margin-top: 4px;
  color: var(--white);
  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 32px;
  font-weight: 900;
}

.footer-bottom {
  padding-top: 30px;
}

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

.footer-links a {
  color: #ededed;
  font-size: 14px;
  font-weight: 700;
}

@media (max-width: 980px) {
  .header-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 18px 0;
  }

  .main-nav {
    justify-content: flex-start;
    gap: 18px;
  }

  .hero-slider,
  .hero-image-section,
  .hero-slide-image,
  .hero-image {
    min-height: 760px;
  }

  .hero-slide-copy,
  .hero-copy-on-image {
    top: 120px;
    transform: none;
  }

  .intro-grid,
  .story-grid,
  .support-clean-grid,
  .footer-top,
  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .curation-grid,
  .journal-grid,
  .meaning-editorial,
  .product-editorial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .curation-item.large {
    grid-column: span 2;
  }

  .journal-row {
    grid-template-columns: 1fr;
  }

  .notice-row {
    grid-template-columns: 120px 1fr;
    gap: 22px;
  }

  .support-cta {
    padding-left: 0;
    border-left: 0;
    padding-top: 26px;
    border-top: 1px solid var(--line);
  }

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

  .page-hero-media {
    justify-content: center;
    padding-right: 0;
  }

  .page-hero-content {
    padding: 76px 0 68px;
  }
}

@media (max-width: 680px) {
  .site-shell {
    width: min(100% - 30px, 1240px);
  }

  .homax-logo {
    width: 132px;
  }

  .main-nav {
    gap: 14px 18px;
  }

  .hero-slider,
  .hero-image-section,
  .hero-slide-image,
  .hero-image {
    min-height: 720px;
  }

  .hero-slide-image,
  .hero-image {
    object-position: 58% center;
  }

  .hero-slide-copy,
  .hero-copy-on-image {
    left: 15px;
    top: 96px;
    width: calc(100vw - 30px);
  }

  .hero-slide-copy h1,
  .hero-copy-on-image h1 {
    max-width: 340px;
    font-size: 42px;
  }

  .hero-slide-copy p:not(.section-label),
  .hero-copy-on-image p:not(.section-label) {
    max-width: 310px;
    font-size: 17px;
  }

  .editorial-intro,
  .section-block,
  .brand-story-section,
  .quote-section {
    padding: 78px 0;
  }

  .experience-band {
    padding: 86px 0;
    background-attachment: scroll;
  }

  .curation-grid,
  .journal-grid,
  .brand-story-inner,
  .meaning-editorial,
  .product-editorial-grid,
  .curation-item.large {
    grid-template-columns: 1fr;
  }

  .brand-story-heading h2 {
    max-width: 100%;
  }

  .brand-story-copy p {
    font-size: 16px;
    line-height: 1.85;
  }

  .quote-section {
    padding: 0 0 88px;
  }

  .quote-inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .quote-inner::before,
  .quote-inner p {
    grid-column: 1;
  }

  .quote-inner::before {
    width: 54px;
  }

  .quote-inner p {
    font-size: 19px;
    line-height: 1.5;
  }

  .curation-item.large {
    grid-column: span 1;
  }

  .page-hero h1 {
    font-size: 32px;
  }

  .page-hero {
    min-height: 420px;
  }

  .page-hero-shade {
    background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.96) 0%,
      rgba(255, 255, 255, 0.9) 58%,
      rgba(255, 255, 255, 0.5) 100%
    );
  }

  .page-hero-content {
    padding: 66px 0 56px;
  }

  .page-hero-media {
    justify-content: flex-end;
    padding-right: 28px;
  }

  .page-hero-media .placeholder-content {
    transform: scale(0.82);
    transform-origin: center;
  }

  .product-editorial-grid {
    row-gap: 56px;
  }

  .support-clean h2 {
    font-size: 44px;
  }

  .notice-row {
    grid-template-columns: 1fr;
  }

  .notice-thumb {
    max-width: 180px;
  }
}
