:root {
  --orange: #f27121;
  --orange-dark: #d64c21;
  --orange-soft: #fff2e8;
  --peach: #fff6ef;
  --cream: #fffaf6;
  --ink: #1d2430;
  --muted: #667085;
  --line: #eadfd6;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(38,29,24,.08);
  --container: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: white;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button,input,select,textarea { font: inherit; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.skip-link { position: fixed; left: 16px; top: 16px; z-index: 9999; padding: 10px 14px; background: var(--ink); color: white; border-radius: 8px; transform: translateY(-200%); }
.skip-link:focus { transform: translateY(0); }
.eyebrow { margin: 0 0 12px; color: var(--orange-dark); font-size: .77rem; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; }
h1,h2,h3 { margin: 0; line-height: 1.08; letter-spacing: -.035em; }
h1 { font-size: clamp(2.2rem, 4.2vw, 4.25rem); }
h2 { font-size: clamp(2rem, 3.3vw, 3.25rem); }
h3 { font-size: 1.22rem; }
h1 span,h2 span { color: var(--orange-dark); }
p { color: var(--muted); }

.btn {
  display: inline-flex;
  min-height: 48px;
  padding: 0 22px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 750;
  transition: .2s ease;
  cursor: pointer;
}
.btn-primary { background: var(--orange); color: white; box-shadow: 0 10px 24px rgba(242,113,33,.2); }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-1px); }
.btn-secondary { background: white; color: var(--orange-dark); border-color: #e6aa83; }
.btn-secondary:hover { background: var(--orange-soft); }

.site-header { position: sticky; top: 0; z-index: 1000; background: rgba(255,255,255,.94); border-bottom: 1px solid rgba(234,223,214,.8); backdrop-filter: blur(14px); }
.nav-wrap { min-height: 82px; display: flex; align-items: center; gap: 28px; }
.brand img { width: 150px; }
.primary-nav { margin-left: auto; display: flex; gap: 30px; align-items: center; }
.primary-nav a { font-size: .94rem; font-weight: 650; color: #3d4654; position: relative; }
.primary-nav a:hover,.primary-nav a.active { color: var(--orange-dark); }
.primary-nav a.active::after { content: ""; position: absolute; left: 0; right: 0; bottom: -10px; height: 2px; background: var(--orange); }
.nav-cta { margin-left: 4px; }
.menu-toggle { display: none; margin-left: auto; border: 0; background: transparent; padding: 10px; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; }

.contact-hero {
  background: linear-gradient(135deg,#fff8f1 0%,#ffefe3 100%);
  padding: 66px 0 70px;
  position: relative;
  overflow: hidden;
}
.contact-hero::before,.contact-hero::after { content: ""; position: absolute; border-radius: 50%; background: rgba(242,113,33,.08); }
.contact-hero::before { width: 280px; height: 280px; left: -120px; top: -70px; }
.contact-hero::after { width: 340px; height: 340px; right: -170px; bottom: -170px; }
.hero-inner { max-width: 860px; text-align: center; position: relative; z-index: 1; }
.hero-lead { max-width: 720px; margin: 22px auto 0; font-size: 1.06rem; }

.section { padding: 88px 0; }
.centered { text-align: center; }
.narrow { max-width: 900px; }
.section-heading > p:not(.eyebrow) { max-width: 720px; margin: 16px auto 0; }

.contact-details { background: white; }
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.contact-card {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 22px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: white;
  box-shadow: var(--shadow);
}
.icon-circle { width: 64px; height: 64px; border-radius: 50%; display: grid; place-items: center; background: var(--orange-soft); color: var(--orange-dark); font-size: 1.65rem; font-weight: 850; }
.contact-card h2 { font-size: 2rem; }
.contact-card address { margin-top: 12px; color: #4b5565; font-style: normal; font-size: 1.04rem; }
.contact-lines { display: grid; gap: 8px; margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--line); }
.contact-lines a { color: #3d4654; font-weight: 700; }
.contact-lines a:hover { color: var(--orange-dark); }
.quick-contact { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 24px; }
.quick-contact > div { padding: 24px; border: 1px solid var(--line); border-radius: 20px; background: var(--cream); }
.quick-contact h3 { margin-bottom: 10px; }
.quick-contact a { color: var(--orange-dark); font-weight: 750; }

.form-section { background: linear-gradient(135deg,#fff8f2,#fff1e7); }
.form-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: start; }
.form-copy > p:not(.eyebrow) { font-size: 1.02rem; margin: 18px 0 0; max-width: 500px; }
.form-note { display: grid; gap: 6px; margin-top: 28px; padding-top: 24px; border-top: 1px solid #efd8c9; }
.form-note a { color: var(--orange-dark); font-weight: 750; }
.contact-form { padding: 30px; border-radius: 24px; background: white; border: 1px solid var(--line); box-shadow: var(--shadow); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label { display: grid; gap: 8px; margin-bottom: 16px; color: #3d4654; font-size: .9rem; font-weight: 700; }
.contact-form input,.contact-form select,.contact-form textarea {
  width: 100%;
  border: 1px solid #d9dde4;
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
  transition: .2s ease;
}
.contact-form input,.contact-form select { min-height: 48px; }
.contact-form textarea { resize: vertical; min-height: 150px; }
.contact-form input:focus,.contact-form select:focus,.contact-form textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(242,113,33,.1); }
.consent { display: grid !important; grid-template-columns: auto 1fr; align-items: start; gap: 10px !important; font-weight: 500 !important; color: var(--muted) !important; }
.consent input { width: 18px; min-height: 18px; padding: 0; margin-top: 3px; }
.submit-btn { margin-top: 4px; }
.form-status { margin: 12px 0 0; font-size: .9rem; }

.maps-section { background: white; }
.maps-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 36px; }
.map-card { overflow: hidden; border: 1px solid var(--line); border-radius: 24px; background: white; box-shadow: var(--shadow); }
.map-head { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 22px 24px; }
.map-head h3 { font-size: 1.25rem; }
.map-head p { margin: 5px 0 0; font-size: .92rem; }
.text-link { color: var(--orange-dark); font-size: .86rem; font-weight: 750; white-space: nowrap; }
.map-card iframe { width: 100%; height: 390px; border: 0; display: block; }

.site-footer { background: #171b22; color: white; padding: 44px 0 20px; }
.site-footer p,.site-footer a,.site-footer span { color: #c6cbd3; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 44px; align-items: start; }
.footer-brand img { width: 155px; }
.footer-brand p { margin: 14px 0 0; }
.site-footer nav,.footer-contact { display: grid; gap: 10px; }
.site-footer a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 34px; padding-top: 18px; border-top: 1px solid #2c323c; font-size: .8rem; }

@media (max-width: 980px) {
  .section { padding: 70px 0; }
  .location-grid,.maps-grid,.form-grid { grid-template-columns: 1fr; }
  .form-grid { gap: 40px; }
  .quick-contact { grid-template-columns: 1fr 1fr; }
  .nav-cta { display: none; }
}
@media (max-width: 760px) {
  .container { width: min(calc(100% - 28px),var(--container)); }
  .nav-wrap { min-height: 72px; }
  .brand img { width: 132px; }
  .menu-toggle { display: block; }
  .primary-nav { position: absolute; top: 72px; left: 14px; right: 14px; padding: 18px; display: none; flex-direction: column; align-items: stretch; gap: 8px; border: 1px solid var(--line); border-radius: 16px; background: white; box-shadow: var(--shadow); }
  .primary-nav.open { display: flex; }
  .primary-nav a { padding: 10px 8px; }
  .primary-nav a.active::after { display: none; }
  .contact-hero { padding: 48px 0 52px; }
  .contact-card { grid-template-columns: 1fr; padding: 24px; }
  .quick-contact { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 22px; }
  .submit-btn { width: 100%; }
  .map-head { align-items: flex-start; flex-direction: column; gap: 8px; }
  .map-card iframe { height: 320px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; }
}
