@font-face {
  font-family: "Space Grotesk";
  src: url("../fonts/SpaceGrotesk.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/CormorantGaramond.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/CormorantGaramond-Italic.ttf") format("truetype");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Material Symbols Outlined";
  src: url("../fonts/MaterialSymbolsOutlined.woff2") format("woff2");
  font-weight: 100 700;
  font-style: normal;
  font-display: swap;
}

.material-symbols-outlined {
  font-family: "Material Symbols Outlined";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
}

:root {
  --ink: #2d2926;
  --ink-light: #5c5552;
  --cream: #faf6f0;
  --cream-dark: #f0e9df;
  --terra: #c4553a;
  --terra-dark: #a3432d;
  --sage: #3d6b5e;
  --sage-light: #5a9484;
  --sand: #e8d5b7;
  --white: #ffffff;
  --border: #d9d0c4;
  --radius: 2px;
  --font-head: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

main {
  flex: 1 0 auto;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.15;
  font-weight: 600;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--ink);
}

h2 em, h1 em {
  font-style: italic;
  color: var(--terra);
}

h3 {
  font-size: 1.3rem;
  font-weight: 600;
}

.section-num {
  display: block;
  font-family: var(--font-head);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--sand);
  line-height: 1;
  margin-bottom: 4px;
}

.section-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--terra);
  margin-bottom: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: var(--font-body);
  text-decoration: none;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.3s var(--ease);
  min-height: 48px;
  letter-spacing: 0.5px;
}

.btn-solid {
  background: var(--ink);
  color: var(--cream);
}

.btn-solid:hover {
  background: var(--terra);
  border-color: var(--terra);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
}

.btn-ghost:hover {
  background: var(--ink);
  color: var(--cream);
  transform: translateY(-2px);
}

.btn-ghost-light {
  background: transparent;
  color: var(--cream);
  border-color: rgba(250, 246, 240, 0.4);
}

.btn-ghost-light:hover {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
}

.btn-full {
  width: 100%;
}

.btn-sm {
  padding: 8px 20px;
  min-height: 38px;
  font-size: 0.8rem;
}

.mini-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 20px;
  padding: 12px 16px;
  border-left: 2px solid var(--sand);
  font-size: 0.78rem;
  color: var(--ink-light);
  line-height: 1.5;
  background: var(--cream-dark);
}

.mini-note > span:first-child {
  color: var(--terra);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.mini-note.center {
  max-width: 700px;
  margin: 24px auto 0;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.header-notice {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-light);
  border: 1px solid var(--border);
  background: var(--cream-dark);
  padding: 6px 14px;
  border-radius: var(--radius);
  white-space: nowrap;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: var(--radius);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-top {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 4.5px;
  text-transform: uppercase;
  color: var(--terra);
}

.logo-bottom {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.3px;
}

.logo-help {
  color: var(--sage);
}

.nav {
  display: flex;
  gap: 24px;
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-light);
  text-decoration: none;
  transition: color 0.3s var(--ease);
  position: relative;
  padding: 4px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--terra);
  transition: width 0.3s var(--ease);
}

