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

:root {
  --canvas: #f7f7f4;
  --canvas-soft: #fafaf7;
  --surface-card: #ffffff;
  --surface-strong: #e6e5e0;
  --primary: #f54e00;
  --primary-active: #d04200;
  --ink: #26251e;
  --body: #5a5852;
  --body-strong: #26251e;
  --muted: #807d72;
  --muted-soft: #a09c92;
  --on-primary: #ffffff;
  --hairline: #e6e5e0;
  --hairline-soft: #efeee8;
  --hairline-strong: #cfcdc4;
  --success: #1f8a65;
  --error: #cf2d56;
  --radius-xs: 4px;
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-pill: 9999px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--canvas);
  color: var(--body);
  font-family: 'Inter', system-ui, 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--ink); }
img { display: block; max-width: 100%; height: auto; }
ul { list-style: none; }

.cc-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.cc-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--canvas);
  border-bottom: 1px solid var(--hairline);
  height: 64px;
}

.cc-nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cc-nav__logo {
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.3px;
}

.cc-nav__links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.cc-nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--body);
  transition: color 0.15s;
}

.cc-nav__links a:hover { color: var(--ink); }

.cc-nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.cc-nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

.cc-hero {
  padding: 80px 0;
  background: var(--canvas);
}

.cc-hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.cc-hero__label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.88px;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--surface-strong);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
}

.cc-hero__h1 {
  font-size: 72px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -2.16px;
  color: var(--ink);
  max-width: 820px;
  margin-bottom: 24px;
}

.cc-hero__sub {
  font-size: 18px;
  color: var(--body);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.6;
}

.cc-hero__img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--hairline);
  margin-top: 48px;
}

.cc-section {
  padding: 80px 0;
}

.cc-section--soft {
  background: var(--canvas-soft);
}

.cc-section__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.88px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.cc-section__h2 {
  font-size: 36px;
  font-weight: 400;
  letter-spacing: -0.72px;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 16px;
}

.cc-section__intro {
  font-size: 16px;
  color: var(--body);
  max-width: 600px;
  margin-bottom: 48px;
}

.cc-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.cc-card {
  background: var(--surface-card);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cc-card__tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.88px;
  text-transform: uppercase;
  color: var(--muted);
}

.cc-card__title {
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.35;
}

.cc-card__body {
  font-size: 14px;
  color: var(--body);
  line-height: 1.6;
  flex: 1;
}

.cc-card__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.cc-card__link:hover { color: var(--primary-active); }

.cc-card--article .cc-card__img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 4px;
}

.cc-tips {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.cc-tip {
  background: var(--surface-card);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.cc-tip__num {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.88px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}

.cc-tip__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}

.cc-tip__body {
  font-size: 14px;
  color: var(--body);
  line-height: 1.6;
}

.cc-contact {
  max-width: 600px;
}

.cc-contact__h2 {
  font-size: 36px;
  font-weight: 400;
  letter-spacing: -0.72px;
  color: var(--ink);
  margin-bottom: 12px;
}

.cc-contact__desc {
  font-size: 16px;
  color: var(--body);
  margin-bottom: 32px;
}

.cc-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cc-form__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cc-form label {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}

.cc-form input,
.cc-form textarea {
  background: var(--surface-card);
  border: 1px solid var(--hairline-strong);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  font-size: 16px;
  color: var(--ink);
  font-family: inherit;
  outline: none;
  transition: border-color 0.15s;
  height: 44px;
}

.cc-form textarea {
  height: auto;
  min-height: 120px;
  resize: vertical;
}

.cc-form input:focus,
.cc-form textarea:focus {
  border-color: var(--ink);
}

.cc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: background 0.15s;
  line-height: 1;
  height: 40px;
  padding: 0 18px;
}

.cc-btn--primary {
  background: var(--primary);
  color: var(--on-primary);
}

.cc-btn--primary:hover { background: var(--primary-active); }

.cc-btn--secondary {
  background: var(--surface-card);
  color: var(--ink);
  border: 1px solid var(--hairline-strong);
}

.cc-btn--secondary:hover { background: var(--surface-strong); }

.cc-btn--lg {
  height: 44px;
  padding: 0 24px;
  font-size: 15px;
}

.cc-form__status {
  font-size: 14px;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  display: none;
}

.cc-form__status--success {
  background: #e6f4ee;
  color: var(--success);
  border: 1px solid #b3dfc9;
  display: block;
}

.cc-form__status--error {
  background: #fce8ed;
  color: var(--error);
  border: 1px solid #f0b3c1;
  display: block;
}

.cc-footer {
  background: var(--canvas);
  border-top: 1px solid var(--hairline);
  padding: 64px 0 0;
}

.cc-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.cc-footer__brand {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
}

.cc-footer__tagline {
  font-size: 14px;
  color: var(--body);
  line-height: 1.6;
}

