@font-face {
  font-family: 'Cafe24ClassicType';
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2210-2@1.0/Cafe24ClassicType-Regular.woff2') format('woff2');
  font-weight: normal;
  font-display: swap;
}

.h-title,
.brand,
.hero h1,
.hero-stats .num,
.gallery-banner h3,
.img-banner-text {
  -webkit-text-stroke: 0.6px currentColor;
  text-stroke: 0.6px currentColor;
  paint-order: stroke fill;
}

/* === Design tokens === */
:root {
  --orange: #E85A1A;
  --orange-deep: #C84512;
  --orange-soft: #FBE6D4;
  --navy: #15233F;
  --navy-2: #1E325A;
  --navy-soft: #2A3F6B;
  --cream: #F7F1E6;
  --cream-2: #FBF6EC;
  --ink: #1A1A1A;
  --ink-2: #444444;
  --line: #E6DFCF;
  --white: #FFFFFF;
  --radius: 6px;
  --radius-lg: 14px;
  --shadow-sm: 0 2px 6px rgba(21,35,63,0.06);
  --shadow-md: 0 8px 24px rgba(21,35,63,0.10);
  --max: 1240px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html, body { overflow-x: hidden; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, 'Apple SD Gothic Neo', 'Noto Sans KR', sans-serif;
  color: var(--ink);
  background: var(--white);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; }
a { color: inherit; text-decoration: none; }

/* === Material Symbols === */
.icon {
  font-family: 'Material Symbols Rounded';
  font-weight: normal;
  font-style: normal;
  font-size: inherit;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* === Scroll Reveal === */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1);
}
[data-reveal="left"]  { transform: translateX(-32px); }
[data-reveal="right"] { transform: translateX(32px); }
[data-reveal="scale"] { transform: scale(.94); transform-origin: 50% 70%; }
[data-reveal="rise"]  { transform: translateY(60px); }
[data-reveal].in      { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .08s; }
[data-reveal][data-delay="2"] { transition-delay: .16s; }
[data-reveal][data-delay="3"] { transition-delay: .24s; }
[data-reveal][data-delay="4"] { transition-delay: .32s; }
[data-reveal][data-delay="5"] { transition-delay: .40s; }
[data-reveal][data-delay="6"] { transition-delay: .48s; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* === Marquee === */
.marquee { background: var(--orange); color: #fff; padding: 20px 0; overflow: hidden; }
.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee-scroll 40s linear infinite;
  font-family: 'Pretendard', -apple-system, sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.marquee-item { display: inline-flex; align-items: center; gap: 0; }
.marquee-sep {
  color: var(--navy);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 400;
  margin: 0 28px;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* === Layout helpers === */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.section { padding: 120px 0; }
.section-sm { padding: 80px 0; }

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .section-sm { padding: 56px 0; }
  .wrap { padding: 0 20px; }
}

/* Section eyebrow */
.eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.22em;
  font-weight: 600;
  color: var(--orange);
  margin-bottom: 16px;
  text-transform: uppercase;
}
.eyebrow.on-dark { color: #F2B27D; }

.h-title {
  font-family: 'Cafe24ClassicType', 'Pretendard', sans-serif;
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: normal;
  letter-spacing: -0.02em;
  line-height: 1.18;
  margin: 0 0 18px;
  text-wrap: balance;
}
.h-sub {
  font-size: clamp(15px, 1.4vw, 17px);
  color: var(--ink-2);
  line-height: 1.7;
  max-width: 680px;
  text-wrap: pretty;
}
.section-head { text-align: center; margin-bottom: 56px; }
.section-head .h-sub { margin-left: auto; margin-right: auto; }

/* === Header === */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid rgba(21,35,63,0.06);
  transition: background 0.2s;
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.brand {
  font-family: 'Cafe24ClassicType', 'Pretendard', sans-serif;
  font-weight: normal;
  font-size: 24px;
  letter-spacing: 0.01em;
  color: var(--navy);
  display: flex; align-items: center; gap: 10px;
}
.nav-links {
  display: flex; gap: 28px;
  font-size: 14px; font-weight: 500;
  color: var(--ink-2);
}
.nav-links a:hover { color: var(--orange); }
.nav-cta {
  background: var(--navy);
  color: white;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
}
.nav-cta:hover { background: var(--orange); }
.nav-mobile-toggle { display: none; }

@media (max-width: 860px) {
  .nav-links, .nav-cta { display: none; }
  .nav-mobile-toggle {
    display: flex; flex-direction: column; gap: 4px;
    padding: 8px;
  }
  .nav-mobile-toggle span {
    width: 22px; height: 2px; background: var(--navy);
    transition: transform 0.2s;
  }
  .nav-mobile-open .nav-links {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: white; padding: 24px;
    border-bottom: 1px solid var(--line);
    gap: 18px;
  }
  .nav-mobile-open .nav-cta {
    display: inline-block;
    margin-top: 12px;
    text-align: center;
  }
}

/* === Hero === */
.hero {
  padding: 140px 0 80px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: white;
  border: 1px solid var(--line);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 24px;
}
.hero-badge .dot {
  width: 8px; height: 8px;
  background: var(--orange); border-radius: 50%;
}
.hero h1 {
  font-family: 'Cafe24ClassicType', 'Pretendard', sans-serif;
  font-size: clamp(36px, 5.4vw, 68px);
  font-weight: normal;
  letter-spacing: -0.035em;
  line-height: 1.08;
  margin: 0 0 24px;
  color: var(--navy);
  text-wrap: balance;
}
.hero h1 .accent { color: var(--orange); }
.hero h1 .underline {
  position: relative; display: inline-block;
}
.hero h1 .underline::after {
  content: ''; position: absolute;
  left: 0; right: 0; bottom: 4px;
  height: 12px;
  background: var(--orange-soft);
  z-index: -1;
}
.hero-sub {
  font-size: clamp(16px, 1.5vw, 19px);
  color: var(--ink-2);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 16px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  transition: transform 0.15s, background 0.15s, color 0.15s;
}
.btn-primary { background: var(--orange); color: white; }
.btn-primary:hover { background: var(--orange-deep); transform: translateY(-1px); }
.btn-secondary {
  background: white; color: var(--navy);
  border: 1px solid var(--navy);
}
.btn-secondary:hover { background: var(--navy); color: white; }
.btn-ghost {
  background: transparent; color: var(--navy);
  text-decoration: underline; text-underline-offset: 4px;
}
.hero-stats {
  display: flex; gap: 32px; margin-top: 48px;
  padding-top: 32px; border-top: 1px solid rgba(21,35,63,0.12);
}
.hero-stats > div { display: flex; flex-direction: column; }
.hero-stats .num {
  font-family: 'Cafe24ClassicType', 'Pretendard', sans-serif;
  font-size: clamp(26px, 2.8vw, 36px);
  font-weight: normal;
  color: var(--navy);
  letter-spacing: 0.01em;
}
.hero-stats .lbl {
  font-size: 13px;
  color: var(--ink-2);
}

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

/* === Hero Slider === */
.hero-slider {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}
.hero-slide.active { opacity: 1; }


@media (max-width: 900px) {
  .hero { padding: 110px 0 72px; background: #0d0d0d; }
  .hero-grid { grid-template-columns: 1fr; gap: 0; }
  .hero-visual {
    position: absolute;
    inset: 0;
    aspect-ratio: unset;
    border-radius: 0;
    z-index: 0;
    opacity: 0.28;
  }
  .hero-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.65) 100%);
    z-index: 1;
  }
  .hero-grid > div:first-child { position: relative; z-index: 1; }
  .hero h1 { color: white; }
  .hero h1 .accent { color: var(--orange); }
  .hero h1 .underline::after { opacity: 0.5; }
  .hero-badge { background: rgba(255,255,255,0.12); color: white; border-color: rgba(255,255,255,0.25); }
  .hero-badge .dot { background: var(--orange); }
  .hero-sub { color: rgba(255,255,255,0.82); }
  .hero .btn-secondary { background: transparent; border-color: rgba(255,255,255,0.45); color: white; }
  .hero-stats { gap: 20px; flex-wrap: wrap; border-top-color: rgba(255,255,255,0.15); }
  .hero-stats .num { color: white; }
  .hero-stats .lbl { color: rgba(255,255,255,0.6); }
}