.nav-link:hover,
.nav-link.active {
  color: var(--ink);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.hero {
  position: relative;
  padding: 64px 0;
  background: var(--ink);
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(196, 85, 58, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(61, 107, 94, 0.06) 0%, transparent 40%);
}

.hero-frame {
  position: relative;
  border: 1px solid rgba(232, 213, 183, 0.3);
  padding: 48px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero-frame::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(232, 213, 183, 0.15);
  pointer-events: none;
}

.hero-frame-corner {
  position: absolute;
  color: var(--terra);
  font-size: 0.9rem;
}

.hero-corner-tl { top: -6px; left: -6px; }
.hero-corner-tr { top: -6px; right: -6px; }
.hero-corner-bl { bottom: -6px; left: -6px; }
.hero-corner-br { bottom: -6px; right: -6px; }

.hero-inner {
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(2.4rem, 6vw, 4rem);
  color: var(--cream);
  margin-bottom: 20px;
}

.hero-title em {
  color: var(--terra);
}

.hero-sub {
  font-size: 1rem;
  color: rgba(250, 246, 240, 0.7);
  max-width: 520px;
  margin: 0 auto 28px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-floats {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.hero-float {
  text-align: center;
  padding: 16px 24px;
  border: 1px solid rgba(232, 213, 183, 0.2);
  background: rgba(250, 246, 240, 0.03);
}

.hf-num {
  display: block;
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--sand);
}

.hf-label {
  font-size: 0.72rem;
  color: rgba(250, 246, 240, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ticker-strip {
  background: var(--terra);
  padding: 10px 0;
  overflow: hidden;
  position: relative;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 22s linear infinite;
}

.ticker-track span {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--cream);
  padding: 0 20px;
  white-space: nowrap;
  flex-shrink: 0;
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.manifesto-section {
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
}

.manifesto-right h2 {
  margin-bottom: 20px;
}

.manifesto-right > p {
  font-size: 0.95rem;
  color: var(--ink-light);
  margin-bottom: 12px;
  max-width: 600px;
}

.manifesto-points {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.m-point {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.m-marker {
  color: var(--terra);
  font-size: 0.8rem;
  margin-top: 4px;
}

.m-point strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.m-point span:last-child {
  font-size: 0.82rem;
  color: var(--ink-light);
}

.services-preview {
  padding: 64px 0;
  background: var(--white);
}

.services-header {
  margin-bottom: 40px;
}

.services-header h2 {
  margin-top: 8px;
}

.services-list {
  border-top: 1px solid var(--border);
}

.service-row {
  display: grid;
  grid-template-columns: 60px 1fr;
  border-bottom: 1px solid var(--border);
  transition: background 0.3s var(--ease);
}

.service-row:hover {
  background: var(--cream);
}

.service-idx {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--sand);
  border-right: 1px solid var(--border);
  padding: 24px 0;
}

.service-body {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 24px;
}

.service-icon-wrap {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.service-icon-wrap .material-symbols-outlined {
  font-size: 22px;
  color: var(--terra);
}

.service-info h3 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.service-info p {
  font-size: 0.82rem;
  color: var(--ink-light);
  line-height: 1.5;
}

.service-price {
  text-align: right;
  min-width: 90px;
}

.sp-label {
  display: block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--ink-light);
}

.sp-value {
  display: block;
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--ink);
}

.sp-period {
  font-size: 0.7rem;
  color: var(--ink-light);
}

.services-cta {
  text-align: center;
  margin-top: 32px;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

.split-img {
  position: relative;
  overflow: hidden;
}

.split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.split-overlay-text {
  position: absolute;
  bottom: 32px;
  left: 32px;
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--cream);
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
  line-height: 1.4;
}

.split-overlay-text span {
  display: block;
}

.split-content {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-content h2 {
  margin-bottom: 16px;
}

.split-content > p {
  font-size: 0.92rem;
  color: var(--ink-light);
  margin-bottom: 20px;
  max-width: 440px;
}

.split-stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.ss-item {
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.ss-num {
  display: block;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
}

.ss-label {
  font-size: 0.7rem;
  color: var(--ink-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.voices-section {
  padding: 64px 0;
  background: var(--white);
}

.voices-header {
  margin-bottom: 36px;
}

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

.voice-card {
  border: 1px solid var(--border);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s var(--ease);
  background: var(--cream);
}

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

.voice-quote {
  font-family: var(--font-head);
  font-size: 3rem;
  color: var(--sand);
  line-height: 1;
  margin-bottom: 8px;
}

.voice-card > p {
  font-size: 0.88rem;
  color: var(--ink-light);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}

.voice-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.va-initials {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: var(--sand);
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 50%;
}

.voice-author strong {
  display: block;
  font-size: 0.82rem;
}

.voice-author span {
  font-size: 0.72rem;
  color: var(--ink-light);
}

.voice-rating {
  color: var(--terra);
  font-size: 0.85rem;
  letter-spacing: 2px;
}

.callback-section {
  padding: 64px 0;
  background: var(--cream-dark);
}

.callback-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.callback-info h2 {
  margin-bottom: 16px;
}

.callback-info > p {
  font-size: 0.92rem;
  color: var(--ink-light);
  margin-bottom: 24px;
}

.callback-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cb-step {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
}

.cb-step-num {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--terra);
  color: var(--cream);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 50%;
  flex-shrink: 0;
}

.callback-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 32px;
}

.callback-form-wrap h3 {
  margin-bottom: 20px;
  font-size: 1.4rem;
}

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

.c-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.c-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.c-field label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--ink);
}

.c-field input,
.c-field select,
.c-field textarea {
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-family: var(--font-body);
  background: var(--white);
  transition: border-color 0.3s var(--ease);
  min-height: 44px;
  width: 100%;
  max-width: 100%;
}

.c-field input:focus,
.c-field select:focus,
.c-field textarea:focus {
  outline: none;
  border-color: var(--terra);
}

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

.c-checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
}

.c-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 2px;
  accent-color: var(--terra);
}

.c-checkbox label {
  font-size: 0.78rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--ink-light);
}

.guarantee-strip {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  background: var(--white);
}

.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.g-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.g-item .material-symbols-outlined {
  font-size: 24px;
  color: var(--sage);
  flex-shrink: 0;
}

.g-item strong {
  display: block;
  font-size: 0.82rem;
  margin-bottom: 2px;
}

.g-item span:last-child {
  font-size: 0.72rem;
  color: var(--ink-light);
}

.page-hero {
  padding: 48px 0;
  background: var(--ink);
  color: var(--cream);
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--cream);
  margin-bottom: 12px;
}

