/* Premium Private -- design tokens carried over from the "2a" canvas
   option, plus the component layer for the production page.
   Change colors/fonts here only. */
@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;700&family=Barlow+Condensed:wght@400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;700;900&family=Noto+Serif+KR:wght@400;500;600;700&display=swap');

:root {
  --color-bg: #f2f2f3;
  --color-text: #1d1f20;
  --color-accent: #1d1f20;

  --color-neutral-100: #f5f5f8;
  --color-neutral-200: #e7e7ea;
  --color-neutral-300: #d4d4d7;
  --color-neutral-600: #7a7a7d;
  --color-neutral-700: #5d5d60;
  --color-neutral-800: #424244;
  --color-neutral-900: #2b2b2d;

  /* "Accent" is now a monochrome charcoal/black scale rather than navy --
     the brand runs on white / black / gray only. */
  --color-accent-100: #f2f2f3;
  --color-accent-700: #2b2b2d;
  --color-accent-900: #121213;

  --font-heading: "Barlow Condensed", system-ui, sans-serif;
  --font-serif: "Noto Serif KR", serif;
  --font-body: "Noto Sans KR", "Barlow", system-ui, sans-serif;

  --container-max: 1200px;
  --edge: 56px;
  --header-h: 0px;
}

@media (max-width: 720px) {
  :root { --edge: 24px; }
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }
html.lenis { scroll-behavior: auto; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--color-accent-700);
  transform: scaleX(0);
  transform-origin: 0 0;
  z-index: 200;
}

/* ── custom cursor (desktop / fine-pointer only, see interactions.js) ── */
.cursor-dot, .cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  pointer-events: none;
  border-radius: 50%;
  z-index: 999;
  will-change: transform;
}
.cursor-dot {
  width: 6px;
  height: 6px;
  margin: -3px 0 0 -3px;
  background: var(--color-accent-700);
  transition: opacity 0.2s ease;
}
.cursor-ring {
  width: 34px;
  height: 34px;
  margin: -17px 0 0 -17px;
  border: 1px solid rgba(29, 31, 32, 0.4);
  transition: opacity 0.2s ease, width 0.3s cubic-bezier(.22,1,.36,1), height 0.3s cubic-bezier(.22,1,.36,1), margin 0.3s cubic-bezier(.22,1,.36,1), background 0.3s ease, border-color 0.3s ease;
}
body.has-custom-cursor { cursor: none; }
body.has-custom-cursor a,
body.has-custom-cursor button { cursor: none; }
body.has-custom-cursor input,
body.has-custom-cursor textarea { cursor: text; }
body.has-custom-cursor .cursor-dot,
body.has-custom-cursor .cursor-ring { display: block; }
body.cursor-hover .cursor-ring {
  width: 56px;
  height: 56px;
  margin: -28px 0 0 -28px;
  background: rgba(29, 31, 32, 0.06);
  border-color: rgba(29, 31, 32, 0.3);
}
body.cursor-hover .cursor-dot { opacity: 0; }
body.cursor-active .cursor-ring { width: 26px; height: 26px; margin: -13px 0 0 -13px; }

/* ── magnetic buttons (see interactions.js) ─────────────────────────── */
.magnetic { transition: transform 0.25s cubic-bezier(.22,1,.36,1); }

/* ── animated underline links ────────────────────────────────────────── */
.link-underline { position: relative; }
.link-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(.22,1,.36,1);
}
.link-underline:hover::after { transform: scaleX(1); transform-origin: left; }

body {
  margin: 0;
  background: #fff;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
}

h1, h2, h3, h4 { margin: 0; font-family: var(--font-serif); font-weight: 500; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; }

.container { max-width: var(--container-max); margin: 0 auto; }

.section-kicker {
  display: block;
  margin: 0 0 20px;
  font-size: 13.5px;
  letter-spacing: 0.08em;
  color: var(--color-accent-700);
}

.section-title { font-size: 34px; line-height: 1.6; letter-spacing: -0.005em; }

.placeholder-media {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--color-neutral-100);
  border: 1px solid var(--color-neutral-200);
  color: var(--color-neutral-600);
  font-size: 13px;
  background-size: cover;
  background-position: center;
}

