:root {
  --blue: #0e6cb3;
  --blue-deep: #0a4f88;
  --blue-soft: #e8f0f7;
  --red: #c22026;
  --red-dark: #a5171d;
  --ink: #15181d;
  --body: #4c525b;
  --muted: #737a83;
  --panel: #eef1f4;
  --white: #ffffff;
  --line: #dfe3e8;
  --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --shadow-sm: 0 4px 14px rgba(16, 40, 70, .08);
  --shadow-md: 0 10px 30px rgba(16, 40, 70, .14);
  --radius: 10px;
  --maxw: 1200px;
}

/* ============================= Base ============================= */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--body);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, h5, h6 { margin: 0 0 .4em; color: var(--ink); line-height: 1.2; }
p { margin: 0 0 1em; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 0; }
.section--panel { background: var(--panel); }
.section--tight { padding: 48px 0; }
.center { text-align: center; }
.skip-link {
  position: absolute; left: -9999px; top: 0;
}
.skip-link:focus { left: 8px; top: 8px; background: #fff; padding: 8px 14px; z-index: 999; }

/* ============================= Typography helpers ============================= */
.eyebrow {
  color: var(--red);
  font-family: var(--sans);
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin: 0 0 10px;
}
.display {
  font-family: var(--serif);
  font-weight: 800;
  color: var(--ink);
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  line-height: 1.15;
  margin: 0 0 .4em;
}
.display--sm { font-size: clamp(1.5rem, 2.6vw, 2rem); }
.accent { color: var(--red); }
.lead { color: var(--body); font-size: 1.02rem; max-width: 720px; }
.center .lead { margin-left: auto; margin-right: auto; }

/* ============================= Buttons ============================= */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 600;
  font-size: .95rem;
  padding: 13px 26px;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: var(--red-dark); }