.page-hero p {
  font-size: 1rem;
  color: rgba(250, 246, 240, 0.7);
  max-width: 560px;
}

.page-hero-tag {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 12px;
}

.sf-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 48px 0;
}

.sf-card {
  border: 1px solid var(--border);
  padding: 28px 24px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  transition: all 0.3s var(--ease);
}

.sf-card:hover {
  border-color: var(--terra);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(45, 41, 38, 0.08);
}

.sf-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  border-radius: var(--radius);
  margin-bottom: 16px;
}

.sf-icon .material-symbols-outlined {
  color: var(--sand);
  font-size: 24px;
}

.sf-card h3 {
  margin-bottom: 8px;
}

.sf-card > p {
  font-size: 0.85rem;
  color: var(--ink-light);
  margin-bottom: 14px;
  line-height: 1.5;
}

.sf-list {
  list-style: none;
  margin-bottom: 16px;
  flex: 1;
}

.sf-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.82rem;
  padding: 4px 0;
  color: var(--ink);
}

.sf-list li span {
  color: var(--terra);
  font-weight: 700;
}

.sf-price {
  border-top: 1px solid var(--border);
  padding-top: 12px;
  margin-bottom: 8px;
}

.sf-price-label {
  display: block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--ink-light);
}

.sf-price-value {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
}

.sf-note {
  font-size: 0.72rem;
  color: var(--ink-light);
  font-style: italic;
}

.sf-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  padding: 48px 0;
  border-top: 1px solid var(--border);
}

.sf-cta img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
}

.sf-cta-text h2 {
  margin-bottom: 12px;
}

.sf-cta-text p {
  font-size: 0.92rem;
  color: var(--ink-light);
  margin-bottom: 20px;
}

.about-name-section {
  padding: 64px 0;
}

.about-name-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: start;
}

.about-name-text h2 {
  margin-bottom: 16px;
}

