:root {
  --navy: #0b1520;
  --navy-2: #101f2d;
  --ivory: #f3efe6;
  --paper: #ece7dd;
  --ink: #16202a;
  --muted: #9ba4ac;
  --line: rgba(255,255,255,.18);
  --dark-line: rgba(11,21,32,.16);
  --gold: #aa8e61;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Manrope", "Noto Sans KR", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--navy);
  color: var(--ivory);
  font-family: var(--sans);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.page-noise {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: .035;
  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='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.65'/%3E%3C/svg%3E");
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  padding: 28px 4vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background .35s ease, padding .35s ease, backdrop-filter .35s ease;
}
.site-header.scrolled {
  padding-top: 18px;
  padding-bottom: 18px;
  background: rgba(11,21,32,.72);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.brand, .footer-brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}
.brand img {
  display: block;
  width: 148px;
  height: auto;
}
.footer-brand img {
  display: block;
  width: 126px;
  height: auto;
}
.site-nav { display: flex; gap: 34px; }
.site-nav a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .8;
  position: relative;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width .25s ease;
}
.site-nav a:hover::after { width: 100%; }
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: 0 7vw 9vh;
  overflow: hidden;
}
.hero-visual, .hero-overlay { position: absolute; inset: 0; }
.hero-visual {
  background: linear-gradient(180deg, #778590 0%, #b4b6ad 44%, #65717a 45%, #263847 100%);
  overflow: hidden;
}
.hero-sky {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 72% 24%, rgba(255,245,213,.56), transparent 23%), linear-gradient(180deg, rgba(22,41,57,.08), rgba(8,19,30,.14));
}
.hero-sun {
  position: absolute;
  width: 9vw; aspect-ratio: 1;
  border-radius: 50%;
  right: 18vw; top: 17vh;
  background: rgba(255,239,199,.68);
  filter: blur(2px);
}
.hero-structure {
  position: absolute;
  background: #d2c9b8;
  box-shadow: 0 25px 50px rgba(0,0,0,.18);
}
.structure-one { width: 48vw; height: 20vh; right: 5vw; bottom: 22vh; clip-path: polygon(0 32%, 72% 0, 100% 18%, 100% 100%, 0 100%); }
.structure-two { width: 23vw; height: 34vh; right: 26vw; bottom: 18vh; background: #756e64; clip-path: polygon(12% 0, 100% 16%, 86% 100%, 0 90%); }
.hero-water {
  position: absolute;
  left: 0; right: 0; bottom: 0; height: 31vh;
  background: linear-gradient(180deg, rgba(33,58,74,.5), #0b2233 78%);
  clip-path: polygon(0 12%, 100% 0, 100% 100%, 0 100%);
}
.hero-overlay { background: linear-gradient(90deg, rgba(5,13,21,.7) 0%, rgba(5,13,21,.25) 52%, rgba(5,13,21,.12) 100%), linear-gradient(0deg, rgba(6,14,22,.46), transparent 45%); }
.hero-content { position: relative; z-index: 2; max-width: 900px; }
.eyebrow {
  margin: 0 0 24px;
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 500;
}
.hero h1 {
  margin: 0;
  font-size: clamp(56px, 7.5vw, 126px);
  line-height: .94;
  letter-spacing: -.045em;
  font-weight: 300;
}
.hero h1 em, .contact h2 em { font-family: var(--serif); font-weight: 400; }
.hero-korean { margin: 28px 0 0; font-family: "Noto Sans KR", sans-serif; font-size: 17px; font-weight: 500; letter-spacing: .06em; opacity: .9; }
.scroll-cue {
  position: absolute;
  right: 4vw; bottom: 6vh;
  z-index: 3;
  display: flex; align-items: center; gap: 14px;
  font-size: 10px; letter-spacing: .18em; text-transform: uppercase;
  transform: rotate(90deg); transform-origin: right center;
}
.scroll-cue i { display: block; width: 55px; height: 1px; background: rgba(255,255,255,.55); }

.section { padding: 150px 6vw; }
.section-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  opacity: .58;
  margin-bottom: 90px;
}

.about { background: var(--paper); color: var(--ink); }
.about-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 8vw; align-items: start; }
.about .lead {
  font-family: var(--serif);
  font-size: clamp(27px, 3vw, 48px);
  line-height: 1.25;
  max-width: 680px;
  margin: 0 0 72px;
}
.about h2 {
  font-size: clamp(28px, 3.3vw, 52px);
  line-height: 1.18;
  font-weight: 400;
  letter-spacing: -.035em;
  margin: 0 0 56px;
}
.body-copy { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; color: #4f5960; }
.body-copy p { margin: 0; line-height: 1.9; font-size: 17px; font-weight: 400; }
.statement { margin-top: 80px; padding-top: 28px; border-top: 1px solid var(--dark-line); display: flex; flex-direction: column; gap: 8px; font-size: 17px; font-weight: 400; }
.statement strong { font-size: 23px; font-weight: 600; }
.about-visual { position: sticky; top: 110px; }
.about-frame { aspect-ratio: .82; position: relative; overflow: hidden; background: linear-gradient(180deg, #c7c5bc, #8a958f 44%, #374a51 100%); }
.about-mountain { position: absolute; bottom: 34%; background: #53605f; }
.m1 { width: 100%; height: 43%; clip-path: polygon(0 78%, 27% 31%, 47% 59%, 68% 15%, 100% 72%, 100% 100%, 0 100%); }
.m2 { width: 85%; height: 30%; right: -10%; background: #34444a; clip-path: polygon(0 75%, 38% 20%, 100% 80%, 100% 100%, 0 100%); }
.about-pavilion { position: absolute; left: 10%; right: 12%; bottom: 22%; height: 21%; background: #d4c8b5; clip-path: polygon(5% 0, 100% 12%, 93% 100%, 0 86%); box-shadow: 0 20px 45px rgba(9,21,28,.25); }
.about-pavilion::after { content:""; position:absolute; left:12%; top:28%; width:58%; height:42%; background:#283d47; }
.about-reflection { position: absolute; bottom: 0; width: 100%; height: 34%; background: linear-gradient(180deg, rgba(32,61,70,.6), #1b3340); clip-path: polygon(0 13%, 100% 0, 100% 100%, 0 100%); }
.image-caption { font-size: 12px; font-weight: 500; letter-spacing: .11em; text-transform: uppercase; color: #626d74; margin-top: 16px; }


.destinations { background: var(--ivory); color: var(--ink); }
.section-heading { display: grid; grid-template-columns: 1fr 2fr; align-items: end; margin-bottom: 70px; }
.section-heading .eyebrow { color: #606a70; }
.section-heading h2 { margin: 0; font-size: clamp(56px, 8vw, 130px); line-height: .82; letter-spacing: -.06em; font-weight: 300; }
.destination-card { border-top: 1px solid var(--dark-line); padding-top: 26px; }
.destination-visual { aspect-ratio: 16/9; position: relative; overflow: hidden; background: #8fa1a7; }
.destination-sky { position: absolute; inset: 0; background: radial-gradient(circle at 70% 20%, rgba(255,237,194,.55), transparent 18%), linear-gradient(180deg,#9baab0 0%,#ccd0c8 43%,#5c7580 44%,#284553 100%); }
.destination-island { position: absolute; bottom: 28%; background: #263e43; }
.island-one { left: -3%; width: 62%; height: 31%; clip-path: polygon(0 66%, 24% 39%, 53% 50%, 70% 26%, 100% 76%, 100% 100%, 0 100%); }
.island-two { right: -3%; width: 45%; height: 23%; clip-path: polygon(0 74%, 43% 30%, 100% 66%, 100% 100%, 0 100%); }
.destination-building { position: absolute; bottom: 25%; background: #d8d0c0; box-shadow: 0 25px 60px rgba(10,24,31,.2); }
.building-a { width: 50%; height: 24%; left: 9%; clip-path: polygon(0 18%, 87% 0, 100% 28%, 93% 100%, 4% 91%); }
.building-b { width: 27%; height: 35%; right: 13%; background: #817c72; clip-path: polygon(9% 0, 100% 16%, 90% 100%, 0 84%); }
.destination-pool { position: absolute; bottom: 0; left: 0; right: 0; height: 31%; background: linear-gradient(180deg, rgba(65,113,129,.8), #173b4d); clip-path: polygon(0 16%, 100% 4%, 100% 100%, 0 100%); }
.destination-info { display: grid; grid-template-columns: 1.1fr 1fr; gap: 8vw; padding: 42px 0 0; }
.destination-type { margin: 0 0 20px; font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: .16em; color: #657078; }
.destination-info h3 { font-family: var(--serif); font-size: clamp(32px, 4vw, 62px); line-height: 1.12; font-weight: 400; margin: 0; }
.destination-info > p { color: #46535c; line-height: 1.9; font-size: 18px; font-weight: 400; margin: 0; }
.tags { grid-column: 1 / -1; display: flex; gap: 10px; flex-wrap: wrap; padding-top: 30px; border-top: 1px solid var(--dark-line); }
.tags span { border: 1px solid rgba(11,21,32,.25); padding: 10px 14px; font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: .12em; }

.expertise { background: var(--navy); }
.expertise-intro { display: grid; grid-template-columns: 1fr 2fr; align-items: start; margin-bottom: 90px; }
.expertise-intro h2 { margin: 0; font-size: clamp(38px, 5vw, 76px); font-weight: 300; line-height: 1.1; letter-spacing: -.045em; max-width: 980px; }
.expertise-grid { border-top: 1px solid var(--line); }
.expertise-item { display: grid; grid-template-columns: .25fr .75fr 1.05fr 1.2fr; gap: 34px; padding: 42px 0; border-bottom: 1px solid var(--line); align-items: start; }
.item-number { color: var(--gold); font-size: 13px; font-weight: 600; letter-spacing: .12em; }
.expertise-item h3 { font-family: var(--serif); font-size: clamp(34px, 4vw, 60px); font-weight: 400; margin: 0; }
.item-lead { font-size: 20px; font-weight: 500; line-height: 1.6; margin: 5px 0 0; }
.expertise-item > p:last-child { color: #c4cbd0; line-height: 1.9; font-size: 16px; font-weight: 400; margin: 5px 0 0; }

.contact { background: #d9d0c2; color: var(--ink); min-height: 90vh; display: grid; place-items: center; }
.contact-inner { width: 100%; }
.contact h2 { font-size: clamp(54px, 7vw, 112px); line-height: .98; letter-spacing: -.05em; font-weight: 300; margin: 20px 0 65px; }
.contact-email { display: inline-block; font-size: clamp(20px, 2vw, 30px); padding-bottom: 8px; border-bottom: 1px solid currentColor; }
.contact-meta { margin-top: 100px; padding-top: 30px; border-top: 1px solid var(--dark-line); display: grid; grid-template-columns: 1fr 1fr; gap: 60px; max-width: 650px; }
.contact-meta span { font-size: 11px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: #606a70; }
.contact-meta p { line-height: 1.8; font-size: 17px; font-weight: 400; }
.site-footer { display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; padding: 36px 4vw; background: #08111a; color: #b3bbc1; font-size: 11px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; }
.site-footer p:nth-child(2) { text-align: center; }
.site-footer p:last-child { text-align: right; }


.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s ease, transform .9s cubic-bezier(.2,.7,.2,1); }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 900px) {
  .body-copy p { font-size: 16px; }
  .destination-info > p { font-size: 17px; }
  .item-lead { font-size: 19px; }
  .expertise-item > p:last-child { font-size: 16px; }
  .contact-meta p { font-size: 16px; }
  .site-header { padding: 22px 20px; }
  .brand img { width: 126px; }
  .menu-toggle { display: block; width: 34px; height: 30px; border: 0; background: transparent; position: relative; z-index: 3; }
  .menu-toggle span { position: absolute; left: 2px; width: 28px; height: 1px; background: var(--ivory); transition: transform .25s ease, top .25s ease; }
  .menu-toggle span:first-child { top: 9px; }
  .menu-toggle span:last-child { top: 19px; }
  .menu-toggle.open span:first-child { top: 14px; transform: rotate(45deg); }
  .menu-toggle.open span:last-child { top: 14px; transform: rotate(-45deg); }
  .site-nav { position: fixed; inset: 0; background: rgba(11,21,32,.97); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 28px; opacity: 0; pointer-events: none; transition: opacity .25s ease; }
  .site-nav.open { opacity: 1; pointer-events: auto; }
  .site-nav a { font-family: var(--serif); font-size: 38px; text-transform: none; letter-spacing: 0; }
  .hero { padding: 0 22px 11vh; }
  .hero h1 { font-size: clamp(52px, 16vw, 82px); }
  .hero-sun { width: 18vw; }
  .structure-one { width: 75vw; }
  .structure-two { width: 35vw; right: 12vw; }
  .scroll-cue { display: none; }
  .section { padding: 100px 22px; }
  .section-label { margin-bottom: 56px; }
  .about-grid, .destination-info, .expertise-intro, .section-heading { grid-template-columns: 1fr; }
  .about .lead { margin-bottom: 48px; }
  .body-copy { grid-template-columns: 1fr; }
  .about-visual { position: relative; top: auto; margin-top: 60px; }
  .section-heading { gap: 25px; }
  .section-heading h2 { font-size: clamp(58px, 20vw, 92px); }
  .destination-visual { aspect-ratio: 4/5; }
  .destination-info { gap: 35px; }
  .expertise-intro { gap: 30px; }
  .expertise-grid { margin-top: 20px; }
  .expertise-item { grid-template-columns: 45px 1fr; gap: 12px 18px; }
  .expertise-item h3 { grid-column: 2; }
  .expertise-item .item-lead, .expertise-item > p:last-child { grid-column: 2; }
  .contact-meta { grid-template-columns: 1fr; gap: 24px; margin-top: 70px; }
  .site-footer { grid-template-columns: 1fr; gap: 16px; text-align: left; }
  .site-footer p:nth-child(2), .site-footer p:last-child { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ALT B — Narrower editorial composition and shorter scroll */
:root { --content-max: 1240px; }
.site-header {
  padding-left: max(4vw, calc((100vw - var(--content-max)) / 2));
  padding-right: max(4vw, calc((100vw - var(--content-max)) / 2));
}
.hero {
  min-height: 88svh;
  padding-left: max(6vw, calc((100vw - var(--content-max)) / 2));
  padding-right: max(6vw, calc((100vw - var(--content-max)) / 2));
  padding-bottom: 7vh;
}
.hero-content { max-width: 790px; }
.hero h1 { font-size: clamp(52px, 6.2vw, 104px); }
.section {
  padding: 105px max(6vw, calc((100vw - var(--content-max)) / 2));
}
.section-label {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .12em;
  opacity: .82;
  margin-bottom: 58px;
}
.about-grid { gap: 6vw; grid-template-columns: 1fr .82fr; }
.about .lead { font-size: clamp(25px, 2.5vw, 40px); margin-bottom: 46px; }
.about h2 { font-size: clamp(27px, 2.9vw, 45px); margin-bottom: 38px; }
.body-copy { gap: 26px; }
.body-copy p { font-size: 16px; line-height: 1.75; }
.statement { margin-top: 52px; }
.about-frame { aspect-ratio: .9; }
.section-heading { margin-bottom: 46px; }
.section-heading h2 { font-size: clamp(52px, 7vw, 108px); }
.destination-visual { aspect-ratio: 16/8.2; }
.destination-info { gap: 6vw; padding-top: 32px; }
.destination-info h3 { font-size: clamp(30px, 3.5vw, 52px); }
.destination-info > p { font-size: 17px; line-height: 1.75; }
.tags { padding-top: 22px; }
.expertise-intro { margin-bottom: 58px; }
.expertise-intro h2 { font-size: clamp(36px, 4.4vw, 64px); }
.expertise-item { padding: 30px 0; gap: 26px; }
.expertise-item h3 { font-size: clamp(32px, 3.4vw, 50px); }
.item-lead { font-size: 18px; line-height: 1.5; }
.expertise-item > p:last-child { font-size: 15px; line-height: 1.7; }
.contact { min-height: 70vh; }
.contact h2 { font-size: clamp(50px, 6vw, 92px); margin-bottom: 46px; }
.contact-meta { margin-top: 68px; }
.site-footer {
  padding-left: max(4vw, calc((100vw - var(--content-max)) / 2));
  padding-right: max(4vw, calc((100vw - var(--content-max)) / 2));
}
@media (max-width: 900px) {
  .hero { min-height: 92svh; }
  .section { padding: 84px 22px; }
  .section-label { font-size: 14px; margin-bottom: 44px; }
  .contact { min-height: auto; }
}


/* v1.0 release candidate refinements */
:root { --content-max: 1180px; }
.section-label {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  opacity: .9;
  margin-bottom: 48px;
}
.about-grid { gap: 5.5vw; grid-template-columns: 1.05fr .78fr; }
.section { padding-top: 92px; padding-bottom: 92px; }
.section-heading { margin-bottom: 40px; }
.destination-info { padding-top: 28px; }
.expertise-intro { margin-bottom: 48px; }
.expertise-item { padding: 27px 0; }
.contact { min-height: 66vh; }
.contact-label { color: #59636b; }
.contact h2 { margin-top: 0; }

@media (max-width: 900px) {
  .section { padding-top: 76px; padding-bottom: 76px; }
  .section-label { font-size: 14px; margin-bottom: 38px; }
  .about-grid { grid-template-columns: 1fr; }
}

/* PDF-extracted image test */
.hero-visual {
  background-image: url("assets/hero-coast-aerial.jpg");
  background-size: cover;
  background-position: center 48%;
  transform: scale(1.02);
}
.hero-visual > * { display: none; }
.hero-overlay {
  background: linear-gradient(90deg, rgba(7,15,23,.78) 0%, rgba(7,15,23,.42) 48%, rgba(7,15,23,.20) 100%),
              linear-gradient(180deg, rgba(7,15,23,.12), rgba(7,15,23,.38));
}
.destination-visual {
  background-image: url("assets/monogram-namhae-exterior.jpg");
  background-size: cover;
  background-position: center 48%;
}
.destination-visual > * { display: none; }

@media (max-width: 900px) {
  .hero-visual { background-position: 48% center; }
  .destination-visual { background-position: 48% center; }
}

/* Final approved PDF image set */
.about-frame {
  background-image: url("assets/about-sea-view.jpg");
  background-size: cover;
  background-position: center;
}
.about-frame > * { display: none; }

/* Headline scale refinement — calmer hierarchy for the narrower layout */
.hero h1 {
  font-size: clamp(50px, 5.2vw, 88px);
  line-height: .98;
}
.section-heading h2 {
  font-size: clamp(46px, 5.8vw, 86px);
  line-height: .88;
}
.contact h2 {
  font-size: clamp(42px, 4.9vw, 74px);
  line-height: 1.02;
}

@media (max-width: 900px) {
  .hero h1 { font-size: clamp(44px, 12.5vw, 64px); }
  .section-heading h2 { font-size: clamp(44px, 13vw, 66px); }
  .contact h2 { font-size: clamp(40px, 11vw, 58px); }
}

/* Unified typography hierarchy — v1.0 final pass */
:root {
  --type-display: clamp(48px, 4.6vw, 76px);
  --type-heading: clamp(32px, 3.2vw, 48px);
  --type-subheading: clamp(28px, 2.5vw, 38px);
}

/* Level 1: hero display */
.hero h1 {
  font-family: var(--sans);
  font-size: var(--type-display);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -.042em;
}
.hero h1 em {
  font-family: var(--serif);
  font-weight: 400;
}

/* Level 2: primary section headlines — one shared scale and rhythm */
.about h2,
.section-heading h2,
.expertise-intro h2,
.contact h2 {
  font-family: var(--sans);
  font-size: var(--type-heading);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -.032em;
}
.contact h2 em {
  font-family: inherit;
  font-style: normal;
  font-weight: inherit;
}

/* Level 3: project and capability titles */
.destination-info h3,
.expertise-item h3 {
  font-family: var(--serif);
  font-size: var(--type-subheading);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -.02em;
}

/* Spacing adjusted to the calmer headline scale */
.about h2 { margin-bottom: 36px; }
.section-heading { margin-bottom: 36px; }
.expertise-intro { margin-bottom: 44px; }
.contact h2 { margin-bottom: 42px; }

@media (max-width: 900px) {
  :root {
    --type-display: clamp(44px, 12vw, 60px);
    --type-heading: clamp(30px, 8.8vw, 40px);
    --type-subheading: clamp(27px, 7.5vw, 34px);
  }
  .hero h1 { line-height: 1.04; }
  .about h2,
  .section-heading h2,
  .expertise-intro h2,
  .contact h2 { line-height: 1.14; }
}

/* Mobile spacing refinement — compact section rhythm */
@media (max-width: 900px) {
  /* Keep the premium breathing room, but remove duplicated vertical padding
     between adjoining sections. */
  .hero {
    min-height: 86svh;
    padding: 0 20px 8vh;
  }

  .section {
    padding: 48px 20px;
  }

  .section-label {
    margin-bottom: 24px;
  }

  .eyebrow {
    margin-bottom: 16px;
  }

  /* About */
  .about h2 {
    margin-bottom: 24px;
  }
  .body-copy {
    gap: 18px;
  }
  .statement {
    margin-top: 32px;
    padding-top: 20px;
  }
  .about-visual {
    margin-top: 34px;
  }
  .about-frame {
    aspect-ratio: 4 / 3;
  }
  .image-caption {
    margin-top: 10px;
  }

  /* Destinations */
  .section-heading {
    gap: 12px;
    margin-bottom: 26px;
  }
  .section-heading .eyebrow {
    margin: 0;
  }
  .destination-card {
    padding-top: 20px;
  }
  .destination-visual {
    aspect-ratio: 4 / 3;
  }
  .destination-info {
    gap: 22px;
    padding-top: 24px;
  }
  .destination-type {
    margin-bottom: 14px;
  }
  .tags {
    padding-top: 18px;
  }

  /* Expertise */
  .expertise-intro {
    gap: 16px;
    margin-bottom: 30px;
  }
  .expertise-intro .eyebrow {
    margin: 0;
  }
  .expertise-grid {
    margin-top: 0;
  }
  .expertise-item {
    padding: 22px 0;
    gap: 10px 16px;
  }

  /* Contact */
  .contact h2 {
    margin-bottom: 30px;
  }
  .contact-meta {
    margin-top: 42px;
    padding-top: 22px;
    gap: 18px;
  }

  .site-footer {
    padding: 28px 20px;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .section {
    padding-top: 44px;
    padding-bottom: 44px;
  }
  .section-label {
    margin-bottom: 22px;
  }
}

/* Desktop hierarchy refinement — reduce upper-level text density */
@media (min-width: 901px) {
  :root {
    --type-heading: clamp(30px, 2.55vw, 38px);
  }

  .about-grid {
    grid-template-columns: minmax(0, 1.18fr) minmax(340px, .72fr);
    gap: 4.75vw;
  }

  .about h2 {
    max-width: 720px;
    line-height: 1.18;
    text-wrap: balance;
    margin-bottom: 32px;
  }

  .section-heading h2,
  .expertise-intro h2,
  .contact h2 {
    text-wrap: balance;
  }
}

/* Mobile typography refinement — desktop approved and intentionally unchanged */
@media (max-width: 900px) {
  :root {
    --type-display: clamp(38px, 9.6vw, 50px);
    --type-heading: clamp(25px, 6.7vw, 32px);
    --type-subheading: clamp(22px, 5.9vw, 28px);
  }

  .hero h1 {
    line-height: 1.04;
    letter-spacing: -.035em;
  }

  .about h2,
  .section-heading h2,
  .expertise-intro h2,
  .contact h2 {
    line-height: 1.16;
    letter-spacing: -.025em;
  }

  .destination-info h3,
  .expertise-item h3 {
    line-height: 1.22;
  }

  .hero-korean {
    margin-top: 20px;
    font-size: 15px;
  }

  .statement strong {
    font-size: 20px;
  }

  .site-nav a {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  :root {
    --type-display: clamp(36px, 10vw, 42px);
    --type-heading: clamp(24px, 6.6vw, 28px);
    --type-subheading: clamp(22px, 6vw, 26px);
  }
}

/* Footer legal information */
.site-footer {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 48px;
  align-items: end;
  text-transform: none;
  letter-spacing: 0;
  font-size: 12px;
  line-height: 1.7;
}
.footer-company,
.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.footer-company strong {
  color: var(--ivory);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
}
.footer-company a,
.footer-legal a {
  width: fit-content;
  transition: color .2s ease;
}
.footer-company a:hover,
.footer-legal a:hover {
  color: var(--ivory);
}
.footer-legal {
  align-items: flex-end;
  text-align: right;
}
.footer-legal a {
  color: var(--ivory);
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Privacy policy */
.privacy-page {
  background: var(--navy);
  color: var(--ivory);
}
.privacy-header {
  width: min(1180px, calc(100% - 12vw));
  margin: 0 auto;
  padding: 30px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.privacy-back {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #c6cdd2;
}
.privacy-main {
  width: min(940px, calc(100% - 12vw));
  margin: 0 auto;
  padding: 110px 0 130px;
}
.privacy-title {
  padding-bottom: 62px;
  border-bottom: 1px solid var(--line);
}
.privacy-title h1 {
  margin: 0;
  font-family: "Noto Sans KR", var(--sans);
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -.045em;
}
.privacy-effective {
  margin: 24px 0 0;
  color: #aeb7bd;
  font-size: 13px;
}
.privacy-content {
  padding-top: 34px;
  color: #ccd2d6;
  font-family: "Noto Sans KR", var(--sans);
  font-size: 15px;
  line-height: 1.85;
  word-break: keep-all;
}
.privacy-intro {
  margin: 0 0 60px;
  color: var(--ivory);
  font-size: 17px;
  line-height: 1.9;
}
.privacy-content section {
  padding: 38px 0;
  border-top: 1px solid rgba(255,255,255,.11);
}
.privacy-content h2 {
  margin: 0 0 18px;
  color: var(--ivory);
  font-size: 19px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -.015em;
}
.privacy-content p {
  margin: 0 0 12px;
}
.privacy-content ul {
  margin: 14px 0 0;
  padding-left: 21px;
}
.privacy-content li {
  margin: 5px 0;
}
.privacy-content a {
  color: var(--ivory);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.privacy-contact-list {
  margin: 8px 0 0;
}
.privacy-contact-list > div {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 24px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.privacy-contact-list dt {
  color: #9fa9b0;
}
.privacy-contact-list dd {
  margin: 0;
  color: var(--ivory);
}

@media (max-width: 900px) {
  .site-footer {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .footer-legal {
    align-items: flex-start;
    text-align: left;
  }
  .privacy-header {
    width: calc(100% - 40px);
    padding: 22px 0;
  }
  .privacy-header .brand img {
    width: 124px;
  }
  .privacy-main {
    width: calc(100% - 40px);
    padding: 70px 0 90px;
  }
  .privacy-title {
    padding-bottom: 42px;
  }
  .privacy-title h1 {
    font-size: clamp(32px, 9vw, 42px);
  }
  .privacy-content {
    padding-top: 24px;
    font-size: 14px;
    line-height: 1.8;
  }
  .privacy-intro {
    margin-bottom: 44px;
    font-size: 16px;
  }
  .privacy-content section {
    padding: 30px 0;
  }
  .privacy-content h2 {
    font-size: 17px;
  }
  .privacy-contact-list > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

/* Mobile menu reliability fix
   A backdrop-filter on the scrolled fixed header can make a fixed child nav
   position itself against the header instead of the viewport on mobile. */
body.menu-open {
  overflow: hidden;
  touch-action: none;
}

@media (max-width: 900px) {
  .site-header.scrolled {
    background: rgba(11, 21, 32, .92);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .site-header.menu-open,
  .site-header.scrolled.menu-open {
    background: transparent;
    border-bottom-color: transparent;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .brand,
  .menu-toggle {
    position: relative;
    z-index: 72;
  }

  .site-nav {
    z-index: 70;
    width: 100vw;
    min-height: 100svh;
    height: 100dvh;
    visibility: hidden;
  }

  .site-nav.open {
    visibility: visible;
  }
}

/* Headline word-spacing refinement — clearer, more restrained typography */
.hero h1 {
  letter-spacing: -.02em;
  word-spacing: .045em;
}

.about h2,
.section-heading h2,
.expertise-intro h2,
.contact h2 {
  letter-spacing: -.012em;
  word-spacing: .055em;
}

.destination-info h3,
.expertise-item h3 {
  letter-spacing: -.005em;
  word-spacing: .04em;
}

@media (max-width: 900px) {
  .hero h1 {
    letter-spacing: -.015em;
    word-spacing: .035em;
  }

  .about h2,
  .section-heading h2,
  .expertise-intro h2,
  .contact h2 {
    letter-spacing: -.008em;
    word-spacing: .045em;
  }

  .destination-info h3,
  .expertise-item h3 {
    letter-spacing: 0;
    word-spacing: .03em;
  }
}