/* === Image placeholders === */
.img-slot {
  position: relative;
  width: 100%; height: 100%;
  min-height: 200px;
  background-color: #EAE3D2;
  background-image:
    repeating-linear-gradient(
      135deg,
      transparent 0,
      transparent 10px,
      rgba(21,35,63,0.045) 10px,
      rgba(21,35,63,0.045) 20px
    );
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(21,35,63,0.08);
}
.img-slot.on-dark {
  background-color: rgba(255,255,255,0.06);
  background-image:
    repeating-linear-gradient(
      135deg,
      transparent 0,
      transparent 10px,
      rgba(255,255,255,0.05) 10px,
      rgba(255,255,255,0.05) 20px
    );
  border-color: rgba(255,255,255,0.1);
}
.img-slot.on-orange {
  background-color: #D44E13;
  background-image:
    repeating-linear-gradient(
      135deg,
      transparent 0,
      transparent 10px,
      rgba(255,255,255,0.07) 10px,
      rgba(255,255,255,0.07) 20px
    );
  border-color: rgba(255,255,255,0.18);
}
.img-slot-label {
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(21,35,63,0.45);
  text-transform: uppercase;
  background: rgba(255,255,255,0.7);
  padding: 6px 12px;
  border-radius: 4px;
  text-align: center;
  white-space: nowrap;
}
.img-slot.on-dark .img-slot-label,
.img-slot.on-orange .img-slot-label {
  color: rgba(255,255,255,0.85);
  background: rgba(0,0,0,0.25);
}
.img-slot-tag {
  position: absolute;
  top: 14px; left: 14px;
  background: white;
  color: var(--navy);
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  padding: 5px 10px;
  border-radius: 999px;
  z-index: 2;
}
.img-slot.has-image {
  background-image: none;
  overflow: hidden;
}
.img-slot-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* === Floating banner === */
.float-banner {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 40;
  background: var(--navy);
  color: white;
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  box-shadow: 0 16px 40px rgba(21,35,63,0.25);
  max-width: 280px;
  border: 1px solid rgba(255,255,255,0.08);
}
.float-banner-eyebrow {
  display: inline-block;
  background: var(--orange);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}
