/* Custom styles layered on top of Tailwind (Play CDN). */

:root {
  --primary-color: #1577be;
  --dark-color: #1a2430;
  --brown: #1a2430;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans KR", "Archivo", "Helvetica Neue", Arial, sans-serif;
  color: #333;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Noto Sans KR", "Archivo", "Helvetica Neue", Arial, sans-serif;
}

/* Footer column headings with the gold underline accent. */
.footer-heading {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  position: relative;
}
.footer-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.3);
}

/* Section heading underline (used on About / Services / Location titles). */
.title-underline {
  position: relative;
  display: inline-block;
  padding-bottom: 18px;
}
.title-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
}
.title-underline.centered::after {
  left: 50%;
  transform: translateX(-50%);
}

/* Scroll-reveal animation, toggled by reveal.js via IntersectionObserver. */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Animated scroll-down mouse on the hero. */
.scroll-mouse {
  width: 30px;
  height: 50px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 20px;
  position: relative;
}
.scroll-mouse::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  left: 50%;
  top: 8px;
  transform: translateX(-50%);
  animation: scrollDot 2s infinite;
}
@keyframes scrollDot {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
}

/* Hero tagline with the leading line accent. */
.hero-tagline {
  position: relative;
  padding-left: 60px;
}
.hero-tagline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 50px;
  height: 1px;
  background: var(--primary-color);
}
@media (max-width: 768px) {
  .hero-tagline {
    padding-left: 0;
    padding-bottom: 15px;
  }
  .hero-tagline::before {
    left: 50%;
    top: auto;
    bottom: 0;
    transform: translateX(-50%);
  }
}

/* =============================================================
   EDITORIAL THEME — "clean editorial · ivory / ink / champagne"
   A minimal editorial look. All rules are scoped under .editorial
   (applied to the index <body>) so other pages stay untouched.
   ============================================================= */
.editorial {
  --ink: #1a1a1a;
  --ink-soft: #585858;
  --cream: #ffffff;
  --cream-2: #f1f6fb;
  --champagne: #1577be;
  --blush: #cfe3f2;
  --line: rgba(26, 26, 26, 0.14);
  --pad: clamp(1.25rem, 5vw, 6rem);
  --maxw: 1280px;

  background: var(--cream);
  color: var(--ink);
  font-family: "Noto Sans KR", "Archivo", "Helvetica Neue", Arial, sans-serif;
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: 0.01em;
}

/* Fine paper grain over the whole page. */
.editorial::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Base typography is scoped to the editorial content (page <main> and the
   index sections) so the shared Tailwind-styled header/footer stay untouched. */
.editorial main h1,
.editorial main h2,
.editorial main h3,
.editorial main h4,
.editorial .ed-section h1,
.editorial .ed-section h2,
.editorial .ed-section h3,
.editorial .ed-section h4,
.editorial .ed-hero h1 {
  font-family: "Noto Sans KR", "Archivo", "Helvetica Neue", Arial, sans-serif;
  font-weight: 300;
  line-height: 1.14;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.editorial main p,
.editorial .ed-section p {
  color: var(--ink-soft);
}
.editorial .muted {
  color: var(--ink-soft);
}

/* Section rhythm: generous padding + a single hairline divider on top. */
.editorial .ed-section {
  position: relative;
  z-index: 1;
  padding: clamp(5rem, 12vw, 9rem) var(--pad);
  border-top: 1px solid var(--line);
}
.editorial .ed-wrap {
  max-width: var(--maxw);
  margin-inline: auto;
}

/* Micro labels above each section. */
.editorial .eyebrow,
.editorial .section-label {
  display: inline-block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.34em;
  color: var(--ink-soft);
  font-weight: 400;
}

/* Centered section header: label + title + description. */
.editorial .block-head {
  max-width: 640px;
  margin: 0 auto clamp(2.5rem, 6vw, 4rem);
  text-align: center;
}
.editorial .block-head h2 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  margin: 1.1rem 0 1rem;
}
.editorial .block-head .muted {
  font-size: 1rem;
}

