/* assets/css/minimal.css */
/* Brand palette based on logo: deep navy + steel blue + warm gold + light gray */

:root {
  /* Brand colors */
  --navy: #1e4276; /* deep navy */
  --steel: #2a3f67; /* steel blue */
  --sky: #3b5b8f; /* link/hover blue */
  --gold: rgb(252, 202, 76); /* warm gold */
  --gold-dark: goldenrod;

  /* Neutrals */
  --ink: #0b1220; /* primary text */
  --muted: #5a6d8a; /* secondary text */
  --paper: #ffffff; /* card bg */
  --mist: #f3f6fb; /* page bg */
  --border: #264067; /* border */
  --shadow: 0 10px 30px rgba(11, 30, 58, 0.1);

  /* Mapping */
  --bg: var(--mist);
  --card: var(--paper);
  --text: var(--ink);
  --link: var(--sky);
  --link-hover: var(--gold);
  --accent: var(--gold);
  --accent-hover: var(--gold-dark);

  --header-bg: var(--navy);
  --header-text: #eef3ff;

  --radius: 18px;
  --radius-sm: 12px;

  --maxw: 1120px;
}

/* Good global baseline */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Base reset */
* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial,
    sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: var(--link);
  text-decoration: none;
}
a:hover {
  color: var(--link-hover);
}
code,
kbd,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", "Courier New", monospace;
}

/* Layout helpers */
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 16px;
}
main.wrap {
  padding-top: 18px;
  padding-bottom: 34px;
}
.row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.row > * {
  flex: 1;
}

@media (max-width: 860px) {
  .row {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

/* Header + Nav */
.site-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  background: var(--header-bg);
  color: var(--header-text);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: 0 6px 20px rgba(11, 30, 58, 0.12);
}
.brand {
  margin: 0;
  font-weight: 900;
  letter-spacing: 0.2px;
  color: var(--header-text);
  font-size: 20px;
}
.site-nav {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}
.site-nav a {
  color: var(--header-text);
  opacity: 0.92;
  padding: 8px 10px;
  border-radius: 14px;
}
.site-nav a:hover {
  color: var(--accent);
  opacity: 1;
}
.site-nav a.active {
  color: var(--accent);
  background: rgba(211, 161, 37, 0.14);
  border: 1px solid rgba(211, 161, 37, 0.3);
  opacity: 1;
  font-weight: 700;
}

/* Hamburger toggle */
.nav-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: transparent;
  color: var(--header-text);
  cursor: pointer;
}
.nav-toggle:hover {
  border-color: rgba(211, 161, 37, 0.55);
  color: var(--accent);
}
.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;
}

/* Mobile dropdown menu */
@media (max-width: 860px) {
  .nav-toggle {
    display: inline-flex;
  }
  .site-nav {
    display: none;
    position: absolute;
    right: 16px;
    top: 56px;
    background: var(--navy);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 16px;
    padding: 10px;
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
    flex-direction: column;
    min-width: 210px;
    z-index: 9999;
  }
  .site-nav.open {
    display: flex;
  }
  .site-nav a {
    width: 100%;
  }
}

/* Footer */
.site-footer {
  margin-top: 34px;
  padding: 18px 16px;
  background: rgba(11, 30, 58, 0.06);
  border-top: 1px solid var(--border);
}
.site-footer .muted {
  color: var(--muted);
  font-size: 14px;
}

/* Cards */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
}
.card + .card {
  margin-top: 0px;
}
.card h1,
.card h2,
.card h3 {
  margin: 0 0 10px;
}
.card h1 {
  font-size: 34px;
  letter-spacing: -0.2px;
}
.card h2 {
  font-size: 24px;
}
.card h3 {
  font-size: 18px;
}

/* Headings outside cards */
h1,
h2,
h3 {
  margin: 0 0 10px;
}
h1 {
  font-size: 34px;
  letter-spacing: -0.2px;
}
h2 {
  font-size: 24px;
}
h3 {
  font-size: 18px;
}

/* Text helpers */
.hint {
  color: var(--muted);
  font-size: 14px;
  margin: 6px 0 0;
}
.muted {
  color: var(--muted);
}
.hr {
  height: 1px;
  background: var(--border);
  margin: 14px 0;
}

/* Buttons */
.btn,
button,
input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  font: inherit; /* makes <a> match <button> */
  line-height: 1; /* huge source of mismatch */
  text-decoration: none; /* anchors */
  white-space: nowrap;

  gap: 8px;
  padding: 10px 14px;
  border-radius: 14px;

  border: 1px solid rgba(11, 30, 58, 0.18);
  background: var(--navy);
  color: #fff;
  cursor: pointer;
  font-weight: 700;
  text-decoration: none;
}

