:root {
  --navy: #0f172a;
  --navy-soft: #1e293b;
  --charcoal: #334155;
  --page-bg: #ffffff;
  --paper: #f8fafc;
  --paper-2: #f1f5f9;
  --white: #ffffff;
  --gold: #b8860b;
  --gold-deep: #8a6808;
  --gold-light: #e8c76b;
  --gold-bg: rgba(184, 134, 11, 0.12);
  --gold-ring: rgba(184, 134, 11, 0.35);
  --border: #e2e8f0;
  --text: #0f172a;
  --muted: #64748b;
  --shadow: 0 22px 55px rgba(15, 23, 42, 0.08);
  --shadow-form: 0 24px 60px rgba(15, 23, 42, 0.1);
  --shadow-sm: 0 6px 20px rgba(15, 23, 42, 0.06);
  --radius: 16px;
  --radius-sm: 12px;
  --font: "DM Sans", system-ui, -apple-system, sans-serif;
  --display: "Outfit", var(--font);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  color-scheme: light;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.02rem;
  color: var(--text);
  background: var(--page-bg);
  line-height: 1.6;
}

main {
  overflow-x: hidden;
}

a {
  color: var(--gold-deep);
  font-weight: 600;
}

a:hover {
  color: var(--navy-soft);
}

.container {
  width: min(1120px, 100% - 2.5rem);
  margin-inline: auto;
}

.container-form {
  width: min(760px, 100% - 2.5rem);
}

/* ——— Header (light) ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--navy);
}

.brand:hover {
  text-decoration: none;
  color: var(--navy);
}

.site-logo {
  display: block;
  height: auto;
  max-height: 2.75rem;
  width: auto;
  max-width: min(200px, 42vw);
  object-fit: contain;
}

.site-logo--footer {
  max-height: 2rem;
  max-width: 140px;
  vertical-align: middle;
  display: inline-block;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy);
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: 0.04em;
  font-size: 0.95rem;
  box-shadow: var(--shadow-sm);
}

.logo-mark.sm {
  width: 2rem;
  height: 2rem;
  font-size: 0.75rem;
  border-radius: 8px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.15rem;
}

.brand-sub {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.nav-top {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-weight: 600;
}

.nav-top a {
  color: var(--navy-soft);
  text-decoration: none;
}

.nav-top a:hover {
  color: var(--gold-deep);
}

/* ——— Compact intro (light) ——— */
.hero-compact {
  padding: 1.35rem 0 1.5rem;
  background: linear-gradient(180deg, var(--paper) 0%, #ffffff 100%);
  border-bottom: 1px solid var(--border);
}

.hero-compact-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem 1.5rem;
}

.hero-compact-title {
  font-family: var(--display);
  font-size: clamp(1.45rem, 3.5vw, 2rem);
  line-height: 1.15;
  margin: 0.35rem 0 0.5rem;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.hero-compact-lead {
  margin: 0;
  max-width: 52ch;
  color: var(--charcoal);
  font-size: 0.98rem;
}

.hero-compact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold-deep);
  margin: 0;
}

/* ——— Buttons (light UI — gold primary, no dark fill) ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(180deg, #f0d78a 0%, var(--gold-light) 35%, var(--gold) 100%);
  color: var(--navy);
  border-color: rgba(184, 134, 11, 0.45);
  box-shadow: 0 6px 20px rgba(184, 134, 11, 0.28);
}

.btn-primary:hover {
  color: var(--navy);
  box-shadow: 0 10px 28px rgba(184, 134, 11, 0.35);
}

.btn-secondary {
  background: var(--white);
  color: var(--navy);
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  color: var(--navy);
  border-color: var(--gold-ring);
}

.btn-submit {
  background: linear-gradient(180deg, #fcecc4 0%, var(--gold-light) 25%, var(--gold) 100%);
  color: var(--navy);
  border: 2px solid rgba(184, 134, 11, 0.55);
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  box-shadow: 0 10px 32px rgba(184, 134, 11, 0.35);
}

.btn-submit:hover {
  color: var(--navy);
  box-shadow: 0 14px 40px rgba(184, 134, 11, 0.42);
}

.btn-lg {
  padding: 0.95rem 1.5rem;
  font-size: 1.05rem;
}

.btn-block {
  width: 100%;
}

.btn-ghost-add {
  margin-top: 0.75rem;
  width: 100%;
  padding: 0.7rem 1rem;
  border-radius: var(--radius-sm);
  border: 2px dashed rgba(184, 134, 11, 0.5);
  background: #fffef8;
  color: var(--navy);
  font-weight: 700;
  cursor: pointer;
  font-size: 0.95rem;
}

.btn-ghost-add:hover {
  border-style: solid;
  background: #fff;
  border-color: var(--gold);
}

.btn-icon {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--white);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  color: var(--navy);
}

.btn-icon:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.btn-ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--muted);
}

/* ——— Form-first section ——— */
.section-form-lead {
  padding: clamp(1.75rem, 5vw, 3rem) 0 clamp(2.5rem, 6vw, 4rem);
  background:
    radial-gradient(900px 420px at 50% 0%, rgba(232, 199, 107, 0.18), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, var(--paper) 100%);
}

.form-page-title {
  text-align: center;
  margin-bottom: 1.75rem;
}

.pill-badge {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-deep);
  background: var(--gold-bg);
  border: 1px solid rgba(184, 134, 11, 0.35);
  margin-bottom: 0.75rem;
}

