/* --- Variables (content only; header has its own styles) --- */
:root {
  --color-bg: #f8f9fc;
  --color-bg-alt: #eef0f7;
  --color-text: #1a1d2e;
  --color-text-muted: #4a4e6a;
  --color-accent: #b8860b;
  --color-accent-hover: #8b6914;
  --color-border: #dde0eb;
  --color-card-bg: #fff;
  --font-display: "DM Serif Display", Georgia, serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --max-width: 68rem;
  --radius: 0.75rem;
  --shadow-sm: 0 2px 8px rgba(26, 29, 46, 0.06);
  --shadow-md: 0 8px 24px rgba(26, 29, 46, 0.08);
}

/* --- Reset & base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-bg);
}

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

a {
  color: var(--color-accent);
  text-decoration: none;
}

a:hover {
  color: var(--color-accent-hover);
  text-decoration: underline;
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.container--narrow {
  max-width: 40rem;
  text-align: center;
}

/* --- Header & nav --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #181c24;
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-sm) var(--space-md);
}

.nav-logo {
  display: block;
  text-decoration: none;
  line-height: 0;
}

.nav-logo img {
  display: block;
  height: 3.5rem;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}

.nav-logo:hover img {
  opacity: 0.9;
}

.nav-links {
  display: flex;
  gap: var(--space-lg);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  text-decoration: none;
}

.nav-links a:hover {
  color: #fff;
  text-decoration: none;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-xs);
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.9);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
}

@media (max-width: 48rem) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    padding: var(--space-md);
    background: #181c24;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: none;
  }

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

  .nav-links li {
    padding: var(--space-sm) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-links li:last-child {
    border-bottom: none;
  }
}

/* --- Splash (hero) --- */
.splash {
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem var(--space-md);
  text-align: center;
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-alt) 100%);
}

.splash-inner {
  max-width: 36rem;
}

.splash-title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 var(--space-md);
  color: var(--color-text);
  letter-spacing: -0.02em;
}

.splash-tagline {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  margin: 0 0 var(--space-lg);
  line-height: 1.65;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s, opacity 0.2s;
  border: 2px solid transparent;
}

.btn-main {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}

.btn-main:hover {
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
  color: #fff;
  text-decoration: none;
  opacity: 0.95;
}

.btn-light {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-light:hover {
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
  border-color: #fff;
  text-decoration: none;
}

/* --- Story (about) --- */
.story {
  padding: 4.5rem 0;
  background: var(--color-bg);
}

.story-title {
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 3.5vw, 2.5rem);
  font-weight: 400;
  margin: 0 0 var(--space-sm);
  color: var(--color-text);
  text-align: center;
}

.story-lead {
  text-align: center;
  max-width: 32rem;
  margin: 0 auto 2.5rem;
  font-size: 1.0625rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.story-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.story-col {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--color-card-bg);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  transition: box-shadow 0.2s, transform 0.2s;
}

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

.story-icon {
  width: 3rem;
  height: 3rem;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--color-accent);
  background: rgba(184, 134, 11, 0.12);
  border-radius: 50%;
}

.story-col-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: var(--color-text);
}

.story-col-text {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

@media (max-width: 52rem) {
  .story-cols {
    grid-template-columns: 1fr;
  }
}

/* --- Offerings (work) --- */
.offerings {
  padding: 4.5rem 0;
  background: var(--color-bg-alt);
}

.offerings-title {
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 3.5vw, 2.5rem);
  font-weight: 400;
  margin: 0 0 var(--space-sm);
  color: var(--color-text);
}

.offerings-lead {
  color: var(--color-text-muted);
  margin: 0 0 2.5rem;
  font-size: 1rem;
  max-width: 40rem;
}

.offerings-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.offering-card {
  position: relative;
  padding: 2rem 1.5rem;
  background: var(--color-card-bg);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-accent);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.offering-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-left-color: var(--color-accent-hover);
}

.offering-card-icon {
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--color-accent);
  background: rgba(184, 134, 11, 0.1);
  border-radius: 12px;
}

.offering-card-icon svg {
  flex-shrink: 0;
}

.offering-num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.offering-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 0.75rem;
  color: var(--color-text);
  line-height: 1.3;
}

.offering-desc {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

@media (max-width: 52rem) {
  .offerings-list {
    grid-template-columns: 1fr;
  }

  .offering-card {
    padding: 1.75rem 1.5rem;
  }
}

/* --- Reach (contact) --- */
.reach {
  padding: 4rem var(--space-md);
  background: #181c24;
}

.reach-inner {
  max-width: 32rem;
  margin: 0 auto;
}

.reach-text {
  margin-bottom: 2rem;
}

.reach-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 1.875rem);
  font-weight: 400;
  margin: 0 0 0.35rem;
  color: #fff;
}

.reach-desc {
  margin: 0;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
}

/* Contact details - Style 2 (inline with left accent) */
.reach-contact-grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.reach-contact-social {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.reach-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  background: rgba(255, 255, 255, 0.08);
  border-left: 3px solid var(--color-accent);
  border-radius: 0 6px 6px 0;
  color: #fff;
  text-decoration: none;
  transition: background 0.2s, border-left-color 0.2s, padding-left 0.2s;
  width: fit-content;
}

.reach-contact-item:hover {
  background: rgba(255, 255, 255, 0.12);
  border-left-color: var(--color-accent-hover);
  padding-left: 1.15rem;
  text-decoration: none;
}

.reach-contact-icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  color: var(--color-accent);
}

.reach-contact-icon svg {
  display: block;
}

.reach-contact-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
}

.reach-contact-label::after {
  content: ":";
  margin-left: 1px;
}

.reach-contact-value {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
}

.reach-form {
  display: flex;
  flex-direction: column;
  gap: 0.25rem 0;
  margin-bottom: 1.5rem;
}

.reach-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 1rem;
}

.reach-label:first-of-type {
  margin-top: 0;
}

.reach-required {
  color: rgba(255, 255, 255, 0.7);
}

.reach-input,
.reach-textarea {
  width: 100%;
  padding: 0.65rem 0.875rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.reach-input:focus,
.reach-textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.25);
}

.reach-input::placeholder,
.reach-textarea::placeholder {
  color: var(--color-text-muted);
  opacity: 0.8;
}

.reach-textarea {
  resize: vertical;
  min-height: 6rem;
}

.reach-submit {
  margin-top: 1.25rem;
  cursor: pointer;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.reach-submit:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: #fff;
}

.btn-outline-light {
  display: inline-block;
  text-align: center;
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border-color: #fff;
}

/* --- Footer --- */
.site-footer {
  padding: 1.5rem 0;
  background: #0f1218;
  text-align: center;
}

.footer-text {
  margin: 0;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
}
