/* ===============================
   STYLE.CSS (FINAL – CLEAN)
   Fonts + Typography + Components
   =============================== */

/* ================= LOCAL FONTS (ONLY HERE) ================= */

@font-face{
  font-family:"OpenSansLocal";
  src:url("/assets/fonts/open-sans-variable.woff2") format("woff2");
  font-weight:300 800;
  font-style:normal;
  font-display:swap;
}

@font-face{
  font-family:"CaveatLocal";
  src:url("/assets/fonts/caveat-variable.woff2") format("woff2");
  font-weight:400 700;
  font-style:normal;
  font-display:swap;
}

/* ================= TYPO (headings kept as-is) ================= */

h1{font-size:34px;margin:0 0 18px;}
h2{font-size:24px;margin:0 0 14px;}
h3{font-size:20px;margin:24px 0 12px;}
h4,h5,h6{margin:20px 0 10px;}

.lead{font-size:18px;opacity:.85;}
.smallNote{font-size:14px;opacity:.7;}

.kicker{
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:.08em;
  color:var(--brand);
  margin-bottom:6px;
}

/* ================= FONT RULES (REQUESTED) =================
   A) “Why people love…” titles -> Open Sans, bold
   B) Explanation / normal paragraphs (NOT footer, NOT address, NOT smallNote)
      -> handwritten (CaveatLocal)
   C) Footer + address stays system font, only a bit bolder
   ========================================================== */

/* A) Section/Card titles (your "Why people love..." etc.) */
.section h2,
.cardPad h2{
  font-family:"OpenSansLocal", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight:700;
  letter-spacing:0.01em;
}

/* B) Explanation text (main content only) */
.heroText p,
.section p:not(.smallNote),
.cardPad p:not(.smallNote){
  font-family:"OpenSansLocal", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight:600;
  font-size:1.05rem;
  line-height:1.65;
  letter-spacing:0;
}

/* C) Footer/address: keep current font, just bolder */
.footer,
.footer p,
.footer a,
.footer strong{
  font-family:inherit;
  font-weight:600;
}

/* ================= ADDRESS OVERRIDE (REQUESTED) =================
   Address + contact blocks must stay system font (NOT handwritten)
   =============================================================== */

.addressText{
  font-family:inherit !important;
  font-weight:600;
  font-size:1rem;
  line-height:1.55;
  letter-spacing:0;
}

/* ================= HERO CONTENT ================= */

.hero-content{ padding-top:60px; }

.heroCard{
  background:#fff;
  border-radius:18px;
}

.heroText{ padding:40px; }
.heroMedia{ padding:20px; }

/* ================= MOSAIC (TOP 2x2) ================= */

.mosaic picture{
  overflow:hidden;
  border-radius:14px;
}

.mosaic img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* ================= HOME: BOTTOM TWO PHOTOS (must be side-by-side & same style) ================= */

.bottom-two{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:16px;
  align-items:stretch;
}

.bottom-two > picture{
  display:block;
  aspect-ratio:1 / 1;
  overflow:hidden;
  border-radius:14px;
}

.bottom-two img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
}

/* ================= CONTACT ================= */

.contactGrid{
  display:grid;
  gap:20px;
}

.contactBox{
  background:#fff;
  border-radius:14px;
}

.map-container iframe{
  width:100%;
  height:100%;
  min-height:320px;
  border:0;
  border-radius:14px;
}

/* ================= FOOTER (non-critical extras) ================= */

.footer a{
  color:#111;
}
.signature-line{
  font-family:"OpenSansLocal", system-ui, sans-serif;
  font-weight:700;
  font-size:4rem;
  line-height:0.95;
}