.btn:hover,
button:hover,
input[type="submit"]:hover {
  background: #0f2a52;
}
.btn.secondary {
  background: #fff;
  color: var(--navy);
  border: 1px solid var(--border);
}
.btn.secondary:hover {
  border-color: rgba(211, 161, 37, 0.55);
  color: var(--gold-dark);
}

.btn.primary {
  background: var(--accent);
  color: #1a1406;
  border: 1px solid rgba(0, 0, 0, 0.08);
}
.btn.primary:hover {
  background: var(--accent-hover);
}

.btn.small {
  padding: 7px 10px;
  border-radius: 12px;
  font-size: 14px;
}
.btn.danger {
  background: #8a1e2a;
}
.btn.danger:hover {
  background: #6f1721;
}

/* Remove default button quirks (keep it looking like .btn) */
button.btn {
  appearance: none;
  -webkit-appearance: none;
  background: var(--navy);
}
button.btn:hover {
  background: #0f2a52;
}

/* Remove anchor focus/outline weirdness (optional) */
a.btn {
  -webkit-tap-highlight-color: transparent;
}

/* Forms */
.form {
  margin-top: 10px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 10px 0;
}
label {
  font-weight: 700;
  font-size: 14px;
}
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="date"],
input[type="time"],
input[type="password"],
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  outline: none;
}
textarea {
  resize: vertical;
  min-height: 120px;
}
input:focus,
select:focus,
textarea:focus {
  border-color: rgba(211, 161, 37, 0.55);
  box-shadow: 0 0 0 4px rgba(211, 161, 37, 0.18);
}
.help {
  font-size: 13px;
  color: var(--muted);
}
.form-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

/* Alerts */
.alert {
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid var(--border);
  margin: 12px 0;
  background: #fff;
}
.alert-success {
  background: #1e1777ff;
  color: #b9a21dff;
}
.alert-warning {
  background: #1e1777ff;
  color: #55e032;
}
.alert-error {
  background: #1e1777ff;
  color: #ac120dff;
}

/* Tables */
.table-wrap {
  overflow: auto;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: #fff;
}
table {
  border-collapse: collapse;
  width: 100%;
  font-size: 14px;
}
th,
td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}
th {
  background: rgba(11, 30, 58, 0.04);
  font-weight: 800;
}
tr:hover td {
  background: rgba(59, 91, 143, 0.06);
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}
.badge.good {
  border-color: #bfe6c8;
  background: #f1fff4;
  color: #1e5a2c;
}
.badge.warn {
  border-color: #f1ddb0;
  background: #fff8e6;
  color: #6a4a06;
}
.badge.dark {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

/* Icons (simple, font-based) */
.icon-star {
  color: var(--gold);
  font-weight: 900;
}
.icon-pin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 1px solid rgba(211, 161, 37, 0.38);
  background: rgba(211, 161, 37, 0.14);
  color: var(--gold-dark);
  font-size: 13px;
}

.t-stars {
  line-height: 1;
  display: flex;
  gap: 6px;
  color: #fbbc04;
  align-items: center;
}

.t-stars svg {
  width: 18px;
  height: 18px;
  display: block;
}

/* Tooltip bubble icon */
.tip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 12px;
  color: var(--muted);
  margin-left: 6px;
  cursor: help;
  background: #fff;
}

