:root{
  --bg:#ffffff;
  --bg-alt:#f5f5f5;
  --text:#7A99C2;
  --muted:#5f6368;
  --border:#e6e6e6;

  --accent:#7A99C2;
  --topbar:#7A99C2;

  --radius:14px;
  --shadow:0 10px 30px rgba(0,0,0,0.08);
}

/* Base */
*{ box-sizing:border-box; }

html{
  scroll-behavior:smooth;
  -webkit-text-size-adjust:100%;
}

body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  line-height:1.6;
  color:var(--text);
  background:var(--bg);
}

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

a{ color:inherit; }

button,
input,
textarea,
select{
  font:inherit;
}

.container{
  width:min(1120px,92%);
  margin:0 auto;
}

/* Anchor targets below sticky nav */
#sisalto,
#palvelut,
#toimialue,
#hinnasto,
#yritys,
#tyonjalkia,
#yhteys,
#faq{
  scroll-margin-top:120px;
}

@media (max-width:900px){
  #sisalto,
  #palvelut,
  #toimialue,
  #hinnasto,
  #yritys,
  #tyonjalkia,
  #yhteys,
  #faq{
    scroll-margin-top:140px;
  }
}

/* Accessibility */
:focus-visible{
  outline:3px solid var(--accent);
  outline-offset:3px;
}

.skip-link{
  position:absolute;
  top:-120px;
  left:12px;
  background:var(--accent);
  color:#fff;
  padding:10px 12px;
  z-index:9999;
  text-decoration:none;
  border-radius:10px;
  transition:top .2s ease;
}

.skip-link:focus{
  top:12px;
}

/* ===== TOPBAR ===== */
.topbar{
  background:#fff;
  color:var(--accent);
  font-size:.95rem;
  border-bottom:1px solid var(--border);
}

.topbar-grid{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:10px 0;
}

.topbar-left{
  display:flex;
  align-items:center;
  gap:12px;
  white-space:nowrap;
}

.topbar-hours{
  opacity:.95;
}

.topbar a,
.topbar .lang-link,
.topbar .lang-sep{
  color:var(--accent);
  text-decoration:none;
}

.topbar-phone{
  font-weight:800;
  border-bottom:1px dotted rgba(76,121,183,0.45);
}

.topbar-phone:hover{
  border-bottom-color:rgba(76,121,183,0.85);
}

.lang{
  display:flex;
  align-items:center;
  gap:8px;
  white-space:nowrap;
}

.lang-link{
  font-weight:800;
  opacity:.9;
}

.lang-link:hover{
  opacity:1;
}

.lang-link.is-active{
  opacity:1;
  text-decoration:underline;
  text-underline-offset:4px;
}

.lang-sep{
  opacity:.6;
}

/* ===== NAV ===== */
.main-nav{
  background:var(--bg);
  border-bottom:1px solid var(--border);
  position:sticky;
  top:0;
  z-index:1000;
}

.nav-grid{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:12px 0;
}

.logo{
  text-decoration:none;
  display:flex;
  align-items:center;
}

.logo-img{
  width:auto;
  height:auto;
}

.nav-links{
  list-style:none;
  display:flex;
  align-items:center;
  gap:10px;
  margin:0;
  padding:14px;
}

.nav-links > li{
  flex:0 0 auto;
}

.nav-links a{
  text-decoration:none;
  font-weight:900;
  padding:10px 12px;
  border-radius:10px;
  white-space:nowrap;
}

.nav-links a:hover{
  background:var(--bg-alt);
}

.nav-links a[aria-current="page"]{
  position:relative;
}

.nav-links a[aria-current="page"]::after{
  content:"";
  position:absolute;
  left:12px;
  right:12px;
  bottom:6px;
  height:3px;
  background:var(--accent);
  border-radius:999px;
}

.nav-links a.nav-cta{
  flex-shrink:0;
  background:var(--accent);
  color:#fff !important;
  border:2px solid transparent;
}

.nav-links a.nav-cta:hover{
  background:var(--accent);
  filter:brightness(0.92);
}

.submenu-toggle{
  white-space:nowrap;
}

@media (max-width:1100px){
  .nav-links{
    gap:6px;
    padding:8px;
  }

  .nav-links a{
    padding:8px 10px;
  }

  .submenu-toggle{
    padding:8px 10px;
  }
}

/* Instagram nav */
.main-nav a[href*="instagram.com"]{
  background:transparent !important;
  padding:6px 8px;
  border-radius:10px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}

