/* ============================================================
   류씨뷰티 — Beauty Content Creator
   Editorial magazine style · warm ivory / black / dusty rose
   ============================================================ */

:root {
  --bg: #FBF8F2;
  --bg-alt: #F3EDE2;
  --bg-deep: #EDE5D7;
  --ink: #211D19;
  --ink-soft: #6B6259;
  --ink-faint: #9C9186;
  --line: #E3DACB;
  --line-soft: #EDE6D9;
  --rose: #A5606B;
  --rose-deep: #8C4E5A;
  --rose-pale: #F2E4E2;
  --white: #FFFFFF;

  --serif: 'Noto Serif KR', 'Nanum Myeongjo', serif;
  --sans: 'Pretendard Variable', Pretendard, -apple-system, 'Malgun Gothic', sans-serif;

  --maxw: 1200px;
  --pad: clamp(20px, 5vw, 48px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: -0.01em;
  word-break: keep-all;
  overflow-wrap: break-word;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; }

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

/* ---------- typography helpers ---------- */

.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 18px;
}

.h-display {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(28px, 4.6vw, 52px);
  line-height: 1.42;
  letter-spacing: -0.015em;
}

.h-section {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(24px, 3.2vw, 36px);
  line-height: 1.45;
}

.lead {
  color: var(--ink-soft);
  font-size: clamp(15px, 1.6vw, 17.5px);
  line-height: 1.9;
}

/* ---------- header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 248, 242, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-soft);
}

.header-in {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand { display: flex; flex-direction: column; line-height: 1.2; }

.brand-name {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-sub {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-top: 2px;
}

.gnb { display: flex; align-items: center; gap: clamp(18px, 3vw, 34px); }

.gnb a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.gnb a:hover { color: var(--ink); }
.gnb a.on { color: var(--ink); border-bottom-color: var(--rose); }

.gnb .gnb-cta {
  color: var(--white);
  background: var(--ink);
  padding: 9px 20px;
  border-radius: 999px;
  border-bottom: none;
  font-weight: 600;
  transition: background 0.2s;
}
.gnb .gnb-cta:hover { background: var(--rose-deep); color: var(--white); }

.gnb .gnb-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink-soft);
  transition: border-color 0.2s, color 0.2s;
}
.gnb .gnb-icon svg { width: 17px; height: 17px; flex: none; }
.gnb .gnb-icon:hover { border-color: var(--rose-deep); color: var(--rose-deep); }
.gnb .gnb-icon .icon-label { display: none; }

/* mobile nav */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 42px; height: 42px;
  position: relative;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: '';
  position: absolute;
  left: 8px;
  width: 26px; height: 2px;
  background: var(--ink);
  transition: transform 0.25s, opacity 0.25s;
}
.nav-toggle span { top: 20px; }
.nav-toggle span::before { top: -8px; left: 0; }
.nav-toggle span::after { top: 8px; left: 0; }
body.nav-open .nav-toggle span { background: transparent; }
body.nav-open .nav-toggle span::before { transform: translateY(8px) rotate(45deg); }
body.nav-open .nav-toggle span::after { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .gnb {
    position: fixed;
    inset: 72px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    padding: 8px var(--pad) 24px;
    display: none;
  }
  body.nav-open .gnb { display: flex; }
  .gnb a {
    padding: 14px 4px;
    font-size: 16px;
    border-bottom: 1px solid var(--line-soft);
  }
  .gnb a.on { border-bottom-color: var(--line-soft); color: var(--rose-deep); }
  .gnb .gnb-cta {
    margin-top: 16px;
    text-align: center;
    border-radius: 12px;
    padding: 14px;
  }
  .gnb .gnb-icon {
    width: auto;
    height: auto;
    border: none;
    border-radius: 0;
    border-bottom: 1px solid var(--line-soft);
    justify-content: flex-start;
    padding: 14px 4px;
    font-size: 16px;
  }
  .gnb .gnb-icon .icon-label { display: inline; }
}

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  border: 1px solid var(--ink);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn-solid { background: var(--ink); color: var(--white); }
.btn-solid:hover { background: var(--rose-deep); border-color: var(--rose-deep); }

.btn-line { background: transparent; color: var(--ink); }
.btn-line:hover { border-color: var(--rose-deep); color: var(--rose-deep); }