.float-banner h4 {
  font-size: 17px; font-weight: 800;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
  line-height: 1.35;
}
.float-banner p {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin: 0 0 14px;
  line-height: 1.5;
}
.float-banner .stats-line {
  display: flex; gap: 8px; align-items: center;
  font-size: 12px; font-weight: 600;
  color: #F2B27D;
}
.float-banner .stats-line .sep {
  width: 3px; height: 3px;
  background: #F2B27D; border-radius: 50%;
}
.float-banner-cta {
  display: flex; align-items: center; justify-content: center;
  gap: 6px;
  width: 100%;
  background: var(--orange);
  color: white;
  padding: 12px;
  margin-top: 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  transition: background 0.15s;
}
.float-banner-cta:hover { background: var(--orange-deep); }
.float-banner-close {
  position: absolute;
  top: 12px; right: 12px;
  width: 22px; height: 22px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 18px;
  line-height: 1;
}
.float-banner-close:hover { color: white; }

.float-banner-collapsed {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 40;
  background: var(--orange);
  color: white;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 12px 32px rgba(232,90,26,0.4);
  display: flex; align-items: center; gap: 8px;
}
.float-banner-collapsed:hover { background: var(--orange-deep); }

@media (max-width: 768px) {
  .float-banner {
    right: 0; left: 0; bottom: 0;
    max-width: none;
    border-radius: 16px 16px 0 0;
    padding: 14px 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    box-shadow: 0 -4px 24px rgba(21,35,63,0.2);
  }
  .float-banner-eyebrow { display: none; }
  .float-banner p { display: none; }
  .float-banner .stats-line { display: none; }
  .float-banner h4 { font-size: 14px; margin: 0; flex: 1; line-height: 1.3; }
  .float-banner-cta { margin-top: 0; width: auto; flex: none; padding: 10px 16px; font-size: 13px; }
  .float-banner-close { display: none; }
  .float-banner-collapsed {
    right: 0; left: 0; bottom: 0;
    border-radius: 0;
    justify-content: center;
    padding: 16px 20px;
    box-shadow: 0 -4px 24px rgba(232,90,26,0.3);
  }
}

/* === Section: features (orange ticker) === */
.features-band {
  background: var(--navy);
  color: white;
  padding: 80px 0;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.feature-card {
  text-align: center;
  padding: 8px;
}
.feature-num {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #F2B27D;
  letter-spacing: 0.18em;
  margin-bottom: 14px;
}
.feature-card h4 {
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.feature-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin: 0;
  line-height: 1.6;
}
@media (max-width: 900px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}
@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
}