/* Buttons. */
.editorial .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  padding: 1rem 2.2rem;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 400;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.35s ease, color 0.35s ease, transform 0.35s ease;
}
.editorial .btn:hover {
  transform: translateY(-2px);
}
.editorial .btn--solid {
  background: var(--ink);
  color: var(--cream);
}
.editorial .btn--solid:hover {
  background: transparent;
  color: var(--ink);
}
.editorial .btn--ghost:hover {
  background: var(--ink);
  color: var(--cream);
}
.editorial .btn--light {
  border-color: #fff;
  color: #fff;
}
.editorial .btn--light:hover {
  background: #fff;
  color: var(--ink);
}

/* ---- Hero ---- */
.editorial .ed-hero {
  position: relative;
  z-index: 1;
  min-height: 90vh;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  color: #fff;
  overflow: hidden;
}
/* Brand hero: gradient backdrop on desktop (until real moving footage/photos
   are added). On mobile the portrait hero video plays as the background. */
.editorial .ed-hero--brand {
  background-color: #1a2430;
  background-image: linear-gradient(135deg, #1a2430 0%, #134d7e 55%, #1577be 100%);
}
.editorial .ed-hero__video {
  display: none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
/* 데스크탑: 가로 히어로 영상(pchero) 재생. */
.editorial .ed-hero--brand .ed-hero__video--desktop {
  display: block;
}
@media (max-width: 768px) {
  .editorial .ed-hero {
    min-height: 78vh;
  }
  /* 모바일: 세로 히어로 영상(mobilehero)으로 교체. */
  .editorial .ed-hero--brand .ed-hero__video--desktop {
    display: none;
  }
  .editorial .ed-hero--brand .ed-hero__video--mobile {
    display: block;
  }
  /* 모바일에서는 히어로 문구(eyebrow·제목·설명)는 숨기고 버튼은 남김. */
  .editorial .ed-hero--brand .ed-hero__inner .eyebrow,
  .editorial .ed-hero--brand .ed-hero__inner h1,
  .editorial .ed-hero--brand .ed-hero__inner p {
    display: none;
  }
}
.editorial .ed-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(20, 18, 16, 0.15) 0%,
    rgba(20, 18, 16, 0.2) 45%,
    rgba(20, 18, 16, 0.72) 100%
  );
}
.editorial .ed-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding: 0 var(--pad) clamp(3rem, 8vw, 6rem);
}
.editorial .ed-hero .eyebrow {
  color: rgba(255, 255, 255, 0.82);
}
.editorial .ed-hero h1 {
  color: #fff;
  font-size: clamp(2.8rem, 8vw, 6.4rem);
  margin: 1.2rem 0 1.4rem;
  max-width: 14ch;
}
.editorial .ed-hero p {
  color: rgba(255, 255, 255, 0.88);
  max-width: 46ch;
  font-size: 1.05rem;
  margin-bottom: 2.2rem;
}
.editorial .ed-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ---- Statement (pull quote) ---- */
.editorial .statement {
  text-align: center;
}
.editorial .statement blockquote {
  max-width: 22ch;
  margin: 0 auto;
  font-size: clamp(1.9rem, 5.5vw, 3.6rem);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.editorial .statement cite {
  display: block;
  margin-top: 2rem;
  font-style: normal;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.34em;
  color: var(--ink-soft);
}

/* ---- Intro (split) ---- */
.editorial .ed-split {
  display: grid;
  gap: clamp(1.5rem, 5vw, 4rem);
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 860px) {
  .editorial .ed-split {
    grid-template-columns: 0.9fr 1.1fr;
  }
}
.editorial .ed-split h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin: 1rem 0 0;
}
.editorial .ed-split p + p {
  margin-top: 1.1rem;
}

