/* The Goosinator - shared design system (cloned from goosinatorco.com, Wix source) */
/* Fonts are loaded via a <link> tag in each page head (Roboto = Google-Font stand-in
   for the Wix Madefor / Roboto stack the source used). */

:root {
  --orange: #fe6c31;        /* color_18 - primary brand orange (nav bar, buttons, links) */
  --orange-deep: #ed5829;   /* color_23 - hover / deeper orange */
  --red: #ed1c24;           /* color_3  - phone / accent red */
  --charcoal: #383838;      /* dark submenu panel */
  --logo-bg: #1b1e22;       /* sampled from the logo's baked-in background - header + footer bars */
  --dark: #262626;          /* dark content bands */
  --dark-2: #1e1e1e;        /* form band */
  --ink: #101010;           /* near-black headings / body */
  --gray: #6f6f6f;          /* muted body text */
  --light: #ececec;         /* light gray band */
  --white: #ffffff;
  --maxw: 1160px;
  --pill: 999px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: var(--orange); text-decoration: none; }
a:hover { color: var(--orange-deep); }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--orange); color: #fff; padding: 8px 14px; z-index: 200;
}
.skip:focus { left: 8px; top: 8px; }

/* ---------- Keyframes (ported from source: fadeIn / motion-floatIn) ---------- */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes floatIn { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulseDot { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(.7); opacity: .55; } }

/* On-load reveals ALWAYS end visible (animation-fill-mode: both) - nothing is hidden by a static rule. */
.reveal { animation: floatIn .7s ease both; }
.reveal-2 { animation: floatIn .7s ease .12s both; }
.fade { animation: fadeIn .8s ease both; }

/* ============================= HEADER ============================= */
.site-header { position: relative; z-index: 50; }