.about-name-text > p {
  font-size: 0.92rem;
  color: var(--ink-light);
  margin-bottom: 12px;
  line-height: 1.7;
}

.name-breakdown {
  margin: 24px 0;
  border: 1px solid var(--border);
  padding: 20px;
}

.nb-item {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.nb-item:last-child {
  border-bottom: none;
}

.nb-word {
  display: block;
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--terra);
  margin-bottom: 4px;
}

.nb-meaning {
  font-size: 0.85rem;
  color: var(--ink-light);
}

.about-name-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3/4;
  border-radius: var(--radius);
}

.about-story-section {
  padding: 64px 0;
  background: var(--white);
}

.about-story-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.about-story-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3/4;
  border-radius: var(--radius);
}

.about-story-text h2 {
  margin-bottom: 16px;
}

.about-story-text > p {
  font-size: 0.92rem;
  color: var(--ink-light);
  margin-bottom: 12px;
  line-height: 1.7;
}

.about-values {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.av-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.av-marker {
  color: var(--terra);
  font-size: 0.7rem;
  margin-top: 5px;
}

.av-item strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.av-item span:last-child {
  font-size: 0.82rem;
  color: var(--ink-light);
}

.about-numbers {
  padding: 48px 0;
  background: var(--ink);
}

.an-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.an-num {
  display: block;
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--sand);
}

.an-label {
  font-size: 0.78rem;
  color: rgba(250, 246, 240, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.blog-section {
  padding: 48px 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  border: 1px solid var(--border);
  background: var(--white);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  border-color: var(--terra);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(45, 41, 38, 0.1);
}

.blog-card-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.05);
}

.blog-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  background: var(--terra);
  color: var(--cream);
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.blog-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card-date {
  font-size: 0.72rem;
  color: var(--ink-light);
  margin-bottom: 8px;
}

.blog-card-body h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  line-height: 1.3;
}

.blog-card-body > p {
  font-size: 0.82rem;
  color: var(--ink-light);
  line-height: 1.5;
  flex: 1;
  margin-bottom: 12px;
}

.blog-card-cta {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--terra);
  transition: color 0.3s var(--ease);
}

.blog-card:hover .blog-card-cta {
  color: var(--terra-dark);
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(45, 41, 38, 0.7);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}

.modal-overlay.active {
  display: flex;
  opacity: 1;
}

.modal {
  background: var(--white);
  max-width: 720px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
  border-radius: var(--radius);
  transform: translateY(20px);
  transition: transform 0.3s var(--ease);
}

.modal-overlay.active .modal {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--ink);
  transition: all 0.3s var(--ease);
}

.modal-close:hover {
  background: var(--terra);
  color: var(--cream);
  border-color: var(--terra);
}