.btn .arr { font-family: var(--sans); transition: transform 0.2s; }
.btn:hover .arr { transform: translateX(3px); }

/* ---------- hero ---------- */

.hero {
  border-bottom: 1px solid var(--line-soft);
  overflow: hidden;
}

.hero-in {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(56px, 9vw, 110px) var(--pad) clamp(56px, 8vw, 96px);
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}

.hero-copy .eyebrow { margin-bottom: 24px; }

.hero-title { margin-bottom: 28px; }
.hero-title em {
  font-style: normal;
  color: var(--rose-deep);
}

.hero-sub { max-width: 520px; margin-bottom: 40px; }

.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-visual { position: relative; }

.hero-frame {
  aspect-ratio: 4 / 5;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.hero-caption {
  margin-top: 14px;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  color: var(--ink-faint);
  display: flex;
  justify-content: space-between;
}

@media (max-width: 860px) {
  .hero-in { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 420px; }
  .hero-frame { aspect-ratio: 4 / 3; }
}

@media (max-width: 600px) {
  .hero-title br { display: none; }
}

/* ---------- placeholder visuals ---------- */

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ph {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background:
    radial-gradient(120% 90% at 20% 10%, rgba(255,255,255,0.55), transparent 55%),
    linear-gradient(150deg, #F1E8DB 0%, #E9DCCC 55%, #E2D1C4 100%);
  border: 1px solid var(--line);
  color: #A08D7E;
  text-align: center;
  padding: 20px;
}

.ph.rose {
  background:
    radial-gradient(120% 90% at 20% 10%, rgba(255,255,255,0.5), transparent 55%),
    linear-gradient(150deg, #F3E3E1 0%, #EAD2D0 55%, #E0C2C3 100%);
  color: #A67A80;
}

.ph.greige {
  background:
    radial-gradient(120% 90% at 20% 10%, rgba(255,255,255,0.5), transparent 55%),
    linear-gradient(150deg, #ECE8E0 0%, #DFD9CE 55%, #D3CCC0 100%);
  color: #8F887C;
}

.ph.sand {
  background:
    radial-gradient(120% 90% at 20% 10%, rgba(255,255,255,0.55), transparent 55%),
    linear-gradient(150deg, #F5EDD9 0%, #EBDFC4 55%, #E0D0B4 100%);
  color: #A2916F;
}

.ph .ph-mark {
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.ph .ph-note {
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

/* ---------- sections ---------- */

.section { padding: clamp(64px, 9vw, 120px) 0; }
.section.alt { background: var(--bg-alt); }
.section.dark { background: var(--ink); color: var(--bg); }

.sec-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: clamp(36px, 5vw, 56px);
}

.sec-head .lead { margin-top: 14px; max-width: 560px; }

.sec-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--rose-deep);
  letter-spacing: 0.02em;
  white-space: nowrap;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
}

/* ---------- slogan band ---------- */

.slogan-band {
  background: var(--ink);
  color: var(--bg);
  padding: clamp(48px, 7vw, 84px) 0;
  text-align: center;
}

.slogan-band .eyebrow { color: #C9A0A6; }

.slogan-band .h-display {
  font-size: clamp(24px, 3.6vw, 40px);
  max-width: 800px;
  margin: 0 auto;
}

.slogan-band .slogan-sub {
  color: #B9B0A6;
  max-width: 660px;
  margin: 28px auto 0;
  font-size: 15.5px;
  line-height: 2;
}

/* ---------- field cards (what I do) ---------- */

.field-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.field-card {
  background: var(--bg);
  padding: clamp(24px, 3vw, 38px);
  min-height: 190px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background 0.25s;
}

.field-card:hover { background: var(--white); }

.field-num {
  font-family: var(--serif);
  font-size: 13px;
  color: var(--rose);
  letter-spacing: 0.1em;
}

.field-card h3 {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
}

.field-card p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.75; }

@media (max-width: 900px) { .field-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .field-grid { grid-template-columns: 1fr; } .field-card { min-height: 0; } }

/* ---------- portfolio cards ---------- */

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 36px);
}

.work-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }

.work-card { display: flex; flex-direction: column; }

.work-thumb {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 2px;
  position: relative;
}

.work-thumb .ph, .work-thumb .img-cover { transition: transform 0.5s ease; }
.work-card:hover .work-thumb .ph,
.work-card:hover .work-thumb .img-cover { transform: scale(1.03); }

.work-meta { padding: 16px 2px 0; }

.work-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}