/* Coupon card style + print */
.coupon {
  border: 2px dashed rgba(211, 161, 37, 0.65);
  background: linear-gradient(180deg, #fff 0%, rgba(211, 161, 37, 0.06) 100%);
}

/* coupon Print styles */
@media print {
  body {
    background: #fff;
  }
  .site-header,
  .site-footer,
  .nav-toggle,
  .site-nav,
  .btn,
  .no-print {
    display: none !important;
  }
  .wrap {
    max-width: 100%;
    padding: 0;
  }
  .card {
    box-shadow: none;
    border: 1px solid #ccc;
  }
  .coupon {
    border: 2px dashed #888;
  }
}

/* Admin theme helpers */
.admin-shell .site-header {
  background: linear-gradient(180deg, var(--navy) 0%, #0a2143 100%);
}
.admin-shell .site-nav a.active {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(211, 161, 37, 0.3);
}

/* Small screens spacing */
@media (max-width: 420px) {
  .brand {
    font-size: 18px;
  }
  .card {
    padding: 14px;
  }
  .btn {
    width: 100%;
  }
  .form-actions .btn {
    width: 100%;
  }
}

/* ===== Gallery (Admin + Public) helpers ===== */

/* Normalize .btn across <a>, <button>, <input> so sizes match */
.btn,
a.btn,
button.btn,
input.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  line-height: 1.1;
  text-decoration: none;
  white-space: nowrap;
  font: inherit;
}

.btn:focus {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

/* Admin “toolbar” layout */
.admin-toolbar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

/* Grid utilities for album/image cards */
.grid-cards {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}

.thumb {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: contain; /* was: cover */
  background: rgba(0, 0, 0, 0.04); /* gives a nice letterbox */
  border-radius: 12px;
  display: block;
}

/* ===== Public carousel (only used if 2+ images) ===== */
.carousel {
  position: relative;
  max-width: 1000px;
}

.car-track {
  display: flex;
  gap: 12px;
  overflow: auto;
  scroll-snap-type: x mandatory;
  padding: 10px 44px 10px 44px;
  border-radius: 16px;
  -webkit-overflow-scrolling: touch;
}

.car-slide {
  min-width: 100%;
  scroll-snap-align: start;
}

.car-slide img {
  width: 100%;
  height: auto;
  max-height: 70vh;
  object-fit: contain;
  background: rgba(0, 0, 0, 0.04);
  border-radius: 16px;
  display: block;
}

.car-cap {
  margin-top: 8px;
  opacity: 0.85;
}

.car-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.car-btn.prev {
  left: 6px;
}
.car-btn.next {
  right: 6px;
}

.car-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 10px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  opacity: 0.35;
  cursor: pointer;
}

.dot.active {
  opacity: 1;
}

/* Make <a class="card"> behave like a proper card */
a.card {
  display: block;
  color: inherit;
  text-decoration: none;
}
a.card:hover {
  text-decoration: none;
}

.btn.hearted {
  filter: saturate(1.1);
}

@media (max-width: 860px) {
  .car-slide img {
    height: 320px;
  }
}

.testimonials-page .add-comment textarea[name="comment"] {
  min-height: 25px;
  height: 44px;
  resize: vertical;
}

/* Locations strip */
.locations-strip {
  background: var(--navy);
  color: var(--gold);
  padding: 28px 0 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.locations-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 18px;
}

.locations-title {
  margin: 0 0 16px;
  text-align: center;
  font-weight: 700;
  font-size: clamp(18px, 2.2vw, 26px);
  letter-spacing: 0.2px;
}

.locations-grid {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 980px;

  display: grid;
  grid-template-columns: repeat(5, minmax(140px, 1fr));
  gap: 10px 22px;
  align-items: center;
}

.locations-grid li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.2;
  opacity: 0.95;
}

.locations-grid li::before {
  content: "";
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  background-repeat: no-repeat;
  background-size: 18px 18px;

  /* white outline circle + check */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.3' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M8.2 12.3l2.4 2.4 5.2-5.3'/%3E%3C/svg%3E");
}

/* Responsive */
@media (max-width: 900px) {
  .locations-grid {
    grid-template-columns: repeat(3, minmax(140px, 1fr));
  }
}
@media (max-width: 600px) {
  .locations-grid {
    grid-template-columns: repeat(2, minmax(140px, 1fr));
  }
}

/*Google review carousel*/
.review-carousel {
  margin: 18px 0;
}

.review-carousel .track {
  display: flex; /* ✅ makes children line up in a row */
  gap: 16px; /* spacing between cards */
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 2px;
  scroll-behavior: smooth;
  overscroll-behavior-x: contain;
  touch-action: pan-x;
  padding: 6px 6px 10px; /* optional nice breathing room */
  border-radius: 16px;
}

.review-carousel .track::-webkit-scrollbar {
  display: none;
}
.review-carousel .track {
  scrollbar-width: none;
}

.review-carousel .card {
  flex: 0 0 340px;
  scroll-snap-align: start;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 16px;
  padding: 14px;
  background: #fff;
}
.review-carousel .top {
  display: flex;
  gap: 12px;
  align-items: center;
}
.review-carousel .avatar {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  object-fit: cover;
}
.review-carousel .name {
  font-weight: 700;
}

.review-carousel .stars {
  font-size: 15px;
  letter-spacing: 1px;
  opacity: 0.9;
  color: #fbbc04;
}

.review-carousel .text {
  margin-top: 10px;
  line-height: 1.35;
}
.review-carousel .date {
  margin-top: 10px;
  font-size: 12px;
  opacity: 0.7;
}
.review-carousel .carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center; /* centers the whole row */
  gap: 12px;
  margin: 10px 0 0;
}

.review-carousel .carousel-btn {
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: #fff;
  border-radius: 12px;
  padding: 6px 10px;
  cursor: pointer;
  line-height: 1;
  font-size: 18px;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.review-carousel .carousel-btn:active {
  transform: translateY(1px);
}

.review-carousel .carousel-dots {
  display: flex;
  justify-content: center; /* centers dots within their area */
  gap: 8px;
  flex-wrap: wrap;
}

.review-carousel .carousel-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.25);
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.review-carousel .carousel-dot.is-active {
  background: rgba(0, 0, 0, 0.55);
}