.main-nav a[href*="instagram.com"]:hover{
  background:transparent !important;
  opacity:0.85;
}

.main-nav a[href*="instagram.com"] img{
  height:32px !important;
  width:auto !important;
  display:block;
}

/* Hamburger */
.menu-toggle{
  display:none;
  width:44px;
  height:44px;
  border:1px solid var(--border);
  background:var(--bg);
  border-radius:12px;
  cursor:pointer;
  padding:10px;
}

.menu-toggle span{
  display:block;
  width:22px;
  height:2px;
  background:var(--text);
  border-radius:2px;
  margin:5px 0;
}

/* ===== SUBMENU ===== */
.has-submenu{
  position:relative;
}

.caret{
  display:inline-block;
  transition:transform .18s ease;
}

.submenu-toggle{
  background:none;
  border:none;
  font:inherit;
  font-weight:900;
  padding:10px 12px;
  border-radius:10px;
  cursor:pointer;
  display:flex;
  align-items:center;
  gap:6px;
  color:var(--accent);
}

.submenu{
  list-style:none;
  margin:0;
  padding:6px 0;
  position:absolute;
  top:100%;
  left:0;
  min-width:240px;
  background:var(--bg);
  border:1px solid var(--border);
  border-radius:10px;
  box-shadow:0 6px 18px rgba(0,0,0,0.06);
  display:none;
  z-index:1300;
}

.submenu li a{
  display:block;
  padding:10px 14px;
  font-weight:800;
}

@media (min-width:901px){
  .has-submenu:hover > .submenu,
  .has-submenu:focus-within > .submenu{
    display:block;
  }

  .has-submenu:hover .caret,
  .has-submenu:focus-within .caret{
    transform:rotate(180deg);
  }

  .submenu-toggle:hover{
    background:transparent;
  }
}

/* ===== HERO ===== */
.hero{
  background:
    linear-gradient(rgba(255,255,255,0.60), rgba(255,255,255,0.35)),
    url("images/hero-tausta.jpg") center/cover no-repeat;
  color:var(--accent);
  padding:64px 0 54px;
  min-height:360px;
  display:flex;
  align-items:center;
}