.modal-content h2 {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.modal-content p {
  font-size: 0.95rem;
  color: var(--ink-light);
  line-height: 1.7;
  margin-bottom: 12px;
}

.modal-content .modal-meta {
  font-size: 0.78rem;
  color: var(--terra);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.contact-page-section {
  padding: 48px 0;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: start;
}

.contact-form-col h2 {
  margin-bottom: 24px;
}

.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ci-block {
  border: 1px solid var(--border);
  padding: 24px;
  background: var(--white);
}

.ci-block h3 {
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.ci-block > p {
  font-size: 0.88rem;
  color: var(--ink-light);
  margin-bottom: 6px;
}

.ci-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.ci-item .material-symbols-outlined {
  font-size: 20px;
  color: var(--terra);
  margin-top: 2px;
}

.ci-item strong {
  display: block;
  font-size: 0.82rem;
}

.ci-item span {
  font-size: 0.85rem;
  color: var(--ink-light);
}

.ci-callback {
  background: var(--cream-dark);
}

.ci-callback > p {
  font-size: 0.85rem;
  color: var(--ink-light);
  margin-bottom: 16px;
}

.c-form-mini {
  gap: 12px;
}

.footer {
  margin-top: auto;
  background: var(--ink);
  color: rgba(250, 246, 240, 0.8);
  padding: 48px 0 24px;
}

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

.footer .logo-top {
  color: var(--sand);
}

.footer .logo-bottom {
  color: var(--cream);
}

.footer .logo-help {
  color: var(--sage-light);
}

.footer-brand > p {
  margin-top: 12px;
  font-size: 0.9rem;
  color: rgba(250, 246, 240, 0.5);
  max-width: 240px;
}

.footer h4 {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--sand);
  margin-bottom: 12px;
  font-family: var(--font-body);
}

.footer-nav ul,
.footer-docs ul {
  list-style: none;
}

.footer-nav li,
.footer-docs li {
  margin-bottom: 8px;
}

.footer-nav a,
.footer-docs a {
  color: rgba(250, 246, 240, 0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s var(--ease);
}

.footer-nav a:hover,
.footer-docs a:hover {
  color: var(--terra);
}

.footer-data p {
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: rgba(250, 246, 240, 0.6);
}

.footer-disclaimer {
  padding: 20px 0;
  border-top: 1px solid rgba(250, 246, 240, 0.1);
  margin-bottom: 16px;
}

.footer-disclaimer p {
  font-size: 0.8rem;
  color: rgba(250, 246, 240, 0.4);
  line-height: 1.6;
}

.footer-bottom {
  padding-top: 16px;
  border-top: 1px solid rgba(250, 246, 240, 0.1);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.9rem;
  color: rgba(250, 246, 240, 0.5);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--ink);
  color: var(--cream);
  padding: 16px 0;
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s var(--ease);
  border-top: 2px solid var(--terra);
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cookie-inner p {
  font-size: 0.82rem;
  color: rgba(250, 246, 240, 0.8);
}

.cookie-inner a {
  color: var(--sand);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
  word-break: break-word;
}

.legal-content h1 {
  font-size: 2rem;
  margin-bottom: 24px;
  color: var(--ink);
}

.legal-content h2 {
  font-size: 1.8rem;
  margin-top: 32px;
  margin-bottom: 12px;
}

.legal-content h3 {
  font-size: 1.4rem;
  margin-top: 24px;
  margin-bottom: 8px;
}

.legal-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 12px;
}

.legal-content ul,
.legal-content ol {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.legal-content li {
  margin-bottom: 8px;
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

.legal-date {
  font-size: 0.85rem;
  color: var(--ink-light);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.thanks-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  padding: 48px 20px;
}

.thanks-card {
  background: var(--white);
  padding: 48px 40px;
  border: 1px solid var(--border);
  border-top: 4px solid var(--terra);
  max-width: 640px;
  width: 100%;
  text-align: center;
}

.thanks-icon {
  margin-bottom: 16px;
}

.thanks-icon .material-symbols-outlined {
  font-size: 56px;
  color: var(--sage);
}

.thanks-card h1 {
  font-size: 2rem;
  margin-bottom: 8px;
}

.thanks-sub {
  font-size: 1.2rem;
  color: var(--ink-light);
  margin-bottom: 20px;
}

.thanks-order {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 32px;
  background: var(--cream-dark);
  border: 1px solid var(--border);
  margin-bottom: 20px;
}

.thanks-order-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--ink-light);
}

.thanks-order-num {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--terra);
}

.thanks-details {
  margin-bottom: 24px;
}

.thanks-details p {
  font-size: 0.95rem;
  color: var(--ink-light);
}

.thanks-steps {
  text-align: left;
  margin-bottom: 24px;
  border: 1px solid var(--border);
  padding: 24px;
}

.thanks-steps h3 {
  margin-bottom: 16px;
  font-size: 1.2rem;
}

.ts-item {
  display: flex;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.ts-item:last-child {
  border-bottom: none;
}

.ts-num {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--terra);
  color: var(--cream);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 50%;
  flex-shrink: 0;
}

.ts-item strong {
  display: block;
  font-size: 0.88rem;
  margin-bottom: 2px;
}

.ts-item span {
  font-size: 0.8rem;
  color: var(--ink-light);
}

.thanks-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  text-align: left;
  padding: 16px;
  background: var(--cream-dark);
  border-left: 3px solid var(--sage);
  margin-bottom: 24px;
}