.cc-footer__heading {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.88px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.cc-footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cc-footer__col a {
  font-size: 14px;
  color: var(--body);
}

.cc-footer__col a:hover { color: var(--ink); }

.cc-footer__col li:not(:has(a)) {
  font-size: 14px;
  color: var(--body);
}

.cc-footer__bottom {
  border-top: 1px solid var(--hairline);
  padding: 20px 24px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cc-footer__bottom p {
  font-size: 13px;
  color: var(--muted);
}

.cc-cookie {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--ink);
  color: var(--canvas);
  padding: 16px 24px;
  z-index: 200;
  display: none;
}

.cc-cookie.is-visible { display: block; }

.cc-cookie__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.cc-cookie p {
  font-size: 14px;
  color: #c9c8c0;
}

.cc-cookie a {
  color: var(--canvas);
  text-decoration: underline;
}

.cc-cookie__btns {
  display: flex;
  gap: 8px;
}

.cc-article-hero {
  padding: 48px 0 0;
  background: var(--canvas);
}

.cc-article-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.cc-article-meta__tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.88px;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--surface-strong);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.cc-article-meta__date {
  font-size: 13px;
  color: var(--muted);
}

.cc-article-h1 {
  font-size: 48px;
  font-weight: 400;
  letter-spacing: -1.2px;
  color: var(--ink);
  line-height: 1.15;
  max-width: 800px;
  margin-bottom: 20px;
}

.cc-article-sub {
  font-size: 18px;
  color: var(--body);
  max-width: 680px;
  margin-bottom: 36px;
  line-height: 1.6;
}

.cc-article-img {
  width: 100%;
  max-height: 440px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--hairline);
}

.cc-article-body {
  max-width: 740px;
  padding: 48px 0 80px;
}

.cc-article-body h2 {
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -0.325px;
  color: var(--ink);
  margin: 40px 0 14px;
  line-height: 1.25;
}

.cc-article-body h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin: 28px 0 10px;
}

.cc-article-body p {
  font-size: 16px;
  color: var(--body);
  line-height: 1.7;
  margin-bottom: 16px;
}

.cc-article-body ul,
.cc-article-body ol {
  padding-left: 20px;
  margin-bottom: 16px;
}

.cc-article-body ul { list-style: disc; }
.cc-article-body ol { list-style: decimal; }

.cc-article-body li {
  font-size: 16px;
  color: var(--body);
  line-height: 1.7;
  margin-bottom: 6px;
}

.cc-article-body strong { color: var(--ink); font-weight: 600; }

.cc-article-body a {
  color: var(--primary);
  text-decoration: underline;
}

.cc-article-body a:hover { color: var(--primary-active); }

.cc-callout {
  background: var(--surface-card);
  border: 1px solid var(--hairline);
  border-left: 3px solid var(--primary);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin: 24px 0;
}

.cc-callout p {
  margin-bottom: 0;
  font-size: 15px;
}

.cc-page-hero {
  padding: 64px 0 48px;
}

.cc-page-h1 {
  font-size: 48px;
  font-weight: 400;
  letter-spacing: -1.2px;
  color: var(--ink);
  margin-bottom: 16px;
}

.cc-page-sub {
  font-size: 18px;
  color: var(--body);
  max-width: 600px;
}

.cc-page-body {
  max-width: 740px;
  padding-bottom: 80px;
}

.cc-page-body h2 {
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -0.325px;
  color: var(--ink);
  margin: 36px 0 12px;
}

.cc-page-body h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin: 24px 0 8px;
}

.cc-page-body p {
  font-size: 16px;
  color: var(--body);
  line-height: 1.7;
  margin-bottom: 16px;
}

.cc-page-body ul,
.cc-page-body ol {
  padding-left: 20px;
  margin-bottom: 16px;
}

.cc-page-body ul { list-style: disc; }
.cc-page-body ol { list-style: decimal; }

.cc-page-body li {
  font-size: 16px;
  color: var(--body);
  line-height: 1.7;
  margin-bottom: 6px;
}

.cc-divider {
  border: none;
  border-top: 1px solid var(--hairline);
  margin: 40px 0;
}

@media (max-width: 1024px) {
  .cc-hero__h1 { font-size: 56px; }
  .cc-cards { grid-template-columns: repeat(2, 1fr); }
  .cc-footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .cc-hero__h1 { font-size: 36px; letter-spacing: -1px; }
  .cc-article-h1 { font-size: 32px; }
  .cc-page-h1 { font-size: 32px; }
  .cc-section__h2 { font-size: 28px; }
  .cc-nav__links { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--canvas); border-bottom: 1px solid var(--hairline); padding: 16px 24px; gap: 16px; }
  .cc-nav__links.is-open { display: flex; }
  .cc-nav__toggle { display: flex; }
  .cc-nav { position: relative; }
  .cc-cards { grid-template-columns: 1fr; }
  .cc-tips { grid-template-columns: 1fr; }
  .cc-footer__inner { grid-template-columns: 1fr 1fr; }
  .cc-footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .cc-hero { padding: 48px 0; }
  .cc-section { padding: 48px 0; }
  .cc-footer__inner { grid-template-columns: 1fr; gap: 24px; }
  .cc-cookie__inner { flex-direction: column; align-items: flex-start; }
}
