:root {
  --bg: #fdfaf3;
  --bg-alt: #f6f0e7;
  --text: #2b2523;
  --muted: #6e6662;
  --accent: #c9a35a;
  --accent-soft: rgba(201, 163, 90, 0.12);
  --border: #d4cbc3;
  --radius-lg: 20px;
  --radius-md: 12px;
  --shadow-soft: 0 18px 50px rgba(0, 0, 0, 0.07);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

/* Layout helpers */

.container {
  max-width: 1120px;
  padding: 0 1.5rem;
  margin: 0 auto;
}

.section {
  padding: 4.5rem 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section h2 {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.section-intro {
  max-width: 600px;
  color: var(--muted);
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(253, 250, 243, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  gap: 0.6rem;
}

.logo-img {
  height: 42px;
  width: auto;
}

.brand-name {
  font-family: "Space Grotesk", system-ui, sans-serif;
  letter-spacing: 0.16em;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.95rem;
}

.main-nav a {
  text-decoration: none;
  color: var(--muted);
  transition: color 0.15s ease, opacity 0.15s ease;
}

.main-nav a:hover {
  color: var(--text);
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.1s ease, box-shadow 0.1s ease, background 0.15s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.16);
  background: #b68f46;
}

.btn-small {
  padding: 0.4rem 0.9rem;
  font-size: 0.85rem;
  box-shadow: none;
}

.btn-fullwidth {
  width: 100%;
}

.ghost-link {
  margin-left: 1rem;
  font-size: 0.95rem;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid rgba(43, 37, 35, 0.3);
  padding-bottom: 2px;
}

.ghost-link:hover {
  border-bottom-color: var(--text);
}

/* Hero */

.hero {
  padding: 5.5rem 0 4.5rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.3fr);
  gap: 2.5rem;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.hero h1 {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 2.5rem;
  line-height: 1.2;
  margin: 0 0 0.85rem;
}

.hero-subtitle {
  color: var(--muted);
  max-width: 540px;
  margin-bottom: 1.75rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.hero-footnote {
  margin-top: 1.5rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.hero-card {
  background: #fff;
  padding: 1.75rem 1.7rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.hero-card h2 {
  font-size: 1.2rem;
  margin-top: 0;
  margin-bottom: 0.6rem;
}

.hero-card ul {
  padding-left: 1.1rem;
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-card-note {
  font-size: 0.85rem;
  color: var(--muted);
}

/* Two-column generic */

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.4fr);
  gap: 2.2rem;
  align-items: start;
}

/* Highlight / panels */

.highlight-box,
.bullet-panel {
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.4rem;
  border: 1px solid var(--border);
  background: #fff;
}

.highlight-box h3 {
  margin-top: 0;
}

.highlight-box ul,
.bullet-panel ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Cards grid */

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
  margin-top: 2.2rem;
}

.card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.7rem 1.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.card ul {
  padding-left: 1.1rem;
  font-size: 0.9rem;
  color: var(--muted);
}

/* Steps */

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.8rem;
  margin-top: 2rem;
}

.step {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 1.4rem 1.3rem 1.3rem;
  border: 1px solid var(--border);
}

.step-number {
  display: inline-flex;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  border: 1px solid rgba(201, 163, 90, 0.5);
  font-size: 0.85rem;
  margin-bottom: 0.6rem;
}

/* Contact */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 2.3fr) minmax(0, 3fr);
  gap: 2.3rem;
  align-items: start;
}

.contact-email {
  margin-top: 1.4rem;
  color: var(--muted);
}

.contact-email a {
  color: var(--text);
  text-decoration: underline;
}

.contact-form {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 1.6rem 1.5rem;
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 0.9rem;
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.92rem;
}

.contact-form input,
.contact-form textarea {
  font: inherit;
  padding: 0.55rem 0.6rem;
  border-radius: 10px;
  border: 1px solid #d0c7bf;
  background: #fbf7f1;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(201, 163, 90, 0.4);
}

/* Footer */

.site-footer {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0 2rem;
  background: #fbf7f1;
  font-size: 0.86rem;
  color: var(--muted);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-note {
  opacity: 0.8;
}

/* Responsive */

@media (max-width: 960px) {
  .hero-inner,
  .two-col,
  .card-grid,
  .steps,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    padding-top: 4.5rem;
  }

  .hero-card {
    order: -1;
  }

  .main-nav {
    display: none; /* simplify for now; could be upgraded to a mobile menu */
  }
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 2.1rem;
  }

  .section {
    padding: 3.5rem 0;
  }
}
