:root {
  --black: #070707;
  --charcoal: #111111;
  --charcoal-2: #191815;
  --gold: #c9972c;
  --gold-light: #e2bd67;
  --cream: #f2ead7;
  --muted: #c8bfab;
  --line: rgba(201, 151, 44, 0.35);
  --card: rgba(19, 18, 15, 0.92);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at 75% 8%, rgba(201,151,44,.20), transparent 28rem),
    linear-gradient(180deg, #050505 0%, #0d0d0d 46%, #090909 100%);
  color: var(--cream);
  line-height: 1.6;
}

a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: .85rem clamp(1rem, 4vw, 4rem);
  background: rgba(7, 7, 7, .92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.brand img { width: 92px; height: auto; display: block; }
.nav { display: flex; flex-wrap: wrap; align-items: center; gap: 1.2rem; font-size: .86rem; letter-spacing: .08em; text-transform: uppercase; }
.nav a { text-decoration: none; color: var(--muted); transition: color .2s ease; }
.nav a:hover { color: var(--gold-light); }
.nav-cta { color: var(--black) !important; background: var(--gold); padding: .65rem .9rem; border-radius: 999px; font-weight: 700; }

.section-shell { width: min(1160px, calc(100% - 2rem)); margin: 0 auto; }
.hero { min-height: 86vh; display: grid; place-items: center; text-align: center; padding: 5rem 0 4rem; position: relative; }
.hero:after {
  content: "";
  position: absolute;
  inset: 18% 4% auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}
.hero-content { max-width: 860px; }
.hero-logo { width: min(360px, 76vw); margin-bottom: 1.5rem; filter: drop-shadow(0 18px 30px rgba(0,0,0,.55)); }
.eyebrow { color: var(--gold-light); text-transform: uppercase; letter-spacing: .18em; font-weight: 700; font-size: .85rem; margin: 0 0 .75rem; }
h1, h2, h3 { line-height: 1.12; margin: 0; }
h1 { font-family: Georgia, 'Times New Roman', serif; font-size: clamp(2.4rem, 6vw, 5.2rem); letter-spacing: .03em; }
h2 { font-family: Georgia, 'Times New Roman', serif; font-size: clamp(1.8rem, 3vw, 3rem); color: var(--cream); }
h3 { color: var(--gold-light); font-size: 1.15rem; }
.hero-text { max-width: 780px; margin: 1.35rem auto 2rem; color: var(--muted); font-size: 1.08rem; }
.hero-actions, .contact-actions { display: flex; justify-content: center; align-items: center; gap: 1rem; flex-wrap: wrap; }
.button { text-decoration: none; border-radius: 999px; padding: .95rem 1.25rem; font-weight: 700; letter-spacing: .02em; transition: transform .2s ease, border-color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button.primary { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: #090909; }
.button.secondary { border: 1px solid var(--line); color: var(--cream); }

.section-block, .split-section, .mission-card, .story-section, .contact-section { padding: 5rem 0; border-top: 1px solid var(--line); }
.section-heading { text-align: center; max-width: 760px; margin: 0 auto 2.5rem; }
.left-heading { text-align: left; margin: 0; }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.card { background: var(--card); border: 1px solid var(--line); padding: 1.35rem; min-height: 100%; box-shadow: 0 12px 35px rgba(0,0,0,.25); }
.card p, .serve-grid p, .mission-card p, .story-section p, .contact-section p { color: var(--muted); }
.icon { color: var(--gold-light); font-size: 2rem; margin-bottom: .75rem; }

.split-section { display: grid; grid-template-columns: .75fr 1.25fr; gap: 3rem; align-items: start; }
.check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 1rem; }
.check-list li { position: relative; padding-left: 2rem; color: var(--cream); }
.check-list li:before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--gold-light); font-weight: 900; }

.mission-card { background: linear-gradient(135deg, rgba(201,151,44,.10), rgba(255,255,255,.02)); border: 1px solid var(--line); padding: 3rem; margin-top: 3rem; margin-bottom: 3rem; }
.mission-card p { font-size: 1.05rem; }

.serve-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; }
.serve-grid article { border-left: 1px solid var(--line); padding: 1rem; background: rgba(255,255,255,.02); }

.story-section { display: grid; gap: 2rem; }
.story-section div { max-width: 980px; }
.story-section p { margin: 1rem 0; }
.gold-note { border: 1px solid var(--line); background: rgba(201,151,44,.10); color: var(--gold-light); padding: 1.25rem; margin-top: 1.5rem; font-weight: 700; }

.contact-section { text-align: center; max-width: 900px; }
.contact-section p { max-width: 780px; margin: 1rem auto; }
.email-link { color: var(--gold-light); text-decoration: none; border-bottom: 1px solid var(--line); padding-bottom: .2rem; }


.contact-form {
  margin: 2rem auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  text-align: left;
  max-width: 820px;
}
.form-row { display: grid; gap: .4rem; }
.form-row.full { grid-column: 1 / -1; }
.form-row label { color: var(--cream); font-weight: 700; }
.form-row label span { color: var(--gold-light); }
.form-row input,
.form-row textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,.06);
  color: var(--cream);
  padding: .9rem 1rem;
  font: inherit;
  outline: none;
}
.form-row input:focus,
.form-row textarea:focus {
  border-color: var(--gold-light);
  box-shadow: 0 0 0 3px rgba(201,151,44,.18);
}
.form-actions {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: .5rem;
  text-align: center;
}
.form-actions button { border: 0; cursor: pointer; }
.form-actions button:disabled { opacity: .65; cursor: wait; transform: none; }
.form-status { width: 100%; color: var(--muted); margin: .25rem 0 0; }
.form-status.success { color: var(--gold-light); font-weight: 700; }
.form-status.error { color: #ffb4a8; font-weight: 700; }

.site-footer { border-top: 1px solid var(--line); text-align: center; padding: 2.5rem 1rem; color: var(--muted); background: #050505; }
.site-footer img { width: 115px; height: auto; }
.site-footer a { color: var(--gold-light); text-decoration: none; }
.small { font-size: .85rem; opacity: .8; }

@media (max-width: 980px) {
  .service-grid, .serve-grid { grid-template-columns: repeat(2, 1fr); }
  .split-section { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .site-header { position: static; align-items: flex-start; }
  .nav { justify-content: flex-end; gap: .65rem; font-size: .75rem; }
  .brand img { width: 76px; }
  .hero { min-height: auto; padding-top: 3rem; }
  .service-grid, .serve-grid, .contact-form { grid-template-columns: 1fr; }
  .mission-card { padding: 2rem 1.25rem; }
}