/* === Why section === */
.why { background: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.why-visual {
  position: relative;
  aspect-ratio: 4/5;
}
.why-visual .img-slot { height: 100%; }
.why-badge {
  position: absolute;
  bottom: -24px; right: -24px;
  background: var(--orange);
  color: white;
  width: 170px; height: 170px;
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  box-shadow: 0 12px 32px rgba(232,90,26,0.3);
  border: 6px solid white;
  transform: rotate(-8deg);
}
.why-badge .pct {
  font-family: 'Inter', sans-serif;
  font-size: 46px;
  font-weight: 900;
  line-height: 1;
}
.why-badge .lbl {
  font-size: 14px;
  font-weight: 700;
  margin-top: 6px;
  letter-spacing: 0.04em;
}
.why-content .h-title { color: var(--navy); }
.why-content blockquote {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--orange);
  margin: 0 0 8px;
  text-transform: uppercase;
}
.why-content .lead {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.45;
  margin: 0 0 24px;
  letter-spacing: -0.015em;
}
.why-content p {
  color: var(--ink-2);
  line-height: 1.8;
  margin: 0 0 16px;
}

@media (max-width: 900px) {
  .why-grid { grid-template-columns: 1fr; gap: 60px; }
  .why-badge { width: 134px; height: 134px; bottom: -18px; right: 18px; }
  .why-badge .pct { font-size: 34px; }
  .why-badge .lbl { font-size: 12px; }
}

/* === 3000 Plan section === */
.plan {
  background: var(--orange);
  color: white;
  position: relative;
}
.plan .h-title { color: white; }
.plan .h-sub { color: rgba(255,255,255,0.85); }
.plan .eyebrow { color: rgba(255,255,255,0.9); }
.plan-tag {
  display: inline-block;
  background: white; color: var(--orange);
  font-family: 'Inter', sans-serif;
  font-weight: 800; font-size: 13px;
  padding: 6px 14px;
  border-radius: 4px;
  margin-bottom: 18px;
  letter-spacing: 0.04em;
}
.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.plan-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: background 0.3s, transform 0.3s cubic-bezier(.2,.7,.2,1), box-shadow 0.3s;
}
.plan-card:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.18);
}
.plan-card .num {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  opacity: 0.7;
  letter-spacing: 0.16em;
  margin-bottom: 16px;
}
.plan-card h4 {
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 12px;
  letter-spacing: -0.015em;
  line-height: 1.3;
}
.plan-card p {
  margin: 0;
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  line-height: 1.65;
}
@media (max-width: 900px) {
  .plan-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .plan-grid { grid-template-columns: 1fr; }
}

/* === Process timeline === */
.process { background: var(--cream); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 30px; left: 5%; right: 5%;
  height: 2px;
  background: repeating-linear-gradient(to right, var(--orange) 0, var(--orange) 6px, transparent 6px, transparent 12px);
  z-index: 0;
}
.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.process-circle {
  width: 60px; height: 60px;
  background: white;
  border: 2px solid var(--orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--orange);
  transition: background 0.2s;
}
.process-step:hover .process-circle { background: var(--orange); color: white; }
.process-step h5 {
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.process-step p {
  font-size: 12px;
  color: var(--ink-2);
  margin: 0;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .process-grid { grid-template-columns: repeat(3, 1fr); gap: 30px 16px; }
  .process-grid::before { display: none; }
}
@media (max-width: 480px) {
  .process-grid { grid-template-columns: 1fr 1fr; }
}

/* === Strengths section === */
.strengths { background: var(--navy); color: white; }
.strengths .h-title { color: white; }
.strengths .h-sub { color: rgba(255,255,255,0.75); }
.strengths-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.strength-card {
  padding: 36px 32px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.03);
  transition: background 0.3s, border-color 0.3s, transform 0.3s cubic-bezier(.2,.7,.2,1), box-shadow 0.3s;
}
.strength-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: var(--orange);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
.strength-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--orange);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: white;
}
.strength-card h4 {
  font-size: 20px;
  font-weight: 800;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}
.strength-card p {
  margin: 0;
  color: rgba(255,255,255,0.72);
  font-size: 14px;
  line-height: 1.7;
}
@media (max-width: 900px) {
  .strengths-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .strengths-grid { grid-template-columns: 1fr; }
}

