:root {
  --bg: #f4efe8;
  --bg-soft: #efe7de;
  --panel: #e9dfd3;
  --text: #1f1d1a;
  --muted: rgba(31, 29, 26, 0.72);
  --line: rgba(31, 29, 26, 0.14);
  --white: #f8f4ef;
  --shadow: 0 24px 70px rgba(32, 24, 18, 0.12);
  --max-width: 1380px;
  --font-sans-en: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-sans-kr: "Pretendard Variable", "Pretendard", "Apple SD Gothic Neo", "Noto Sans KR", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans-kr);
  background: linear-gradient(180deg, #f6f1eb 0%, #f2ece4 100%);
  color: var(--text);
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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


:lang(en),
.en,
.brand {
  font-family: var(--font-sans-en);
}

.page-shell {
  min-height: 100vh;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem 2rem;
  color: var(--white);
  transition: background 220ms ease, color 220ms ease, backdrop-filter 220ms ease, border-color 220ms ease;
}

.site-header.is-solid {
  background: rgba(244, 239, 232, 0.82);
  color: var(--text);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(31, 29, 26, 0.08);
}

.brand {
  font-family: var(--font-sans-en);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 1.05rem;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  text-transform: none;
}

.site-nav a,
.header-cta,
.eyebrow,
figcaption,
.button {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.hero-link {
  text-transform: uppercase;
}

.header-cta {
  justify-self: end;
  border-bottom: 1px solid currentColor;
  padding-bottom: 0.25rem;
}

.section,
.section-bleed {
  padding: clamp(5.5rem, 7.2vw, 7.5rem) 0;
}

.section-inner {
  width: min(calc(100% - 3rem), var(--max-width));
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: clamp(760px, 92vh, 980px);
  display: flex;
  align-items: end;
  padding: 0;
  color: var(--white);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  object-position: center center;
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(14, 10, 8, 0.08) 0%, rgba(14, 10, 8, 0.18) 34%, rgba(14, 10, 8, 0.5) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.04) 52%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  padding-bottom: clamp(2.75rem, 5.2vw, 4.5rem);
  max-width: min(420px, calc(100% - 3rem));
  margin-left: 0;
}

.eyebrow {
  margin: 0 0 1rem;
  opacity: 0.82;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-sans-kr);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2.35rem, 5.2vw, 4.5rem);
  max-width: 6ch;
  line-height: 0.98;
}

h2 {
  font-size: clamp(2.2rem, 4.4vw, 4.4rem);
  max-width: 14ch;
}

h3 {
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
}

p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
  word-break: keep-all;
}

.hero-copy .eyebrow {
  color: rgba(248, 244, 239, 0.8);
  opacity: 1;
}

.hero-copy h2 {
  color: rgba(248, 244, 239, 0.96);
  text-shadow: 0 2px 16px rgba(10, 8, 7, 0.26);
}

.hero-text {
  max-width: 24ch;
  margin-top: 0.82rem;
  color: rgba(248, 244, 239, 0.82);
  font-size: 0.9rem;
  line-height: 1.58;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.15rem;
}

.hero-actions {
  margin-top: 1.2rem;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.95rem 1.3rem;
  border: 1px solid transparent;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  background: rgba(248, 244, 239, 0.92);
  color: var(--text);
  padding-inline: 1rem;
  min-height: 3rem;
}

.button-secondary {
  border-color: rgba(248, 244, 239, 0.42);
  color: var(--white);
}

.hero .button-primary {
  background: rgba(248, 244, 239, 0.96);
  border-color: rgba(248, 244, 239, 0.96);
  box-shadow: 0 8px 24px rgba(10, 8, 7, 0.18);
}

.hero-link {
  align-self: center;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(248, 244, 239, 0.7);
  border-bottom: 1px solid rgba(248, 244, 239, 0.3);
  padding-bottom: 0.25rem;
}

.hero-link:hover {
  color: var(--white);
  border-color: rgba(248, 244, 239, 0.72);
}