@media (max-width: 667px) {
  .review-carousel .card {
    flex: 0 0 65vw; /* bigger cards = better “momentum” feeling */
  }
}

img.logo-15 {
  width: 3rem !important;
  height: 3rem !important;
  max-width: 3rem !important;
  max-height: 3rem !important;
  display: inline-block;
  object-fit: contain;
}

/* Drawer wrapper (hidden by default) */
.comment-drawer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
}

/* Backdrop */
.comment-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  transition: opacity 0.2s ease;
}

/* Panel slides in from the right */
.comment-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(420px, 92vw);
  background: #fff;
  padding: 14px;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.25);
  transform: translateX(110%);
  transition: transform 0.25s ease;
  overflow: auto;
  border-left: 1px solid rgba(0, 0, 0, 0.08);
}

/* Header row */
.comment-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

/* Open state */
.comment-drawer.is-open {
  pointer-events: auto;
}
.comment-drawer.is-open .comment-drawer__backdrop {
  opacity: 1;
}
.comment-drawer.is-open .comment-drawer__panel {
  transform: translateX(0);
}

/* Your smaller textarea override */
textarea.t-comment {
  height: 70px !important;
  min-height: 70px !important;
  resize: vertical;
}
/*open from bottom on small screens*/
@media (max-width: 600px) {
  .comment-drawer__panel {
    top: auto;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: auto;
    max-height: 85vh;
    border-left: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 14px 14px 0 0;
    transform: translateY(110%);
  }
  .comment-drawer.is-open .comment-drawer__panel {
    transform: translateY(0);
  }
}

body.drawer-open {
  overflow: hidden;
}

.comment-drawer__panel input,
.comment-drawer__panel textarea {
  font-size: 16px;
}

.reviews-scroll {
  max-height: 800px;
  overflow-y: auto;
  padding-right: 8px; /* keeps content from sitting under scrollbar */
}

/* Optional: a little spacing between items */
.reviews-scroll .review-item {
  margin-bottom: 12px;
}

/*FAQ Page Styles*/
.faq-item {
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
}
.faq-answer {
  margin-top: 8px;
  opacity: 0.92;
}

/* SEO update: responsive brand/logo + footer service links + mobile call bar */
.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--header-text);
  text-decoration: none;
  max-width: 430px;
}
.brand-link:hover {
  color: var(--header-text);
}
.logo-wrap {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 92px;
}
.site-logo {
  width: 92px;
  max-width: 92px;
  height: auto;
  object-fit: contain;
  display: block;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.18;
}
.brand-text span {
  font-size: 15px;
  font-weight: 700;
}
.brand-text em {
  color: var(--gold);
  font-style: italic;
  font-size: 14px;
  margin-top: 2px;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-seo-matrix {
  flex: 1 1 520px;
  padding-top: 4px;
}
.footer-seo-matrix p {
  margin: 4px 0 8px;
}
.cta-banner {
  background: #fff7ed;
  border: 1px solid #ffedd5;
  padding: 18px;
  border-radius: 12px;
  margin: 18px 0;
}
.cta-banner p {
  margin: 0;
  font-weight: 800;
  color: #9a3412;
}
.guarantee-box {
  margin-top: 24px;
  border-top: 2px solid rgba(38, 64, 103, 0.22);
  padding-top: 18px;
}
.mobile-sticky-call {
  display: none;
}
@media (max-width: 860px) {
  .site-header {
    align-items: center;
  }
  .brand-link {
    max-width: calc(100% - 62px);
    gap: 9px;
  }
  .logo-wrap,
  .site-logo {
    max-width: 64px;
    width: 64px;
  }
  .brand-text strong {
    font-size: 17px;
  }
  .brand-text span {
    font-size: 12px;
  }
  .brand-text em {
    font-size: 12px;
  }
}
@media (max-width: 767px) {
  .mobile-sticky-call {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #ea580c;
    z-index: 99999;
    text-align: center;
    box-shadow: 0 -3px 12px rgba(0,0,0,0.2);
    display: block;
  }
  .mobile-sticky-call a {
    display: block;
    color: #ffffff !important;
    padding: 15px 10px;
    text-decoration: none !important;
    font-weight: 800;
    font-size: 16px;
    letter-spacing: 0.2px;
  }
  body {
    padding-bottom: 58px !important;
  }
}


/* SEO update v3: restore compact desktop header, reliable mobile logo, and separate Spanish badge */
.site-header {
  display: grid !important;
  grid-template-columns: minmax(360px, 1fr) auto minmax(360px, auto) !important;
  align-items: center !important;
  gap: 18px !important;
  padding: 18px 16px !important;
}
.brand-link {
  display: inline-flex !important;
  align-items: center !important;
  gap: 14px !important;
  max-width: none !important;
  min-width: 0 !important;
}
.logo-wrap {
  width: 100px !important;
  max-width: 100px !important;
  flex: 0 0 100px !important;
}
.site-logo {
  width: 100px !important;
  max-width: 100px !important;
  height: auto !important;
  object-fit: contain !important;
  display: block !important;
}
.brand-text {
  display: flex !important;
  flex-direction: column !important;
  line-height: 1.25 !important;
  min-width: 0 !important;
}
.brand-text strong,
.brand-text span {
  color: var(--header-text) !important;
  font-size: 20px !important;
  font-weight: 900 !important;
}
.language-badge {
  margin: 0 !important;
  color: var(--gold) !important;
  font-weight: 900 !important;
  line-height: 1.15 !important;
  font-size: 20px !important;
  white-space: nowrap !important;
}
.site-nav {
  justify-content: flex-end !important;
  align-items: center !important;
}
@media (max-width: 960px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto !important;
  }
  .brand-link {
    max-width: calc(100vw - 94px) !important;
  }
  .language-badge {
    display: none !important;
  }
  .logo-wrap,
  .site-logo {
    width: 70px !important;
    max-width: 70px !important;
    flex-basis: 70px !important;
  }
  .brand-text strong,
  .brand-text span {
    font-size: 17px !important;
  }
  .site-nav {
    justify-content: flex-start !important;
  }
}
@media (max-width: 520px) {
  .site-header {
    padding: 14px 12px !important;
    gap: 10px !important;
  }
  .brand-link {
    gap: 10px !important;
  }
  .logo-wrap,
  .site-logo {
    width: 58px !important;
    max-width: 58px !important;
    flex-basis: 58px !important;
  }
  .brand-text strong,
  .brand-text span {
    font-size: 14px !important;
  }
}