/* ── header / nav ───────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(6px);
  border-bottom: 1px solid transparent;
}
.nav {
  position: relative;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 20px var(--edge);
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav__brand__logo { height: 30px; width: auto; display: block; }
.nav__brand__text {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.nav__menu { display: flex; align-items: center; gap: 28px; margin-left: auto; list-style: none; padding: 0; }
.nav__menu a { font-size: 14px; color: var(--color-neutral-700); }
.nav__menu a:hover { color: var(--color-text); }
.nav__cta {
  padding: 10px 24px;
  border: 1px solid var(--color-text);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.06em;
  background: transparent;
  color: var(--color-text);
}
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  gap: 5px;
  width: 30px;
  height: 30px;
  padding: 0;
  border: none;
  background: transparent;
  flex-shrink: 0;
}
.nav__toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--color-text);
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav { gap: 14px; padding: 16px var(--edge); }
  .nav__brand__text { font-size: 15px; letter-spacing: 0.12em; }
  .nav__brand__logo { height: 24px; }
  .nav__cta { padding: 9px 16px; font-size: 12.5px; margin-left: auto; }
  .nav__toggle { display: flex; }
  .nav__menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    background: #fff;
    border-bottom: 1px solid var(--color-neutral-200);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
  }
  .nav__menu li { width: 100%; }
  .nav__menu a {
    display: block;
    padding: 16px var(--edge);
    border-bottom: 1px solid var(--color-neutral-200);
    font-size: 15px;
  }
  .nav.is-open .nav__menu { display: flex; }
}

@media (max-width: 380px) {
  .nav__brand__text { display: none; }
}

/* ── hero ────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: calc(100vh - var(--header-h));
  height: calc(100svh - var(--header-h));
  background: linear-gradient(165deg, #202021 0%, #2e2e30 50%, #1a1a1b 100%);
  overflow: hidden;
  will-change: transform, border-radius;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  /* Radial highlight for the plain-gradient look, plus a bottom-heavy dark
     scrim so any uploaded photo underneath reads as part of the same dark,
     monochrome hero rather than a bright rectangle dropped on top. */
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(255, 255, 255, 0.07), transparent 62%),
    linear-gradient(180deg, rgba(18, 18, 19, 0.2) 0%, rgba(18, 18, 19, 0.4) 55%, rgba(15, 15, 16, 0.82) 100%);
}
.hero__media {
  position: absolute;
  top: -10%;
  left: -5%;
  right: -5%;
  height: 120%;
  z-index: 0;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.1em;
  will-change: transform;
  /* Any uploaded photo gets desaturated to match the site's black/white/
     gray palette instead of clashing with it in its original colors. */
  filter: grayscale(1) contrast(1.1) brightness(0.85);
}
.hero__watermark {
  position: absolute;
  z-index: 1;
  right: -4%;
  top: 50%;
  transform: translateY(-50%);
  height: 62%;
  width: auto;
  opacity: 0.045;
  pointer-events: none;
}
.hero__content { position: absolute; z-index: 2; left: var(--edge); right: var(--edge); bottom: 72px; color: #fff; max-width: 640px; }
.hero__kicker {
  margin: 0;
  font-size: 12.5px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}
.hero__title { margin: 24px 0 0; font-size: 60px; font-weight: 500; line-height: 1.3; letter-spacing: -0.015em; }
.hero__desc { margin: 22px 0 0; font-size: 16px; line-height: 1.8; color: rgba(255, 255, 255, 0.85); font-family: var(--font-body); }
.hero__scroll {
  position: absolute;
  z-index: 2;
  right: var(--edge);
  bottom: 72px;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
}

@media (max-width: 720px) {
  .hero__title { font-size: 34px; }
  .hero__scroll { display: none; }
  .hero__watermark { display: none; }
}

/* ── why ─────────────────────────────────────────────────────────────── */
.why { padding: 120px var(--edge); text-align: center; }
.why .section-kicker { }
.why .section-title { margin: 28px auto 0; max-width: 60ch; }
.why__desc { margin: 32px auto 0; font-size: 15.5px; line-height: 2; color: var(--color-neutral-700); max-width: 54ch; }

@media (max-width: 720px) {
  .why { padding: 72px var(--edge); }
  .why .section-title { font-size: 24px; }
}

/* ── stats ───────────────────────────────────────────────────────────── */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--color-neutral-200);
  border-bottom: 1px solid var(--color-neutral-200);
}
.stat { padding: 48px 40px; text-align: center; border-right: 1px solid var(--color-neutral-200); }
.stat:last-child { border-right: none; }
.stat__value { font-family: var(--font-heading); font-weight: 500; font-size: 56px; letter-spacing: 0.02em; }
.stat__unit { font-size: 24px; }
.stat__label { font-size: 14px; color: var(--color-neutral-700); margin-top: 10px; }

