:root {
  --bg: #f6f0e8;
  --bg-soft: #fbf7f2;
  --surface: rgba(255, 251, 245, 0.88);
  --surface-strong: #fffaf4;
  --surface-dark: #17120d;
  --surface-dark-soft: #251b14;
  --text: #241a14;
  --muted: #6b5c50;
  --light-text: #fff3e3;
  --light-muted: rgba(255, 243, 227, 0.72);
  --gold: #c9a06f;
  --gold-soft: rgba(201, 160, 111, 0.16);
  --border: rgba(80, 58, 40, 0.12);
  --shadow: 0 24px 80px rgba(31, 20, 12, 0.1);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(201, 160, 111, 0.18), transparent 24%),
    linear-gradient(180deg, #fcf8f3 0%, var(--bg) 100%);
  color: var(--text);
  line-height: 1.7;
}

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

a {
  color: inherit;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

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

.brand img {
  width: min(220px, 45vw);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-links-wrapper {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.mobile-menu-toggle,
.mobile-menu-button {
  display: none;
}

.site-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
}

.site-nav a:hover {
  color: var(--text);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, #d6b183 0%, #b78757 100%);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 16px 36px rgba(141, 98, 57, 0.2);
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 40px rgba(141, 98, 57, 0.24);
}

.button-header {
  background: transparent;
  color: var(--text);
  border-color: rgba(0, 0, 0, 0.15);
  box-shadow: none;
}

.button-ghost {
  background: transparent;
  border-color: rgba(255, 243, 227, 0.2);
  box-shadow: none;
}

.button-ghost:hover {
  background: rgba(255, 243, 227, 0.1);
}

.button-header:hover {
  background: rgba(0, 0, 0, 0.05);
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--surface-dark);
  min-height: calc(100svh - 40px);
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(16, 11, 8, 0.8) 0%, rgba(16, 11, 8, 0.3) 50%, rgba(16, 11, 8, 0) 100%),
    linear-gradient(180deg, rgba(16, 11, 8, 0.1) 0%, rgba(16, 11, 8, 0.4) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 5rem;
  padding-bottom: 2rem;
}

.hero-copy {
  max-width: 50rem;
}

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

.eyebrow-light {
  color: #f0d1aa;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.06;
}

h1,
h2 {
  font-weight: 600;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  color: var(--light-text);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(2.5rem, 4vw, 4.25rem);
}

h3 {
  font-size: 1.18rem;
}

.lead {
  max-width: 58ch;
  margin: 1.4rem 0 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.section {
  padding: 5.5rem 0;
}

.section-heading {
  max-width: 35rem;
}

.section-heading-centered {
  max-width: 48rem;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: start;
}

.about-cards {
  display: grid;
  gap: 1rem;
}

.about-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 244, 0.88);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.about-card p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.about-card a {
  font-weight: 600;
}

.about-card-accent {
  background:
    linear-gradient(135deg, rgba(201, 160, 111, 0.12), rgba(201, 160, 111, 0.03)),
    rgba(255, 250, 244, 0.92);
}

.proof-section {
  padding-top: 0;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.proof-card {
  padding: 1.6rem;
  border-radius: var(--radius-md);
  background: var(--surface-strong);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.proof-value {
  display: block;
  font-size: 2.6rem;
  line-height: 1;
}

.proof-label {
  display: block;
  margin-top: 0.7rem;
  color: var(--muted);
}

.services-section {
  background:
    linear-gradient(180deg, rgba(36, 26, 20, 0.03), rgba(36, 26, 20, 0.08));
}

.services-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.service-card {
  padding: 1.7rem;
  border-radius: var(--radius-md);
  background: rgba(255, 250, 244, 0.94);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.service-feature {
  grid-column: span 2;
  background:
    linear-gradient(135deg, rgba(201, 160, 111, 0.12), rgba(201, 160, 111, 0.04)),
    rgba(255, 250, 244, 0.96);
}

.service-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.8rem;
  height: 2.8rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: var(--gold-soft);
  color: var(--text);
  font-weight: 700;
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.vision-section {
  background: transparent;
}

.vision-shell {
  padding: 3rem;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
    linear-gradient(135deg, var(--surface-dark) 0%, var(--surface-dark-soft) 100%);
  box-shadow: 0 26px 90px rgba(24, 16, 10, 0.18);
}

.vision-header {
  max-width: 46rem;
  margin-bottom: 2rem;
}

.vision-header h2 {
  color: var(--light-text);
}

.vision-header p:last-child {
  color: var(--light-muted);
}

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

.vision-card {
  padding: 1.8rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 244, 228, 0.08);
  border: 1px solid rgba(255, 244, 228, 0.1);
}

.vision-label {
  display: inline-flex;
  margin-bottom: 0.9rem;
  color: #f0d1aa;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.vision-card h3 {
  color: var(--light-text);
}

.vision-card p {
  margin-bottom: 0;
  color: var(--light-muted);
}

.vision-quote {
  margin-top: 1rem;
  padding: 1.5rem 1.75rem;
  border-radius: var(--radius-lg);
  background: rgba(201, 160, 111, 0.14);
  color: #fff1dd;
  font-size: 1.08rem;
}

.contact-section {
  padding-top: 0;
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  gap: 1.5rem;
  align-items: start;
}

.contact-copy {
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: var(--surface-strong);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.contact-copy p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contact-card {
  padding: 1.6rem;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(201, 160, 111, 0.12), rgba(201, 160, 111, 0.03)),
    rgba(255, 250, 244, 0.96);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.contact-card-large {
  grid-column: span 2;
}

.contact-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.contact-card a {
  font-weight: 600;
  text-decoration: none;
}

.contact-card a:hover {
  text-decoration: underline;
}

@media (max-width: 1100px) {
  .services-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-feature {
    grid-column: span 2;
  }
}

@media (max-width: 900px) {
  .nav-links-wrapper {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(18px);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: -1;
  }

  .site-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .mobile-menu-button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 32px;
    height: 32px;
    cursor: pointer;
    z-index: 50;
  }

  .mobile-menu-button span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text);
    transition: all 0.3s ease;
  }

  .mobile-menu-toggle:checked ~ .nav-links-wrapper {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .mobile-menu-toggle:checked ~ .mobile-menu-button span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .mobile-menu-toggle:checked ~ .mobile-menu-button span:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-toggle:checked ~ .mobile-menu-button span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero {
    min-height: auto;
  }

  .about-grid,
  .proof-grid,
  .services-layout,
  .vision-grid,
  .contact-shell,
  .contact-cards {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding-top: 8rem;
    padding-bottom: 4rem;
  }

  .service-feature,
  .contact-card-large {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  .nav {
    min-height: 76px;
  }

  .button {
    width: 100%;
  }

  h1 {
    font-size: clamp(2.2rem, 9vw, 2.8rem);
  }

  h2 {
    font-size: clamp(2.1rem, 8vw, 3rem);
  }

  .hero-content {
    padding-top: 7rem;
    padding-bottom: 3rem;
  }

  .about-card,
  .service-card,
  .vision-shell,
  .contact-copy,
  .contact-card {
    padding: 1.4rem;
  }

  .section {
    padding: 4rem 0;
  }

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