/* /global-hardedge.css */
/* Last updated: 2026-05-04 1:25 PM local time */
/* Recent edits:
1) Rebuilt the cloned stylesheet as the hard-edge navy design foundation
2) Flattened all global buttons and removed rounded 3D button styling
3) Set global cards, images, sections, trust buttons, footer badges, and FAQ rows to hard-edge styling
4) Removed the soft gradient, topo overlay, floating card shadows, and rounded global card system
5) Preserved button hover/active feedback, FAQ drawer behavior, smooth anchor scrolling, image stability, reviews support, and iOS Safari button visibility fixes
*/

/* =========================================================
   AIRBEAR HARD-EDGE GLOBAL CSS

   Safe redesign stylesheet for:
   hvac.airbearfoco.com

   Do not use this file on:
   ads.airbearfoco.com

   Fonts:
   Inter = everything
   Sora = hero headline only
   ========================================================= */

/* =========================
   DESIGN TOKENS
   ========================= */

:root{
  /* Fonts */
  --font-body: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font-headline: "Sora", "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;

  /* Hard-edge palette */
  --hard-navy-0: #041124;
  --hard-navy-1: #071a33;
  --hard-navy-2: #0b2444;
  --hard-navy-3: #12345d;
  --hard-blue: #2f6fed;
  --hard-blue-2: #5f97f4;
  --hard-orange: #f88238;
  --hard-orange-2: #ff9a2f;
  --hard-green: #22c55e;
  --hard-green-2: #16a34a;
  --hard-white: #ffffff;
  --hard-soft: #f3f7ff;
  --hard-soft-2: #dbeafe;
  --hard-text: #101828;
  --hard-muted: #5b667a;
  --hard-border-light: rgba(16,24,40,0.14);
  --hard-border-dark: rgba(255,255,255,0.14);

  /* Compatibility tokens for existing partials */
  --airbear-blue-1: var(--hard-blue-2);
  --airbear-blue-2: var(--hard-blue);
  --airbear-orange-1: var(--hard-orange-2);
  --airbear-orange-2: var(--hard-orange);
  --airbear-green-1: var(--hard-green);
  --airbear-green-2: var(--hard-green-2);

  /* Buttons */
  --btn-radius: 0;
  --btn-shadow: none;
  --btn-shadow-hover: none;
  --btn-shadow-pressed: none;

  /* Hero copy */
  --hero-headline-color: #ffffff;
  --hero-subheading-color: #dbeafe;
  --hero-microtrust-color: rgba(255,255,255,0.84);
  --hero-headline-shadow: none;

  /* Footer */
  --footer-text: rgba(255,255,255,0.78);
  --footer-link: rgba(255,255,255,0.92);
  --footer-sep: rgba(255,255,255,0.42);

  /* Header */
  --site-header-mobile-height: 96px;

  /* Card system */
  --airbear-card-radius: 0;
  --airbear-card-border: 1px solid var(--hard-border-dark);
  --airbear-card-shadow: none;

  /* Layout */
  --hard-wrap: 1120px;
  --hard-section-padding: clamp(44px, 6vw, 82px);
  --hard-section-padding-tight: clamp(30px, 4.5vw, 58px);
}

/* Optional alternate hero theme */
.hero-theme-orange{
  --hero-headline-color: #ffffff;
  --hero-subheading-color: #dbeafe;
  --hero-microtrust-color: rgba(255,255,255,0.84);
  --hero-headline-shadow: none;
}

/* =========================
   BASE
   ========================= */

*{
  box-sizing: border-box;
}

html{
  scroll-behavior: smooth;
}

html,
body{
  margin: 0;
  font-family: var(--font-body);
}

body{
  background: var(--hard-navy-1) !important;
  color: var(--hard-soft);
}

body::before{
  display: none !important;
}

main{
  padding-top: 0;
  background: var(--hard-navy-1);
}

main > *{
  margin-top: 0 !important;
}

a{
  color: inherit;
}

img{
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 0 !important;
  box-shadow: none !important;
}