.statement-grid,
.split-heading,
.craft-grid,
.contact-panel {
  display: grid;
  gap: 2rem;
}

.statement-grid,
.contact-panel {
  grid-template-columns: 1.2fr 1fr;
}

.statement-copy,
.contact-copy {
  display: grid;
  gap: 1.4rem;
  align-content: start;
}

.section-heading {
  margin-bottom: clamp(1.6rem, 2.8vw, 2.6rem);
}

.split-heading {
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  column-gap: 2.8rem;
}

.cards.three-up {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.image-card,
.gallery-item {
  position: relative;
  overflow: hidden;
  background: #ddd2c3;
  box-shadow: var(--shadow);
}

.tall-card {
  aspect-ratio: 0.8;
}

.landscape-card {
  aspect-ratio: 1.45;
}

.card-copy {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.25rem 1.25rem 1.4rem;
  color: var(--white);
  background: linear-gradient(180deg, rgba(7, 6, 5, 0) 0%, rgba(7, 6, 5, 0.68) 100%);
}

.card-copy p {
  margin-top: 0.42rem;
  color: rgba(248, 244, 239, 0.82);
  line-height: 1.5;
  font-size: 0.9rem;
}

.warm-panel {
  background: linear-gradient(180deg, rgba(233, 223, 211, 0.56) 0%, rgba(233, 223, 211, 0.92) 100%);
}

.craft-grid {
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
}

.craft-copy {
  display: grid;
  gap: 1.25rem;
}

.detail-list {
  list-style: none;
  padding: 0;
  margin: 0.4rem 0 0;
  display: grid;
  gap: 0.8rem;
}

.detail-list li {
  padding-top: 0.8rem;
  border-top: 1px solid var(--line);
  color: var(--text);
}

.craft-visual-stack {
  display: grid;
  gap: 1rem;
}

.offset-card {
  width: 78%;
  justify-self: end;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}

.gallery-item {
  grid-column: span 4;
  aspect-ratio: 1;
}

.gallery-wide {
  grid-column: span 8;
  aspect-ratio: 1.42;
}

figcaption {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.78rem;
  color: rgba(31, 29, 26, 0.76);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: none;
}

.contact-section {
  padding-bottom: 8rem;
}

.contact-panel {
  background: #221d18;
  color: var(--white);
  padding: clamp(2rem, 4vw, 4rem);
}

.contact-panel p {
  color: rgba(248, 244, 239, 0.76);
}

.contact-panel .button-primary {
  background: var(--white);
}

.contact-panel .button-secondary {
  border-color: rgba(248, 244, 239, 0.32);
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }

  .statement-grid,
  .split-heading,
  .craft-grid,
  .contact-panel,
  .cards.three-up {
    grid-template-columns: 1fr;
  }

  .gallery-item,
  .gallery-wide {
    grid-column: span 6;
  }

  .offset-card {
    width: 100%;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 0.95rem 1rem;
  }

  .hero {
    min-height: min(88vh, 780px);
  }

  .header-cta {
    display: none;
  }

  .section,
  .section-bleed {
    padding: 4.5rem 0;
  }

  .section-inner {
    width: min(calc(100% - 1.5rem), var(--max-width));
  }

  .hero-copy {
    max-width: calc(100% - 1.5rem);
    padding-bottom: 2.35rem;
  }

  h1 {
    max-width: 9ch;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
    gap: 0.62rem;
  }

  .hero-actions .hero-link {
    align-self: flex-start;
    margin-top: 0.18rem;
    font-size: 0.7rem;
  }

  .button {
    width: 100%;
    min-height: 2.9rem;
    padding: 0.86rem 1rem;
  }

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

  .gallery-item,
  .gallery-wide {
    grid-column: auto;
    aspect-ratio: 0.95;
  }

  .gallery-wide {
    aspect-ratio: 1.15;
  }

  figcaption {
    font-size: 0.68rem;
    line-height: 1.4;
    letter-spacing: 0.05em;
    padding-top: 0.62rem;
  }
}
