:root {
  --brand: #ce6428;
  --brand-hover: #b8561f;
  --brand-glow: #e07840;
  --earth: #65421d;
  --earth-deep: #4e3215;
  --earth-mid: #7a5228;
  --night: #3a2010;
  --night-mid: #4e3215;
  --cream: #fdf8f3;
  --sand: #f5ede3;
  --ink: #3a2010;
  --ink-soft: #6b4c2a;
  --panel: #65421d;
  --panel-deep: #4e3215;
  --curve: 10px;
  --curve-lg: 14px;
  --ease: 0.3s ease;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

/* ── HEADER BAR ── */
.site-header {
  background: var(--brand);
  padding: 16px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site-header .brand {
  color: #fff;
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}
.site-header .brand svg { display: none; }
.site-header .dial {
  color: #fff;
  font-size: 2.2rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color var(--ease);
}
.site-header .dial:hover { color: var(--sand); }

/* ── NAVIGATION ── */
.site-nav {
  background: var(--earth);
  padding: 0 40px;
  display: flex;
  justify-content: center;
  position: relative;
}
.nav-menu { display: flex; justify-content: center; gap: 0; }
.nav-menu > a,
.nav-menu > .sub-wrap > a {
  color: #fff;
  padding: 14px 18px;
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .3px;
  transition: background var(--ease);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.nav-menu > a:hover,
.nav-menu > a.on,
.nav-menu > .sub-wrap:hover > a { background: var(--earth-deep); }
.nav-menu > a svg,
.nav-menu > .sub-wrap > a svg { flex-shrink: 0; }

/* ── MOBILE TOGGLE ── */
.toggle-wrap {
  display: none;
  justify-content: center;
  padding: 10px 20px;
  background: var(--earth);
  width: 100%;
}
.toggle-btn {
  display: none;
  background: none;
  border: 2px solid rgba(255,255,255,.3);
  border-radius: 6px;
  cursor: pointer;
  padding: 8px 12px;
}
.toggle-btn span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: #fff;
  border-radius: 3px;
  transition: all .3s ease;
  margin: 5px 0;
}
.toggle-btn.on span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.toggle-btn.on span:nth-child(2) { opacity: 0; }
.toggle-btn.on span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* ── SUB MENU ── */
.sub-wrap { position: relative; }
.sub-wrap > a { cursor: pointer; }
.sub-list {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--earth-deep);
  min-width: 240px;
  border-radius: 0 0 var(--curve) var(--curve);
  box-shadow: 0 12px 40px rgba(0,0,0,.25);
  z-index: 200;
  overflow: hidden;
}
.sub-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  color: rgba(255,255,255,.88);
  font-size: .87rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: all var(--ease);
}
.sub-list a:last-child { border-bottom: none; }
.sub-list a:hover { background: var(--brand); color: #fff; padding-left: 26px; }
.sub-wrap:hover .sub-list { display: block; }

/* ── HERO ── */
.hero-banner {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  background: var(--night);
}
.hero-banner img {
  position: relative;
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* ── SERVICE CARDS GRID ── */
.card-strip {
  max-width: 1200px;
  margin: -40px auto 0;
  padding: 0 20px 60px;
  position: relative;
  z-index: 3;
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.card-item {
  border-radius: var(--curve-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(58,32,16,.12);
  transition: transform .4s cubic-bezier(.25,.46,.45,.94), box-shadow .4s ease, border-color .4s ease;
  cursor: pointer;
  border: 3px solid transparent;
  position: relative;
}
.card-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 48px rgba(206,100,40,.3);
  border-color: var(--brand);
}
.card-item a { display: block; color: inherit; position: relative; }
.card-item .thumb { height: auto; overflow: hidden; position: relative; aspect-ratio: 16/10; }
.card-item .thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(58,32,16,.15);
  transition: opacity .4s ease;
}
.card-item:hover .thumb::after { opacity: 0; }
.card-item .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.25,.46,.45,.94);
}
.card-item:hover .thumb img { transform: scale(1.08); }