@media (max-width: 720px) {
  .stat { padding: 22px 8px; }
  .stat__value { font-size: 28px; }
  .stat__unit { font-size: 16px; }
  .stat__label { font-size: 11.5px; }
}

/* ── director ────────────────────────────────────────────────────────── */
.director {
  padding: 110px var(--edge);
  display: grid;
  grid-template-columns: 460px 1fr;
  gap: 72px;
  align-items: start;
}
.director__photo { aspect-ratio: 4 / 5; }
.director__name { margin: 20px 0 0; font-size: 34px; }
.director__role { margin: 8px 0 0; font-size: 13px; letter-spacing: 0.16em; color: var(--color-neutral-600); text-transform: uppercase; }
.director__quote { margin: 32px 0 0; font-family: var(--font-serif); font-size: 20px; line-height: 1.85; color: var(--color-neutral-800); }
.director__list { margin-top: 36px; display: grid; gap: 12px; font-size: 14.5px; line-height: 1.6; color: var(--color-neutral-700); list-style: none; padding: 0; }
.director__list li { display: flex; gap: 12px; }
.director__list li::before { content: "\00b7"; color: var(--color-accent-700); }

.director__press {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--color-neutral-200);
}
.director__press__label {
  display: block;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.28em;
  color: var(--color-neutral-600);
}
.director__press__headline {
  margin: 10px 0 0;
  font-family: var(--font-serif);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-neutral-800);
  max-width: 46ch;
}
.director__press__link {
  display: inline-block;
  margin-top: 12px;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  color: var(--color-neutral-600);
}

@media (max-width: 860px) {
  .director { grid-template-columns: 1fr; padding: 72px var(--edge); }
  .director__photo { max-width: 320px; }
}

/* ── programs ────────────────────────────────────────────────────────── */
.programs { background: var(--color-neutral-100); padding: 110px var(--edge); }
.programs .section-title { margin: 20px 0 48px; }
.program-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px 40px; }
.program-card__media { aspect-ratio: 16 / 10; font-size: 13px; }
.program-card__body { display: flex; gap: 20px; margin-top: 22px; align-items: flex-start; }
.program-card__num {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 300;
  line-height: 0.85;
  color: var(--color-neutral-300);
  flex-shrink: 0;
}
.program-card__title { font-family: var(--font-body); font-size: 20px; font-weight: 700; }
.program-card__desc { margin: 10px 0 0; font-size: 14.5px; line-height: 1.75; color: var(--color-neutral-700); }
.program-card__link {
  display: inline-block;
  margin-top: 14px;
  font-size: 12.5px;
  letter-spacing: 0.14em;
  color: var(--color-text);
  padding-bottom: 3px;
}
.program-card {
  transition: transform 0.4s cubic-bezier(.22,1,.36,1), box-shadow 0.4s ease;
}
.program-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(29, 31, 32, 0.08);
}