.hero h1{
  margin:0 0 12px;
  font-size:clamp(1.75rem, 3vw, 2.4rem);
  line-height:1.15;
  color:var(--accent);
  color:color-mix(in srgb, var(--accent) 85%, #111);
  text-shadow:
    0 2px 0 rgba(255,255,255,0.95),
    0 0 18px rgba(255,255,255,0.85),
    0 0 34px rgba(255,255,255,0.75);
}

.hero .lead{
  margin:0 0 18px;
  max-width:68ch;
  color:#2f3338;
  text-shadow:
    0 1px 1px rgba(0,0,0,0.08),
    0 1px 0 rgba(255,255,255,0.95),
    0 0 16px rgba(255,255,255,0.85),
    0 0 30px rgba(255,255,255,0.70);
}

.hero .cta-button{
  filter:none;
}

/* CTA */
.cta-button{
  display:inline-block;
  background:var(--accent);
  color:#fff;
  text-decoration:none;
  font-weight:900;
  padding:14px 18px;
  border-radius:12px;
  border:2px solid transparent;
  cursor:pointer;
}

.cta-button:hover{
  filter:brightness(0.92);
}

.lead{
  margin:0 0 18px;
  max-width:68ch;
  color:var(--muted);
}

/* ===== SECTIONS ===== */
.section{
  padding:44px 0;
}

.section-alt{
  background:var(--bg-alt);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}

h2{
  margin:0 0 10px;
  font-size:clamp(1.35rem, 2vw, 1.85rem);
}

h3,
h4{
  color:var(--accent);
}

.muted{
  color:var(--muted);
  margin:0 0 16px;
}

/* ===== KUVALLISET SISÄLTÖOSIOT ===== */
.image-section{
  display:grid;
  grid-template-columns:minmax(0,1.35fr) minmax(260px,0.85fr);
  gap:28px;
  align-items:center;
}

.image-section.image-left{
  grid-template-columns:minmax(260px,0.85fr) minmax(0,1.35fr);
}

.image-section.image-left .image-block{
  order:1;
}

.image-section.image-left .text-block{
  order:2;
}

.text-block{
  min-width:0;
}

.image-block{
  margin:0;
  border:1px solid var(--border);
  border-radius:var(--radius);
  overflow:hidden;
  background:#fff;
  box-shadow:0 8px 24px rgba(0,0,0,0.06);
}

.image-block img{
  width:100%;
  aspect-ratio:4 / 3;
  height:auto;
  max-height:360px;
  object-fit:cover;
  display:block;
  background:var(--bg-alt);

  /* Hieman haaleampi ja rauhallisempi kuvatyyli */
  opacity:0.88;
  filter:brightness(1.06) saturate(0.82) contrast(0.94);
}

/* Pitkulaiset kuvat, esim. 2500 x 463 */
.image-block.wide-image img{
  width:100%;
  height:auto;
  max-height:none;
  aspect-ratio:auto;
  object-fit:contain;
}

/* Kuvat, joita ei saa rajata, esim. infografiikat */
.image-block.contain-image img{
  width:100%;
  height:auto;
  max-height:none;
  aspect-ratio:auto;
  object-fit:contain;
}

/* Pienemmät mediakuvat, esim. jäsenyys- tai lehtikuva */
.image-block.media-image{
  max-width:520px;
  margin:18px auto 0;
}

.image-block.media-image img{
  width:100%;
  height:auto;
  max-height:none;
  aspect-ratio:auto;
  object-fit:contain;
}

/* Pienempi omakuva info-sivulle */
.image-block.portrait-image{
  max-width:300px;
  justify-self:center;

}

.image-block.portrait-image img{

  width:100%;
  height:auto;
  max-height:300px;
  aspect-ratio:1 / 1;
  object-fit:cover;
  object-position:center;

}

.image-block figcaption{
  padding:10px 12px;
  color:var(--muted);
  font-size:0.9rem;
  font-weight:800;
  border-top:1px solid var(--border);
  background:#fff;
}

/* ===== INFO-SIVUN LUKUYSTÄVÄLLISYYS ===== */
.narrow-text{
  max-width:1120px;
}

.narrow-text h2,
.narrow-text h3,
.narrow-text h4{
  color:var(--accent);
}

.narrow-text h3{
  margin-top:28px;
  margin-bottom:10px;
  font-size:1.25rem;
}

.narrow-text h4{
  margin-top:0;
  margin-bottom:8px;
  font-size:1.05rem;
}

.narrow-text .muted{
  margin-bottom:18px;
}

.info-card{
  background:#fff;
  border:1px solid rgba(0,0,0,0.08);
  border-radius:14px;
  padding:1.25rem 1.35rem;
  margin:1rem 0;
  box-shadow:0 6px 18px rgba(0,0,0,0.04);
}

.info-card p:last-child{
  margin-bottom:0;
}

.numbered-list{
  color:#111;
  margin:1rem 0 1.5rem;
  padding-left:1.5rem;
}

.numbered-list li{
  color:#111;
  margin-bottom:0.55rem;
  line-height:1.65;
}

.narrow-text .check{
  color:#111;
}

.narrow-text .check li{
  color:#111;
  margin-bottom:0.55rem;
  line-height:1.65;
}

.narrow-text .check a{
  color:var(--accent);
  font-weight:800;
}

.narrow-text .muted-list,
.narrow-text .muted-list li{
  color:#111;
  line-height:1.65;
}

.narrow-text .faq-item summary{
  color:var(--accent);
}

/* ===== INFO-SIVUN VISUAALISET KORTIT ===== */

/* Kolme perustelua */
.reason-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
  margin:18px 0 32px;
}

.reason-card{
  background:#fff;
  border:1px solid rgba(0,0,0,0.08);
  border-radius:14px;
  padding:1.25rem 1.35rem;
  box-shadow:0 6px 18px rgba(0,0,0,0.04);
}

.reason-icon{
  width:52px;
  height:52px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:var(--bg-alt);
  color:var(--accent);
  font-size:1.45rem;
  font-weight:900;
  margin-bottom:12px;
}

.reason-card h4{
  margin:0 0 8px;
  color:var(--accent);
}

.reason-card p{
  margin:0;
}

/* Tarjoan sinulle / Hyötysi / Vahvuudet / Heikkoudet */
.info-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px;
  margin:18px 0 34px;
}

.info-list-card{
  background:#fff;
  border:1px solid rgba(0,0,0,0.08);
  border-radius:14px;
  padding:1.25rem 1.35rem;
  box-shadow:0 6px 18px rgba(0,0,0,0.04);
}

.info-list-card h3{
  margin:0 0 12px;
  color:var(--accent);
}