.form-main-title {
  font-family: var(--display);
  font-size: clamp(1.65rem, 4vw, 2.25rem);
  margin: 0 0 0.5rem;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.form-main-sub {
  margin: 0 auto;
  max-width: 46ch;
  color: var(--charcoal);
  font-size: 1.02rem;
}

.form-spotlight {
  background: #ffffff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-form);
  padding: clamp(1.35rem, 3.5vw, 2.25rem) clamp(1.25rem, 3vw, 2rem);
  position: relative;
  overflow: hidden;
}

.form-spotlight::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  border-radius: var(--radius) 0 0 var(--radius);
}

.form-spotlight .inquiry-form {
  position: relative;
  padding-left: 0.75rem;
}

.form-section-label {
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin: 1.5rem 0 0.65rem;
}

.form-section-label:first-of-type {
  margin-top: 0;
}

.form-section-label-gold {
  color: var(--gold-deep);
}

.inquiry-form .form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.25rem;
  margin-bottom: 0.25rem;
}

.inquiry-form .form-grid.two {
  margin-top: 0.25rem;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  background: #fafbfc;
  font: inherit;
  color: var(--navy);
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}

.inquiry-form input:hover,
.inquiry-form select:hover,
.inquiry-form textarea:hover {
  border-color: #cbd5e1;
  background: #fff;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 0 0 4px var(--gold-bg);
}

.field span,
.field legend {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy-soft);
  margin-bottom: 0.4rem;
}

.field textarea {
  resize: vertical;
  min-height: 110px;
}

.field-radio legend {
  margin-bottom: 0.5rem;
}

.radio-row {
  display: flex;
  gap: 1.25rem;
}

.radio {
  font-weight: 600;
  color: var(--navy);
}

.items-block {
  margin: 0.75rem 0 1.25rem;
  padding: 1.35rem;
  border-radius: var(--radius-sm);
  background: var(--paper);
  border: 1px solid var(--border);
}

.items-block-spotlight {
  background: linear-gradient(165deg, #fffef9 0%, #ffffff 50%, var(--paper) 100%);
  border: 1.5px solid rgba(184, 134, 11, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.items-title {
  margin: 0 0 0.25rem;
  font-family: var(--display);
  font-size: 1.2rem;
  color: var(--navy);
}

.items-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.items-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.97rem;
}

.items-table th {
  text-align: left;
  padding: 0.75rem 1rem;
  background: linear-gradient(180deg, #f8fafc, #f1f5f9);
  color: var(--navy-soft);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  border-bottom: 1px solid var(--border);
}

.items-table td {
  padding: 0.65rem 0.75rem;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

.items-table tr:last-child td {
  border-bottom: 0;
}

.col-actions {
  width: 3.5rem;
  text-align: right;
}

.form-foot {
  margin-top: 0.85rem;
  text-align: center;
}

/* ——— Sections ——— */
.section {
  padding: clamp(3rem, 7vw, 5rem) 0;
}

.section-tight {
  padding-top: 2rem;
}

.section-alt {
  background: var(--paper);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-head {
  max-width: 720px;
  margin-bottom: 2rem;
}

.section-head h2 {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin: 0 0 0.5rem;
  color: var(--navy);
}

.section-lead {
  margin: 0;
  font-size: 1.05rem;
  color: var(--charcoal);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem 1.5rem;
  box-shadow: var(--shadow-sm);
}

.service-card h3 {
  margin: 0 0 0.5rem;
  font-family: var(--display);
  font-size: 1.12rem;
  color: var(--navy);
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.split-copy h2 {
  font-family: var(--display);
  font-size: clamp(1.55rem, 3vw, 2rem);
  margin: 0 0 0.5rem;
  color: var(--navy);
}

.check-list {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  color: var(--charcoal);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 0 0 3px var(--gold-bg);
}

.panel-title {
  font-family: var(--display);
  margin-top: 0;
  color: var(--navy);
}

.card-elevated {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.section-contact {
  padding-bottom: clamp(3.5rem, 8vw, 5.5rem);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  align-items: center;
}

.contact-grid h2 {
  font-family: var(--display);
  margin: 0 0 0.5rem;
  color: var(--navy);
}

.contact-line {
  margin: 0.35rem 0;
  color: var(--charcoal);
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

/* ——— Footer (light — not full-width dark bar) ——— */
.site-footer {
  background: var(--paper-2);
  color: var(--navy);
  padding: 2rem 0;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.25rem;
  align-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  color: var(--navy);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: var(--navy-soft);
  text-decoration: none;
  font-weight: 600;
}

.footer-links a:hover {
  color: var(--gold-deep);
}

.alert {
  margin: 1rem auto 0;
  padding: 1rem 1.15rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.alert-success {
  background: #ecfdf5;
  border-color: #a7f3d0;
  color: #065f46;
}

.alert-error {
  background: #fef2f2;
  border-color: #fecaca;
  color: #991b1b;
}

.wa-bar {
  margin: 1rem auto 1.5rem;
  max-width: min(760px, 100% - 2.5rem);
  padding: 1rem 1.15rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  box-shadow: var(--shadow-sm);
}

.wa-bar p {
  margin: 0;
  flex: 1 1 200px;
  color: var(--charcoal);
}

.muted {
  color: var(--muted);
}

.small {
  font-size: 0.88rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 900px) {
  .split {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .inquiry-form .form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 540px) {
  .container,
  .container-form {
    width: min(1120px, 100% - 1.25rem);
  }
  .nav-top {
    gap: 1rem;
    font-size: 0.92rem;
  }
  .form-spotlight .inquiry-form {
    padding-left: 0.35rem;
  }
}