/* SEO update v4: force compact header/logo, bypass stale desktop stretch issues */
.wrap.site-header {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 18px !important;
  padding: 18px 16px !important;
  min-height: 0 !important;
}
.wrap.site-header .brand-link {
  flex: 0 1 auto !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 14px !important;
  min-width: 0 !important;
  max-width: 520px !important;
}
.wrap.site-header .logo-wrap {
  width: 100px !important;
  max-width: 100px !important;
  height: auto !important;
  flex: 0 0 100px !important;
  overflow: hidden !important;
}
.wrap.site-header .site-logo {
  width: 100px !important;
  max-width: 100px !important;
  height: auto !important;
  max-height: 86px !important;
  object-fit: contain !important;
  display: block !important;
}
.wrap.site-header .brand-text strong,
.wrap.site-header .brand-text span {
  font-size: 20px !important;
  line-height: 1.25 !important;
}
.wrap.site-header .language-badge {
  flex: 0 0 auto !important;
  margin: 0 !important;
  color: var(--gold) !important;
  font-size: 20px !important;
  font-weight: 900 !important;
  line-height: 1.15 !important;
}
.wrap.site-header .site-nav {
  flex: 0 1 auto !important;
  margin-left: auto !important;
  display: flex !important;
  justify-content: flex-end !important;
  align-items: center !important;
  gap: 14px !important;
}
@media (max-width: 960px) {
  .wrap.site-header {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    gap: 10px !important;
  }
  .wrap.site-header .brand-link { max-width: calc(100vw - 94px) !important; }
  .wrap.site-header .language-badge { display:none !important; }
  .wrap.site-header .logo-wrap,
  .wrap.site-header .site-logo {
    width: 70px !important;
    max-width: 70px !important;
    flex-basis: 70px !important;
  }
  .wrap.site-header .brand-text strong,
  .wrap.site-header .brand-text span { font-size: 17px !important; }
  .wrap.site-header .site-nav { grid-column: 1 / -1 !important; justify-content: flex-start !important; margin-left:0 !important; }
}
@media (max-width: 520px) {
  .wrap.site-header .logo-wrap,
  .wrap.site-header .site-logo {
    width: 58px !important;
    max-width: 58px !important;
    flex-basis: 58px !important;
  }
  .wrap.site-header .brand-text strong,
  .wrap.site-header .brand-text span { font-size: 14px !important; }
}


