*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --cream:      #faf8f4;
  --cream-dark: #f0ece3;
  --denim:      #2c3e6b;
  --denim-mid:  #3d5a80;
  --denim-light:#5b78a4;
  --gold:       #b8902a;
  --gold-light: #d4ab47;
  --text:       #1c1c1c;
  --text-muted: #5c5c5c;
  --border:     #ddd8cc;
  --white:      #ffffff;
  --radius:     8px;
  --radius-lg:  16px;
  --shadow:     0 2px 16px rgba(44,62,107,0.09);
  --shadow-md:  0 6px 32px rgba(44,62,107,0.13);
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Georgia', 'Times New Roman', serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
}
a {
  color: var(--denim-mid);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: var(--gold);
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
section {
  padding: 80px 0;
}
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250,248,244,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.site-nav.scrolled {
  box-shadow: 0 2px 20px rgba(44,62,107,0.10);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.nav-logo {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--denim);
  letter-spacing: 0.03em;
  text-decoration: none;
}
.nav-logo span {
  color: var(--gold);
}
.nav-cta {
  background: var(--denim);
  color: var(--white);
  padding: 10px 22px;
  border-radius: var(--radius);
  font-family: 'Georgia', serif;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.15s;
}
.nav-cta:hover {
  background: var(--denim-mid);
  color: var(--white);
  transform: translateY(-1px);
}
.hero {
  padding-top: 100px;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  background: linear-gradient(145deg, var(--cream) 60%, var(--cream-dark) 100%);
}
.hero-content {
  padding: 40px 0;
}
.hero-label {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-family: 'Georgia', serif;
}
.hero h1 {
  font-size: clamp(2.1rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--denim);
  line-height: 1.22;
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: normal;
  color: var(--gold);
}
.hero-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-image-wrap {
  position: relative;
}
.hero-image-wrap img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.hero-badge {
  position: absolute;
  bottom: 28px;
  left: -20px;
  background: var(--white);
  border-radius: 12px;
  padding: 14px 20px;
  box-shadow: var(--shadow-md);
  font-size: 0.85rem;
  color: var(--denim);
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-badge svg {
  color: var(--gold);
  flex-shrink: 0;
}
.form-block {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.form-block h3 {
  font-size: 1.2rem;
  color: var(--denim);
  margin-bottom: 6px;
}
.form-block p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.form-field {
  margin-bottom: 16px;
}
.form-field label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.form-field input,
.form-field select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Georgia', serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--cream);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
}
.form-field input:focus,
.form-field select:focus {
  border-color: var(--denim-light);
  box-shadow: 0 0 0 3px rgba(61,90,128,0.1);
}
.form-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.form-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--denim);
  cursor: pointer;
}
.form-consent label {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
}
.form-consent a {
  color: var(--denim-mid);
  text-decoration: underline;
}
.btn-primary {
  display: block;
  width: 100%;
  padding: 16px;
  background: var(--denim);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-family: 'Georgia', serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  text-align: center;
}
.btn-primary:hover {
  background: var(--denim-mid);
  transform: translateY(-2px);
}
.btn-primary:active {
  transform: translateY(0);
}
.form-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 14px;
}
.audience {
  background: var(--denim);
  color: var(--white);
}
.section-label {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: block;
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.25;
}
.audience .section-title {
  color: var(--white);
}
.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.audience-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: background 0.2s;
}
.audience-card:hover {
  background: rgba(255,255,255,0.12);
}
.audience-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  color: var(--gold-light);
}
.audience-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--white);
}
.audience-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.5;
}
.how-it-works {
  background: var(--cream);
}
.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 48px;
}
.how-image img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.how-steps {
  list-style: none;
  counter-reset: steps;
}
.step-item {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
  counter-increment: steps;
}
.step-num {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--denim);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  flex-shrink: 0;
}
.step-body h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--denim);
  margin-bottom: 6px;
}
.step-body p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.portfolio {
  background: var(--cream-dark);
}
.portfolio-intro {
  max-width: 580px;
  margin-bottom: 48px;
}
.portfolio-intro .section-desc {
  font-size: 1rem;
  color: var(--text-muted);
  margin-top: 12px;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.portfolio-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.portfolio-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.portfolio-item:hover img {
  transform: scale(1.04);
}
.portfolio-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(28,28,28,0.75));
  padding: 32px 16px 16px;
  color: var(--white);
  font-size: 0.85rem;
  opacity: 0;
  transition: opacity 0.3s;
}
.portfolio-item:hover .portfolio-caption {
  opacity: 1;
}
.learn {
  background: var(--cream);
}
.learn-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.learn-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s, transform 0.2s;
}
.learn-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.learn-num {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--cream-dark);
  line-height: 1;
  margin-bottom: 12px;
}
.learn-card h4 {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--denim);
  margin-bottom: 8px;
}
.learn-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.faq {
  background: var(--cream-dark);
}
.faq-list {
  margin-top: 48px;
  max-width: 760px;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 24px 0;
  font-family: 'Georgia', serif;
  font-size: 1rem;
  color: var(--denim);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-weight: 600;
}
.faq-question:hover {
  color: var(--gold);
}
.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform 0.3s;
  color: var(--gold);
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.faq-answer-inner {
  padding-bottom: 24px;
}
.faq-item.open .faq-answer {
  max-height: 300px;
}
.cta-section {
  background: linear-gradient(135deg, var(--denim) 0%, #1c2d52 100%);
  color: var(--white);
  text-align: center;
  padding: 100px 0;
}
.cta-section .section-title {
  color: var(--white);
  max-width: 560px;
  margin: 0 auto 16px;
}
.cta-desc {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  margin: 0 auto 40px;
  max-width: 480px;
}
.btn-gold {
  display: inline-block;
  padding: 18px 40px;
  background: var(--gold);
  color: var(--white);
  border-radius: var(--radius);
  font-family: 'Georgia', serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: background 0.2s, transform 0.15s;
  text-decoration: none;
}
.btn-gold:hover {
  background: var(--gold-light);
  color: var(--white);
  transform: translateY(-2px);
}
.site-footer {
  background: var(--denim);
  color: rgba(255,255,255,0.7);
  padding: 48px 0 32px;
  font-size: 0.85rem;
  line-height: 1.7;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-brand .nav-logo {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--white);
  font-size: 1.1rem;
}
.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 0.82rem;
  max-width: 280px;
}
.footer-col h5 {
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 8px;
}
.footer-col ul li a {
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.footer-col ul li a:hover {
  color: var(--gold-light);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
}
.footer-legal {
  font-size: 0.79rem;
  color: rgba(255,255,255,0.45);
}
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--denim);
  color: var(--white);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.15);
  transform: translateY(0);
  transition: transform 0.4s ease;
}
#cookie-banner.hidden {
  transform: translateY(100%);
}
.cookie-text {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.85);
  flex: 1;
  min-width: 260px;
}
.cookie-text a {
  color: var(--gold-light);
  text-decoration: underline;
}
.cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.btn-cookie-accept {
  padding: 10px 24px;
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-family: 'Georgia', serif;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-cookie-accept:hover {
  background: var(--gold-light);
}
.btn-cookie-decline {
  padding: 10px 16px;
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--radius);
  font-family: 'Georgia', serif;
  font-size: 0.88rem;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}