.info-list-card.is-soft{
  background:#fff;
}

.info-list-card.is-warning{
  background:#fff;
  border-color:rgba(0,0,0,0.10);
}

.icon-list{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap:10px;
}

.icon-list li{
  display:flex;
  align-items:flex-start;
  gap:10px;
  color:#111;
  line-height:1.55;
}

.icon-list .icon{
  flex:0 0 auto;
  width:28px;
  height:28px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:var(--bg-alt);
  color:var(--accent);
  font-weight:900;
  font-size:0.95rem;
  margin-top:1px;
}

/* ===== Reviews-bar ===== */
.reviews-bar.section{
  padding-bottom:18px;
}

.reviews-bar.section + #palvelut.section{
  padding-top:18px;
}

/* ===== Google-arvostelut ===== */
.reviews-strip{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:16px 16px;
  border:1px solid var(--border);
  border-radius:var(--radius);
  background:var(--bg);
  box-shadow:0 6px 18px rgba(0,0,0,0.04);
}

.reviews-left{
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
}

.reviews-badge{
  display:inline-flex;
  align-items:center;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--border);
  font-weight:900;
  color:var(--muted);
  background:var(--bg);
}

.reviews-score{
  display:flex;
  align-items:baseline;
  gap:10px;
  flex-wrap:wrap;
}

.reviews-score strong{
  font-size:1.25rem;
  color:var(--accent);
}

.reviews-stars{
  letter-spacing:1px;
  font-weight:900;
  color:var(--accent);
}

.reviews-count{
  color:var(--muted);
  font-weight:800;
}

.reviews-actions{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.reviews-link{
  text-decoration:none;
  font-weight:900;
  padding:12px 14px;
  border-radius:12px;
  border:1px solid var(--border);
  background:var(--bg);
}

.reviews-link:hover{
  background:var(--bg-alt);
}

.reviews-cta{
  padding:12px 14px;
}

/* ===== PALVELUT ===== */
.card-img{
  width:100%;
  height:90px;
  object-fit:cover;
  border-radius:12px;
  margin-bottom:10px;
  position:relative;
  z-index:1;
  filter:brightness(1.06) saturate(0.95) contrast(0.97);
}

.card{
  height:100%;
  display:flex;
}

.card a{
  display:flex;
  flex-direction:column;
  flex:1;
  width:100%;
  text-decoration:none;
  background:var(--bg);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:16px;
  box-shadow:0 6px 18px rgba(0,0,0,0.05);
  position:relative;
}

.card a::after{
  content:"";
  position:absolute;
  left:16px;
  right:16px;
  top:16px;
  height:90px;
  border-radius:12px;
  pointer-events:none;
  z-index:2;
  background:linear-gradient(
    rgba(255,255,255,0.35),
    rgba(255,255,255,0.15)
  );
}

.cards{
  list-style:none;
  padding:0;
  margin:16px 0 0;
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px;
  align-items:stretch;
}

.card a:hover{
  border-color:color-mix(in srgb, var(--accent) 55%, #ffffff);
}

.card span{
  display:block;
  font-weight:900;
  margin-bottom:4px;
}

.card small{
  color:var(--muted);
  font-weight:700;
}

/* ===== TOIMIALUE ===== */
.area-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:10px;
  margin-top:14px;
}

.area{
  background:var(--bg);
  border:1px solid var(--border);
  border-radius:999px;
  padding:10px 12px;
  text-align:center;
  font-weight:900;
}

/* ===== YRITYS ===== */
#yritys{
  color:var(--muted);
}

#yritys h2{
  color:var(--accent);
  margin:0 0 12px;
}

.yritys-grid{
  display:grid;
  grid-template-columns:1.25fr 0.75fr;
  gap:22px;
  align-items:start;
}

.yritys-photo{
  justify-self:start;
  align-self:start;
  max-width:180px;
  width:100%;
  margin:6px 0 0;
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid var(--border);
  background:var(--bg);
  box-shadow:0 6px 18px rgba(0,0,0,0.05);
}

.yritys-photo img{
  width:100%;
  height:auto;
  display:block;
  object-fit:cover;
}

.yritys-slogan{
  margin:14px 0 0;
  font-weight:800;
  color:var(--muted);
}

/* ===== Työnjälkiä-galleria ===== */
.gallery{
  margin-top:14px;
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:10px;
}