/* SEO update v6: service area dropdown and helpful guide links */
.nav-dropdown {
  position: relative;
  color: var(--header-text);
}
.nav-dropdown summary {
  list-style: none;
  cursor: pointer;
  color: var(--header-text);
  opacity: 0.92;
  padding: 8px 10px;
  border-radius: 14px;
}
.nav-dropdown summary::-webkit-details-marker { display: none; }
.nav-dropdown summary::after {
  content: " ▾";
  font-size: 0.8em;
}
.nav-dropdown[open] summary,
.nav-dropdown summary:hover {
  color: var(--accent);
  background: rgba(211, 161, 37, 0.14);
}
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 210px;
  padding: 8px;
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 14px;
  box-shadow: 0 12px 34px rgba(0,0,0,0.22);
  z-index: 10000;
}
.nav-dropdown-menu a {
  display: block;
  width: 100%;
  white-space: nowrap;
}
.service-area-links a {
  display: inline-block;
  font-weight: 800;
}
.helpful-guides-card .btn {
  display: inline-block;
}
@media (max-width: 860px) {
  .site-nav.open .nav-dropdown,
  .site-nav.open .nav-dropdown summary {
    width: 100%;
  }
  .nav-dropdown-menu {
    position: static;
    margin-top: 6px;
    box-shadow: none;
    border-color: rgba(255,255,255,0.12);
  }
}

/* SEO update v8: header cleanup after adding Service Areas + Helpful Guides */
@media (min-width: 861px) {
  .wrap.site-header {
    display: grid !important;
    grid-template-columns: minmax(340px, 440px) auto minmax(0, 1fr) !important;
    align-items: center !important;
    gap: 16px !important;
    padding: 18px 16px !important;
  }

  .wrap.site-header .brand-link {
    max-width: 440px !important;
    min-width: 0 !important;
  }

  .wrap.site-header .logo-wrap,
  .wrap.site-header .site-logo {
    width: 100px !important;
    max-width: 100px !important;
    flex-basis: 100px !important;
  }

  .wrap.site-header .brand-text strong,
  .wrap.site-header .brand-text span {
    font-size: 19px !important;
    line-height: 1.24 !important;
  }

  .wrap.site-header .language-badge {
    font-size: 18px !important;
    justify-self: center !important;
  }

  .wrap.site-header .nav-toggle {
    display: none !important;
  }

  .wrap.site-header .site-nav {
    position: static !important;
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 8px 12px !important;
    margin-left: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    min-width: 0 !important;
    max-width: none !important;
  }

  .wrap.site-header .site-nav a,
  .wrap.site-header .nav-dropdown summary {
    font-size: 15px !important;
    padding: 7px 9px !important;
    line-height: 1.25 !important;
  }
}

@media (min-width: 861px) and (max-width: 1120px) {
  .wrap.site-header {
    grid-template-columns: minmax(320px, 420px) minmax(0, 1fr) !important;
  }

  .wrap.site-header .language-badge {
    display: none !important;
  }
}

@media (max-width: 860px) {
  .wrap.site-header {
    position: relative !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 14px 12px !important;
  }

  .wrap.site-header .brand-link {
    max-width: calc(100vw - 92px) !important;
    min-width: 0 !important;
  }

  .wrap.site-header .language-badge {
    display: none !important;
  }

  .wrap.site-header .nav-toggle {
    display: inline-flex !important;
  }

  .wrap.site-header .site-nav {
    display: none !important;
    position: absolute !important;
    top: calc(100% + 8px) !important;
    right: 12px !important;
    left: auto !important;
    z-index: 10000 !important;
    width: min(300px, calc(100vw - 24px)) !important;
    min-width: 0 !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 4px !important;
    padding: 10px !important;
    margin-left: 0 !important;
    background: var(--navy) !important;
    border: 1px solid rgba(255,255,255,0.18) !important;
    border-radius: 16px !important;
    box-shadow: 0 12px 34px rgba(0,0,0,0.22) !important;
  }

  .wrap.site-header .site-nav.open {
    display: flex !important;
  }

  .wrap.site-header .site-nav a,
  .wrap.site-header .nav-dropdown summary {
    width: 100% !important;
    display: block !important;
  }

  .wrap.site-header .nav-dropdown-menu {
    position: static !important;
    margin-top: 6px !important;
    box-shadow: none !important;
  }
}

/* SEO update v9: move Spanish badge out of crowded header and add visible Spanish page link */
.spanish-site-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 12px 0 0;
  padding: 10px 14px;
  border: 1px solid rgba(252, 202, 76, 0.5);
  border-radius: 14px;
  background: rgba(252, 202, 76, 0.12);
  color: var(--navy);
  font-weight: 700;
  text-align: center;
}
.spanish-site-strip strong {
  color: #9a6a00;
}
.spanish-site-strip:hover {
  color: var(--navy);
  border-color: rgba(252, 202, 76, 0.85);
  background: rgba(252, 202, 76, 0.2);
}

@media (min-width: 861px) {
  .wrap.site-header {
    grid-template-columns: minmax(300px, 400px) minmax(0, 1fr) !important;
  }
  .wrap.site-header .site-nav {
    justify-content: flex-end !important;
  }
}
@media (max-width: 520px) {
  .spanish-site-strip {
    font-size: 14px;
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
    text-align: left;
  }
}