/* ── TWO-COLUMN LAYOUT ── */
.split {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 20px 60px;
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 40px;
}
.col-main h1 { color: var(--earth); font-size: 2rem; font-weight: 900; margin-bottom: 20px; }
.col-main h2 { color: var(--earth); font-size: 1.8rem; font-weight: 900; margin-bottom: 20px; }
.col-main p { line-height: 1.8; margin-bottom: 16px; color: var(--ink-soft); font-size: .97rem; }
.col-main h3 {
  color: var(--earth);
  font-size: 1.3rem;
  font-weight: 800;
  margin: 30px 0 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.col-main h3 svg { color: var(--brand); flex-shrink: 0; }
.col-main a {
  color: var(--earth);
  font-weight: 700;
  transition: color var(--ease);
  text-decoration: underline;
  text-decoration-color: rgba(101,66,29,.3);
  text-underline-offset: 3px;
}
.col-main a:hover { color: var(--brand); text-decoration-color: var(--brand); }
.col-main .img-frame {
  position: relative;
  border-radius: var(--curve-lg);
  margin: 20px 0 24px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(58,32,16,.1);
}
.col-main .img-frame img { width: 100%; border-radius: var(--curve-lg); }

/* ── SIDEBAR ── */
.col-aside {
  background: var(--panel);
  border-radius: var(--curve-lg);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(58,32,16,.2);
  height: fit-content;
  position: sticky;
  top: 20px;
}
.aside-top {
  background: var(--panel-deep);
  padding: 24px;
  text-align: center;
}
.aside-top h3 { color: #fff; font-size: 1.15rem; font-weight: 800; letter-spacing: .5px; }
.aside-top p { color: var(--brand-glow); font-size: 1rem; margin-top: 4px; font-weight: 700; }
.aside-top .badge {
  color: rgba(255,255,255,.7);
  font-size: .82rem;
  margin-top: 6px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.aside-mid { padding: 24px; }
.aside-mid h4 { color: #fff; font-size: 1rem; margin-bottom: 10px; font-weight: 800; }
.aside-mid .loc {
  color: rgba(255,255,255,.9);
  font-size: .87rem;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.aside-mid .loc svg { color: var(--brand-glow); flex-shrink: 0; }
.aside-mid iframe { border: 0; border-radius: var(--curve); width: 100%; height: 200px; }
.aside-dial {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 16px 24px 24px;
  background: var(--brand);
  color: #fff;
  font-weight: 800;
  padding: 14px;
  border-radius: var(--curve);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: .9rem;
  transition: transform .2s, background .3s;
  box-shadow: 0 4px 16px rgba(206,100,40,.35);
}
.aside-dial:hover { transform: translateY(-2px); background: var(--brand-hover); }
.aside-links {
  margin: 0 24px 24px;
  background: var(--panel-deep);
  border-radius: var(--curve);
  overflow: hidden;
}
.aside-links h4 {
  color: var(--brand-glow);
  font-size: .85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 16px 18px 12px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.aside-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  color: rgba(255,255,255,.85);
  font-size: .87rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: all var(--ease);
}
.aside-links a:last-child { border-bottom: none; }
.aside-links a:hover { background: rgba(255,255,255,.08); color: var(--brand-glow); padding-left: 24px; }
.aside-links a svg { color: var(--brand-glow); flex-shrink: 0; }

/* ── CONTACT FORM PAGE ── */
.contact-hero {
  background: linear-gradient(135deg, var(--earth), var(--earth-deep));
  padding: 55px 20px;
  text-align: center;
}
.contact-hero h1 { color: #fff; font-size: 2rem; font-weight: 900; margin-bottom: 10px; }
.contact-hero p { color: rgba(255,255,255,.85); max-width: 600px; margin: 0 auto; font-size: .97rem; }

.contact-wrap {
  max-width: 900px;
  margin: -30px auto 60px;
  padding: 0 20px;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.contact-form-card {
  background: #fff;
  border-radius: var(--curve-lg);
  box-shadow: 0 8px 36px rgba(58,32,16,.12);
  padding: 36px 32px;
}
.contact-form-card h2 { color: var(--earth); font-size: 1.3rem; font-weight: 800; margin-bottom: 20px; }
.form-row { margin-bottom: 18px; }
.form-row label {
  display: block;
  font-size: .85rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid var(--sand);
  border-radius: var(--curve);
  font-family: 'Nunito', sans-serif;
  font-size: .93rem;
  color: var(--ink);
  background: var(--cream);
  transition: border-color var(--ease);
  outline: none;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus { border-color: var(--brand); }
.form-row textarea { resize: vertical; min-height: 110px; }
.form-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--brand);
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  padding: 14px 36px;
  border: none;
  border-radius: var(--curve);
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: transform .2s, background .3s;
  box-shadow: 0 4px 16px rgba(206,100,40,.35);
}
.form-submit:hover { transform: translateY(-2px); background: var(--brand-hover); }

.contact-info-card {
  background: var(--panel);
  border-radius: var(--curve-lg);
  box-shadow: 0 8px 36px rgba(58,32,16,.15);
  padding: 36px 32px;
  color: #fff;
}
.contact-info-card h2 { color: #fff; font-size: 1.3rem; font-weight: 800; margin-bottom: 20px; }
.info-line {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  font-size: .93rem;
  line-height: 1.6;
}
.info-line svg { color: var(--brand-glow); flex-shrink: 0; margin-top: 3px; }
.info-line a { color: #fff; font-weight: 700; transition: color var(--ease); }
.info-line a:hover { color: var(--brand-glow); }
.contact-info-card iframe {
  border: 0;
  border-radius: var(--curve);
  width: 100%;
  height: 220px;
  margin-top: 10px;
}
.contact-info-card .hours-title {
  font-weight: 800;
  font-size: .95rem;
  margin-bottom: 6px;
  color: var(--brand-glow);
}
.contact-info-card .hours-text {
  font-size: .9rem;
  color: rgba(255,255,255,.85);
  line-height: 1.7;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--brand);
  padding: 50px 20px 30px;
  text-align: center;
}
.site-footer .f-brand {
  color: #fff;
  font-size: 1.7rem;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.site-footer .f-dial {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  transition: color var(--ease);
}
.site-footer .f-dial:hover { color: var(--sand); }
.site-footer .f-addr {
  color: rgba(255,255,255,.85);
  font-size: .9rem;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.site-footer .f-addr svg { color: #fff; }
.site-footer .f-nav {
  margin-bottom: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 18px;
}
.site-footer .f-nav a { color: rgba(255,255,255,.8); font-size: .85rem; font-weight: 600; transition: color var(--ease); }
.site-footer .f-nav a:hover { color: #fff; }
.site-footer .f-nav .dot { color: rgba(255,255,255,.3); }
.site-footer .f-copy {
  color: rgba(255,255,255,.5);
  font-size: .8rem;
  border-top: 1px solid rgba(255,255,255,.15);
  padding-top: 20px;
}

/* ── BACK TO TOP ── */
.go-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  background: var(--brand);
  color: #fff;
  border: none;
  border-radius: var(--curve);
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(206,100,40,.3);
  transition: opacity .3s, transform .2s, background .3s;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
}
.go-top.show { opacity: 1; pointer-events: auto; }
.go-top:hover { transform: translateY(-3px); background: var(--brand-hover); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
  .site-header { flex-direction: column; gap: 8px; text-align: center; padding: 14px 20px; }
  .site-header .brand { font-size: 2.4rem; justify-content: center; }
  .toggle-wrap { display: flex; }
  .toggle-btn { display: block; }
  .site-nav { padding: 0; }
  .nav-menu { display: none; flex-direction: column; width: 100%; background: var(--earth); }
  .nav-menu.open { display: flex; }
  .nav-menu > a,
  .nav-menu > .sub-wrap > a {
    padding: 16px 24px;
    border-top: 1px solid rgba(255,255,255,.08);
    justify-content: center;
    text-align: center;
  }
  .sub-wrap { width: 100%; }
  .sub-wrap > a { display: flex; width: 100%; justify-content: center; }
  .sub-list { position: static; box-shadow: none; border-radius: 0; background: rgba(0,0,0,.15); min-width: 100%; }
  .sub-list a { padding: 14px 24px; justify-content: center; font-size: .85rem; }
  .sub-wrap:hover .sub-list { display: none; }
  .sub-wrap .sub-list.open { display: block !important; }
  .site-footer .f-nav { gap: 6px 12px; }
}
@media (min-width: 901px) {
  .nav-menu { display: flex !important; justify-content: center; }
  .toggle-wrap { display: none !important; }
}
@media (max-width: 550px) {
  .card-grid { grid-template-columns: 1fr; }
  .site-header .brand { font-size: 1rem; letter-spacing: .5px; }
  .col-main h1 { font-size: 1.5rem; }
  .col-main h2 { font-size: 1.4rem; }
  .contact-hero h1 { font-size: 1.4rem; }
}