.shot{
  margin:0;
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid var(--border);
  background:var(--bg);
  box-shadow:0 6px 18px rgba(0,0,0,0.05);
}

.shot img{
  width:100%;
  height:170px;
  object-fit:cover;
  display:block;
}

.gallery-actions{
  margin-top:14px;
  display:flex;
  justify-content:center;
}

/* Check-lista */
.check{
  margin:14px 0 0;
  padding-left:18px;
}

.check li{
  margin-bottom:8px;
}

/* ===== FAQ ===== */
.faq-list{
  margin-top:14px;
  display:grid;
  gap:10px;
}

.faq-item{
  border:1px solid var(--border);
  border-radius:var(--radius);
  background:var(--bg);
  box-shadow:0 6px 18px rgba(0,0,0,0.05);
  padding:12px 14px;
}

.faq-item summary{
  cursor:pointer;
  font-weight:900;
  list-style:none;
}

.faq-item summary::-webkit-details-marker{
  display:none;
}

.faq-item p{
  margin:10px 0 0;
}

/* Harmaat listat */
.muted-list,
.muted-list li{
  color:var(--muted);
}

/* ===== YHTEYS / FORM ===== */
.contact-form{
  margin-top:16px;
  background:var(--bg);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:18px;
  box-shadow:0 6px 18px rgba(0,0,0,0.05);
  position:relative;
}

.hp-field{
  position:absolute;
  left:-9999px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}

.form-status{
  margin:0 0 12px;
  padding:12px 14px;
  border-radius:12px;
  font-weight:800;
  background:var(--bg-alt);
  border:1px solid var(--border);
  color:var(--muted);
}