/* SEO update v10: responsive service cards + service area link contrast */
.service-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 14px;
  line-height: 1.4;
  margin-top: 10px;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.service-mini-card {
  min-width: 0 !important;
  width: 100% !important;
  height: auto !important;
  min-height: 225px;
  overflow-wrap: anywhere;
}

.service-mini-card h2 {
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.15;
}

.service-mini-card p,
.service-mini-card a {
  overflow-wrap: anywhere;
  word-break: normal;
}

.locations-strip .locations-wrap h4 {
  color: var(--gold) !important;
}

.locations-strip .service-area-links a,
.locations-strip .locations-grid a {
  color: #ffffff !important;
  opacity: 1 !important;
  text-decoration: none !important;
  font-weight: 800 !important;
}

.locations-strip .service-area-links a:hover,
.locations-strip .locations-grid a:hover {
  color: var(--gold) !important;
  text-decoration: underline !important;
}

.locations-strip .locations-grid li::before {
  opacity: 1 !important;
}

@media (min-width: 701px) and (max-width: 1040px) {
  .service-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .service-card-grid {
    grid-template-columns: 1fr;
  }
  .service-mini-card {
    min-height: 0;
  }
}

/* SEO update v11: dropdown overlays + services grouping */
@media (min-width: 861px) {
  .wrap.site-header {
    overflow: visible !important;
  }

  .wrap.site-header .site-nav {
    overflow: visible !important;
    gap: 8px 10px !important;
  }

  .wrap.site-header .nav-dropdown {
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
    flex: 0 0 auto !important;
  }

  .wrap.site-header .nav-dropdown summary {
    display: inline-flex !important;
    align-items: center !important;
    white-space: nowrap !important;
    user-select: none !important;
  }

  .wrap.site-header .nav-dropdown.active summary,
  .wrap.site-header .nav-dropdown[open] summary,
  .wrap.site-header .nav-dropdown summary:hover {
    color: var(--accent) !important;
    background: rgba(211, 161, 37, 0.14) !important;
    border: 1px solid rgba(211, 161, 37, 0.3) !important;
    font-weight: 800 !important;
  }

  .wrap.site-header .nav-dropdown-menu {
    position: absolute !important;
    top: calc(100% + 10px) !important;
    left: 0 !important;
    right: auto !important;
    display: none !important;
    min-width: 260px !important;
    width: max-content !important;
    max-width: min(460px, calc(100vw - 48px)) !important;
    padding: 10px !important;
    background: #ffffff !important;
    border: 1px solid rgba(38, 64, 103, 0.22) !important;
    border-radius: 16px !important;
    box-shadow: 0 18px 42px rgba(11, 30, 58, 0.24) !important;
    z-index: 10050 !important;
  }

  .wrap.site-header .nav-dropdown[open] .nav-dropdown-menu {
    display: grid !important;
    gap: 4px !important;
  }

  .wrap.site-header .nav-dropdown-menu a {
    display: block !important;
    width: 100% !important;
    color: var(--navy) !important;
    opacity: 1 !important;
    padding: 9px 11px !important;
    border-radius: 12px !important;
    line-height: 1.25 !important;
    font-weight: 700 !important;
    white-space: nowrap !important;
  }

  .wrap.site-header .nav-dropdown-menu a:hover,
  .wrap.site-header .nav-dropdown-menu a.active {
    color: var(--navy) !important;
    background: rgba(252, 202, 76, 0.22) !important;
  }

  .wrap.site-header .nav-dropdown-menu-areas {
    grid-template-columns: repeat(2, minmax(150px, 1fr)) !important;
    min-width: 360px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
  }

  .wrap.site-header .nav-dropdown-menu-services {
    min-width: 290px !important;
  }
}

@media (max-width: 860px) {
  .wrap.site-header .nav-dropdown.active summary {
    color: var(--accent) !important;
    background: rgba(211, 161, 37, 0.14) !important;
  }

  .wrap.site-header .nav-dropdown-menu a {
    color: #ffffff !important;
    opacity: 1 !important;
  }
}


/* SEO update v12: top call button + review source without dates */
.nav-call-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 10px 16px !important;
  border-radius: 14px !important;
  background: var(--gold) !important;
  border: 1px solid rgba(121, 86, 14, 0.35) !important;
  color: #111827 !important;
  font-weight: 800 !important;
  text-decoration: none !important;
  box-shadow: 0 2px 0 rgba(0,0,0,0.08) !important;
  white-space: nowrap !important;
}

.nav-call-btn:hover,
.nav-call-btn:focus {
  background: #ffd85c !important;
  color: #111827 !important;
  transform: translateY(-1px);
}

.review-carousel .review-source {
  margin-top: 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
}

@media (min-width: 861px) {
  .wrap.site-header .nav-call-btn {
    margin-left: 4px !important;
  }
}