picture{
  border-radius: 0 !important;
}

h1,
h2,
h3,
h4,
h5,
h6{
  font-family: var(--font-body);
}

.hero h2{
  font-family: var(--font-headline);
  font-weight: 850;
  letter-spacing: -0.035em;
}

/* =========================
   GLOBAL WRAP
   ========================= */

.wrap{
  max-width: var(--hard-wrap);
  margin: 0 auto;
  padding-left: 18px;
  padding-right: 18px;
}

@media (max-width: 480px){
  .wrap{
    padding-left: 14px;
    padding-right: 14px;
  }
}

/* =========================
   HARD-EDGE PAGE STRUCTURE
   ========================= */

.section,
.sandbox-section,
.hardedge-section{
  margin: 0 !important;
  padding: 0 !important;
}

.hardedge-section-light{
  background: var(--hard-soft) !important;
  color: var(--hard-text) !important;
}

.hardedge-section-dark{
  background: var(--hard-navy-1) !important;
  color: #ffffff !important;
}

.hardedge-section-mid{
  background: var(--hard-navy-2) !important;
  color: #ffffff !important;
}

.hardedge-inner{
  width: 100%;
  max-width: var(--hard-wrap);
  margin: 0 auto;
  padding: var(--hard-section-padding) 18px;
}

.hardedge-anchor{
  scroll-margin-top: 110px;
}

.sandbox-section{
  background: var(--hard-navy-1) !important;
}