.tag {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 999px;
  padding: 3px 10px;
}

.tag.rose { color: var(--rose-deep); border-color: #E5CBCE; background: var(--rose-pale); }

.tag.ht { text-transform: none; letter-spacing: 0.04em; }

.work-brand {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 4px;
}

.work-title {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  transition: color 0.2s;
}

.work-card:hover .work-title { color: var(--rose-deep); }

.work-desc {
  margin-top: 8px;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.work-card-main { display: block; }

.work-ext {
  display: inline-block;
  margin: 10px 2px 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--rose-deep);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}
.work-ext:hover { color: var(--ink); }

@media (max-width: 960px) { .work-grid, .work-grid.cols-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .work-grid, .work-grid.cols-4 { grid-template-columns: 1fr; } }

/* ---------- strengths ---------- */

.strength-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(28px, 4vw, 48px) clamp(32px, 5vw, 72px);
}

.strength {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  align-items: start;
}

.strength-num {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--rose);
  border-top: 2px solid var(--rose);
  padding-top: 10px;
}

.strength h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; padding-top: 8px; }
.strength p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.8; }

.section.dark .strength p { color: #B9B0A6; }
.section.dark .strength h3 { color: var(--bg); }

@media (max-width: 760px) { .strength-list { grid-template-columns: 1fr; } }

/* ---------- process ---------- */

.proc-list { counter-reset: proc; display: grid; gap: 0; }

.proc-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: clamp(20px, 4vw, 48px);
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}

.proc-item:first-child { border-top: 1px solid var(--line); }

.proc-step {
  font-family: var(--serif);
  font-size: 15px;
  letter-spacing: 0.12em;
  color: var(--rose-deep);
}

.proc-body h3 { font-size: 17.5px; font-weight: 700; margin-bottom: 6px; }
.proc-body p { font-size: 14.5px; color: var(--ink-soft); }

@media (max-width: 560px) {
  .proc-item { grid-template-columns: 56px 1fr; gap: 16px; }
}

/* ---------- filters (portfolio page) ---------- */

.filter-bar { margin-bottom: clamp(32px, 4vw, 48px); display: grid; gap: 18px; }

.filter-row { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }

.filter-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-right: 10px;
  min-width: 72px;
}

.chip {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-soft);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 16px;
  transition: all 0.18s;
}

.chip:hover { border-color: var(--ink-soft); color: var(--ink); }

.chip.on {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.filter-count { font-size: 13.5px; color: var(--ink-faint); }

/* ---------- work detail ---------- */

.detail-hero {
  border-bottom: 1px solid var(--line-soft);
  padding: clamp(48px, 7vw, 88px) 0;
}

.detail-kicker { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }

.detail-title { max-width: 780px; }

.detail-brand {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin-bottom: 14px;
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 4fr);
  gap: clamp(36px, 6vw, 80px);
  padding: clamp(48px, 7vw, 88px) 0;
  align-items: start;
}

.detail-main > section + section { margin-top: clamp(36px, 5vw, 56px); }

.detail-main h2 {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 600;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.detail-main p, .detail-main li { color: var(--ink-soft); font-size: 15.5px; line-height: 1.9; }

.detail-main ul { display: grid; gap: 8px; }
.detail-main ul li { padding-left: 18px; position: relative; }
.detail-main ul li::before {
  content: '';
  position: absolute;
  left: 2px; top: 12px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--rose);
}

.hook-quote {
  font-family: var(--serif);
  font-size: clamp(19px, 2.4vw, 24px);
  line-height: 1.7;
  color: var(--ink);
  background: var(--white);
  border-left: 3px solid var(--rose);
  padding: clamp(22px, 3vw, 32px);
}

.detail-side {
  position: sticky;
  top: 100px;
  display: grid;
  gap: 24px;
}

.side-box {
  border: 1px solid var(--line);
  background: var(--white);
  padding: 26px;
}

.side-box h3 {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 16px;
}

.side-box dl { display: grid; gap: 12px; }
.side-box dt { font-size: 12px; font-weight: 600; color: var(--ink-faint); margin-bottom: 2px; }
.side-box dd { font-size: 14.5px; font-weight: 500; }