/* ---- Range / service cards ---- */
.editorial .ed-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.editorial .range-card {
  flex: 0 0 33.3333%;
  max-width: 33.3333%;
  display: flex;
  flex-direction: column;
  background: var(--cream);
  overflow: hidden;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
@media (max-width: 980px) {
  .editorial .range-card {
    flex-basis: 50%;
    max-width: 50%;
  }
}
@media (max-width: 620px) {
  .editorial .range-card {
    flex-basis: 100%;
    max-width: 100%;
  }
}
/* On wider screens show a clean 6 (3x2); the 7th+ are mobile-only. */
@media (min-width: 621px) {
  .editorial #services-grid .range-card:nth-child(n + 7) {
    display: none;
  }
}
.editorial .range-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 55px -32px rgba(26, 26, 26, 0.45);
}
.editorial .range-card__img {
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.editorial .range-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease;
}
.editorial .range-card:hover .range-card__img img {
  transform: scale(1.06);
}
.editorial .range-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding: 1.5rem 1.5rem 1.8rem;
  border-top: 1px solid var(--line);
  flex-grow: 1;
}
.editorial .range-card__body h3 {
  font-size: 1.45rem;
}
.editorial .range-card__price {
  color: var(--champagne);
  letter-spacing: 0.05em;
}
.editorial .range-card__desc {
  font-size: 0.92rem;
  flex-grow: 1;
}
.editorial .range-link {
  margin-top: 0.4rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--ink);
  align-self: flex-start;
  padding-bottom: 2px;
  transition: opacity 0.3s ease;
}
.editorial .range-link:hover {
  opacity: 0.55;
}