@media (max-width: 720px) {
  .programs { padding: 64px var(--edge); }
  .program-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* ── process ─────────────────────────────────────────────────────────── */
.process { padding: 110px var(--edge); }
.process .section-title { margin: 20px 0 10px; }
.process__desc { margin: 0 0 48px; font-size: 15px; color: var(--color-neutral-700); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.process-card { transition: transform 0.4s cubic-bezier(.22,1,.36,1); }
.process-card:hover { transform: translateY(-6px); }
.process-card__media { aspect-ratio: 3 / 4; font-size: 13px; }
.process-card__num { display: block; margin-top: 18px; font-family: var(--font-heading); font-size: 30px; font-weight: 300; color: var(--color-neutral-300); }
.process-card__title { margin: 8px 0 0; font-family: var(--font-body); font-size: 18px; font-weight: 700; }
.process-card__desc { margin: 8px 0 0; font-size: 13.5px; line-height: 1.7; color: var(--color-neutral-700); }

@media (max-width: 860px) {
  .process { padding: 64px var(--edge); }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 20px; }
}

@media (max-width: 480px) {
  .process-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* ── column (칼럼) ───────────────────────────────────────────────────── */
.column-section { background: var(--color-neutral-100); padding: 110px var(--edge); }
.column-section .section-title { margin: 20px 0 48px; }
.column-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.column-card {
  background: #fff;
  border: 1px solid var(--color-neutral-200);
  transition: transform 0.4s cubic-bezier(.22,1,.36,1), box-shadow 0.4s ease;
}
.column-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(29, 31, 32, 0.08);
}
.column-card__thumb { aspect-ratio: 16 / 10; font-size: 12.5px; }
.column-card__body { padding: 22px 24px 26px; }
.column-card__date { font-size: 12px; color: var(--color-neutral-600); }
.column-card__title { margin: 12px 0 0; font-family: var(--font-body); font-size: 18px; font-weight: 700; line-height: 1.45; }
.column-card__excerpt { margin: 10px 0 0; font-size: 13.5px; line-height: 1.65; color: var(--color-neutral-700); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.column-card__link {
  display: inline-block;
  margin-top: 14px;
  font-size: 12.5px;
  letter-spacing: 0.14em;
  color: var(--color-text);
  padding-bottom: 3px;
  cursor: pointer;
}
.column-grid__empty, .results__empty { grid-column: 1 / -1; text-align: center; padding: 40px 0; color: var(--color-neutral-600); font-size: 14px; }

@media (max-width: 860px) {
  .column-section { padding: 64px var(--edge); }
  .column-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

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

.column-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  background: rgba(10, 10, 11, 0.75);
}
.column-modal[hidden] { display: none; }
.column-modal__panel {
  position: relative;
  background: #fff;
  color: var(--color-text);
  width: 100%;
  max-width: 720px;
  max-height: 85vh;
  overflow-y: auto;
  padding: 48px 40px;
  text-align: left;
}
.column-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--color-neutral-300);
  background: transparent;
  color: var(--color-text);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}
.column-modal__thumb {
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
  margin: -48px -40px 24px;
}
.column-modal__date { font-size: 12px; color: var(--color-neutral-600); }
.column-modal__title { margin: 10px 0 0; font-family: var(--font-body); font-size: 24px; font-weight: 700; line-height: 1.45; padding-right: 32px; }
.column-modal__content { margin-top: 22px; font-size: 15px; line-height: 1.9; color: var(--color-neutral-700); white-space: pre-wrap; }

@media (max-width: 620px) {
  .column-modal { padding: 0; }
  .column-modal__panel { max-width: none; max-height: 100vh; height: 100%; padding: 40px 24px; }
  .column-modal__thumb { margin: -40px -24px 20px; }
}

/* ── results (사례) ──────────────────────────────────────────────────── */
.results { background: var(--color-accent-900); color: #fff; padding: 100px var(--edge); text-align: center; }
.results .section-kicker { color: rgba(255, 255, 255, 0.65); }
.results .section-title { margin: 24px 0 0; }
.results__body { margin-top: 48px; }
.results__subsection + .results__subsection { margin-top: 56px; }
.results__subtitle {
  margin: 0 0 20px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.results__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}
.case-tile {
  position: relative;
  aspect-ratio: 3 / 4;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.5);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(.22,1,.36,1), border-color 0.4s ease;
}
.case-tile:hover { transform: translateY(-4px); border-color: rgba(255, 255, 255, 0.4); }
.case-tile__label { padding: 10px; width: 100%; background: linear-gradient(transparent, rgba(0, 0, 0, 0.55)); font-size: 12px; }