.btn-cookie-decline:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--cream) 60%, var(--cream-dark) 100%);
  text-align: center;
  padding: 40px 24px;
}
.success-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  max-width: 520px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.success-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 28px;
  background: var(--denim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.success-icon svg {
  color: var(--white);
  width: 36px;
  height: 36px;
}
.success-card h1 {
  font-size: 1.7rem;
  color: var(--denim);
  margin-bottom: 14px;
}
.success-card p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 32px;
  line-height: 1.65;
}
.legal-page {
  padding-top: 100px;
  min-height: 100vh;
  background: var(--cream);
}
.legal-content {
  max-width: 760px;
  padding: 60px 0 80px;
}
.legal-content h1 {
  font-size: 2rem;
  color: var(--denim);
  margin-bottom: 10px;
}
.legal-date {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  display: block;
}
.legal-content h2 {
  font-size: 1.15rem;
  color: var(--denim);
  margin: 36px 0 12px;
}
.legal-content p,
.legal-content li {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 12px;
}
.legal-content ul {
  margin-left: 24px;
  margin-bottom: 12px;
}
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 100px 0 60px;
    gap: 40px;
  }
  .hero-image-wrap {
    order: -1;
  }
  .hero-image-wrap img {
    height: 420px;
  }
  .hero-badge {
    left: 12px;
    bottom: 16px;
  }
  .how-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .portfolio-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}
@media (max-width: 600px) {
  section {
    padding: 60px 0;
  }
  .hero h1 {
    font-size: 1.85rem;
  }
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  .portfolio-item img {
    height: 260px;
  }
  .form-block {
    padding: 28px 20px;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .success-card {
    padding: 40px 24px;
  }
  .cta-section {
    padding: 72px 0;
  }
  #cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }
  .cookie-actions {
    width: 100%;
  }
  .btn-cookie-accept,
  .btn-cookie-decline {
    flex: 1;
    text-align: center;
  }
}