/* ---- Why: numbered editorial cells ---- */
.editorial .why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (min-width: 760px) {
  .editorial .why-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.editorial .why-cell {
  padding: clamp(2rem, 4vw, 3rem);
  background: var(--cream);
}
.editorial .why-cell .num {
  font-size: 0.72rem;
  letter-spacing: 0.34em;
  color: var(--champagne);
}
.editorial .why-cell h3 {
  font-size: 1.4rem;
  margin: 0.9rem 0 0.7rem;
}
.editorial .why-cell p {
  font-size: 0.92rem;
}

/* ---- Marquee band ---- */
.editorial .marquee {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-block: 1px solid var(--line);
  padding: 1.4rem 0;
  background: #fff;
}
.editorial .marquee__track {
  display: inline-flex;
  white-space: nowrap;
  will-change: transform;
  animation: ed-marquee 30s linear infinite;
}
.editorial .marquee__track span {
  font-size: clamp(1.3rem, 3.6vw, 2.4rem);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding: 0 1.3rem;
  color: var(--ink);
  font-weight: 300;
}
.editorial .marquee__track span::after {
  content: "·";
  margin-left: 2.6rem;
  color: var(--champagne);
}
@keyframes ed-marquee {
  to {
    transform: translateX(-50%);
  }
}

/* ---- Reviews (single-row auto-scrolling marquee) ---- */
.editorial .reviews-marquee {
  overflow: hidden;
  border: 1px solid var(--line);
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    #000 6%,
    #000 94%,
    transparent
  );
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 6%,
    #000 94%,
    transparent
  );
}
.editorial .reviews-track {
  display: flex;
  width: max-content;
  animation: ed-marquee 60s linear infinite;
}
.editorial .reviews-marquee:hover .reviews-track {
  animation-play-state: paused;
}
.editorial .review {
  flex: 0 0 auto;
  width: min(85vw, 360px);
  margin: 0;
  padding: clamp(1.8rem, 3.5vw, 2.6rem);
  background: var(--cream);
  border-right: 1px solid var(--line);
}
.editorial .review blockquote {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--ink);
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.editorial .review blockquote::before {
  content: "“";
  display: block;
  font-size: 2.6rem;
  line-height: 0.6;
  color: var(--champagne);
  margin-bottom: 0.6rem;
}
.editorial .review figcaption {
  margin-top: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.editorial .review__name {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.82rem;
  color: var(--ink);
}
.editorial .review__role {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ---- Instagram ---- */
.editorial .insta-embeds {
  display: grid;
  grid-template-columns: max-content;
  gap: 1rem;
  justify-content: center;
}
@media (min-width: 768px) {
  .editorial .insta-embeds {
    grid-template-columns: repeat(2, max-content);
  }
}
@media (min-width: 1024px) {
  .editorial .insta-embeds {
    grid-template-columns: repeat(3, max-content);
  }
}
/* Instagram's embed.js injects inline width/margins; constrain to the cell. */
.editorial .insta-embeds .instagram-media {
  width: 100% !important;
  min-width: 0 !important;
  max-width: 320px !important;
  margin: 0 !important;
}

/* ---- Closing contact band ---- */
.editorial .ed-contact {
  text-align: center;
}
.editorial .ed-contact h2 {
  font-size: clamp(2rem, 6vw, 4rem);
  margin-bottom: 1.4rem;
}
.editorial .ed-contact .lines {
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  margin-bottom: 2.2rem;
  line-height: 2;
}

/* =============================================================
   EDITORIAL — inner page components (About / Services / Gallery /
   Location / Service detail).
   ============================================================= */
.editorial main {
  position: relative;
  z-index: 1;
  display: block;
}

/* Inner-page header band. */
.editorial .ed-pagehead {
  text-align: center;
  max-width: var(--maxw);
  margin-inline: auto;
  padding: clamp(3rem, 8vw, 6rem) var(--pad) clamp(1.5rem, 4vw, 2.5rem);
}
.editorial .ed-pagehead h1 {
  font-size: clamp(2.4rem, 6.5vw, 4.4rem);
  margin: 1rem 0 0;
}
.editorial .ed-pagehead .muted {
  max-width: 62ch;
  margin: 1.3rem auto 0;
}

/* Long-form prose (About). */
.editorial .ed-prose {
  max-width: 780px;
  margin-inline: auto;
}
.editorial .ed-prose .ed-block {
  padding-top: clamp(2rem, 5vw, 3.2rem);
  margin-top: clamp(2rem, 5vw, 3.2rem);
  border-top: 1px solid var(--line);
}
.editorial .ed-prose .ed-block:first-child {
  padding-top: 0;
  margin-top: 0;
  border-top: 0;
}
.editorial .ed-prose h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  margin-bottom: 1.3rem;
}
.editorial .ed-prose p {
  margin-bottom: 1rem;
}
.editorial .ed-prose p:last-child {
  margin-bottom: 0;
}

/* Pricing table (detail). */
.editorial .ed-table {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid var(--line);
}
.editorial .ed-table td {
  padding: 1rem 0.4rem;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.95rem;
}
.editorial .ed-table td:last-child {
  text-align: right;
  color: var(--champagne);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

/* FAQ rows (detail). */
.editorial .ed-faq__item {
  border-top: 1px solid var(--line);
  padding: 1.5rem 0;
}
.editorial .ed-faq__item:last-child {
  border-bottom: 1px solid var(--line);
}
.editorial .ed-faq__item h4 {
  font-size: 1.08rem;
  font-weight: 400;
  margin-bottom: 0.6rem;
}

/* Bordered card / aside box. */
.editorial .ed-card {
  border: 1px solid var(--line);
  background: var(--cream);
  padding: clamp(1.6rem, 3vw, 2.2rem);
}
.editorial .ed-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}
.editorial .ed-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Small note callout. */
.editorial .ed-note {
  border-left: 2px solid var(--champagne);
  background: var(--cream-2);
  padding: 1rem 1.2rem;
  font-size: 0.86rem;
  color: var(--ink-soft);
}

/* Back link. */
.editorial .back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.3s ease;
}
.editorial .back-link:hover {
  color: var(--ink);
}

/* Gallery grid. */
.editorial .ed-gallery {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr));
  background: var(--line);
  border: 1px solid var(--line);
}
.editorial .ed-gallery figure {
  margin: 0;
  background: var(--cream);
  overflow: hidden;
}
.editorial .ed-gallery__img {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.editorial .ed-gallery__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease;
}
.editorial .ed-gallery figure:hover .ed-gallery__img img {
  transform: scale(1.05);
}
.editorial .ed-gallery figcaption {
  padding: 1rem 1.2rem;
  border-top: 1px solid var(--line);
}
.editorial .ed-gallery .cat {
  display: block;
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--champagne);
  margin-bottom: 0.3rem;
}