@media (max-width: 860px) {
  .wrap.site-header .nav-call-btn {
    width: 100% !important;
    margin-top: 4px !important;
    text-align: center !important;
  }
}

/* SEO/PageSpeed update v16: asset, accessibility, contrast and touch-target polish */
:root {
  --gold-accessible: #8a5a00;
  --gold-accessible-dark: #5c3b00;
}

.gold-heading,
.card .gold-heading,
.card h1[style*="252, 202, 76"],
.card h2[style*="252, 202, 76"],
.card h3[style*="252, 202, 76"] {
  color: var(--gold-accessible) !important;
}

.trust-line {
  color: #111827;
  font-size: 17px;
  font-weight: 700;
  margin: 6px 0 22px;
}

.expectation-note {
  color: var(--gold-accessible-dark);
  font-weight: 800;
  margin: 16px 0 0;
}

.guide-link {
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 800;
}

.emergency-note {
  align-items: center;
  margin: 18px 0 8px;
}
.emergency-note .hint {
  color: #334155;
  font-weight: 800;
  font-size: 15px;
}

.spanish-site-strip {
  background: #fff7db !important;
  border-color: #c98f00 !important;
  color: #14213d !important;
}
.spanish-site-strip strong {
  color: var(--gold-accessible-dark) !important;
}
.spanish-site-strip:hover,
.spanish-site-strip:focus {
  color: #14213d !important;
  background: #ffefb5 !important;
}

.site-footer,
.site-footer .hint,
.site-footer strong,
.site-footer p {
  color: #1d2d44 !important;
}
.site-footer a {
  color: #1e4276 !important;
  font-weight: 700;
}
.site-footer a:hover,
.site-footer a:focus {
  color: var(--gold-accessible-dark) !important;
  text-decoration: underline;
}

.mobile-sticky-call {
  background-color: #8a3a08 !important;
}
.mobile-sticky-call a {
  color: #ffffff !important;
}

.review-carousel .carousel-dot {
  width: 44px !important;
  height: 44px !important;
  min-width: 44px !important;
  min-height: 44px !important;
  border: 0 !important;
  background: transparent !important;
  position: relative;
  padding: 0 !important;
}
.review-carousel .carousel-dot::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(0,0,0,0.35);
  background: #ffffff;
}
.review-carousel .carousel-dot.is-active::after {
  background: #334155;
}
.review-carousel .carousel-dots {
  gap: 0 !important;
}

.contact-form .field {
  margin-bottom: 12px;
}

/* Ensure optimized logo files render crisply without inline styles */
.wrap.site-header picture {
  display: block;
  flex: 0 0 auto;
}
.wrap.site-header .site-logo {
  aspect-ratio: 1 / 1;
}

.locations-strip .locations-wrap h3 {
  color: var(--gold) !important;
  margin: 0 0 12px;
  font-size: 16px;
}


/* v21 PageSpeed stability + accessibility fixes */
.logo-wrap{width:100px;height:100px;flex:0 0 100px;display:block;line-height:0}
.wrap.site-header .logo-wrap,.wrap.site-header .site-logo{width:100px!important;height:100px!important;max-width:100px!important;flex-basis:100px!important;aspect-ratio:1/1;object-fit:contain}
@media(max-width:860px){.logo-wrap{width:70px;height:70px;flex-basis:70px}.wrap.site-header .logo-wrap,.wrap.site-header .site-logo{width:70px!important;height:70px!important;max-width:70px!important;flex-basis:70px!important}}
@media(max-width:520px){.logo-wrap{width:58px;height:58px;flex-basis:58px}.wrap.site-header .logo-wrap,.wrap.site-header .site-logo{width:58px!important;height:58px!important;max-width:58px!important;flex-basis:58px!important}}
h1[style*="252, 202, 76"],h2[style*="252, 202, 76"],h3[style*="252, 202, 76"],h4[style*="goldenrod"],.muted[style*="goldenrod"]{color:#8a5a00!important}
.card p a,.card li a,.service-area-links a{text-decoration:underline;text-underline-offset:0.16em;font-weight:800;color:#1e4276!important}
.card p a:hover,.card li a:hover,.service-area-links a:hover{color:#5c3b00!important}
.gallery-intro{color:#5c3b00!important;font-weight:700;margin-top:-6px}
.thumb{aspect-ratio:4/3;object-fit:cover;background:#eef2f7}
.comment-drawer[aria-hidden="true"]{visibility:hidden}
.comment-drawer.is-open{visibility:visible}
.seo-page-card{overflow-anchor:none}.seo-page-card>.gold-heading{color:#8a5a00!important;min-height:1.2em}.page-body{overflow-wrap:anywhere}.page-body img{max-width:100%;height:auto;display:block}.page-body a{text-decoration:underline;text-underline-offset:.16em;font-weight:800}