:root {
  --bg: #f8f5ef;
  --bg-soft: #f3eee6;
  --surface: #ffffff;
  --surface-alt: #fbfaf7;
  --text: #16202a;
  --muted: #5f6b76;
  --line: #d9d2c6;
  --accent: #b08d57;
  --accent-strong: #8f6e3f;
  --brand: #102c3c;
  --brand-strong: #0b2230;
  --shadow: 0 18px 45px rgba(16, 27, 36, 0.08);
  --radius: 20px;
  --radius-sm: 12px;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: linear-gradient(180deg, #f8f5ef 0%, #f3eee6 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

img {
  max-width: 100%;
  display: block;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(248, 245, 239, 0.9);
  border-bottom: 1px solid rgba(16, 44, 60, 0.08);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--brand-strong);
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--brand) 0%, #1b4258 100%);
  color: #f8f5ef;
  font-weight: 800;
  box-shadow: var(--shadow);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  color: var(--muted);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--brand-strong);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--text);
  border-radius: 12px;
  padding: 0.7rem 0.9rem;
  cursor: pointer;
}

.hero {
  padding: 6.5rem 0 4.5rem;
  background: linear-gradient(135deg, rgba(16,44,60,0.96), rgba(11,34,48,0.94));
  color: #f8f5ef;
}

.hero h1,
.hero p,
.hero .eyebrow {
  color: #f8f5ef;
}

.hero .eyebrow {
  color: #d8c19a;
}

.hero-content {
  max-width: 780px;
}

.hero-text,
.hero-subtext {
  max-width: 760px;
  font-size: 1.05rem;
}

.hero-subtext {
  color: rgba(248, 245, 239, 0.84);
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 1rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

h1,
h2,
h3 {
  margin: 0 0 1rem;
  line-height: 1.08;
  color: var(--brand-strong);
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2.8rem, 5vw, 5rem);
  max-width: 12ch;
}

h2 {
  font-size: clamp(2rem, 3.5vw, 3.1rem);
  max-width: 16ch;
}

h3 {
  font-size: 1.2rem;
}

p,
li,
input,
textarea,
button,
span {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.95rem 1.3rem;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  cursor: pointer;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: #111827;
}

.btn-secondary {
  background: transparent;
  border-color: rgba(248, 245, 239, 0.35);
  color: #f8f5ef;
}

.contact-secondary {
  background: #ffffff;
  border-color: var(--line);
  color: var(--brand-strong);
}

.credibility-strip {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.credibility-strip p {
  margin: 0 0 10px;
  color: var(--muted);
  font-weight: 600;
}

.credibility-items,
.client-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.credibility-items span,
.client-list span {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--text);
  font-size: 0.95rem;
}

.section {
  padding: 4.5rem 0;
}

.section-alt {
  background: var(--surface-alt);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2.25rem;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
}

.narrow {
  max-width: 720px;
}

.service-grid,
.value-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

.service-card,
.value-card,
.process-step,
.cta-box,
.contact-form {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(16, 44, 60, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.service-card,
.value-card,
.process-step,
.cta-box {
  padding: 1.5rem;
}

.service-card p,
.value-card p,
.process-step p,
.cta-box p {
  color: var(--muted);
}

.service-card ul {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
}

.service-card li {
  margin-bottom: 0.6rem;
}

.process-step span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: rgba(176, 141, 87, 0.14);
  color: var(--accent-strong);
  font-weight: 700;
}

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

.cta-box {
  background: linear-gradient(135deg, #102c3c 0%, #16384b 100%);
}

.cta-box h1,
.cta-box h2,
.cta-box p,
.cta-box .eyebrow {
  color: #f8f5ef;
}

.contact-form {
  max-width: 860px;
  padding: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-row textarea,
.form-row input {
  width: 100%;
}

.form-row:has(textarea),
.form-row input:only-child {
  grid-column: 1 / -1;
}

input,
textarea {
  padding: 0.95rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--text);
  font-size: 1rem;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(16, 44, 60, 0.08);
}

.contact-note {
  margin-top: 0.85rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer {
  padding: 2rem 0 3rem;
  border-top: 1px solid rgba(16, 44, 60, 0.08);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .service-grid,
  .value-grid,
  .process-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 0.75rem);
    right: 1rem;
    left: 1rem;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    background: rgba(248, 245, 239, 0.98);
    border: 1px solid var(--line);
    border-radius: 18px;
    display: none;
  }

  .nav-links.is-open {
    display: flex;
  }

  .menu-toggle {
    display: inline-flex;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 5rem;
  }

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