/* === Gallery section === */
.gallery { background: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.gallery-card { position: relative; min-width: 0; }
.gallery-card .img-slot { aspect-ratio: 16/11; min-height: 0; }
.gallery-card.tall .img-slot { aspect-ratio: 4/5; min-height: 0; }
.gallery-caption {
  margin-top: 14px;
  font-size: 14px;
  color: var(--ink-2);
  font-weight: 500;
}
.gallery-caption strong { color: var(--navy); font-weight: 700; }
.gallery-banner {
  margin-top: 56px;
  background: var(--orange);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.gallery-banner h3 {
  font-family: 'Cafe24ClassicType', 'Pretendard', sans-serif;
  color: white; margin: 0;
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: normal;
  letter-spacing: -0.015em;
}
.gallery-banner p {
  margin: 6px 0 0;
  color: rgba(255,255,255,0.85);
  font-size: 15px;
}
.gallery-banner .btn { background: white; color: var(--orange); }
.gallery-banner .btn:hover { background: var(--navy); color: white; }

@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

/* === Cost section === */
.cost { background: var(--cream-2); }
.cost-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: start;
}
.cost-visual { position: sticky; top: 100px; }
.cost-visual .img-slot { aspect-ratio: 4/5; min-height: 420px; }
.cost-visual .caption {
  margin-top: 18px;
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.6;
}
.cost-visual .caption strong { color: var(--navy); font-weight: 700; }
.cost-table {
  background: white;
  border-radius: var(--radius-lg);
  padding: 8px 32px;
  border: 1px solid var(--line);
  overflow: hidden;
}
.cost-row {
  display: grid;
  grid-template-columns: 1fr 1.4fr auto;
  align-items: baseline;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px dashed var(--line);
}
.cost-row:last-of-type { border-bottom: none; }
.cost-row .name {
  font-weight: 700;
  color: var(--navy);
  font-size: 15px;
}
.cost-row .desc {
  font-size: 13px;
  color: var(--ink-2);
}
.cost-row .amt {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: var(--navy);
  white-space: nowrap;
}
.cost-total {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  padding: 22px 0 18px;
  border-top: 2px solid var(--navy);
  margin-top: 6px;
}
.cost-total .lbl {
  font-weight: 800;
  color: var(--navy);
  font-size: 17px;
}
.cost-total .amt {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 28px;
  color: var(--orange);
  letter-spacing: -0.02em;
}
.cost-note {
  font-size: 12px;
  color: var(--ink-2);
  margin-top: 14px;
  line-height: 1.6;
}
@media (max-width: 900px) {
  .cost-grid { grid-template-columns: 1fr; gap: 48px; }
  .cost-grid > * { min-width: 0; }
  .cost-visual { position: static; }
  .cost-table { padding: 4px 22px; }
  .cost-row { grid-template-columns: 1fr auto; }
  .cost-row .desc { display: none; }
}

/* === Reviews === */
.reviews { background: var(--white); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  border: 1px solid var(--line);
  transition: transform 0.35s cubic-bezier(.2,.7,.2,1), box-shadow 0.35s;
}
.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(21,35,63,0.12);
}
.review-card .body,
.review-meta {
  position: relative;
}
.review-card .body {
  font-size: 15px;
  color: var(--ink);
  line-height: 1.75;
  margin: 0 0 24px;
  font-weight: 500;
}
.review-meta { display: flex; align-items: center; gap: 12px; padding-top: 20px; border-top: 1px solid var(--line); }
.review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 15px;
  overflow: hidden;
  flex-shrink: 0;
}
.review-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.4);
  transform-origin: center 30%;
  display: block;
}
.review-meta .name { font-weight: 800; color: var(--navy); font-size: 15px; }
.review-meta .info { font-size: 12px; color: var(--ink-2); }

@media (max-width: 900px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

/* === Brand concept === */
.brand-concept { background: var(--cream); }
.brand-concept .section-head { text-align: left; max-width: var(--max); margin-left: auto; margin-right: auto; padding: 0 24px; }
.brand-concept-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 32px;
  margin-bottom: 56px;
}
.brand-concept-head .h-title { margin: 0; color: var(--navy); }
.brand-concept-head .h-sub { margin-top: 16px; }
.brand-pin {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--navy);
  color: white;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}
