:root {
  --ink: #16241f;
  --paper: #faf7f2;
  --panel: #ffffff;
  --teal: #1f4d43;
  --teal-dark: #123028;
  --gold: #c68a3b;
  --muted: #6b7a74;
  --border: #e4ddd0;
  --radius: 14px;
  --shadow: 0 12px 30px rgba(18, 48, 40, 0.08);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: Georgia, "Times New Roman", serif;
  margin: 0 0 0.5em;
  line-height: 1.2;
  color: var(--teal-dark);
}

p { margin: 0 0 1em; color: var(--ink); }

a { color: inherit; }

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

/* Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: 1120px;
  margin: 0 auto;
}

.brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.brand-name {
  font-family: Georgia, serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--teal-dark);
}

.brand-tag {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--teal);
  border-color: var(--gold);
}

.nav-cta {
  background: var(--teal);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  border-bottom: none !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--teal-dark);
}

/* Hero */
.hero {
  padding: 90px 24px 70px;
  background: radial-gradient(circle at 80% 20%, rgba(198, 138, 59, 0.12), transparent 55%),
              radial-gradient(circle at 10% 80%, rgba(31, 77, 67, 0.1), transparent 50%);
}

.hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 14px;
}

.hero h1 {
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  margin-bottom: 20px;
}

.hero-lead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 46ch;
}

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

.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

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

.btn-primary {
  background: var(--teal);
  color: #fff;
  box-shadow: var(--shadow);
}

.btn-secondary {
  background: transparent;
  color: var(--teal-dark);
  border: 1.5px solid var(--teal-dark);
}

.hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 40px;
}

.hero-stats div strong {
  display: block;
  font-family: Georgia, serif;
  font-size: 1.6rem;
  color: var(--teal-dark);
}

.hero-stats div span {
  font-size: 0.8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-card {
  background: var(--panel);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px;
  border: 1px solid var(--border);
  position: relative;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -14px -14px auto auto;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #e8b876);
  z-index: -1;
  opacity: 0.5;
}

.hero-card h3 { margin-bottom: 12px; }

.hero-card ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.hero-card li { margin-bottom: 10px; }

/* Sections */
section { padding: 70px 0; }

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 44px;
}

.section-head .eyebrow { display: block; text-align: center; }

.section-head p { color: var(--muted); }

.alt-bg { background: var(--panel); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

/* Cards grid */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.card-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-family: Georgia, serif;
}

.card h3 { font-size: 1.15rem; margin-bottom: 10px; }

.card p { color: var(--muted); font-size: 0.95rem; margin-bottom: 14px; }

.card-link {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--teal);
  text-decoration: none;
}

/* Two column */
.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.split-visual {
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  background: linear-gradient(160deg, var(--teal) 0%, var(--teal-dark) 60%, #0c1f1a 100%);
  position: relative;
  overflow: hidden;
}

.split-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(135deg, rgba(255,255,255,0.05) 0 2px, transparent 2px 22px);
}

.badge-float {
  position: absolute;
  bottom: 22px;
  left: 22px;
  right: 22px;
  background: rgba(250, 247, 242, 0.94);
  border-radius: 12px;
  padding: 16px 18px;
  box-shadow: var(--shadow);
}

.badge-float strong { display: block; color: var(--teal-dark); font-family: Georgia, serif; }
.badge-float span { font-size: 0.82rem; color: var(--muted); }

.check-list { list-style: none; padding: 0; margin: 22px 0; }

.check-list li {
  padding-left: 30px;
  position: relative;
  margin-bottom: 12px;
  color: var(--ink);
}

.check-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.testimonial {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
}

.testimonial p {
  font-style: italic;
  color: var(--ink);
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--teal));
  flex-shrink: 0;
}

.testimonial-person strong { display: block; font-size: 0.9rem; }
.testimonial-person span { font-size: 0.78rem; color: var(--muted); }

/* Blog preview */
.post-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.post-thumb {
  height: 140px;
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
}

.post-body { padding: 22px; }

.post-meta {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 8px;
}

/* CTA band */
.cta-band {
  background: linear-gradient(120deg, var(--teal-dark), var(--teal));
  color: #fff;
  border-radius: var(--radius);
  padding: 50px;
  text-align: center;
}

.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,0.82); max-width: 50ch; margin-left: auto; margin-right: auto; }

.cta-band .btn-secondary {
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}

/* Footer */
.site-footer {
  background: var(--teal-dark);
  color: rgba(255,255,255,0.78);
  padding: 56px 0 26px;
  margin-top: 40px;
}

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

.site-footer h4 { color: #fff; font-size: 0.95rem; margin-bottom: 16px; }

.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 10px; font-size: 0.9rem; }
.site-footer a { text-decoration: none; color: rgba(255,255,255,0.78); }
.site-footer a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  flex-wrap: wrap;
  gap: 10px;
}

/* Page header (inner pages) */
.page-header {
  padding: 60px 0 40px;
  text-align: center;
  background: linear-gradient(180deg, rgba(31,77,67,0.06), transparent);
}

.page-header h1 { font-size: clamp(2rem, 4vw, 2.6rem); }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-form { display: grid; gap: 16px; }

.contact-form label {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid var(--border);
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--panel);
}

.contact-form textarea { resize: vertical; min-height: 130px; }

.info-list { list-style: none; padding: 0; }
.info-list li {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  color: var(--muted);
}
.info-list strong { display: block; color: var(--ink); }

@media (max-width: 900px) {
  .hero-inner, .split, .contact-grid { grid-template-columns: 1fr; }
  .grid, .testimonial-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .grid, .testimonial-grid, .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 60px 0 50px; }
  section { padding: 50px 0; }
  .cta-band { padding: 34px 20px; }
}

body.nav-open .nav-links {
  display: flex;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--paper);
  flex-direction: column;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  gap: 16px;
}