.btn-blue { background: var(--blue); color: #fff; }
.btn-blue:hover { background: var(--blue-deep); }
.btn-outline { background: transparent; border-color: var(--blue); color: var(--blue); }
.btn-outline:hover { background: var(--blue); color: #fff; }
.btn-pill { border-radius: 999px; }

/* ============================= Header / Nav ============================= */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; gap: 24px;
  min-height: 84px;
  max-width: var(--maxw); margin: 0 auto; padding: 8px 24px;
}
.brand { display: flex; align-items: center; }
.brand img { height: 64px; width: auto; }
.main-nav {
  display: flex; align-items: center; gap: 30px;
  margin-left: auto;
}
.main-nav a {
  font-weight: 500;
  color: var(--blue);
  font-size: 1rem;
  transition: color .15s ease;
}
.main-nav a:hover { color: var(--red); }
.main-nav a.is-active { color: var(--red); }
.header-cta { margin-left: 8px; }
.nav-toggle {
  display: none;
  margin-left: auto;
  background: none; border: 0; cursor: pointer;
  padding: 8px; color: var(--blue);
}
.nav-toggle svg { width: 28px; height: 28px; }

@media (max-width: 900px) {
  .main-nav {
    position: absolute; top: 84px; left: 0; right: 0;
    flex-direction: column; align-items: flex-start; gap: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: 8px 24px 16px;
    display: none;
    box-shadow: var(--shadow-sm);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 10px 0; width: 100%; }
  .header-cta { display: none; }
  .nav-toggle { display: inline-flex; }
}

/* ============================= Home hero ============================= */
.hero-home { position: relative; overflow: hidden; background: #fff; }
.hero-home .hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center top; opacity: .16; z-index: 0;
}
.hero-home .container { position: relative; z-index: 1; }
.hero-home__inner { max-width: 560px; padding: 90px 0 100px; }
.hero-home h1 {
  font-family: var(--serif); font-weight: 800;
  font-size: clamp(2rem, 4.4vw, 3rem); line-height: 1.15; color: var(--ink);
  margin: 0 0 18px;
}
.hero-home p { font-size: 1.02rem; color: var(--body); margin-bottom: 26px; }
.hero-cta-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ============================= Page hero (image band) ============================= */
.page-hero {
  position: relative;
  min-height: 300px;
  display: flex; align-items: center; justify-content: center;
  text-align: center; color: #fff; overflow: hidden;
}
.page-hero .hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.page-hero::after {
  content: ""; position: absolute; inset: 0;
  background: rgba(10, 20, 33, .55); z-index: 1;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 {
  font-family: var(--serif); font-weight: 800; color: #fff;
  font-size: clamp(1.8rem, 3.6vw, 2.6rem); margin: 0 0 12px;
  text-shadow: 0 2px 12px rgba(0,0,0,.35);
}
.page-hero p { color: rgba(255,255,255,.92); max-width: 720px; margin: 0 auto; font-size: 1.02rem; }

/* ============================= Service cards (home) ============================= */
.svc-cards {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 40px;
}
.svc-card {
  position: relative;
  background: var(--blue);
  color: #fff;
  border-radius: 6px 6px 22px 6px;
  padding: 40px 22px 54px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.svc-card__num {
  position: absolute; top: -1px; left: 20px;
  background: var(--red); color: #fff;
  width: 46px; height: 58px; border-radius: 0 0 22px 22px;
  display: flex; align-items: center; justify-content: center;
}
.svc-card__num span {
  background: #fff; color: var(--ink); font-weight: 700; font-size: .8rem;
  width: 30px; height: 30px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.svc-card h3 { color: #fff; font-family: var(--sans); font-size: 1.12rem; margin: 26px 0 12px; }
.svc-card p { color: rgba(255,255,255,.9); font-size: .92rem; margin: 0; }
.svc-card__arrow {
  position: absolute; right: 16px; bottom: 16px;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--red); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
}

/* ============================= About split (home + about) ============================= */
.about-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
.about-media { position: relative; min-height: 460px; }
.about-media__tall {
  width: 72%; border-radius: 6px; box-shadow: var(--shadow-md);
  aspect-ratio: 442 / 488; object-fit: cover;
}
.about-media__small {
  position: absolute; right: 0; bottom: 22px;
  width: 52%; border-radius: 6px; box-shadow: var(--shadow-md);
  aspect-ratio: 290 / 348; object-fit: cover; border: 6px solid #fff;
}
.about-body h2 { margin-bottom: 16px; }

/* ============================= Why band (home) ============================= */
.why-band { position: relative; background: #0b0d10; overflow: hidden; }
.why-band .why-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: .28; z-index: 0;
}
.why-band .container { position: relative; z-index: 1; padding-top: 70px; padding-bottom: 70px; }
.why-card {
  background: #ececec; color: var(--ink);
  max-width: 480px; padding: 40px 38px; border-radius: 4px;
  box-shadow: var(--shadow-md);
}
.why-card h2 { margin-bottom: 16px; }
.why-card p { color: #33383f; margin-bottom: 1em; }
.why-card p:last-child { margin-bottom: 0; }

/* ============================= Serving band ============================= */
.serving {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.serving__intro h2 { margin-bottom: 14px; }
.city-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.city-pill {
  background: var(--blue); color: #fff;
  border-radius: 8px; padding: 16px 14px;
  display: flex; align-items: center; gap: 8px; justify-content: center;
  font-weight: 600; font-size: .98rem;
  box-shadow: var(--shadow-sm);
}
.city-pill svg { width: 18px; height: 18px; flex: none; }
.city-pill .pin { color: var(--red); }

/* ============================= Home gallery / swiper ============================= */
.home-gallery .swiper { padding: 8px 4px 4px; }
/* continuous drift: autoplay has no delay, so the transition must not ease */
.home-gallery .swiper-wrapper { transition-timing-function: linear; }
.home-gallery .swiper-slide { height: auto; }
.gallery-tile {
  border-radius: 4px; overflow: hidden; box-shadow: var(--shadow-sm);
  aspect-ratio: 1 / 1; background: var(--panel);
}
.gallery-tile img { width: 100%; height: 100%; object-fit: cover; display: block; }
.home-gallery .swiper-button-next,
.home-gallery .swiper-button-prev { color: var(--white); }
.home-gallery .swiper-button-next::after,
.home-gallery .swiper-button-prev::after { font-size: 20px; font-weight: 700; }
.home-gallery .swiper-button-next,
.home-gallery .swiper-button-prev {
  background: rgba(194,32,38,.9); width: 40px; height: 40px; border-radius: 50%;
}

/* ============================= Testimonials (home) ============================= */
.testi-band { display: grid; grid-template-columns: 1.35fr 1fr; align-items: stretch; margin: 110px 0; }
.testi-cards {
  background: var(--blue); padding: 60px 48px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 22px; align-items: start;
}
.testi-card {
  background: #fff; border-radius: 8px; padding: 20px; box-shadow: var(--shadow-md);
}
.testi-card__head { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.testi-card__head img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; }
.testi-card__name { color: var(--blue); font-weight: 700; font-size: .98rem; }
.testi-card__loc { color: var(--muted); font-size: .8rem; }
.testi-card p { font-size: .9rem; color: var(--body); margin: 0 0 12px; }
.stars { color: var(--red); letter-spacing: 2px; font-size: .95rem; }
.testi-intro { padding: 60px 48px; display: flex; flex-direction: column; justify-content: center; }
.testi-quote-mark { color: var(--red); font-family: var(--serif); font-size: 4rem; line-height: .5; margin-bottom: 10px; }

/* ============================= Services page rows ============================= */
.svc-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: center;
  margin-bottom: 20px;
}
.svc-row:nth-child(even) .svc-row__media { order: 2; }
.svc-photo { width: 100%; border-radius: 6px; box-shadow: var(--shadow-md); aspect-ratio: 603 / 570; object-fit: cover; }
.svc-panel {
  color: #fff; border-radius: 8px; padding: 34px 34px; box-shadow: var(--shadow-md);
}
.svc-panel--blue { background: var(--blue); }
.svc-panel--red { background: var(--red); }
.svc-panel h2 { color: #fff; }
.svc-panel p { color: rgba(255,255,255,.94); }
.svc-checks { list-style: none; margin: 18px 0 20px; padding: 0; }
.svc-checks li {
  display: flex; align-items: flex-start; gap: 10px; margin-bottom: 10px;
  color: var(--body); font-size: .95rem;
}
.svc-checks li::before {
  content: "➔"; color: var(--red); font-weight: 700; flex: none;
}

/* ============================= Gallery page grid ============================= */
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px;
}
.gallery-grid .gallery-tile { border-radius: 0; box-shadow: none; }

/* ============================= Reviews page ============================= */
.reviews-summary {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 20px; margin-bottom: 34px;
}
.reviews-summary h2 { margin: 0; font-family: var(--sans); font-size: 1.4rem; color: var(--ink); }
.reviews-score { display: flex; align-items: center; gap: 16px; }
.reviews-score .num { font-size: 2.2rem; font-weight: 700; color: var(--ink); line-height: 1; }
.reviews-score .stars-lg { color: #f5b301; font-size: 1.1rem; letter-spacing: 1px; }
.reviews-score .count { color: var(--muted); font-size: .82rem; border-left: 1px solid var(--line); padding-left: 12px; }
.review-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.review-card {
  background: #fff; border: 1px solid var(--line); border-radius: 10px;
  padding: 20px; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.review-card__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.review-card__rating { display: flex; align-items: center; gap: 6px; }
.review-card__rating .n { font-weight: 700; color: #f5b301; }
.review-card__rating .stars-lg { color: #f5b301; font-size: .9rem; letter-spacing: 1px; }
.review-card__date { color: var(--muted); font-size: .78rem; }
.review-card__body { color: var(--body); font-size: .9rem; flex: 1; margin-bottom: 16px; }
.review-card__foot { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.review-card__who { display: flex; align-items: center; gap: 10px; }
.review-avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--panel); color: var(--muted);
  display: flex; align-items: center; justify-content: center;
  font-size: .72rem; font-weight: 700;
}
.review-card__who .name { font-size: .86rem; color: var(--ink); font-weight: 500; }
.g-badge {
  width: 22px; height: 22px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .85rem;
  background: conic-gradient(#4285f4 0 25%, #34a853 0 50%, #fbbc05 0 75%, #ea4335 0);
  color: #fff;
}
.reviews-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 26px; flex-wrap: wrap; gap: 12px; }
.reviews-powered { color: var(--muted); font-size: .78rem; }
.load-more { background: none; border: 0; color: var(--ink); font-weight: 600; cursor: pointer; margin: 0 auto; }

/* ============================= Contact page ============================= */
.contact-hero { position: relative; display: grid; grid-template-columns: 1.1fr 1fr; min-height: 340px; overflow: hidden; }
.contact-hero__photo { position: relative; }
.contact-hero__photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.contact-hero__panel {
  background: var(--blue); color: #fff;
  display: flex; flex-direction: column; justify-content: center;
  padding: 48px 56px;
}
.contact-hero__panel .chip {
  display: inline-block; background: #fff; color: var(--red);
  font-weight: 600; font-size: .8rem; letter-spacing: .06em;
  padding: 4px 12px; border-radius: 4px; margin-bottom: 14px; width: max-content;
}
.contact-hero__panel h1 { color: #fff; font-family: var(--serif); font-size: clamp(1.8rem,3vw,2.4rem); margin: 0 0 14px; }
.contact-hero__panel p { color: rgba(255,255,255,.94); margin: 0; }

.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.contact-card {
  position: relative; border-radius: 8px; padding: 26px 24px 26px 84px;
  color: #fff; box-shadow: var(--shadow-sm); min-height: 100px;
  display: flex; flex-direction: column; justify-content: center;
}
.contact-card--blue { background: var(--blue); }
.contact-card--red { background: var(--red); }
.contact-card__icon {
  position: absolute; left: -12px; top: 50%; transform: translateY(-50%);
  width: 68px; height: 68px; border-radius: 50%;
  background: var(--red); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
}
.contact-card--red .contact-card__icon { background: var(--blue); }
.contact-card__icon svg { width: 30px; height: 30px; }
.contact-card h3 { color: #fff; font-family: var(--serif); font-size: 1.3rem; margin: 0 0 4px; }
.contact-card a, .contact-card p { color: rgba(255,255,255,.95); margin: 0; font-size: .92rem; word-break: break-word; }

.contact-form-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.contact-form .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form .full { grid-column: 1 / -1; }
.contact-form label.field-label { display: none; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%; font-family: var(--sans); font-size: .95rem;
  padding: 13px 14px; border: 1px solid #c7ccd2; border-radius: 6px;
  color: var(--ink); background: #fff;
}
.contact-form textarea { min-height: 120px; resize: vertical; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { outline: 2px solid var(--blue); border-color: var(--blue); }
.hp-field { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.contact-photo img { width: 100%; border-radius: 8px; box-shadow: var(--shadow-md); aspect-ratio: 592 / 524; object-fit: cover; }
#map { width: 100%; height: 420px; z-index: 0; }
.leaflet-container { font-family: var(--sans); }

/* ============================= Footer ============================= */
.site-footer {
  position: relative; color: #fff; overflow: hidden;
  background-image: linear-gradient(160deg, rgba(26,114,189,.93) 0%, rgba(12,86,149,.94) 55%, rgba(10,76,134,.96) 100%), url(orig/15.jpg);
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
}
.newsletter { text-align: center; padding: 56px 24px 40px; }
.newsletter h2 { font-family: var(--serif); color: #fff; font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 26px; }
.newsletter form { display: flex; gap: 12px; max-width: 640px; margin: 0 auto; flex-wrap: wrap; justify-content: center; }
.newsletter input {
  flex: 1; min-width: 240px; border: 2px solid #fff; background: rgba(255,255,255,.08);
  color: #fff; border-radius: 999px; padding: 12px 22px; font-family: var(--sans);
}
.newsletter input::placeholder { color: rgba(255,255,255,.85); }
.footer-divider { max-width: var(--maxw); margin: 0 auto; border-top: 1px solid rgba(255,255,255,.35); }
.footer-cols {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr 1.2fr 1.3fr; gap: 32px;
  padding: 46px 24px 40px;
}
.footer-brand img { height: 74px; width: auto; margin-bottom: 16px; }
.footer-brand p { color: rgba(255,255,255,.9); font-size: .92rem; max-width: 260px; }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a { display: inline-flex; }
.footer-social img { width: 34px; height: 34px; }
.footer-col h4 { color: #fff; font-family: var(--serif); font-size: 1.25rem; margin-bottom: 18px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.footer-col li::before { content: ""; }
.footer-links a, .footer-services span, .footer-contact a, .footer-contact span { color: rgba(255,255,255,.92); font-size: .94rem; }
.footer-links a:hover { color: #fff; text-decoration: underline; }
.footer-marker {
  width: 18px; height: 18px; border-radius: 3px; background: var(--red); flex: none;
  display: inline-flex; align-items: center; justify-content: center; color: #fff; font-size: .7rem;
}
.footer-contact li { align-items: flex-start; }
.footer-contact svg { width: 20px; height: 20px; flex: none; margin-top: 2px; }
.footer-bottom { background: var(--red); text-align: center; padding: 16px; font-size: .9rem; color: #fff; position: relative; z-index: 1; }

/* ============================= Motion ============================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
/* Entrance animations run on load and always end visible (fill-mode both). */
.reveal { animation: fadeUp .7s ease both; }
.reveal-2 { animation: fadeUp .7s ease .12s both; }
.reveal-3 { animation: fadeUp .7s ease .24s both; }
.fade-in { animation: fadeIn 1s ease both; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; transition: none !important; }
}

/* ============================= Responsive ============================= */
@media (max-width: 1000px) {
  .svc-cards { grid-template-columns: repeat(2, 1fr); }
  .review-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-cols { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 820px) {
  .section { padding: 52px 0; }
  .about-split, .serving, .svc-row, .testi-band, .contact-form-wrap, .contact-hero { grid-template-columns: 1fr; }
  .svc-row:nth-child(even) .svc-row__media { order: 0; }
  .about-media { min-height: 380px; }
  .testi-cards { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr; gap: 30px; }
  .contact-card { padding-left: 84px; }
  .city-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .svc-cards, .gallery-grid, .review-grid { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr; }
  .hero-home__inner { padding: 60px 0; }
}
