:root {
  --ink: #123c3b;
  --deep: #092c2b;
  --mint: #dff3e8;
  --lime: #dfff72;
  --coral: #ff765f;
  --sand: #f6f1e8;
  --white: #fffefb;
  --muted: #56706e;
  --line: rgba(18, 60, 59, 0.16);
  --radius: 26px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--white); font-family: Inter, Avenir, "Helvetica Neue", Arial, sans-serif; line-height: 1.55; }
img { display: block; width: 100%; }
a { color: inherit; }
.shell { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.topline { padding: 9px 20px; color: var(--white); background: var(--deep); text-align: center; font-size: .76rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
header { position: sticky; z-index: 20; top: 0; border-bottom: 1px solid var(--line); background: rgba(255, 254, 251, .94); backdrop-filter: blur(14px); }
nav { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: flex; align-items: center; gap: 10px; color: var(--ink); text-decoration: none; font-size: 1.25rem; font-weight: 900; letter-spacing: -.04em; }
.brand-mark { width: 35px; height: 35px; display: grid; place-items: center; border-radius: 11px; color: var(--deep); background: var(--lime); font-size: 1.25rem; }
.brand strong { color: var(--coral); }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: .88rem; font-weight: 800; }
.nav-links a:hover { color: var(--coral); }
.hero { padding-block: 42px 92px; }
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 18px; }
.hero-copy { min-height: 590px; padding: clamp(36px, 6vw, 76px); display: flex; flex-direction: column; justify-content: center; border-radius: 0 0 0 72px; background: var(--mint); overflow: hidden; }
.kicker { margin: 0 0 18px; color: var(--coral); font-size: .76rem; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
h1, h2, h3 { margin-top: 0; }
h1 { max-width: 700px; margin-bottom: 24px; font-size: clamp(3.2rem, 7vw, 6.7rem); line-height: .88; letter-spacing: -.075em; }
h1 span { position: relative; z-index: 1; }
h1 span::after { position: absolute; z-index: -1; height: 18px; right: -4px; bottom: 6px; left: -4px; border-radius: 20px; content: ""; background: var(--lime); transform: rotate(-2deg); }
.hero-copy > p:not(.kicker) { max-width: 570px; margin: 0 0 32px; color: var(--muted); font-size: 1.08rem; }
.button { min-height: 50px; padding: 0 24px; display: inline-flex; align-items: center; justify-content: center; border: 2px solid var(--ink); border-radius: 999px; color: var(--white); background: var(--ink); text-decoration: none; font-size: .88rem; font-weight: 900; transition: 180ms ease; }
.button:hover { border-color: var(--coral); background: var(--coral); transform: translateY(-2px); }
.hero-photo { position: relative; min-height: 590px; border-radius: 0 72px 0 0; overflow: hidden; }
.hero-photo img { height: 100%; object-fit: cover; }
.photo-label { position: absolute; right: 22px; bottom: 22px; left: 22px; padding: 18px 22px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-radius: 18px; background: rgba(255, 254, 251, .92); backdrop-filter: blur(10px); font-weight: 900; }
.photo-label span { color: var(--coral); }
.benefits { position: relative; z-index: 2; margin-top: -32px; display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); border-radius: 20px; background: var(--white); box-shadow: 0 20px 60px rgba(9, 44, 43, .11); }
.benefit { padding: 24px 26px; display: flex; align-items: center; gap: 15px; }
.benefit + .benefit { border-left: 1px solid var(--line); }
.benefit-icon { width: 42px; height: 42px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 50%; background: var(--lime); font-weight: 900; }
.benefit strong { display: block; font-size: .9rem; }
.benefit small { color: var(--muted); }
section { padding-block: 96px; }
.section-heading { margin-bottom: 42px; display: flex; align-items: end; justify-content: space-between; gap: 36px; }
.section-heading h2 { max-width: 680px; margin-bottom: 0; font-size: clamp(2.3rem, 5vw, 4.2rem); line-height: .98; letter-spacing: -.055em; }
.section-heading p { max-width: 410px; margin: 0; color: var(--muted); }
.category-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 18px; }
.category { position: relative; min-height: 410px; border-radius: var(--radius); overflow: hidden; text-decoration: none; }
.category img { height: 100%; object-fit: cover; transition: transform 350ms ease; }
.category:hover img { transform: scale(1.04); }
.category::after { position: absolute; inset: 40% 0 0; content: ""; background: linear-gradient(transparent, rgba(9, 44, 43, .86)); }
.category-title { position: absolute; z-index: 2; right: 24px; bottom: 22px; left: 24px; color: var(--white); }
.category-title small { opacity: .8; font-weight: 800; text-transform: uppercase; }
.category-title h3 { margin: 5px 0 0; font-size: clamp(1.5rem, 3vw, 2.3rem); letter-spacing: -.04em; }
.trend { background: var(--sand); }
.trend-layout { display: grid; grid-template-columns: .78fr 1.22fr; gap: 60px; align-items: center; }
.trend-photo { position: relative; }
.trend-photo img { height: 590px; object-fit: cover; border-radius: 160px 160px 24px 24px; }
.trend-stamp { position: absolute; width: 112px; height: 112px; top: 30px; right: -30px; display: grid; place-items: center; border: 8px solid var(--sand); border-radius: 50%; color: var(--deep); background: var(--lime); text-align: center; font-size: .72rem; font-weight: 900; line-height: 1.2; text-transform: uppercase; transform: rotate(8deg); }
.trend-copy h2 { margin-bottom: 22px; font-size: clamp(2.6rem, 6vw, 5.4rem); line-height: .92; letter-spacing: -.065em; }
.trend-copy > p { max-width: 570px; color: var(--muted); }
.check-list { margin: 30px 0 36px; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 13px; list-style: none; }
.check-list li { display: flex; align-items: center; gap: 10px; font-weight: 800; }
.check-list li::before { width: 24px; height: 24px; display: grid; place-items: center; border-radius: 50%; content: "✓"; color: var(--white); background: var(--coral); font-size: .72rem; }
.guide-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.guide-card { padding: 32px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.guide-card:nth-child(2) { background: var(--mint); }
.guide-card:nth-child(3) { color: var(--white); background: var(--ink); }
.guide-number { margin-bottom: 54px; display: block; color: var(--coral); font-size: .75rem; font-weight: 900; letter-spacing: .15em; }
.guide-card h3 { margin-bottom: 12px; font-size: 1.5rem; letter-spacing: -.035em; }
.guide-card p { margin: 0; color: var(--muted); }
.guide-card:nth-child(3) p { color: #bdd3ce; }
footer { padding-block: 48px 28px; color: #b9ceca; background: var(--deep); }
.footer-top { padding-bottom: 38px; display: flex; justify-content: space-between; gap: 40px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer-brand { color: var(--white); font-size: 1.5rem; font-weight: 900; letter-spacing: -.04em; }
.footer-top p { max-width: 480px; margin: 10px 0 0; }
.footer-links { display: flex; gap: 24px; align-items: start; }
.footer-links a { color: var(--white); font-size: .86rem; font-weight: 800; }
.footer-bottom { padding-top: 24px; display: flex; justify-content: space-between; gap: 30px; font-size: .76rem; }
.legal-main { min-height: calc(100vh - 190px); padding-block: 70px 110px; }
.legal-shell { width: min(850px, calc(100% - 40px)); margin-inline: auto; }
.legal-main h1 { margin-bottom: 48px; font-size: clamp(3rem, 8vw, 5.5rem); }
.legal-main h2 { margin-top: 46px; font-size: 1.8rem; letter-spacing: -.035em; }
.legal-main h3 { margin-top: 28px; font-size: 1.08rem; }
.legal-main p, .legal-main li { color: var(--muted); }
.legal-main a { color: #bd4838; }
.back-link { color: var(--ink); text-decoration: none; font-size: .86rem; font-weight: 900; }
@media (max-width: 900px) {
  .nav-links a:not(:last-child) { display: none; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { min-height: 500px; border-radius: 0 54px 0 0; }
  .hero-photo { min-height: 500px; border-radius: 0 0 0 54px; }
  .benefits { grid-template-columns: 1fr; margin-top: 18px; }
  .benefit + .benefit { border-top: 1px solid var(--line); border-left: 0; }
  .category-grid { grid-template-columns: 1fr 1fr; }
  .category:first-child { grid-column: 1 / -1; }
  .trend-layout { grid-template-columns: 1fr; }
  .trend-photo { width: min(520px, 90%); }
  .guide-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .shell, .legal-shell { width: min(100% - 28px, 1180px); }
  nav { min-height: 68px; }
  .brand { font-size: 1.05rem; }
  .hero { padding-block: 18px 70px; }
  .hero-copy { min-height: 470px; padding: 34px 26px; }
  .hero-photo { min-height: 430px; }
  h1 { font-size: clamp(3.3rem, 17vw, 5rem); }
  section { padding-block: 72px; }
  .section-heading { align-items: start; flex-direction: column; }
  .category-grid, .guide-grid { grid-template-columns: 1fr; }
  .category:first-child { grid-column: auto; }
  .category { min-height: 360px; }
  .trend-photo { width: 92%; }
  .trend-photo img { height: 480px; }
  .trend-stamp { width: 94px; height: 94px; right: -24px; }
  .check-list { grid-template-columns: 1fr; }
  .footer-top, .footer-bottom { flex-direction: column; }
}
