:root {
  --ink: #142033;
  --muted: #4b5565;
  --line: #d8dee8;
  --paper: #f7f8f4;
  --white: #ffffff;
  --navy: #172944;
  --green: #57755f;
  --gold: #b18a42;
  --brick: #9b5b48;
  --shadow: 0 18px 55px rgba(15, 31, 54, .16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Noto Sans KR", "Segoe UI", sans-serif;
  background: var(--paper);
  line-height: 1.72;
  word-break: keep-all;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(20px, 4vw, 56px);
  background: rgba(255, 255, 255, .92);
  border-bottom: 1px solid rgba(216, 222, 232, .85);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 230px;
}

.brand img {
  width: 216px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  color: #334155;
  font-size: 15px;
  font-weight: 700;
}

.site-nav a:hover { color: var(--gold); }
.menu-button { display: none; }

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #111827;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image { object-fit: cover; }
.hero-shade {
  background: linear-gradient(90deg, rgba(8, 14, 24, .9), rgba(8, 14, 24, .62) 52%, rgba(8, 14, 24, .32));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(880px, calc(100% - 40px));
  margin: 0 auto;
  padding: 150px 0 180px;
  color: #fff;
}

.eyebrow {
  margin: 0 0 12px;
  color: #9a6d18;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffd36d;
  font-size: clamp(26px, 2.7vw, 34px);
  line-height: 1.2;
  text-transform: none;
  text-shadow: 0 3px 12px rgba(0, 0, 0, .7);
}

.hero h1 {
  margin: 0;
  font-size: clamp(52px, 8vw, 112px);
  line-height: .95;
  letter-spacing: 0;
  text-shadow: 0 5px 18px rgba(0, 0, 0, .62);
}

.hero-copy {
  max-width: 640px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .96);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  line-height: 1.55;
  text-shadow: 0 3px 12px rgba(0, 0, 0, .56);
}

.hero-actions,
.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions { margin-top: 34px; }
.primary-button,
.secondary-button,
.call-button,
.contact-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 6px;
  font-weight: 800;
}

.primary-button,
.call-button,
.contact-form button {
  color: #fff;
  background: var(--gold);
  border: 1px solid var(--gold);
}

.secondary-button {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .58);
  background: rgba(255, 255, 255, .08);
}

.hero-facts {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  width: min(1120px, calc(100% - 40px));
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(255, 255, 255, .5);
  box-shadow: var(--shadow);
}

.hero-facts div {
  padding: 20px 22px;
  border-right: 1px solid var(--line);
}

.hero-facts div:last-child { border-right: 0; }
.hero-facts strong { display: block; font-size: clamp(19px, 2vw, 27px); line-height: 1.15; }
.hero-facts span { display: block; color: var(--muted); font-size: 13px; margin-top: 6px; }

.section {
  padding: clamp(72px, 9vw, 118px) clamp(20px, 4vw, 56px);
}

.section-head {
  width: min(1040px, 100%);
  margin: 0 auto 36px;
}

.section-head h2,
.split-section h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(31px, 4vw, 54px);
  line-height: 1.12;
  letter-spacing: 0;
}

