/* restore-overrides.css: added by the 2026-09-24 static restore (PREVIEW ONLY).
   The homepage layout CSS (post-59.css) was never archived. Without it, the two intro image widgets
   (.elementor-element-772740b3 and -8f92b1d, Elementor "absolute" position) stack on top of the intro and
   about text. This file puts them back in normal flow. Nothing else on the page is restyled. */

/* Hero column: lay out the heading block, the button and the two images in a grid (mobile / tablet: stacked) */
.elementor-59 .elementor-element-3e23af8d > .elementor-widget-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  grid-template-areas:
    "text  text"
    "btn   btn"
    "img1  img2";
  gap: 20px 16px;
  align-items: center;
  box-sizing: border-box;
  max-width: 1140px;
  margin: 0 auto;
  padding: 40px 20px;
}
.elementor-59 .elementor-element-3e23af8d .elementor-element.elementor-element-5a65454f { grid-area: text; }
.elementor-59 .elementor-element-3e23af8d .elementor-element.elementor-element-c0b8416  { grid-area: btn; margin: 0; }

/* The two intro images: out of absolute positioning, fill their grid cell */
.elementor-59 .elementor-widget-wrap > .elementor-element.elementor-element-772740b3,
.elementor-59 .elementor-widget-wrap > .elementor-element.elementor-element-8f92b1d {
  position: static;
  width: auto;
  max-width: 100%;
  margin: 0;
  z-index: auto;
}
.elementor-59 .elementor-element.elementor-element-772740b3 { grid-area: img1; }
.elementor-59 .elementor-element.elementor-element-8f92b1d  { grid-area: img2; }
.elementor-59 .elementor-element-772740b3 img,
.elementor-59 .elementor-element-8f92b1d img {
  display: block;
  width: 100%;
  height: auto;
}

/* Desktop: text + button on the left, the two images side by side on the right */
@media (min-width: 1025px) {
  .elementor-59 .elementor-element-3e23af8d > .elementor-widget-wrap {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr) minmax(0, 1fr);
    grid-template-areas:
      "text img1 img2"
      "btn  img1 img2";
    grid-template-rows: auto auto;
    align-content: center;
    column-gap: 24px;
    padding: 48px 20px;
  }
  .elementor-59 .elementor-element-3e23af8d .elementor-element.elementor-element-5a65454f { align-self: end; }
  .elementor-59 .elementor-element-3e23af8d .elementor-element.elementor-element-c0b8416  { align-self: start; }
}

/* About section (376bef44): small gutter so the heading/paragraph don't touch the photo (desktop)
   or the screen edge (mobile). Only padding; text and fonts unchanged. */
@media (min-width: 768px) {
  .elementor-59 .elementor-element-3fd995e8 > .elementor-widget-wrap { padding-left: 40px; }
}
@media (max-width: 767px) {
  .elementor-59 .elementor-element-3fd995e8 > .elementor-widget-wrap { padding: 0 20px; }
}

/* ---------------------------------------------------------------------------------------------
   Fonts. The page already loads Google Fonts "Italiana" + "PT Sans" (the google-fonts-1-css link
   Elementor enqueued, which works as archived). The kit CSS that applied them (post-16.css / global.css)
   was never archived. The two families are evidenced by that link. WHICH element used WHICH family is
   assumed: display face Italiana for headings, PT Sans for body/nav/buttons.
   Italiana ships only weight 400, so headings are set to 400 to avoid faux-bold. Sizes are unchanged.
   --------------------------------------------------------------------------------------------- */
.elementor-kit-16 {
  --e-global-typography-primary-font-family: "Italiana";
  --e-global-typography-secondary-font-family: "Italiana";
  --e-global-typography-text-font-family: "PT Sans";
  --e-global-typography-accent-font-family: "PT Sans";
}
body.elementor-kit-16,
.elementor-kit-16 p,
.elementor-kit-16 .elementor-widget-text-editor,
.elementor-kit-16 .site-navigation,
.elementor-kit-16 .site-navigation-dropdown,
.elementor-kit-16 .site-description,
.elementor-kit-16 .copyright,
.elementor-kit-16 .elementor-button,
.elementor-kit-16 button,
.elementor-kit-16 input,
.elementor-kit-16 textarea {
  font-family: "PT Sans", sans-serif;
}
.elementor-kit-16 h1, .elementor-kit-16 h2, .elementor-kit-16 h3,
.elementor-kit-16 h4, .elementor-kit-16 h5, .elementor-kit-16 h6,
.elementor-kit-16 .elementor-heading-title {
  font-family: "Italiana", serif;
  font-weight: 400;
}

/* Nav: Home / Info / Contact were Hello Elementor default link pink (#c36).
   Jason 2026-09-25: make those menu links black. Header + footer + mobile dropdown. */
.site-navigation ul.menu a,
.site-navigation ul.menu a:visited,
.site-navigation-dropdown ul.menu a,
.site-navigation-dropdown ul.menu a:visited,
.site-footer .site-navigation ul.menu a,
.site-footer .site-navigation ul.menu a:visited {
  color: #000;
}
.site-navigation ul.menu a:hover,
.site-navigation ul.menu a:active,
.site-navigation ul.menu a:focus,
.site-navigation-dropdown ul.menu a:hover,
.site-navigation-dropdown ul.menu a:active,
.site-navigation-dropdown ul.menu a:focus,
.site-footer .site-navigation ul.menu a:hover,
.site-footer .site-navigation ul.menu a:active,
.site-footer .site-navigation ul.menu a:focus {
  color: #000;
}
.site-navigation-dropdown ul.menu li.current-menu-item a {
  color: #000;
}