/* Service detail two-column layout. */
.editorial .ed-detail {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  grid-template-columns: 1fr;
  max-width: var(--maxw);
  margin-inline: auto;
}
@media (min-width: 960px) {
  .editorial .ed-detail {
    grid-template-columns: 1.8fr 1fr;
    align-items: start;
  }
}
.editorial .ed-detail__hero {
  position: relative;
  aspect-ratio: 16 / 7;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  border: 1px solid var(--line);
  margin-bottom: clamp(2rem, 5vw, 3rem);
}
.editorial .ed-detail__hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 40%,
    rgba(20, 18, 16, 0.7) 100%
  );
}
.editorial .ed-detail__hero h1 {
  position: relative;
  z-index: 1;
  color: #fff;
  padding: clamp(1.2rem, 3vw, 2rem);
  font-size: clamp(2rem, 5vw, 3.2rem);
}
.editorial .ed-detail__sec {
  padding-top: clamp(2rem, 5vw, 3rem);
  margin-top: clamp(2rem, 5vw, 3rem);
  border-top: 1px solid var(--line);
}
.editorial .ed-detail__sec:first-child {
  padding-top: 0;
  margin-top: 0;
  border-top: 0;
}
.editorial .ed-detail__sec h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 1.2rem;
}
.editorial .ed-aside {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Location layout. */
.editorial .ed-loc {
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  grid-template-columns: 1fr;
  max-width: var(--maxw);
  margin-inline: auto;
}
@media (min-width: 900px) {
  .editorial .ed-loc {
    grid-template-columns: 1fr 1.4fr;
  }
}
.editorial .ed-loc dl {
  margin: 0;
}
.editorial .ed-loc dt {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--champagne);
  margin-top: 1.6rem;
}
.editorial .ed-loc dd {
  margin: 0.35rem 0 0;
  color: var(--ink);
}
.editorial .ed-loc__map {
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  overflow: hidden;
}
.editorial .ed-loc__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* =============================================================
   DREAM EXPRESS (드림운수) — extra components
   ============================================================= */

/* 견적 신청 폼. */
.editorial .ed-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem 1.4rem;
}
.editorial .ed-form .full {
  grid-column: 1 / -1;
}
.editorial .ed-form label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-soft);
  margin-bottom: 0.5rem;
}
.editorial .ed-form input,
.editorial .ed-form select,
.editorial .ed-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--cream);
  color: var(--ink);
  font: inherit;
  font-size: 0.95rem;
  transition: border-color 0.3s ease;
}
.editorial .ed-form input:focus,
.editorial .ed-form select:focus,
.editorial .ed-form textarea:focus {
  outline: none;
  border-color: var(--champagne);
}
.editorial .ed-form textarea {
  resize: vertical;
  min-height: 120px;
}
.editorial .ed-form__actions {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 0.6rem;
}
@media (max-width: 620px) {
  .editorial .ed-form {
    grid-template-columns: 1fr;
  }
}

/* Wordmark in the header. */
.brand-name {
  font-family: "Noto Sans KR", "Archivo", "Helvetica Neue", Arial, sans-serif;
  font-weight: 600;
}
.brand-tag {
  font-family: "Noto Sans KR", "Archivo", "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
}

/* Feature list in the intro split. */
.editorial .ed-features {
  list-style: none;
  margin: 1.6rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem 1.4rem;
}
.editorial .ed-features li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.95rem;
  color: var(--ink);
}
.editorial .ed-features i {
  color: var(--champagne);
  width: 1.2em;
  text-align: center;
}
@media (max-width: 520px) {
  .editorial .ed-features {
    grid-template-columns: 1fr;
  }
}

/* Brands row. */
.editorial .brand-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(1.5rem, 5vw, 3.5rem);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(2rem, 5vw, 3rem) 1rem;
}
.editorial .brand-row span {
  font-size: clamp(1.2rem, 3.2vw, 1.9rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.editorial .brand-row span:last-child {
  color: var(--ink-soft);
  font-weight: 300;
}

/* Recent-work image pair. */
.editorial .work-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: 1fr;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (min-width: 720px) {
  .editorial .work-grid {
    grid-template-columns: 1.4fr 1fr;
  }
}
.editorial .work-grid figure {
  margin: 0;
  overflow: hidden;
  background: var(--cream);
  aspect-ratio: 4 / 3;
}
.editorial .work-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease;
}
.editorial .work-grid figure:hover img {
  transform: scale(1.04);
}