.overview-layout {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.overview-copy {
  color: #263244;
  font-size: 19px;
  font-weight: 600;
}

.spec-table {
  margin: 0;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.spec-table div {
  display: grid;
  grid-template-columns: 140px 1fr;
  border-bottom: 1px solid var(--line);
}

.spec-table div:last-child { border-bottom: 0; }
.spec-table dt,
.spec-table dd {
  margin: 0;
  padding: 16px 18px;
}

.spec-table dt {
  color: var(--muted);
  font-weight: 800;
  background: #f3f5f8;
}

.spec-table dd { font-weight: 800; }

.premium {
  background: #fff;
}

.premium-grid {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.premium-grid article {
  background: var(--paper);
  border: 1px solid var(--line);
}

.premium-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #e9edf2;
}

.premium-grid img[src*="public-office"] {
  object-fit: contain;
  background: #dff2fb;
}

.premium-grid div { padding: 22px; }
.premium-grid h3,
.md-list h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.premium-grid p,
.md-list p,
.split-section p,
.contact-copy p {
  margin: 0;
  color: #334155;
  font-size: 17px;
  line-height: 1.72;
}

.source-section {
  background: linear-gradient(180deg, #fff, var(--paper));
}

.source-layout {
  width: min(1280px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(430px, .98fr) minmax(0, 1.02fr);
  grid-template-areas:
    "copy image"
    "map image";
  column-gap: clamp(32px, 4vw, 54px);
  row-gap: 26px;
  align-items: start;
  align-content: start;
}

.source-copy {
  grid-area: copy;
  max-width: 620px;
}

.source-copy h2 {
  margin: 0;
  font-size: clamp(36px, 3.6vw, 56px);
  line-height: 1.14;
  letter-spacing: 0;
}

.source-copy p {
  margin: 18px 0 0;
  color: #263244;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.72;
}

.point-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.point-list strong {
  display: block;
  padding: 14px 16px;
  color: #fff;
  background: var(--green);
  border-radius: 6px;
}

.source-image {
  grid-area: image;
  width: 100%;
  margin: 0;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.source-image img {
  width: 100%;
  max-height: none;
  object-fit: contain;
  background: #efe5d5;
}

.source-image figcaption {
  padding: 12px 16px;
  color: #334155;
  font-size: 15px;
  font-weight: 700;
  border-top: 1px solid var(--line);
}

.source-map {
  grid-area: map;
  width: 100%;
  margin: 0;
  align-self: start;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.source-map div {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 14px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
}

.map-icon {
  position: relative;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  align-self: center;
  border-radius: 50% 50% 50% 4px;
  background: var(--gold);
  transform: rotate(-45deg);
}

.map-icon::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 8px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
}

.source-map strong {
  color: var(--ink);
  font-size: 22px;
  font-weight: 900;
}

.source-map span {
  color: #334155;
  font-size: 17px;
  font-weight: 700;
}

.source-map iframe {
  display: block;
  width: 100%;
  height: 360px;
  border: 0;
}

.location-highlights {
  width: min(1280px, 100%);
  margin: clamp(32px, 5vw, 62px) auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.location-highlights article {
  min-height: 236px;
  padding: 24px;
  border-top: 3px solid var(--gold);
  background: #fff;
  box-shadow: 0 12px 32px rgba(15, 31, 54, .08);
}

.location-highlights span {
  display: block;
  color: var(--gold);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .08em;
}

.location-highlights h3 {
  margin: 30px 0 10px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.22;
}

.location-highlights p,
.source-note {
  margin: 0;
  color: #334155;
  font-size: 16px;
  line-height: 1.7;
}

.source-note {
  width: min(1280px, 100%);
  margin: 16px auto 0;
  padding: 14px 18px;
  border-left: 4px solid var(--gold);
  background: rgba(255, 255, 255, .76);
  font-size: 14px;
}

.dark-band {
  color: #fff;
  background: var(--navy);
}

.dark-band .section-head h2 { color: #fff; }

.md-list {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.md-list article {
  min-height: 260px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .06);
}

.md-list span {
  display: block;
  color: var(--gold);
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 32px;
}

.md-list p { color: rgba(255, 255, 255, .78); }

.anchor-section {
  background: #fff;
}

.anchor-layout {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.anchor-layout article {
  min-height: 300px;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.anchor-layout span {
  display: block;
  color: var(--gold);
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 36px;
}

.anchor-layout h3 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.2;
}

.anchor-layout p,
.anchor-note {
  margin: 0;
  color: #334155;
  font-size: 17px;
  line-height: 1.72;
}

.magicwin-grid {
  width: min(1120px, 100%);
  margin: 18px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.magicwin-grid article {
  padding: 20px;
  border: 1px solid #d7e0d9;
  background: #f5faf6;
}

.magicwin-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--green);
  font-size: 18px;
}

.magicwin-grid p {
  margin: 0;
  color: #334155;
  font-size: 15px;
  line-height: 1.65;
}

.anchor-note {
  width: min(1120px, 100%);
  margin: 18px auto 0;
  padding: 14px 16px;
  border-left: 4px solid var(--gold);
  background: #f8fafc;
  font-size: 14px;
}

.gallery-section {
  background: #f8fafc;
}

.plan-tabs {
  width: min(1120px, 100%);
  margin: 0 auto 18px;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 2px;
}

.plan-tabs button {
  flex: 0 0 auto;
  min-width: 78px;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
}

.plan-tabs button.active {
  color: #fff;
  border-color: var(--navy);
  background: var(--navy);
}

.plan-view {
  width: min(1120px, 100%);
  margin: 0 auto;
  border: 1px solid var(--line);
  background: #f8fafc;
}

.plan-view img {
  width: 100%;
  max-height: 780px;
  object-fit: contain;
}

.plan-view figcaption {
  padding: 14px 18px;
  color: #263244;
  font-weight: 800;
  border-top: 1px solid var(--line);
  background: #fff;
}

.split-section {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding-left: 0;
  padding-right: 0;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.split-section img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.contact-section {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(28px, 5vw, 80px);
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding-left: 0;
  padding-right: 0;
}

.contact-copy p {
  margin-top: 18px;
  font-size: 19px;
}

.call-button { margin-top: 26px; }

.contact-form {
  display: grid;
  gap: 14px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #344054;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px;
  border: 1px solid #cbd5e1;
  border-radius: 4px;
  font: inherit;
  background: #fff;
}

.contact-form textarea { resize: vertical; }

.privacy {
  display: flex !important;
  grid-template-columns: none;
  align-items: center;
  gap: 10px !important;
  font-size: 14px;
}

.privacy input {
  width: 18px;
  min-height: 18px;
}

.contact-form button {
  width: 100%;
  border: 0;
  cursor: pointer;
  font: inherit;
}

.site-footer {
  padding: 36px clamp(20px, 4vw, 56px) 96px;
  color: rgba(255, 255, 255, .78);
  background: #101827;
}

.site-footer strong {
  display: block;
  color: #fff;
  margin-bottom: 8px;
}

.site-footer p { margin: 0; }

.mobile-bar {
  display: none;
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 40;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.mobile-bar a {
  flex: 1;
  min-height: 52px;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 900;
  background: var(--navy);
}

.mobile-bar a + a { background: var(--gold); }

@media (max-width: 900px) {
  .site-header { min-height: 64px; }
  .menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 58px;
    min-height: 38px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: #fff;
    color: var(--ink);
    font-weight: 800;
  }
  .site-nav {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 20px 18px;
    background: rgba(255, 255, 255, .98);
    border-bottom: 1px solid var(--line);
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 12px 0; border-bottom: 1px solid #eef2f6; }
  .hero { min-height: 860px; }
  .hero-content { padding: 118px 0 320px; }
  .hero-facts {
    grid-template-columns: repeat(2, 1fr);
    bottom: 84px;
  }
  .hero-facts div:nth-child(2) { border-right: 0; }
  .hero-facts div:nth-child(1),
  .hero-facts div:nth-child(2) { border-bottom: 1px solid var(--line); }
  .overview-layout,
  .premium-grid,
  .md-list,
  .source-layout,
  .anchor-layout,
  .magicwin-grid,
  .split-section,
  .contact-section {
    grid-template-columns: 1fr;
  }
  .source-layout {
    grid-template-areas:
      "copy"
      "image"
      "map";
  }
  .location-highlights { grid-template-columns: repeat(2, 1fr); }
  .mobile-bar { display: flex; }
}

@media (max-width: 560px) {
  .brand { min-width: 0; }
  .brand img { width: 174px; }
  .hero h1 { font-size: 48px; }
  .hero-facts { width: calc(100% - 24px); }
  .hero-facts div { padding: 15px 14px; }
  .spec-table div { grid-template-columns: 112px 1fr; }
  .spec-table dt,
  .spec-table dd { padding: 13px 12px; }
  .premium-grid div,
  .md-list article,
  .contact-form,
  .location-highlights article { padding: 20px; }
  .location-highlights { grid-template-columns: 1fr; }
  .location-highlights article { min-height: auto; }
  .location-highlights h3 { margin-top: 22px; }
  .source-map iframe { height: 340px; }
}
