:root {
  --saffron-700: #b45309;
  --saffron-600: #d97706;
  --saffron-300: #fde6b8;
  --cream-50: #fffdf8;
  --cream-100: #fbf6ed;
  --cream-150: #f7eddc;
  --ink-900: #332416;
  --ink-700: #644a32;
  --ink-500: #8a6a4a;
  --border: #e8d4af;
  --shadow: rgba(90, 55, 14, 0.12);
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  background:
    radial-gradient(circle at top right, rgba(253, 230, 184, 0.65), transparent 30%),
    linear-gradient(180deg, #fbf6ed 0%, #fffdf8 100%);
  color: var(--ink-900);
}

a {
  color: inherit;
  text-decoration: none;
}

.site-shell {
  width: min(var(--max-width), calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0 10px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.brand-kicker {
  display: block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--saffron-600);
  margin-bottom: 4px;
}

.brand strong {
  font-size: 20px;
  color: var(--ink-900);
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  color: var(--ink-700);
}

.nav a:hover {
  color: var(--ink-900);
}

.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--saffron-600);
  color: white;
  font-weight: 700;
  box-shadow: 0 10px 24px var(--shadow);
}

.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 32px;
  align-items: stretch;
  padding: 34px 0 48px;
}

.hero-copy,
.hero-card,
.service-card,
.contact-card,
.trust-list article {
  background: rgba(255, 253, 248, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  box-shadow: 0 22px 44px var(--shadow);
}

.hero-copy {
  border-radius: 30px;
  padding: 38px;
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--saffron-600);
}

.hero-copy h1,
.section-heading h2 {
  margin: 16px 0 0;
  line-height: 1.08;
  font-size: clamp(2.3rem, 4vw, 4.1rem);
  letter-spacing: -0.04em;
}

.hero-copy p {
  margin: 18px 0 0;
  max-width: 58ch;
  color: var(--ink-700);
  font-size: 1.03rem;
  line-height: 1.8;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--saffron-600);
  color: #fff;
  box-shadow: 0 14px 28px var(--shadow);
}

.btn-secondary {
  background: var(--cream-50);
  color: var(--saffron-600);
  border: 1px solid var(--saffron-600);
}

.hero-points {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 12px;
}

.hero-points li {
  position: relative;
  padding-left: 28px;
  color: var(--ink-700);
  font-weight: 600;
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--saffron-600), var(--saffron-700));
}

.hero-card {
  border-radius: 30px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-card-top {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--saffron-600);
  color: white;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pill-soft {
  background: var(--saffron-300);
  color: var(--saffron-700);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.metric-grid article {
  background: var(--cream-100);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 18px;
}

.metric-grid strong {
  display: block;
  font-size: 1.3rem;
  color: var(--ink-900);
}

.metric-grid span,
.highlight-card p,
.service-card p,
.trust-copy p,
.trust-list article span,
.contact-card p,
.contact-card li,
.footer p {
  color: var(--ink-700);
  line-height: 1.7;
}

.highlight-card {
  background: linear-gradient(180deg, rgba(253, 230, 184, 0.52), rgba(255, 249, 240, 0.7));
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 24px;
}

.highlight-card h3,
.service-card h3,
.contact-card h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.section {
  padding: 30px 0 16px;
}

.section-heading {
  max-width: 700px;
}

.section-heading h2 {
  font-size: clamp(1.9rem, 3vw, 3rem);
}

.service-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.service-card,
.contact-card {
  border-radius: 26px;
  padding: 26px;
}

.trust-section {
  margin-top: 12px;
}

.trust-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 26px;
}

.trust-copy {
  padding: 10px 2px;
}

.trust-list {
  display: grid;
  gap: 14px;
}

.trust-list article {
  border-radius: 22px;
  padding: 20px;
}

.trust-list article strong {
  display: block;
  margin-bottom: 6px;
}

.social-shell {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 18px;
  margin-top: 26px;
}

.social-copy {
  padding: 8px 2px;
}

.social-grid {
  display: grid;
  gap: 14px;
}

.social-feed-card {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 253, 248, 0.9);
  border: 1px solid var(--border);
  box-shadow: 0 18px 36px var(--shadow);
}

.social-feed-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.social-platform {
  display: flex;
  align-items: center;
  gap: 16px;
}

.social-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--saffron-600), var(--saffron-700));
  color: #fff;
  font-weight: 800;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.social-platform strong {
  display: block;
  margin-bottom: 4px;
}

.social-platform span:last-child,
.social-link,
.social-post p,
.social-post time {
  color: var(--ink-700);
}

.social-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--saffron-600);
  white-space: nowrap;
}

.social-post-list {
  display: grid;
  gap: 14px;
}

.social-post {
  padding: 18px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(253, 230, 184, 0.36), rgba(255, 253, 248, 0.7));
  border: 1px solid var(--border);
}

.post-tag {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--cream-50);
  border: 1px solid var(--border);
  color: var(--saffron-700);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.social-post h3 {
  margin: 14px 0 8px;
  font-size: 1rem;
}

.social-post p {
  margin: 0;
  line-height: 1.7;
}

.social-post time {
  display: block;
  margin-top: 12px;
  font-size: 12px;
  font-weight: 700;
}

.contact-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 36px 0 44px;
  margin-top: 20px;
  border-top: 1px solid var(--border);
}

.footer strong {
  display: block;
  margin-bottom: 8px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: flex-start;
  color: var(--ink-700);
  font-weight: 600;
}

@media (max-width: 980px) {
  .hero,
  .trust-layout,
  .social-shell,
  .service-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .site-shell {
    width: min(var(--max-width), calc(100% - 20px));
  }

  .hero-copy,
  .hero-card,
  .service-card,
  .contact-card {
    padding: 22px;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
  }

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

  .footer {
    flex-direction: column;
  }
}
