:root {
  --bg: #f6f4f1;
  --paper: #ffffff;
  --ink: #0d0f12;
  --muted: #5f6670;
  --line: #e6e0d8;
  --accent: #b7772d;
  --accent-dark: #8f5518;
  --soft: #f0ece6;
  --shadow: 0 20px 60px rgba(13, 15, 18, 0.10);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1160px, calc(100% - 48px)); margin: 0 auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.94);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  backdrop-filter: blur(12px);
}
.nav-wrap { height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: flex; align-items: center; gap: 12px; letter-spacing: .04em; }
.brand-mark { display: grid; place-items: center; width: 42px; height: 42px; background: #050505; color: #fff; font-weight: 800; font-size: 13px; border-radius: 50%; }
.brand small { display: block; color: var(--muted); font-size: 11px; letter-spacing: .12em; margin-top: -2px; text-transform: uppercase; }
.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a { font-size: 14px; padding: 10px 14px; border-radius: 999px; color: #252b32; transition: .2s ease; }
.main-nav a:hover, .main-nav a.active { background: var(--soft); color: #000; }
.main-nav a.nav-cta { background: #050505; color: #fff; padding-inline: 18px; margin-left: 6px; }
.main-nav a.nav-cta:hover, .main-nav a.nav-cta.active { background: var(--accent); color: #fff; }
.nav-toggle { display: none; background: none; border: 0; font-size: 26px; }
.hero { min-height: calc(100vh - 68px); display: flex; align-items: center; color: #fff; position: relative; overflow: hidden; background: #050505; }
.hero-slider, .hero-slide, .hero-slide img, .hero-overlay { position: absolute; inset: 0; }
.hero-slide { opacity: 0; animation: heroFade 12s infinite; }
.hero-slide.is-second { animation-delay: 6s; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { z-index: 1; background: linear-gradient(90deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.42) 45%, rgba(0,0,0,.16) 100%); }
.hero::after { content: ''; position: absolute; z-index: 1; inset: auto 0 0 0; height: 110px; background: linear-gradient(180deg, transparent, rgba(0,0,0,.28)); pointer-events: none; }
.hero-content { position: relative; z-index: 2; max-width: 780px; padding: 92px 0; }
.home-hero-content h1 { margin: 18px 0 10px; font-size: clamp(48px, 8vw, 104px); line-height: .96; letter-spacing: .02em; }
.hero-subtitle { margin: 0; font-size: clamp(22px, 3vw, 36px); letter-spacing: .02em; color: rgba(255,255,255,.94); }
.hero-location { margin: 10px 0 34px; font-size: 18px; color: rgba(255,255,255,.82); }
.hero-dots { position: absolute; left: calc((100% - min(1160px, calc(100% - 48px))) / 2); bottom: 34px; z-index: 3; display: flex; gap: 8px; }
.hero-dots span { display: block; width: 34px; height: 2px; background: rgba(255,255,255,.45); overflow: hidden; }
.hero-dots span::after { content: ''; display: block; width: 100%; height: 100%; background: #fff; transform-origin: left; animation: dotPulse 12s infinite; }
.hero-dots span:nth-child(2)::after { animation-delay: 6s; }
@keyframes heroFade { 0% { opacity: 0; transform: scale(1.02); } 8% { opacity: 1; } 50% { opacity: 1; transform: scale(1); } 58% { opacity: 0; } 100% { opacity: 0; } }
@keyframes dotPulse { 0%, 50%, 100% { transform: scaleX(0); } 8%, 48% { transform: scaleX(1); } }
.eyebrow { color: var(--accent); font-weight: 800; letter-spacing: .18em; font-size: 13px; text-transform: uppercase; }
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 24px; border-radius: 0; background: #050505; color: #fff; font-weight: 700; border: 1px solid #050505; transition: .2s ease; cursor: pointer; }
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn.light { background: rgba(255,255,255,.95); color: #111; border-color: rgba(255,255,255,.95); }
.btn.outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.72); }
.btn.accent { background: var(--accent); border-color: var(--accent); }
.section { padding: 92px 0; }
.section.white { background: var(--paper); }
.section.soft { background: var(--soft); }
.section.black { background: #050505; color: #fff; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 46px; }
.section-head.left { text-align: left; margin-left: 0; }
.section-head h2 { margin: 8px 0 10px; font-size: clamp(30px, 4vw, 46px); line-height: 1.15; letter-spacing: -0.03em; }
.section-head p { color: var(--muted); margin: 0; }
.black .section-head p { color: rgba(255,255,255,.72); }
.two-col { display: grid; grid-template-columns: 1.05fr .95fr; gap: 70px; align-items: center; }
.compact-two-col { gap: 48px; }
.text-block h2 { margin: 0 0 20px; font-size: clamp(32px, 4vw, 50px); line-height: 1.12; letter-spacing: -0.03em; }
.text-block p { color: var(--muted); margin: 0 0 24px; }
.image-card { border-radius: 4px; box-shadow: var(--shadow); overflow: hidden; background: #fff; }
.image-card.tall img { width: 100%; height: 620px; object-fit: cover; }
.image-pair { display: grid; grid-template-columns: 1fr .72fr; gap: 18px; align-items: end; }
.image-pair img { width: 100%; min-height: 360px; object-fit: cover; box-shadow: var(--shadow); }
.image-pair img:last-child { min-height: 260px; }
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.home-link-cards { grid-template-columns: repeat(3, 1fr); }
.card { background: #fff; border: 1px solid var(--line); padding: 34px 26px; min-height: 220px; box-shadow: 0 10px 30px rgba(0,0,0,.035); transition: .2s ease; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.icon { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; background: #050505; color: #fff; margin: 0 auto 18px; font-size: 21px; font-weight: 800; }
.card h3 { text-align: center; margin: 0 0 10px; font-size: 19px; }
.card p { text-align: center; margin: 0; color: var(--muted); font-size: 14px; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 30px; }
.stat { padding: 22px; background: #fff; border: 1px solid var(--line); text-align: center; }
.stat strong { display: block; font-size: 26px; line-height: 1; }
.stat span { color: var(--muted); font-size: 13px; }
.cta-strip { background: #050505; color: #fff; padding: 52px; border-radius: 4px; display: grid; grid-template-columns: 1.3fr .7fr; align-items: center; gap: 30px; }
.cta-transparent { background: transparent; border: 1px solid rgba(255,255,255,.16); }
.cta-strip h2 { margin: 0 0 10px; font-size: clamp(28px, 4vw, 42px); }
.cta-strip p { margin: 0; color: rgba(255,255,255,.72); }
.market-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.market-card { background: #fff; border: 1px solid var(--line); padding: 34px; text-align: center; }
.market-card b { display: block; color: var(--accent); font-size: 14px; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 12px; }
.market-card h3 { margin: 0 0 12px; font-size: 24px; }
.market-card p { margin: 0; color: var(--muted); }
.page-hero { padding: 120px 0 80px; background: #0b0b0b; color: #fff; position: relative; overflow: hidden; }
.page-hero-photo { background-size: cover; background-position: center; }
.about-hero { background-image: linear-gradient(90deg, rgba(0,0,0,.72), rgba(0,0,0,.28)), url('../img/hero-02-latest.jpg'); }
.service-hero { background-image: linear-gradient(90deg, rgba(0,0,0,.74), rgba(0,0,0,.30)), url('../img/detail-01-latest.jpg'); }
.brands-hero { background-image: linear-gradient(90deg, rgba(0,0,0,.70), rgba(0,0,0,.30)), url('../img/hero-01-latest.jpg'); background-position: center 42%; }
.page-hero::after { content: ''; position: absolute; right: -120px; top: -120px; width: 420px; height: 420px; border-radius: 50%; background: rgba(183,119,45,.22); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { margin: 14px 0 12px; font-size: clamp(42px, 6vw, 76px); line-height: 1.05; letter-spacing: -0.04em; }
.page-hero p { max-width: 760px; color: rgba(255,255,255,.78); margin: 0; font-size: 18px; }
.content-card { background: #fff; border: 1px solid var(--line); padding: clamp(28px, 5vw, 58px); box-shadow: var(--shadow); }
.content-card h2 { margin-top: 0; font-size: 32px; }
.content-card p { color: var(--muted); }
.service-list { display: grid; gap: 24px; }
.service-detail { display: grid; grid-template-columns: 84px 1fr; gap: 22px; background: #fff; border: 1px solid var(--line); padding: 34px; }
.service-detail .icon { margin: 0; }
.service-detail h3 { margin: 0 0 10px; font-size: 24px; }
.service-detail p { margin: 0 0 12px; color: var(--muted); }
.brand-page-section { overflow: visible; }
.brand-directory-top { align-items: flex-start; border-bottom: 1px solid var(--line); padding-bottom: 28px; }
.brand-list-top { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 32px; }
.brand-list-top h2 { margin: 4px 0 8px; font-size: clamp(34px, 5vw, 56px); letter-spacing: -0.04em; }
.brand-list-top p { margin: 0; color: var(--muted); }
.brand-actions { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; justify-content: flex-end; }
.brand-search { width: min(330px, 100%); border: 1px solid var(--line); background: #fff; padding: 13px 16px; font: inherit; outline: none; }
.brand-search:focus { border-color: #050505; }
.alphabet-strip { position: sticky; top: 82px; z-index: 5; display: flex; flex-wrap: wrap; gap: 6px; margin: 0 0 34px; padding: 12px; background: rgba(255,255,255,.88); border: 1px solid var(--line); backdrop-filter: blur(10px); box-shadow: 0 10px 30px rgba(0,0,0,.04); }
.alphabet-strip a { min-width: 30px; height: 30px; display: grid; place-items: center; border: 1px solid transparent; font-size: 12px; font-weight: 800; letter-spacing: .08em; }
.alphabet-strip a:hover { border-color: var(--ink); background: #050505; color: #fff; }
.brand-directory { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; align-items: start; }
.kids-brand-list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.brand-letter-block { background: #fff; border: 1px solid var(--line); min-height: 160px; padding: 22px; box-shadow: 0 12px 34px rgba(13,15,18,.045); break-inside: avoid; }
.soft .brand-letter-block { background: rgba(255,255,255,.72); }
.brand-letter-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 14px; padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.brand-letter-head h3 { margin: 0; font-size: 34px; line-height: 1; font-weight: 900; letter-spacing: .08em; }
.brand-letter-head span { color: var(--accent); font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; white-space: nowrap; }
.brand-letter-block ul { list-style: none; padding: 0; margin: 0; columns: 2; column-gap: 20px; }
.brand-letter-block li { display: block; font-size: 12px; line-height: 1.55; letter-spacing: .04em; text-transform: uppercase; color: #2b3036; margin-bottom: 6px; word-break: break-word; break-inside: avoid; }
.brand-letter-block li::before { content: ''; display: inline-block; width: 5px; height: 5px; margin: 0 7px 1px 0; border-radius: 50%; background: var(--accent); opacity: .55; }
.brand-letter-block.is-empty { display: none; }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 44px; align-items: start; }
.info-box { background: #fff; border: 1px solid var(--line); padding: 30px; margin-bottom: 20px; }
.info-item { display: grid; grid-template-columns: 52px 1fr; gap: 16px; margin-bottom: 22px; }
.info-item:last-child { margin-bottom: 0; }
.info-icon { width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; background: #050505; color: #fff; }
.info-item h3 { margin: 0 0 4px; font-size: 17px; }
.info-item p { margin: 0; color: var(--muted); word-break: break-word; }
.form-card { background: #fff; border: 1px solid var(--line); padding: 34px; box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-row { margin-bottom: 18px; }
.form-row.full { grid-column: 1 / -1; }
label { display: block; font-weight: 700; margin-bottom: 8px; font-size: 14px; }
input, textarea { width: 100%; border: 0; border-bottom: 1px solid #d8d8d8; padding: 13px 2px; font: inherit; outline: none; background: transparent; transition: .2s ease; }
input:focus, textarea:focus { border-bottom-color: #050505; }
textarea { resize: vertical; min-height: 150px; }
.hp-field { display: none !important; }
.form-alert { min-height: 28px; margin-bottom: 12px; font-weight: 700; }
.form-alert.success { color: #138a3d; }
.form-alert.error { color: #b00020; }
.map { margin-top: 42px; background: #fff; border: 1px solid var(--line); padding: 14px; }
.map iframe { width: 100%; min-height: 430px; border: 0; display: block; filter: grayscale(15%); }
.site-footer { background: #050505; color: #fff; padding: 62px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .8fr 1fr; gap: 70px; }
.footer-grid h3, .footer-grid h4 { margin: 0 0 14px; }
.footer-grid p { color: rgba(255,255,255,.67); margin: 0 0 10px; }
.footer-grid a { display: block; color: rgba(255,255,255,.67); margin: 0 0 8px; }
.footer-grid a:hover { color: #fff; }
.footer-domain { color: var(--accent) !important; }
.footer-bottom { margin-top: 38px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.55); font-size: 13px; }
@media (max-width: 1100px) { .brand-directory { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 980px) {
  .cards, .home-link-cards { grid-template-columns: repeat(2, 1fr); }
  .two-col, .cta-strip, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .market-cards { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .brand-list-top { align-items: flex-start; flex-direction: column; }
  .brand-actions { justify-content: flex-start; }
  .image-card.tall img { height: auto; }
}
@media (max-width: 760px) {
  .container { width: min(100% - 32px, 1120px); }
  .nav-toggle { display: block; }
  .main-nav { display: none; position: absolute; top: 68px; left: 0; right: 0; background: #fff; padding: 16px; border-bottom: 1px solid var(--line); box-shadow: var(--shadow); }
  .main-nav.open { display: grid; gap: 6px; }
  .main-nav a { border-radius: 6px; }
  .main-nav a.nav-cta { margin-left: 0; text-align: center; }
  .hero { min-height: 580px; }
  .hero-slide img { object-position: 62% center; }
  .section { padding: 66px 0; }
  .cards, .home-link-cards, .brand-grid, .form-grid { grid-template-columns: 1fr; }
  .service-detail { grid-template-columns: 1fr; }
  .cta-strip { padding: 34px 24px; }
  .image-pair { grid-template-columns: 1fr; }
  .image-pair img, .image-pair img:last-child { min-height: auto; }
  .brand-directory, .kids-brand-list { grid-template-columns: 1fr; }
  .brand-letter-block ul { columns: 2; }
  .alphabet-strip { position: static; }
}
@media (max-width: 480px) {
  .home-hero-content h1 { font-size: 48px; }
  .brand-letter-block ul { columns: 1; }
  .hero-dots { left: 16px; }
}