.case-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 56px 24px;
  background: rgba(10, 10, 11, 0.92);
  cursor: zoom-out;
}
.case-lightbox[hidden] { display: none; }
.case-lightbox__img {
  max-width: min(90vw, 720px);
  max-height: 78vh;
  object-fit: contain;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  cursor: zoom-out;
}
.case-lightbox__caption { color: #fff; font-size: 14px; letter-spacing: 0.04em; }
.case-lightbox__close {
  position: absolute;
  top: 24px;
  right: 32px;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}
.results__more {
  display: inline-block;
  margin-top: 44px;
  padding: 14px 36px;
  background: #fff;
  color: var(--color-accent-900);
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: none;
}

@media (max-width: 860px) {
  .results { padding: 64px var(--edge); }
  .results__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── contact ─────────────────────────────────────────────────────────── */
.contact { padding: 100px var(--edge); display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.contact .section-title { margin: 20px 0 0; font-size: 32px; }
.contact__desc { margin: 18px 0 0; font-size: 15px; line-height: 1.8; color: var(--color-neutral-700); }
.contact__quick { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }
.btn-solid { padding: 14px 28px; background: var(--color-text); color: #fff; font-size: 14.5px; font-weight: 500; border: none; }
.btn-outline { padding: 14px 28px; border: 1px solid var(--color-neutral-300); background: transparent; color: var(--color-text); font-size: 14.5px; font-weight: 500; }
.contact__col--visit { display: flex; flex-direction: column; }
.contact__address { margin-top: 22px; font-size: 15px; line-height: 2; color: var(--color-neutral-700); }
.contact__map { margin-top: 24px; border: 1px solid var(--color-neutral-200); overflow: hidden; flex: 1; min-height: 220px; }
.contact__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  filter: grayscale(1) contrast(1.05);
  transition: filter 0.5s ease;
}
.contact__map:hover iframe { filter: grayscale(0.15) contrast(1.02); }
.contact__map-link { display: inline-block; margin-top: 16px; font-size: 13px; letter-spacing: 0.1em; padding-bottom: 3px; }

.inquiry-form { margin-top: 32px; display: grid; gap: 14px; max-width: 420px; }
.form-field { display: grid; gap: 6px; }
.form-field label { font-size: 12.5px; color: var(--color-neutral-700); }
.form-field input,
.form-field textarea {
  font: inherit;
  padding: 12px 14px;
  border: 1px solid var(--color-neutral-300);
  background: #fff;
  color: var(--color-text);
  border-radius: 0;
}
.form-field textarea { min-height: 96px; resize: vertical; }
.form-field input:focus,
.form-field textarea:focus { outline: 2px solid var(--color-accent); outline-offset: 1px; }
.inquiry-form__submit {
  justify-self: start;
  padding: 14px 32px;
  background: var(--color-text);
  color: #fff;
  border: none;
  font-size: 14.5px;
  font-weight: 500;
}
.inquiry-form__submit:disabled { opacity: 0.5; cursor: not-allowed; }

.form-consent { display: grid; gap: 8px; font-size: 13px; color: var(--color-neutral-700); }
.form-consent__check { display: flex; align-items: flex-start; gap: 8px; cursor: pointer; }
.form-consent__check input { margin-top: 2px; }
.form-consent__details summary { cursor: pointer; color: var(--color-neutral-600); text-decoration: underline; }
.form-consent__details ul { margin: 8px 0 0; padding-left: 18px; line-height: 1.7; }
.inquiry-form__status { font-size: 13.5px; min-height: 1.2em; }
.inquiry-form__status[data-state="success"] { color: #2f7a4d; }
.inquiry-form__status[data-state="error"] { color: #b3402a; }

@media (max-width: 860px) {
  .contact { grid-template-columns: 1fr; padding: 64px var(--edge); gap: 48px; }
}

/* ── footer ──────────────────────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--color-neutral-200);
  padding: 32px var(--edge);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__brand {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-neutral-600);
}
.footer__meta { font-size: 12px; color: var(--color-neutral-600); }

/* ── admin page (shared minimal chrome) ─────────────────────────────── */
.admin-body { background: var(--color-neutral-100); min-height: 100vh; }