.side-box .tag { margin: 0 4px 6px 0; display: inline-block; }

.detail-note {
  font-size: 13px;
  color: var(--ink-faint);
  line-height: 1.8;
  border-top: 1px solid var(--line);
  padding-top: 16px;
  margin-top: 8px;
}

.detail-visual { aspect-ratio: 4 / 5; margin-bottom: 12px; }

@media (max-width: 900px) {
  .detail-grid { grid-template-columns: 1fr; }
  .detail-side { position: static; }
}

.detail-nav {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 32px 0 clamp(56px, 8vw, 88px);
  border-top: 1px solid var(--line);
}

/* ---------- about page ---------- */

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(36px, 6vw, 80px);
  align-items: start;
}

.about-photo { aspect-ratio: 3 / 4; position: sticky; top: 100px; }

.about-body h2 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  margin: 44px 0 16px;
}
.about-body h2:first-child { margin-top: 0; }
.about-body p { color: var(--ink-soft); margin-bottom: 14px; line-height: 1.95; }

.about-body .check-list { display: grid; gap: 10px; margin-top: 8px; }
.about-body .check-list li {
  padding-left: 26px;
  position: relative;
  color: var(--ink-soft);
}
.about-body .check-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 7px;
  width: 12px; height: 7px;
  border-left: 2px solid var(--rose);
  border-bottom: 2px solid var(--rose);
  transform: rotate(-45deg);
}

@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { position: static; max-width: 380px; }
}

/* ---------- services page ---------- */

.svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 3vw, 32px);
}

.svc-card {
  border: 1px solid var(--line);
  background: var(--white);
  padding: clamp(26px, 3.4vw, 40px);
}

.svc-card h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.svc-card > p { color: var(--ink-soft); font-size: 14.5px; margin-bottom: 18px; }

.svc-card ul { display: grid; gap: 7px; }
.svc-card li {
  font-size: 14.5px;
  color: var(--ink-soft);
  padding-left: 16px;
  position: relative;
}
.svc-card li::before {
  content: '';
  position: absolute;
  left: 0; top: 11px;
  width: 6px; height: 1.5px;
  background: var(--rose);
}

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

/* ---------- contact ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 7fr);
  gap: clamp(36px, 6vw, 80px);
  align-items: start;
}

.contact-info { display: grid; gap: 28px; position: sticky; top: 100px; }

.contact-info .h-section { line-height: 1.5; }

.ci-item h3 {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 6px;
}

.ci-item p, .ci-item a { font-size: 16px; font-weight: 500; }
.ci-item a:hover { color: var(--rose-deep); }

.form {
  background: var(--white);
  border: 1px solid var(--line);
  padding: clamp(26px, 4vw, 48px);
  display: grid;
  gap: 22px;
}

.form-sec {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose-deep);
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
  margin-top: 10px;
}
.form-sec:first-child { margin-top: 0; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 620px) { .form-row { grid-template-columns: 1fr; } }

.field { display: grid; gap: 7px; }

.field label { font-size: 13.5px; font-weight: 600; }
.field label .req { color: var(--rose-deep); }
.field label .opt { color: var(--ink-faint); font-weight: 400; font-size: 12px; }

.field input, .field select, .field textarea {
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 12px 14px;
  width: 100%;
  transition: border-color 0.2s, background 0.2s;
}

.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--rose);
  background: var(--white);
}

.field textarea { min-height: 110px; resize: vertical; }

.check-row { display: flex; flex-wrap: wrap; gap: 10px; }
.check-row label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 16px;
  cursor: pointer;
  background: var(--bg);
  transition: all 0.18s;
}
.check-row input { accent-color: var(--rose-deep); }
.check-row label:has(input:checked) {
  border-color: var(--rose-deep);
  background: var(--rose-pale);
  color: var(--rose-deep);
}

.form-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-top: 6px; }
.form-hint { font-size: 13px; color: var(--ink-faint); line-height: 1.7; }

/* ---------- channels ---------- */

.channel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.5vw, 28px);
}

.channel-card {
  border: 1px solid var(--line);
  background: var(--white);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: border-color 0.2s, transform 0.2s;
}

.channel-card:hover { border-color: var(--rose); transform: translateY(-3px); }