.sandbox-section > .wrap{
  max-width: none !important;
  width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.sandbox-stack{
  display: flex !important;
  flex-direction: column !important;
  gap: 0 !important;
  padding: 0 !important;
}

.sandbox-stack > *{
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

/* =========================
   HEADER BASE
   ========================= */

header,
.site-header{
  background: var(--hard-navy-0) !important;
  color: #ffffff !important;
  border-bottom: 1px solid var(--hard-border-dark) !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

header .wrap.nav,
.site-header .wrap.nav{
  max-width: var(--hard-wrap);
  margin: 0 auto;
}

header .brand,
.site-header .brand{
  color: #ffffff !important;
}

header .brand strong,
.site-header .brand strong{
  color: #ffffff !important;
}

/* =========================
   ORANGE AVAILABILITY BAND
   ========================= */

.airbear-availability-band{
  width: 100%;
  margin: 0;
  padding: 10px 16px;
  background: var(--hard-orange);
  color: #111827;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 850;
  text-align: center;
  letter-spacing: 0.01em;
  border: 0;
}

@media (max-width: 520px){
  .airbear-availability-band{
    padding: 9px 14px;
    font-size: 13px;
  }
}

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

.hero{
  margin: 0 !important;
  padding-top: clamp(38px, 6vw, 82px) !important;
  padding-bottom: clamp(34px, 5vw, 72px) !important;
  background: var(--hard-navy-1) !important;
  color: var(--hard-soft) !important;
  border-bottom: 1px solid var(--hard-border-dark);
}

.hero .wrap{
  position: relative;
}

.hero h2{
  margin: 0 0 14px;
  color: var(--hero-headline-color) !important;
  text-shadow: none !important;
  font-size: clamp(34px, 5.2vw, 62px);
  line-height: 0.98;
}

.hero p{
  margin: 0 0 14px;
}

.hero p.lead{
  font-family: var(--font-body);
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.35;
  font-weight: 600;
  margin: 0 0 12px;
  color: var(--hero-subheading-color) !important;
  opacity: 1;
}

.hero .microtrust,
.hero .hero-micro{
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 650;
  letter-spacing: 0.01em;
  margin: 0 0 18px;
  color: var(--hero-microtrust-color) !important;
  opacity: 1;
}

.hero-micro .sep{
  opacity: 0.65;
  padding: 0 7px;
}

.hero img,
.hero picture,
.hero .hero-image,
.hero .hero-photo,
.hero .image-card,
.hero [class*="photo"]{
  border-radius: 0 !important;
  box-shadow: none !important;
}

/* Future clickable Google badge */
.hero-google-badge{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 7px 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: #ffffff;
  font-size: 13px;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  border-radius: 0 !important;
}

.hero-google-badge:hover{
  background: rgba(255,255,255,0.13);
}

/* =========================
   ANCHOR OFFSETS
   ========================= */

#callback,
#photo-review-cards,
#photo-review-card,
#first-review{
  scroll-margin-top: 110px;
}

/* =========================
   BUTTON SYSTEM
   ========================= */

.btn,
a.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  min-height: 46px;
  padding: 13px 18px;

  border-radius: 0 !important;
  border: 2px solid transparent;
  box-shadow: none !important;

  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1;
  font-weight: 850;
  letter-spacing: 0.01em;
  text-decoration: none;

  transition:
    transform 0.08s ease,
    background-color 0.12s ease,
    border-color 0.12s ease,
    color 0.12s ease,
    filter 0.12s ease;
}

.btn:hover,
a.btn:hover{
  transform: translateY(-1px);
  box-shadow: none !important;
  filter: brightness(1.03);
}

.btn:active,
a.btn:active{
  transform: translateY(1px);
  box-shadow: none !important;
  filter: brightness(0.98);
}

.btn:focus-visible,
a.btn:focus-visible{
  outline: 3px solid rgba(248,130,56,0.38);
  outline-offset: 3px;
}

/* Primary action */
.btn-call,
a.btn-call,
.btn-accent,
a.btn-accent{
  background: var(--hard-orange) !important;
  color: #111827 !important;
  border-color: var(--hard-orange) !important;
}

/* Secondary action */
.btn-text,
a.btn-text,
.btn-primary,
a.btn-primary,
.btn-success,
a.btn-success{
  background: var(--hard-blue) !important;
  color: #ffffff !important;
  border-color: var(--hard-blue) !important;
}

/* Tertiary booking action */
.btn-book,
a.btn-book{
  background: transparent !important;
  color: #ffffff !important;
  border: 2px solid var(--hard-orange) !important;
  box-shadow: none !important;
  -webkit-text-fill-color: #ffffff !important;
}

.btn-book:hover,
a.btn-book:hover{
  background: rgba(248,130,56,0.12) !important;
  filter: none;
}

.btn-book:active,
a.btn-book:active{
  background: rgba(248,130,56,0.18) !important;
  filter: none;
}

/* Quiet proof links */
.btn-ghost,
a.btn-ghost,
.reviews-more-btn,
a.reviews-more-btn,
.license-square-btn{
  background: transparent !important;
  color: rgba(255,255,255,0.88) !important;
  border: 1px solid rgba(255,255,255,0.26) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.btn-ghost:hover,
a.btn-ghost:hover,
.reviews-more-btn:hover,
a.reviews-more-btn:hover,
.license-square-link:hover .license-square-btn{
  background: rgba(255,255,255,0.08) !important;
  box-shadow: none !important;
}

/* =========================
   GLOBAL CARD FLATTENING
   ========================= */

.card,
.airbear-card-edge,
.sandbox-card,
.form-shell,
.form-shell-double,
.get-help,
.faq-card,
.why-card,
.specialties-card,
.problems-card,
.book-card,
.book-shell,
.book-inner,
[class*="card"]{
  border-radius: 0 !important;
  box-shadow: none !important;
}

.card,
.airbear-card-edge,
.sandbox-card,
.form-shell,
.form-shell-double,
.get-help,
.faq-card,
.why-card,
.specialties-card,
.problems-card{
  border: var(--airbear-card-border) !important;
  overflow: hidden;
}

.sandbox-card{
  width: 100%;
  background: var(--hard-soft) !important;
  color: var(--hard-text) !important;
  border-left: 0 !important;
  border-right: 0 !important;
}

.sandbox-card-inner{
  max-width: var(--hard-wrap);
  margin: 0 auto;
  padding: var(--hard-section-padding-tight) 18px !important;
}

.sandbox-card h2,
.sandbox-card h3{
  color: var(--hard-text) !important;
}

/* =========================
   COMMON PROBLEMS
   ========================= */

.problems-card{
  background: var(--hard-soft) !important;
  color: var(--hard-text) !important;
  border-top: 1px solid rgba(16,24,40,0.10) !important;
  border-bottom: 1px solid rgba(16,24,40,0.10) !important;
  border-left: 0 !important;
  border-right: 0 !important;
}

.problems-card h2{
  margin: 0 0 24px !important;
  color: var(--hard-text) !important;
  font-size: clamp(30px, 4vw, 46px) !important;
  line-height: 1.02;
  text-align: center;
  text-shadow: none !important;
  letter-spacing: -0.035em;
}

.problems-card ul{
  list-style: none;
  margin: 0 !important;
  padding: 0 !important;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  text-shadow: none !important;
}

.problems-card ul br{
  display: none !important;
}

.problems-card li{
  margin: 0 !important;
  padding: 18px 16px 18px 18px;
  background: #ffffff;
  color: var(--hard-text);
  border: 1px solid #d8e2f1;
  border-left: 5px solid var(--hard-orange);
  border-radius: 0 !important;
  box-shadow: none !important;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 700;
}

@media (max-width: 1000px){
  .problems-card ul{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px){
  .problems-card ul{
    grid-template-columns: 1fr;
  }

  .problems-card li{
    padding: 16px 14px;
  }
}

/* =========================
   GET HELP NOW
   ========================= */

.card.get-help,
.get-help{
  background: var(--hard-navy-2) !important;
  color: #ffffff !important;
  border-top: 1px solid var(--hard-border-dark) !important;
  border-bottom: 1px solid var(--hard-border-dark) !important;
  border-left: 0 !important;
  border-right: 0 !important;
  display: flex;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: none !important;
}

.get-help-inner{
  width: 100%;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 220px;
  background: transparent;
  border: none;
  border-radius: 0 !important;
  padding: 0;
  font-size: 16px;
}

.get-help .gh-top{
  text-align: center;
}

.get-help .gh-headline{
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.get-help .gh-lines{
  margin: 0;
  color: rgba(255,255,255,0.86);
  font-size: 15px;
  line-height: 1.4;
  font-weight: 650;
  opacity: 1;
}

.get-help .gh-lines.gh-center{
  text-align: center;
  width: 100%;
}

.get-help .gh-bottom{
  margin-top: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
}

.cta-single{
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: stretch;
}

.cta-single .btn{
  width: 100%;
  padding: 15px 16px;
  font-size: 16px;
  border-radius: 0 !important;
}

.get-help .gh-microtrust{
  margin: 0;
  font-size: 14px;
  opacity: 1;
  color: rgba(255,255,255,0.72);
}

/* =========================
   WHY AIRBEAR CHECKMARK SYSTEM
   ========================= */

.why-card{
  background: var(--hard-navy-1) !important;
  color: #ffffff !important;
}

.why-card h2,
.why-card h3,
.why-card strong{
  color: #ffffff !important;
}

.why-card p,
.why-card li{
  color: rgba(255,255,255,0.86) !important;
}

.why-card ul{
  list-style: none;
  padding-left: 0 !important;
  margin-left: 0 !important;
  display: grid;
  gap: 12px;
}

.why-card li{
  position: relative;
  padding-left: 40px;
  min-height: 30px;
  display: flex;
  align-items: center;
  font-weight: 650;
}

.why-card li::before{
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--hard-green);
  color: #052012;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 950;
  line-height: 1;
}

.why-card .why-separator{
  border: none;
  border-top: 1px solid rgba(255,255,255,0.14);
  margin: 14px 0 16px;
}

/* =========================
   FAQ
   ========================= */

.faq-card{
  min-height: 0 !important;
  display: flex;
  flex-direction: column;
  background: var(--hard-soft) !important;
  color: var(--hard-text) !important;
}

.faq-card h2,
.faq-card h3{
  color: var(--hard-text) !important;
}

.faq-accordion{
  display: grid;
  gap: 0 !important;
  border-top: 1px solid rgba(16,24,40,0.14);
}

.faq-item{
  border: 0 !important;
  border-bottom: 1px solid rgba(16,24,40,0.14) !important;
  border-radius: 0 !important;
  background: transparent !important;
  overflow: hidden;
}

.faq-question{
  width: 100%;
  background: transparent !important;
  border: 0;
  padding: 18px 0 !important;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font: inherit;
  font-weight: 850;
  color: var(--hard-text) !important;
  cursor: pointer;
}

.faq-question span:first-child{
  flex: 1;
}

.faq-icon{
  flex: 0 0 auto;
  font-size: 24px;
  line-height: 1;
  color: var(--hard-orange) !important;
  transition: transform .18s ease;
}

.faq-answer{
  padding: 0 0 18px !important;
}

.faq-answer p{
  margin: 0;
  opacity: 1;
  color: var(--hard-muted);
}

.faq-question[aria-expanded="true"] .faq-icon{
  transform: rotate(45deg);
}

.faq-cta{
  margin-top: auto;
  padding-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* =========================
   REVIEW SYSTEM
   ========================= */

#photo-review-cards,
#photo-review-card,
#first-review{
  scroll-margin-top: 110px;
}

.reviews-more-wrap{
  display: flex;
  justify-content: center;
  margin: 10px 0 0;
}

.reviews-more-btn{
  padding: 8px 12px;
  font-weight: 750;
  font-size: 13px;
  line-height: 1;
  text-decoration: none;
}

.reviews-more-btn:active{
  transform: translateY(1px);
  box-shadow: none !important;
}

/* =========================
   EMBEDSOCIAL REVIEWS WIDGET
   ========================= */

.reviews-block{
  margin: 0 auto !important;
  padding: var(--hard-section-padding-tight) 18px !important;
  max-width: 1400px;
  min-height: 300px;
  background: var(--hard-navy-1);
}

.embedsocial-hashtag{
  width: 100%;
  min-height: 260px;
}

@media (min-width: 1100px){
  .embedsocial-hashtag .es-layout-grid,
  .embedsocial-hashtag .es-grid,
  .embedsocial-hashtag .es-feed,
  .embedsocial-hashtag .embedsocial-feed,
  .embedsocial-hashtag [class*="grid"]{
    display: grid !important;
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    gap: 16px !important;
  }
}

@media (min-width: 700px) and (max-width: 1099px){
  .embedsocial-hashtag .es-layout-grid,
  .embedsocial-hashtag .es-grid,
  .embedsocial-hashtag .es-feed,
  .embedsocial-hashtag .embedsocial-feed,
  .embedsocial-hashtag [class*="grid"]{
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 14px !important;
  }
}

@media (max-width: 699px){
  .reviews-block{
    max-width: 520px;
    min-height: 520px;
  }

  .embedsocial-hashtag{
    min-height: 460px;
  }

  .embedsocial-hashtag .es-layout-grid,
  .embedsocial-hashtag .es-grid,
  .embedsocial-hashtag .es-feed,
  .embedsocial-hashtag .embedsocial-feed,
  .embedsocial-hashtag [class*="grid"]{
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
}

/* =========================
   PHOTOS
   ========================= */

.trust-photo{
  margin: 0 auto;
  max-width: var(--hard-wrap);
}

.trust-photo img{
  width: 100%;
  height: clamp(220px, 30vh, 380px);
  object-fit: cover;
  object-position: 60% 40%;
  display: block;
  border-radius: 0 !important;
  border: 0 !important;
}

.trust-caption{
  margin: 8px 0 0;
  font-size: 14px;
  opacity: 0.8;
}

/* =========================
   IMAGE GALLERY SECTION
   ========================= */

.photo-gallery-section,
.gallery-section,
[class*="gallery"]{
  border-radius: 0 !important;
}

.photo-gallery-section,
.gallery-section{
  background: var(--hard-navy-2) !important;
  border-top: 1px solid var(--hard-border-dark);
  border-bottom: 1px solid var(--hard-border-dark);
}

.photo-gallery-section h2,
.gallery-section h2,
[class*="gallery"] h2{
  color: #ffffff !important;
}

/* =========================
   SPECIALTIES BEAR
   ========================= */

.specialties-mark{
  height: 40px;
  width: auto;
  margin: 0 auto 10px;
  display: block;
  opacity: 0.70;
}

.specialties-card{
  position: relative;
  overflow: hidden;
}

.specialties-bear{
  position: absolute;
  bottom: -8px;
  right: -48px;
  height: 170px;
  opacity: 0.40;
  pointer-events: none;
  z-index: 0;
}

.specialties-card h3,
.specialties-card .spec{
  position: relative;
  z-index: 1;
}

/* =========================
   BULLET POINT CARDS
   ========================= */

.card ul{
  padding-left: 18px;
  margin-left: 0;
}

/* =========================
   FOOTER
   ========================= */

.site-footer{
  margin-top: 0 !important;
  padding: 28px 0 36px;
  background: var(--hard-navy-0) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  font-size: 14px;
  color: var(--footer-text);
  border-top: 1px solid var(--hard-border-dark);
}

.site-footer,
.site-footer a,
.site-footer span{
  color: var(--footer-text);
}

.site-footer a{
  color: var(--footer-link);
}

.site-footer a:hover{
  text-decoration: underline;
}

.site-footer .footer-wrap{
  max-width: 960px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
}

.footer-stack-item{
  width: 100%;
  display: flex;
  justify-content: center;
}

.footer-bbb img{
  max-height: 52px;
  width: auto;
  display: block;
}

.footer-bottom{
  margin-top: 2px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.footer-site a{
  text-decoration: none;
}

.footer-copyright{
  font-size: 13px;
}

.footer-legal{
  font-size: 13px;
}

.footer-legal a{
  text-decoration: none;
  margin: 0 4px;
}

.footer-legal a:hover{
  text-decoration: underline;
}

.footer-separator{
  margin: 0 4px;
  color: var(--footer-sep);
}

/* Backward compatibility */
.footer-left img{
  max-height: 52px;
  width: auto;
  display: block;
}

.footer-right{
  text-align: center;
}

.footer-main{
  margin-bottom: 4px;
}

/* =========================
   LICENSE AND TRUST BADGES
   ========================= */

.license-square-link{
  text-decoration: none !important;
  display: inline-flex;
}

.license-square{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  background: transparent !important;
  border: 1px solid rgba(255,255,255,0.22) !important;
  border-radius: 0 !important;
  padding: 9px 11px;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;

  width: auto;
  max-width: 100%;
}

.license-square-left{
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.license-square-mark{
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  opacity: 0.9;
  background-image: url("/assets/icons/larimer-license-mark-80.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.license-square-left-text{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  line-height: 1.1;
}

.license-square-kicker{
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.70;
}

.license-square-num{
  font-size: 13px;
  font-weight: 900;
}

.license-square-right{
  display: inline-flex;
  align-items: center;
}

.license-square-btn{
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  padding: 8px 10px;
  border-radius: 0 !important;
  color: #ffffff;
  transition: transform 0.08s ease, background-color 0.12s ease, border-color 0.12s ease;
}

.license-square-btn-main{
  font-weight: 900;
  font-size: 13px;
  line-height: 1.05;
}

.license-square-btn-sub{
  margin-top: 2px;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.05;
  opacity: 0.82;
}

.license-square-link:hover .license-square{
  background: rgba(255,255,255,0.06) !important;
}

.license-square-link:hover .license-square-btn{
  transform: none;
  box-shadow: none !important;
  filter: none;
}

.license-square-link:active .license-square-btn{
  transform: translateY(1px);
  box-shadow: none !important;
  filter: none;
}

@media (max-width: 480px){
  .license-square{
    width: 100%;
  }
}

/* =========================
   MOBILE HEADER
   ========================= */

@media (max-width: 768px){

  header,
  .site-header{
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1200;
    padding-top: env(safe-area-inset-top, 0);
    background: var(--hard-navy-0) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-bottom: 1px solid var(--hard-border-dark) !important;
    box-shadow: none !important;
  }

  header .wrap.nav,
  .site-header .wrap.nav{
    min-height: var(--site-header-mobile-height);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  header .cta-bar,
  .site-header .cta-bar{
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 10px;
    width: 100%;
  }

  header .cta-bar .btn,
  .site-header .cta-bar .btn{
    width: 100%;
    min-width: 0;
    min-height: 52px;
    font-size: 15px;
  }

  main{
    padding-top: 0;
  }

  #callback,
  #photo-review-cards,
  #photo-review-card,
  #first-review{
    scroll-margin-top: 140px;
  }

  .faq-card{
    min-height: 0 !important;
  }
}

/* =========================
   MOBILE OPTIMIZATION
   ========================= */

@media (max-width: 480px){

  main > *{
    margin-top: 0 !important;
  }

  main > *:first-child{
    margin-top: 0;
  }

  .trust-photo{
    margin: 0;
  }

  .trust-photo img{
    height: clamp(180px, 26vh, 260px);
  }

  .trust-caption{
    font-size: 13px;
    margin-top: 6px;
  }

  body::before{
    display: none !important;
  }

  :root{
    --site-header-mobile-height: 106px;
  }

  header .wrap.nav,
  .site-header .wrap.nav{
    gap: 10px;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  header .brand img,
  .site-header .brand img{
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  header .brand strong,
  .site-header .brand strong{
    font-size: 16px;
  }

  header .cta-bar,
  .site-header .cta-bar{
    gap: 10px;
  }

  header .cta-bar .btn,
  .site-header .cta-bar .btn{
    min-height: 50px;
    font-size: 14px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .sandbox-card-inner{
    padding: 34px 14px !important;
  }
}

/* =========================
   TINY SCREENS
   ========================= */

@media (max-width: 380px){

  .cta-bar a.btn-ghost{
    display: none;
  }

  .btn{
    padding: 11px 13px;
    border-radius: 0 !important;
    font-size: 14px;
  }

  .brand img{
    height: 34px;
  }

  .brand h1{
    font-size: 16px;
  }

  :root{
    --site-header-mobile-height: 100px;
  }

  header .brand img,
  .site-header .brand img{
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }

  header .brand strong,
  .site-header .brand strong{
    font-size: 15px;
  }

  header .cta-bar .btn,
  .site-header .cta-bar .btn{
    font-size: 13px;
    min-height: 48px;
  }
}

/* =========================
   iOS SAFARI BUTTON LABEL FIX
   ========================= */

.btn,
.btn:visited,
a.btn,
a.btn:visited{
  color: inherit;
  -webkit-text-fill-color: currentColor !important;
  text-decoration: none;
}

.btn-primary,
.btn-primary:visited,
a.btn-primary,
a.btn-primary:visited,
.btn-text,
.btn-text:visited,
a.btn-text,
a.btn-text:visited,
.btn-success,
.btn-success:visited,
a.btn-success,
a.btn-success:visited{
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

.btn-accent,
.btn-accent:visited,
a.btn-accent:visited,
a.btn-accent,
.btn-call,
.btn-call:visited,
a.btn-call,
a.btn-call:visited{
  color: #111827 !important;
  -webkit-text-fill-color: #111827 !important;
}

.btn-book,
.btn-book:visited,
a.btn-book,
a.btn-book:visited{
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

.btn-ghost,
.btn-ghost:visited,
a.btn-ghost,
a.btn-ghost:visited,
.reviews-more-btn,
.reviews-more-btn:visited{
  color: rgba(255,255,255,0.88) !important;
  -webkit-text-fill-color: rgba(255,255,255,0.88) !important;
}

.btn *{
  color: inherit !important;
  -webkit-text-fill-color: currentColor !important;
}