.form-status.is-success{
  border-color:color-mix(in srgb, #2ecc71 40%, var(--border));
}

.form-status.is-error{
  border-color:color-mix(in srgb, #e74c3c 40%, var(--border));
}

.form-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
}

label span{
  display:block;
  font-weight:900;
  margin-bottom:6px;
}

input,
textarea{
  width:100%;
  padding:12px 12px;
  border-radius:12px;
  border:1px solid var(--border);
  font:inherit;
}

textarea{
  resize:vertical;
}

input:focus,
textarea:focus{
  outline:none;
  border-color:color-mix(in srgb, var(--accent) 55%, #ffffff);
}

.full{
  grid-column:1 / -1;
}

.form-actions{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}

.smallprint{
  margin:0;
  color:var(--muted);
  font-weight:800;
}

.contact-form button[type="submit"]{
  cursor:pointer;
}

.contact-meta{
  margin-top:14px;
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  color:var(--muted);
  font-weight:800;
}

.contact-meta a{
  text-decoration:none;
  border-bottom:1px dotted var(--border);
}

/* ===== FOOTER ===== */
.footer{
  background:var(--bg);
  border-top:1px solid var(--border);
}

.footer-new{
  padding:26px 0 18px;
  text-align:center;
}

.footer-tagline{
  margin:0 0 14px;
  color:var(--muted);
  font-weight:800;
  max-width:46ch;
  margin-left:auto;
  margin-right:auto;
}

.footer-cta{
  margin:0 0 14px;
}

.footer-social{
  display:flex;
  justify-content:center;
  margin:0 0 18px;
}

.social-icon{
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  -webkit-tap-highlight-color:transparent;
  touch-action:manipulation;
}

.social-icon img{
  height:72px;
  width:auto;
  display:block;
}

.social-icon:hover{
  opacity:0.85;
}

.footer-bottom{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:8px;
  border-top:1px solid var(--border);
  padding-top:16px;
}

.footer-logo{
  display:block;
  height:auto;
  max-width:200px;
}

.footer-copy{
  margin:0;
  color:var(--muted);
  font-weight:700;
}

@media (min-width:901px){
  .footer-logo{
    max-width:240px;
  }
}

/* ===== MOBILE ===== */
@media (max-width:900px){
  .topbar{
    font-size:0.85rem;
  }

  .topbar-grid{
    flex-direction:column;
    align-items:center;
    gap:6px;
  }

  .topbar-left{
    justify-content:center;
    gap:10px;
  }

  .lang{
    justify-content:center;
  }

  .cards{
    grid-template-columns:1fr;
  }

  .area-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .gallery{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .shot img{
    height:160px;
  }

  .form-grid{
    grid-template-columns:1fr;
  }

  .yritys-grid{
    grid-template-columns:1fr;
  }

  .yritys-photo{
    max-width:130px;
    margin:12px 0 0;
    justify-self:start;
  }

  .menu-toggle{
    display:block;
  }

  .nav-links{
    position:absolute;
    top:calc(100% + 10px);
    right:0;
    left:0;
    width:min(1120px,92%);
    margin:0 auto;
    background:var(--bg);
    border:1px solid var(--border);
    border-radius:var(--radius);
    box-shadow:var(--shadow);
    padding:14px;
    display:none;
    flex-direction:column;
    gap:8px;
    z-index:1200;
    max-height:calc(100vh - 140px);
    overflow-y:auto;
    -webkit-overflow-scrolling:touch;
  }

  .nav-links.open{
    display:flex;
  }

  .nav-links > li{
    width:100%;
    margin:0;
    padding:0;
  }

  .nav-links > li > a,
  .nav-links > li > button.submenu-toggle{
    display:flex;
    width:100%;
    padding:14px 14px;
    border-radius:12px;
    align-items:center;
    justify-content:space-between;
    background:transparent;
  }

  .nav-links > li > a:hover,
  .nav-links > li > button.submenu-toggle:hover{
    background:var(--bg-alt);
  }

  .nav-links a.nav-cta{
    background:transparent !important;
    color:inherit !important;
    border:none;
    filter:none;
  }

  .nav-links a.nav-cta:hover{
    background:var(--bg-alt) !important;
    filter:none;
  }

  .submenu{
    position:static;
    border:none;
    box-shadow:none;
    padding:6px 0 0;
    margin:0;
    display:none;
  }

  .has-submenu.open > .submenu{
    display:block;
  }

  .has-submenu.open .caret{
    transform:rotate(180deg);
  }

  .submenu li a{
    display:flex;
    width:100%;
    padding:14px 14px 14px 28px;
    border-radius:12px;
    font-weight:900;
    font-size:1rem;
    line-height:1.2;
    background:transparent;
    text-decoration:none;
  }

  .submenu li a:hover{
    background:var(--bg-alt);
  }

  .nav-social{
    width:100%;
  }

  .main-nav a[href*="instagram.com"]{
    width:100% !important;
    justify-content:flex-start !important;
    padding:14px 14px !important;
    border-radius:12px !important;
    opacity:1 !important;
  }

  .main-nav a[href*="instagram.com"]:hover{
    background:var(--bg-alt) !important;
    opacity:1 !important;
  }

  .main-nav a[href*="instagram.com"] img{
    height:28px !important;
    width:auto !important;
    display:block;
  }

  .reviews-strip{
    flex-direction:column;
    align-items:flex-start;
  }

  .reviews-actions{
    width:100%;
    justify-content:flex-start;
  }

  .narrow-text{
    max-width:100%;
  }

  .info-card{
    padding:1rem;
  }

  .numbered-list{
    padding-left:1.25rem;
  }

  .narrow-text h3{
    margin-top:24px;
  }

  .reason-grid{
    grid-template-columns:1fr;
  }

  .reason-card{
    padding:1rem;
  }

  .info-grid{
    grid-template-columns:1fr;
  }

  .info-list-card{
    padding:1rem;
  }

  .image-section,
  .image-section.image-left,
  .image-section.image-right{
    grid-template-columns:1fr;
    gap:18px;
  }

  .image-section.image-left .image-block,
  .image-section.image-left .text-block{
    order:initial;
  }

  .image-section .text-block{
    order:1;
  }

  .image-section .image-block{
    order:2;
  }

  .image-block{
    max-width:100%;
  }

  .image-block img{
    aspect-ratio:4 / 3;
    max-height:260px;
  }

  .image-block.wide-image img,
  .image-block.media-image img,
  .image-block.contain-image img{
    aspect-ratio:auto;
    max-height:none;
    object-fit:contain;
  }

  .image-block.media-image{
    max-width:520px;
  }

.image-block.portrait-image{
  max-width:240px;
  justify-self:center;
}

.image-block.portrait-image img{
  max-height:240px;
  aspect-ratio:1 / 1;
  object-fit:cover;
}

  .image-block figcaption{
    font-size:0.85rem;
  }
}

@media (max-width:520px){
  .image-block img{
    max-height:220px;
  }

  .image-block.wide-image img,
  .image-block.media-image img,
  .image-block.contain-image img{
    max-height:none;
  }

  .image-block.portrait-image{
    max-width:300px;
  }

  .image-block.portrait-image img{
    max-height:300px;
  }
.sr-only{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}
}