:root {
  --bg: #f7f1e7;
  --bg-soft: #fbf7f0;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: #fffaf2;
  --ink: #1b1d1f;
  --muted: #5d625f;
  --line: rgba(27, 29, 31, 0.1);
  --brand: #0f5b52;
  --brand-deep: #0a3d38;
  --accent: #c48a3a;
  --shadow: 0 24px 60px rgba(16, 33, 31, 0.12);
  --radius-lg: 28px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(196, 138, 58, 0.22), transparent 26%),
    radial-gradient(circle at top right, rgba(15, 91, 82, 0.16), transparent 28%),
    linear-gradient(180deg, #fffaf4 0%, #f7f1e7 52%, #f4ede3 100%);
  min-height: 100vh;
}

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

.site-shell {
  position: relative;
  overflow: hidden;
}

.site-shell::before,
.site-shell::after {
  content: "";
  position: fixed;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  filter: blur(18px);
  pointer-events: none;
  z-index: -1;
}

.site-shell::before {
  top: -10rem;
  right: -8rem;
  background: rgba(196, 138, 58, 0.14);
}

.site-shell::after {
  bottom: -12rem;
  left: -10rem;
  background: rgba(15, 91, 82, 0.12);
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.narrow {
  max-width: 760px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(14px);
  background: rgba(251, 247, 240, 0.76);
  border-bottom: 1px solid rgba(27, 29, 31, 0.06);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  min-height: 88px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.82rem;
}

.brand-mark {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 16px 28px rgba(10, 61, 56, 0.18);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
}

.site-nav a {
  color: var(--muted);
  font-weight: 600;
  transition: color 160ms ease, transform 160ms ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--ink);
  transform: translateY(-1px);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), #116f62);
  box-shadow: 0 18px 30px rgba(15, 91, 82, 0.22);
}

.button-secondary {
  color: var(--ink);
  border-color: rgba(27, 29, 31, 0.12);
  background: rgba(255, 255, 255, 0.55);
}

.button-light {
  color: var(--brand-deep);
  background: #f6efe5;
}

.button-outline-light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
  background: transparent;
}

.hero,
.page-hero {
  padding: 5.4rem 0 3.2rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--brand);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0 0 1rem;
  line-height: 1.04;
  letter-spacing: -0.03em;
}

h1,
h2 {
  font-family: "Fraunces", Georgia, serif;
}

h1 {
  font-size: clamp(2.8rem, 4vw, 5rem);
}

h2 {
  font-size: clamp(2rem, 2.6vw, 3rem);
}

h3 {
  font-size: 1.2rem;
}

p {
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.75;
}

.lead {
  font-size: 1.09rem;
  max-width: 62ch;
}

.hero-actions,
.section-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero-points,
.footer-links,
.detail-list {
  list-style: none;
  padding: 0;
  margin: 1.4rem 0 0;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-points li {
  padding: 0.7rem 1rem;
  border: 1px solid rgba(27, 29, 31, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.54);
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 700;
}

.hero-card,
.info-panel,
.feature-card,
.service-card,
.process-card,
.aside-card,
.legal-card,
.faq-item,
.contact-card,
.service-detail {
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero-card {
  position: relative;
  padding: 1.25rem;
  overflow: hidden;
}

.hero-card-glow {
  position: absolute;
  left: -4rem;
  bottom: -4rem;
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 138, 58, 0.35), transparent 70%);
}

.info-panel {
  padding: 2rem;
  background: linear-gradient(180deg, rgba(255, 250, 242, 0.92), rgba(245, 237, 227, 0.88));
}

.panel-label {
  margin-bottom: 0.8rem;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-list {
  margin: 1.6rem 0 0;
  display: grid;
  gap: 1rem;
}

.contact-list div {
  padding-bottom: 0.95rem;
  border-bottom: 1px solid var(--line);
}

.contact-list div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.contact-list dt {
  margin-bottom: 0.35rem;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.contact-list dd {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.55;
}

.section {
  padding: 2.4rem 0 4rem;
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-bottom: 2rem;
}

.feature-grid,
.service-grid,
.process-grid,
.contact-grid {
  display: grid;
  gap: 1.2rem;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-grid,
.contact-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.service-card,
.process-card,
.contact-card,
.service-detail,
.legal-card,
.faq-item {
  padding: 1.7rem;
}

.section-accent {
  position: relative;
}

.section-accent::before {
  content: "";
  position: absolute;
  inset: 1.2rem 0;
  background: linear-gradient(135deg, rgba(255, 250, 242, 0.78), rgba(239, 216, 176, 0.26));
  border-top: 1px solid rgba(196, 138, 58, 0.14);
  border-bottom: 1px solid rgba(15, 91, 82, 0.08);
  z-index: -1;
}

.process-card span {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 14px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), #b97520);
}

.section-dark {
  padding-bottom: 5rem;
}

.cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 2rem;
  border-radius: 32px;
  background: linear-gradient(145deg, rgba(15, 91, 82, 0.95), rgba(10, 61, 56, 0.98));
  box-shadow: 0 28px 60px rgba(10, 61, 56, 0.25);
}

.cta-banner h2,
.cta-banner p {
  color: #fff;
}

.cta-banner .eyebrow {
  color: rgba(255, 255, 255, 0.7);
}

.site-footer {
  padding: 1rem 0 2rem;
  border-top: 1px solid rgba(27, 29, 31, 0.08);
  background: rgba(251, 247, 240, 0.58);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 0.9fr;
  gap: 1.5rem;
  padding: 2rem 0;
}

.brand-footer {
  margin-bottom: 1rem;
}

.footer-text,
.footer-note {
  max-width: 48ch;
}

.footer-note {
  color: var(--ink);
  font-weight: 700;
}

.footer-links li {
  margin-bottom: 0.8rem;
  color: var(--muted);
}

.footer-bottom {
  padding-top: 1.2rem;
  border-top: 1px solid rgba(27, 29, 31, 0.08);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: 1.4rem;
  align-items: start;
}

.aside-card {
  padding: 1.7rem;
}

.detail-list li {
  margin-bottom: 0.9rem;
  line-height: 1.6;
  color: var(--muted);
}

.service-stack,
.legal-stack,
.faq-list {
  display: grid;
  gap: 1rem;
}

.service-detail,
.faq-item,
.legal-card {
  background: rgba(255, 251, 245, 0.82);
}

.contact-grid .contact-card h2 {
  font-size: 1.5rem;
}

@media (max-width: 1040px) {
  .hero-grid,
  .two-column,
  .footer-grid,
  .feature-grid,
  .service-grid,
  .contact-grid,
  .process-grid,
  .cta-banner {
    grid-template-columns: 1fr;
  }

  .cta-banner {
    display: grid;
  }

  .nav-cta {
    display: none;
  }
}

@media (max-width: 760px) {
  .nav-bar {
    padding: 0.9rem 0;
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    justify-content: flex-start;
    gap: 0.8rem 1rem;
  }

  .hero,
  .page-hero {
    padding-top: 3.8rem;
  }

  h1 {
    font-size: clamp(2.35rem, 11vw, 3.3rem);
  }

  h2 {
    font-size: clamp(1.75rem, 9vw, 2.4rem);
  }

  .button,
  .hero-actions .button,
  .cta-actions .button {
    width: 100%;
  }

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

  .section {
    padding: 2rem 0 3.4rem;
  }
}