.brand-keywords {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
}
.kw-card {
  padding: 48px 36px;
  background: white;
  position: relative;
}
.kw-card:not(:last-child) { border-right: 1px solid var(--line); }
.kw-num {
  font-family: 'Inter', sans-serif;
  font-size: 56px;
  font-weight: 900;
  color: var(--orange-soft);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
}
.kw-card h4 {
  font-size: 26px;
  font-weight: 900;
  margin: 0 0 12px;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.kw-card p {
  margin: 0;
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.7;
}
@media (max-width: 900px) {
  .brand-concept-head { grid-template-columns: 1fr; align-items: start; }
  .brand-keywords { grid-template-columns: 1fr; }
  .kw-card:not(:last-child) { border-right: none; border-bottom: 1px solid var(--line); }
  .kw-card { padding: 36px 28px; }
}

/* === Contact === */
.contact {
  background: var(--navy);
  color: white;
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
}
.contact .h-title { color: white; }
.contact .h-sub { color: rgba(255,255,255,0.75); }
.contact-meta {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.contact-meta div { font-size: 14px; margin-bottom: 8px; color: rgba(255,255,255,0.75); }
.contact-meta div strong {
  color: white;
  font-weight: 600;
  display: inline-block;
  width: 88px;
}
.contact-form {
  background: white;
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.field { margin-bottom: 22px; }
.field label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -0.005em;
}
.field label .req { color: var(--orange); margin-left: 2px; }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 16px;
  background: var(--cream-2);
  border: 1.5px solid transparent;
  border-radius: 8px;
  font-size: 14px;
  color: var(--ink);
  transition: border-color 0.15s, background 0.15s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: white;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.field textarea { min-height: 110px; resize: vertical; }
.consent {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px;
  color: var(--ink-2);
  margin-top: 8px;
  margin-bottom: 20px;
}
.consent input { margin-top: 3px; accent-color: var(--orange); }
.submit-btn {
  width: 100%;
  padding: 18px;
  background: var(--orange);
  color: white;
  font-weight: 800;
  font-size: 16px;
  border-radius: 8px;
  transition: background 0.15s, transform 0.15s;
}
.submit-btn:hover { background: var(--orange-deep); transform: translateY(-1px); }
.submit-btn:disabled { background: #C9C2B0; transform: none; cursor: not-allowed; }
.success-msg {
  background: var(--cream);
  border: 1px solid var(--orange);
  border-radius: 8px;
  padding: 16px;
  font-size: 14px;
  color: var(--navy);
  text-align: center;
  font-weight: 600;
}

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form { padding: 28px; }
  .field-row { grid-template-columns: 1fr; }
}

/* === Photo Marquee === */
.photo-marquee {
  padding: 48px 0;
  background: var(--cream);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.photo-track {
  display: flex;
  gap: 12px;
  width: max-content;
}
.photo-track-1 { animation: photo-left 42s linear infinite; }
.photo-track-2 { animation: photo-right 50s linear infinite; }
.photo-item {
  flex: none;
  width: 200px;
  height: 160px;
  border-radius: 10px;
  overflow: hidden;
}
.photo-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
@keyframes photo-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes photo-right {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

/* === Dark Image Banners === */
.img-banner {
  position: relative;
  width: 100%;
  height: 480px;
  background: #0d0d0d;
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 3px,
      rgba(255,255,255,0.018) 3px,
      rgba(255,255,255,0.018) 6px
    ),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 3px,
      rgba(255,255,255,0.012) 3px,
      rgba(255,255,255,0.012) 6px
    );
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.img-banner-a {
  height: 420px;
  background-image: url('img/bread01.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.img-banner-b {
  height: 520px;
  background-image: url('img/bread02.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.img-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(0,0,0,0.55) 0%,
    rgba(20,10,5,0.35) 50%,
    rgba(0,0,0,0.65) 100%
  );
}
.img-banner-content {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.img-banner-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  color: rgba(255,255,255,0.4);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 5px 14px;
  border-radius: 2px;
}
.img-banner-text {
  font-family: 'Cafe24ClassicType', 'Pretendard', sans-serif;
  font-size: clamp(26px, 3.2vw, 46px);
  font-weight: normal;
  color: rgba(255,255,255,0.72);
  line-height: 1.45;
  margin: 0;
  letter-spacing: 0.01em;
}

/* === Footer === */
.footer {
  background: #0E1A30;
  color: rgba(255,255,255,0.55);
  padding: 56px 0 36px;
  font-size: 13px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer h5 {
  color: white;
  font-size: 13px;
  font-weight: 700;
  margin: 0 0 16px;
  letter-spacing: 0.04em;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: 10px; }
.footer li a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: center;
  text-align: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}
@media (max-width: 700px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