.thanks-note .material-symbols-outlined {
  font-size: 18px;
  color: var(--sage);
  flex-shrink: 0;
  margin-top: 2px;
}

.thanks-note p {
  font-size: 0.8rem;
  color: var(--ink-light);
  line-height: 1.5;
}

.thanks-note a {
  color: var(--terra);
}

.thanks-links {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.thanks-page {
  background: var(--cream-dark);
}

[data-aos="fade-right"]:not(.aos-animate) {
  transform: translate3d(-32px, 0, 0) !important;
}

[data-aos="fade-left"]:not(.aos-animate) {
  transform: translate3d(32px, 0, 0) !important;
}

[data-aos="flip-left"]:not(.aos-animate) {
  transform: translate3d(0, 24px, 0) !important;
  opacity: 0;
}

[data-aos="flip-left"].aos-animate {
  transform: translate3d(0, 0, 0) !important;
}

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

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .voices-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .guarantee-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .an-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav {
    order: 3;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px 8px;
  }

  .nav-link {
    font-size: 0.82rem;
    padding: 6px 10px;
  }

  .header-right {
    margin-left: auto;
  }

  .hero-frame {
    padding: 32px 20px;
  }

  .hero-floats {
    gap: 16px;
  }

  .manifesto-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .manifesto-left {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .manifesto-left .section-num {
    font-size: 2rem;
    margin-bottom: 0;
  }

  .service-body {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .service-price {
    text-align: left;
  }

  .split-section {
    grid-template-columns: 1fr;
  }

  .split-img {
    min-height: 300px;
  }

  .split-content {
    padding: 32px 24px;
  }

  .callback-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-page-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-name-grid,
  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .sf-grid {
    grid-template-columns: 1fr;
  }

  .sf-cta {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .c-form-row {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .cookie-inner {
    flex-direction: column;
    text-align: center;
  }

  .modal {
    padding: 24px;
    max-height: 90vh;
  }

  .thanks-card {
    padding: 32px 20px;
  }

  .manifesto-section,
  .services-preview,
  .voices-section,
  .callback-section {
    padding: 40px 0;
  }
}

@media (max-width: 900px) {
  [data-aos] {
    transform: none !important;
    opacity: 1 !important;
    transition: none !important;
  }

  .manifesto-grid > *,
  .callback-grid > *,
  .split-section > *,
  .voices-grid > *,
  .services-list > *,
  .about-name-grid > *,
  .about-story-grid > *,
  .contact-page-grid > *,
  .sf-grid > *,
  .blog-grid > * {
    min-width: 0;
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .header-inner {
    flex-wrap: wrap;
    gap: 10px;
  }

  .nav {
    order: 3;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2px 6px;
  }

  .nav-link {
    font-size: 0.75rem;
    padding: 6px 8px;
  }

  .header-notice {
    word-break: break-all;
    white-space: normal;
    text-align: center;
  }

  .logo a {
    flex-direction: column;
  }

  .logo a span {
    word-break: break-all;
    min-width: 0;
    flex: 1;
  }

  .footer-col,
  .footer-data,
  .footer-brand p {
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-floats {
    flex-direction: column;
    align-items: center;
  }

  .split-stats {
    flex-direction: column;
  }

  .guarantee-grid {
    grid-template-columns: 1fr;
  }

  .an-grid {
    grid-template-columns: 1fr;
  }

  .thanks-links {
    flex-direction: column;
  }

  .c-form .btn {
    width: 100%;
    max-width: 100%;
  }

  .footer-bottom p {
    font-size: 0.85rem;
  }
}