.channel-card .ch-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.channel-card .ch-name { font-family: var(--serif); font-size: 19px; font-weight: 600; }
.channel-card .ch-id { font-size: 14px; color: var(--rose-deep); }

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

/* ---------- follow channel cards ---------- */

.follow-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 32px);
}

.follow-card {
  border: 1px solid var(--line);
  background: var(--white);
  padding: clamp(30px, 4.5vw, 52px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.follow-card .ch-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--rose-deep);
}

.follow-card h3 {
  font-family: var(--serif);
  font-size: clamp(21px, 2.4vw, 26px);
  font-weight: 600;
}

.follow-card p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.9;
  flex: 1;
}

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

/* ---------- blog review cards ---------- */

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 36px);
}

.review-card {
  background: var(--white);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.2s;
}

.review-card:hover { border-color: var(--rose); transform: translateY(-3px); }

.review-thumb { aspect-ratio: 16 / 10; overflow: hidden; }

.review-body {
  padding: 22px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.review-cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose-deep);
}

.review-title {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.55;
}

.review-sum {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.75;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review-meta {
  margin-top: auto;
  padding-top: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  color: var(--ink-faint);
}

.review-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--rose-deep);
  white-space: nowrap;
}
.review-link:hover { color: var(--ink); }

@media (max-width: 960px) { .review-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .review-grid { grid-template-columns: 1fr; } }

/* ---------- CTA band ---------- */

.cta-band {
  background: var(--ink);
  color: var(--bg);
  text-align: center;
  padding: clamp(64px, 9vw, 110px) 0;
}

.cta-band .h-display { font-size: clamp(24px, 3.6vw, 40px); margin-bottom: 18px; }
.cta-band p { color: #B9B0A6; max-width: 560px; margin: 0 auto 36px; }

.cta-band .btn { border-color: var(--bg); color: var(--bg); }
.cta-band .btn:hover { background: var(--bg); color: var(--ink); }
.cta-band .btn-solid { background: var(--bg); color: var(--ink); }
.cta-band .btn-solid:hover { background: var(--rose); border-color: var(--rose); color: var(--white); }

/* ---------- page hero (subpages) ---------- */

.page-hero {
  border-bottom: 1px solid var(--line-soft);
  padding: clamp(52px, 8vw, 96px) 0;
}

.page-hero .lead { margin-top: 20px; max-width: 640px; }

/* ---------- footer ---------- */

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--bg-alt);
  padding: clamp(44px, 6vw, 64px) 0 36px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 44px;
}

.footer-brand .brand-name { font-size: 24px; }
.footer-brand p {
  margin-top: 12px;
  font-size: 13.5px;
  color: var(--ink-soft);
  max-width: 340px;
  line-height: 1.8;
}

.footer-col h3 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 14px;
}

.footer-col ul { display: grid; gap: 9px; }
.footer-col a { font-size: 14px; color: var(--ink-soft); }
.footer-col a:hover { color: var(--rose-deep); }

.footer-base {
  border-top: 1px solid var(--line);
  padding-top: 22px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 12.5px;
  color: var(--ink-faint);
}

.footer-base a { color: var(--ink-faint); text-decoration: underline; text-underline-offset: 3px; }
.footer-base a:hover { color: var(--ink-soft); }

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

/* ---------- legal pages ---------- */

.legal { max-width: 760px; }
.legal h2 { font-family: var(--serif); font-size: 20px; font-weight: 600; margin: 36px 0 12px; }
.legal p, .legal li { color: var(--ink-soft); font-size: 14.5px; line-height: 1.9; margin-bottom: 10px; }
.legal ul { padding-left: 4px; display: grid; gap: 6px; }
.legal ul li { padding-left: 16px; position: relative; margin-bottom: 0; }
.legal ul li::before {
  content: '';
  position: absolute; left: 0; top: 12px;
  width: 6px; height: 1.5px; background: var(--rose);
}

/* ---------- misc ---------- */

.divider-dot { color: var(--line); margin: 0 10px; }

.notice-inline {
  font-size: 13px;
  color: var(--ink-faint);
  border: 1px dashed var(--line);
  background: var(--white);
  padding: 14px 18px;
  border-radius: 4px;
  line-height: 1.8;
}

::selection { background: var(--rose-pale); color: var(--rose-deep); }