.topbar { background: var(--logo-bg); color: #cfcfcf; }
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding: 14px 24px; flex-wrap: wrap;
}
.brand { display: flex; align-items: center; color: #fff; }
.brand-logo { width: 124px; height: auto; }

.topbar-contact { display: flex; align-items: center; gap: 34px; flex-wrap: wrap; }
.call { display: flex; align-items: center; gap: 10px; }
.call-ico { width: 30px; height: 30px; filter: brightness(0) invert(1); opacity: .9; }
.call-label { display: block; font-size: 12px; letter-spacing: 1px; color: #d9d9d9; }
.call-num { display: block; color: var(--orange); font-weight: 700; font-size: 17px; }
.social-email { display: flex; flex-direction: column; gap: 8px; font-size: 12px; letter-spacing: .5px; }
.social-email a.email-link, .email-link { color: var(--orange); }
.fb {
  display: inline-flex; width: 20px; height: 20px; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-family: Georgia, serif; vertical-align: middle;
}
.fb:hover { color: var(--orange); }

/* ---- main orange nav ---- */
.mainnav { background: var(--orange); }
.mainnav .container { max-width: 1340px; padding: 0 16px; }
.menu {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: nowrap; align-items: stretch; justify-content: center; gap: 0;
}
.menu > li { position: relative; }
.menu > li > a, .menu > li > .subtoggle {
  display: block; padding: 12px 13px; color: #fff; font-size: 14px; font-weight: 500;
  white-space: nowrap; background: transparent; border: 0; cursor: pointer;
  font-family: inherit; letter-spacing: .3px;
  transition: background .2s ease, color .2s ease;
}
.menu > li > a:hover, .menu > li > .subtoggle:hover,
.menu > li.has-sub:hover > .subtoggle,
.menu > li:focus-within > .subtoggle { background: rgba(0,0,0,.16); color: #fff; }
.menu > li > a.active { background: rgba(0,0,0,.22); }

.submenu {
  list-style: none; margin: 0; padding: 6px 0; position: absolute; left: 0; top: 100%;
  min-width: 220px; background: var(--charcoal); box-shadow: 0 12px 28px rgba(0,0,0,.28);
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s; z-index: 60;
}
.menu > li.has-sub:hover > .submenu,
.menu > li.has-sub:focus-within > .submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.submenu a { display: block; padding: 10px 18px; color: #eee; font-size: 14px; }
.submenu a:hover { background: var(--orange); color: #fff; }
.caret { font-size: 10px; margin-left: 4px; }

/* ============================= SECTIONS ============================= */
.sec { padding: 64px 0; }
.sec-tight { padding: 40px 0; }

.h-eyebrow { font-size: 15px; font-weight: 700; letter-spacing: .3px; margin: 0 0 14px; color: var(--ink); }
.h-title { font-size: 44px; line-height: 1.08; font-weight: 800; margin: 0 0 18px; color: var(--ink); letter-spacing: .5px; }
.h-sub { font-size: 22px; font-weight: 700; margin: 0 0 16px; color: var(--ink); }
.h-mid { font-size: 20px; font-weight: 700; margin: 26px 0 12px; }
p { margin: 0 0 16px; font-size: 15.5px; color: #2b2b2b; }
.muted { color: var(--gray); }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: start; }
.two-col.tight { gap: 34px; }
.two-col img { width: 100%; height: auto; border-radius: 2px; }
.center { text-align: center; }
.narrow { max-width: 900px; margin: 0 auto; }

/* full-bleed faint band divider image */
.band-img { width: 100%; height: auto; display: block; }

/* dark content band (white text over a darkened goose photo) */
.sec-dark {
  color: #f2f2f2; padding: 70px 0;
  background-color: var(--dark);
  background-size: cover; background-position: center;
  background-repeat: no-repeat;
}
.sec-dark .h-title, .sec-dark .h-sub, .sec-dark .h-mid, .sec-dark .h-eyebrow { color: #fff; }
.sec-dark p { color: #e6e6e6; }
.sec-dark a { color: var(--orange); }
/* buttons keep their own text colour - .sec-dark a would otherwise paint them orange-on-orange */
.sec-dark a.btn-orange, .sec-dark a.btn-dark { color: #fff; }

/* ---- buttons ---- */
.btn {
  display: inline-block; padding: 14px 30px; border-radius: var(--pill);
  font-weight: 700; font-size: 14px; letter-spacing: 1px; text-transform: uppercase;
  transition: transform .15s ease, background .2s ease, color .2s ease; cursor: pointer; border: 0;
}
.btn-orange { background: var(--orange); color: #fff; }
.btn-orange:hover { background: var(--orange-deep); color: #fff; transform: translateY(-2px); }
.btn-dark { background: #141414; color: #fff; }
.btn-dark:hover { background: #000; color: #fff; transform: translateY(-2px); }

/* ---- orange CTA band ---- */
.cta-band { background: var(--orange); text-align: center; padding: 56px 0; }
.cta-band h2 { color: #fff; font-size: 38px; font-weight: 800; margin: 0 0 26px; letter-spacing: .5px; }

/* ---- light gray band ---- */
.sec-light { background: var(--light); padding: 64px 0; }

/* ============================= FORM BAND ============================= */
.form-band {
  background-color: var(--dark-2);
  background-size: cover; background-position: center;
  padding: 70px 0 90px;
}
.lead-form { max-width: 900px; margin: 0 auto; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 30px; }
.field label { display: block; color: #fff; font-size: 13px; font-weight: 700; margin: 0 0 6px; }
.field input {
  width: 100%; padding: 11px 12px; border: 1px solid #d8d8d8; background: #fff;
  font-size: 15px; font-family: inherit; border-radius: 2px;
}
.field input:focus { outline: 2px solid var(--orange); border-color: var(--orange); }
.form-actions { margin-top: 26px; }
.hp { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }

/* ============================= FOOTER ============================= */
.site-footer { background: var(--logo-bg); color: #cfcfcf; padding: 46px 0 34px; text-align: center; }
.footer-brand { display: inline-flex; align-items: center; justify-content: center; margin-bottom: 22px; }
.footer-brand .brand-logo { width: 134px; }
.footer-nav { list-style: none; padding: 0; margin: 0 auto 22px; display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 26px; max-width: 900px; }
.footer-nav a { color: #e6e6e6; font-size: 14px; }
.footer-nav a:hover, .footer-nav a.active { color: var(--orange); }
.footer-contact { font-size: 13.5px; color: #d0d0d0; margin: 0 0 12px; }
.footer-contact a { color: var(--orange); font-weight: 700; }
.footer-like { font-size: 13px; margin: 0 0 16px; }
.footer-copy { font-size: 12px; color: #9a9a9a; }

/* ============================= HOME ============================= */
.hero {
  position: relative; min-height: 420px; display: flex; align-items: center; justify-content: center;
  text-align: center; color: #fff; overflow: hidden; background: #12222f;
}
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero::after { content: ""; position: absolute; inset: 0; background: rgba(8,20,30,.34); z-index: 1; }
.hero-inner { position: relative; z-index: 2; padding: 60px 24px; }
.hero-inner h1 { font-size: 46px; font-weight: 800; margin: 0 0 14px; color: #fff; text-shadow: 0 2px 14px rgba(0,0,0,.5); }
.hero-inner p { color: #fff; font-size: 18px; margin: 0 0 26px; text-shadow: 0 1px 8px rgba(0,0,0,.5); }

.section-sub-center { text-align: center; max-width: 1000px; margin: 0 auto; }
.section-sub-center h3 { font-size: 20px; font-weight: 800; margin: 0 0 14px; }
.section-sub-center p { color: #333; }

/* feature icon row (over dark strip) */
.features {
  background-color: var(--dark);
  background-size: cover; background-position: center;
  padding: 92px 0;
}
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.feature .ficon {
  width: 78px; height: 78px; border-radius: 50%; border: 2px solid var(--orange);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 14px;
}
.feature .ficon img { width: 42px; height: 42px; filter: brightness(0) invert(1); }
.feature h4 { color: var(--orange); font-size: 15px; font-weight: 700; margin: 0 0 8px; letter-spacing: .5px; }
.feature h4 a { color: var(--orange); }
.feature p { color: #dcdcdc; font-size: 13.5px; margin: 0; }

/* gallery strip */
.gallery-strip { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; }
.gallery-strip img { width: 100%; height: 260px; object-fit: cover; }

/* reviews */
.reviews { display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: center; }
.reviews .media-box { background: var(--dark); padding: 26px; }
.reviews .media-box h3 { color: #fff; font-weight: 800; margin: 0 0 18px; }
.quote-block { position: relative; padding: 20px 10px; }
.quote-block .qmark { width: 44px; height: auto; }
.quote-block .qmark.close { margin-left: auto; }
.quote-block h4 { font-weight: 700; margin: 8px 0 10px; }
.quote-block p { color: #555; font-style: italic; }

.google-badge { width: 120px; height: auto; margin: 20px auto; }

/* media videos */
.video-wrap { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; margin: 0 0 26px; background: #000; }
.video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }

/* ============================= COMPARISON TABLE (vs-dog) ============================= */
.cmp-table { width: 100%; border-collapse: collapse; margin: 8px 0 0; }
.cmp-table th {
  background: var(--orange); color: #fff; text-align: left; font-size: 16px; font-weight: 700;
  padding: 14px 18px; width: 33.33%;
}
.cmp-table td { padding: 14px 18px; font-size: 14.5px; color: #2b2b2b; vertical-align: top; border: 0; }
.cmp-table tbody tr:nth-child(even) { background: #f4f4f4; }
.cmp-table tbody tr:nth-child(odd) { background: #fff; }

/* ============================= COST ANALYSIS ============================= */
.cost-price { font-size: 46px; font-weight: 800; color: var(--ink); margin: 6px 0; }
.sec-dark .cost-price { color: var(--orange); }
.testimonial { background: #f0f0f0; padding: 34px 38px; margin: 0 0 26px; }
.testimonial:nth-child(even) { background: var(--white); border: 1px solid #e2e2e2; }
.testimonial img { width: 52px; height: 52px; margin: 0 0 18px; }
.testimonial p { color: #333; margin: 0 0 14px; }
.testimonial .attrib { font-weight: 700; font-size: 15px; margin: 0 0 4px; }
.testimonial .attrib a { color: var(--orange); }

/* ============================= GALLERY PAGE ============================= */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery-tile { margin: 0; overflow: hidden; background: #ddd; }
.gallery-tile img {
  width: 100%; height: 220px; object-fit: cover;
  transition: transform .35s ease;
}
.gallery-tile:hover img { transform: scale(1.05); }

/* ============================= FAQ PAGE ============================= */
.faq-item { background: var(--white); padding: 26px 30px; margin: 0 0 14px; border-left: 4px solid var(--orange); }
.faq-q { font-size: 17px; font-weight: 700; margin: 0 0 10px; color: var(--ink); }
.faq-a { margin: 0; color: #3a3a3a; }

/* ============================= MEDIA PAGE ============================= */
.pill-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 8px; }
.pill-row .btn { font-size: 12.5px; padding: 12px 24px; }
.video-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 26px; }
.testimonial-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; align-items: start; }
.testimonial-grid .testimonial { margin: 0; }
.testimonial-org { color: var(--gray); font-style: italic; margin: 0 0 10px; }

/* text with a photo floated alongside it (Trapping Geese) */
.has-figure::after { content: ""; display: block; clear: both; }
.figure-right { float: right; width: 44%; height: auto; margin: 4px 0 22px 40px; }

/* orange CTA band with a second line above the button (FAQ) */
.cta-band .cta-sub { color: #fff; font-weight: 700; font-size: 16px; letter-spacing: .3px; margin: 0 0 26px; }

/* ============================= CONTACT PAGE ============================= */
.contact-aside { padding-top: 6px; }
.contact-fb { display: inline-block; width: 72px; margin: 0 0 14px; }
.contact-fb img { width: 72px; height: 72px; }
.contact-label { font-size: 13px; font-weight: 700; letter-spacing: .5px; color: var(--ink); margin: 18px 0 2px; }
.contact-aside p { margin: 0 0 4px; }

/* ============================= CAROUSEL ============================= */
.carousel { position: relative; }
.carousel-viewport { overflow: hidden; }
.carousel-track { display: flex; transition: transform .6s ease; }
.carousel-slide { flex: 0 0 100%; min-width: 100%; }

.carousel-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 44px; height: 44px; padding: 0; border: 0; border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,.34); color: #fff; font-size: 26px; line-height: 1;
  font-family: inherit; transition: background .2s ease;
}
.carousel-arrow:hover { background: var(--orange); }
.carousel-prev { left: 14px; }
.carousel-next { right: 14px; }

.carousel-dots {
  position: absolute; left: 0; right: 0; bottom: 18px; z-index: 5;
  display: flex; justify-content: center; gap: 10px;
}
.carousel-dots button {
  width: 12px; height: 12px; padding: 0; border-radius: 50%; cursor: pointer;
  border: 2px solid #fff; background: transparent; transition: background .2s ease;
}
.carousel-dots button[aria-current="true"] { background: #fff; }

/* hero slideshow - each slide is a full .hero panel */
.hero-carousel .hero { min-height: 470px; }

/* client-review slideshow sits on the light gray band, so the arrows go dark-on-light */
.quote-carousel { padding: 0 52px; }
.quote-carousel .carousel-arrow { background: rgba(0,0,0,.18); width: 38px; height: 38px; font-size: 22px; }
.quote-carousel .carousel-arrow:hover { background: var(--orange); }
.quote-carousel .carousel-prev { left: 0; }
.quote-carousel .carousel-next { right: 0; }
.quote-carousel .carousel-slide p { margin: 0; }

/* ============================= RESPONSIVE ============================= */
@media (max-width: 900px) {
  .h-title { font-size: 34px; }
  .brand-logo { width: 104px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .video-row { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .figure-right { float: none; width: 100%; height: auto; margin: 0 0 22px; }
  .faq-item { padding: 22px 20px; }
  .quote-carousel { padding: 0 42px; }
  .testimonial { padding: 26px 22px; }
  .two-col, .reviews, .video-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-strip { grid-template-columns: repeat(2, 1fr); }
  .form-grid { grid-template-columns: 1fr; }
  .topbar-inner { justify-content: center; text-align: center; }
  .menu { justify-content: flex-start; overflow-x: auto; }
  .cmp-table, .cmp-table thead, .cmp-table tbody, .cmp-table th, .cmp-table td, .cmp-table tr { display: block; }
  .cmp-table th { width: auto; }
  .cmp-table td { border-bottom: 1px solid #eee; }
}

@media (max-width: 560px) {
  .hero-inner h1 { font-size: 32px; }
  .cta-band h2 { font-size: 28px; }
  .feature-grid, .gallery-strip { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
}

/* ============================= REDUCED MOTION ============================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .reveal-2, .fade { animation: none; }
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}
