:root {
  color-scheme: light;
  --bg: #f7f4ee;
  --surface: #ffffff;
  --text: #1d252c;
  --muted: #617080;
  --border: #ded7ca;
  --primary: #173b57;
  --primary-contrast: #ffffff;
  --accent: #e99b3d;
  --shadow: 0 22px 60px rgba(29, 37, 44, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 1120px;
  margin: 0 auto;
  padding: 1.25rem;
}

.brand {
  font-weight: 800;
  text-decoration: none;
}

nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

nav a,
.site-footer a {
  color: var(--muted);
  font-weight: 650;
  text-decoration: none;
}

nav a[aria-current="page"],
nav a:hover,
.site-footer a:hover {
  color: var(--primary);
}

.nav-action {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  background: rgba(255, 255, 255, 0.55);
}

main {
  max-width: 1120px;
  margin: 0 auto;
  padding: 2rem 1.25rem 4rem;
}

.hero,
.page-heading,
.contact-card,
.request-form,
.request-callout {
  border: 1px solid var(--border);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero {
  min-height: 440px;
  display: grid;
  align-content: center;
  padding: clamp(2rem, 6vw, 5rem);
  background:
    radial-gradient(circle at 90% 20%, rgba(233, 155, 61, 0.22), transparent 28rem),
    var(--surface);
}

.page-heading {
  padding: clamp(1.5rem, 4vw, 3rem);
}

.eyebrow {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 1rem;
  font-size: clamp(2.2rem, 6vw, 4.7rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

h2 {
  margin-bottom: 0.55rem;
  font-size: 1.25rem;
}

p {
  color: var(--muted);
  font-size: 1.02rem;
}

.hero p,
.page-heading p {
  max-width: 720px;
  font-size: 1.15rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.75rem 1rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  background: var(--primary);
  color: var(--primary-contrast);
}

.button.secondary {
  border-color: var(--border);
  background: #fffaf2;
  color: var(--primary);
}

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

.panel {
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  padding: 1.25rem;
}

.step {
  display: inline-grid;
  width: 2rem;
  height: 2rem;
  margin-bottom: 1rem;
  place-items: center;
  border-radius: 999px;
  background: rgba(23, 59, 87, 0.1);
  color: var(--primary);
  font-weight: 900;
}

.contact-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
  margin-top: 1rem;
  padding: clamp(1.5rem, 4vw, 3rem);
}

.align-right {
  justify-content: flex-end;
}

.request-callout {
  margin-top: 1rem;
  padding: 1.5rem;
}

.request-form {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
  padding: clamp(1.5rem, 4vw, 3rem);
}

label {
  display: grid;
  gap: 0.45rem;
  color: var(--primary);
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 0.85rem 1rem;
  color: var(--text);
  font: inherit;
}

textarea {
  resize: vertical;
}

.form-note {
  margin: 0;
  font-size: 0.92rem;
}

.site-footer {
  border-top: 1px solid var(--border);
  color: var(--muted);
}

@media (max-width: 760px) {
  .site-header,
  .site-footer,
  .contact-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .panel-grid,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .align-right {
    justify-content: flex-start;
  }
}

/* Form Feedback Panel */
.form-feedback {
  margin-top: 1.5rem;
  padding: 1.5rem;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.form-feedback.success {
  border-color: rgba(46, 125, 50, 0.3);
  background: linear-gradient(135deg, #f1f9f1 0%, #e8f5e9 100%);
  color: #1b5e20;
}

.form-feedback.error {
  border-color: rgba(211, 47, 47, 0.3);
  background: linear-gradient(135deg, #fdf2f2 0%, #ffebee 100%);
  color: #c62828;
}


