:root {
  /* Brand tokens */
  --color-primary: #FF62B1;
  --color-primary-hover: #FB2C94;
  --color-secondary: #282828;
  --color-text: #333333; /* body text */
  --color-muted: #333333;
  --color-accent: #61CE70; /* green accent */
  --color-bg: #FFFFFF;
  --color-bg-muted: #F5F5F5;
  --color-pink-translucent: #FF62B11F; /* ~12% alpha */

  --font-body: 'Roboto', system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  --font-heading: 'Oswald', Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  --font-secondary: 'Roboto Slab', Georgia, 'Times New Roman', serif;

  --text-size-base: 16px;
  --text-weight-base: 300; /* Roboto light */
  --heading-h1-size: 72px;
  --heading-h2-size: 40px;

  --btn-radius: 5px;
  --btn-font-weight: 700;

  --container-max: 1140px; /* Elementor boxed width vibe */
  --bp-mobile: 767px;
  --bp-tablet: 1024px;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-size-base);
  line-height: 1.65;
  font-weight: var(--text-weight-base);
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden; /* prevent accidental horizontal overflow */
}

/* Skip link for keyboard users */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  position: fixed;
  left: 12px;
  top: 12px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  background: #000;
  color: #fff;
  border-radius: 6px;
  z-index: 1000;
}

/* Focus visibility */
*:focus-visible { outline: 2px solid var(--color-primary); outline-offset: 2px; }
button:focus { outline: none; }

/* Global link color follows primary */
a { color: var(--color-primary); text-decoration: none; }
a:hover { color: var(--color-primary-hover); }
img { max-width: 100%; height: auto; display: block; }

.container {
  width: 100%;
  max-width: var(--container-max);
  padding: 0 20px;
  margin: 0 auto;
}

/* Typography scale similar to Elementor defaults */
h1, h2, h3, h4 { color: var(--color-text); margin: 0 0 0.5em 0; }
h1 {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(36px, 5vw, var(--heading-h1-size));
  line-height: 1.05;
  letter-spacing: 0.02em;
}
h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(24px, 3vw, var(--heading-h2-size));
  line-height: 1.15;
  letter-spacing: 0.01em;
}
h3 {
  font-family: var(--font-heading);
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.2;
}
p { margin: 0 0 1em 0; }

/* Section headers + dividers */
.section-title { display:flex; align-items:center; gap:16px; }
.divider { flex:1; height:1px; background:#e6e6e6; border:0; }

/* Header (bare basics) */
header.site-header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 60;
  background: transparent;
  border-bottom: none;
  transition: background .25s ease, box-shadow .25s ease, border-color .25s ease;
}
header.site-header.scrolled { background: #fff; border-bottom: 1px solid #eee; box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
/* Ensure comfortable side padding incl. iOS safe-area */
header.site-header .container { padding-left: 20px; padding-right: 20px; }
header.site-header .container { padding-left: calc(20px + env(safe-area-inset-left)); padding-right: calc(20px + env(safe-area-inset-right)); }
.header-bar { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 12px 0; }
.header-logo { display: inline-flex; align-items: center; }
.header-logo { position: relative; }
.header-logo::before { content: ''; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 88px; height: 88px; border-radius: 50%; background: #1f1f1f; z-index: 0; }
.header-logo img { position: relative; z-index: 1; width: 70px; height: 70px; display: block; }
.header-nav { flex: 1 1 auto; display: flex; justify-content: center; align-items: center; gap: 24px; }
.header-nav a { color: var(--color-text); font-weight: 600; text-decoration: none; }
.header-nav a:hover { color: var(--color-primary); }
.header-nav a[aria-current="page"] { color: var(--color-primary); }
.header-cta { white-space: nowrap; }
.header-toggle { display: none; background: var(--color-primary); color:#fff; border:0; border-radius: var(--btn-radius); padding: 8px 12px; font-size: 18px; }

/* Mobile menu */
.mobile-menu { display:none; position: fixed; left:0; right:0; top:0; background:#fff; border-bottom:1px solid #eee; box-shadow:0 6px 18px rgba(0,0,0,.08); z-index: 55; padding: 8px 0; text-align: center; }
.mobile-menu .mobile-inner { padding-left: 20px; padding-right: 20px; }
/* iOS safe-area support */
.mobile-menu .mobile-inner { padding-left: calc(20px + env(safe-area-inset-left)); padding-right: calc(20px + env(safe-area-inset-right)); }
.mobile-menu a { display:block; padding: 14px 0; color: var(--color-text); text-decoration:none; font-weight:600; }
.mobile-menu a + a { border-top:1px solid #f2f2f2; }
.mobile-menu a:hover { background:#fafafa; color: var(--color-primary); }
.mobile-menu.open { display:block; }
/* On pages with a hero, make links white when header is transparent */
body.has-hero header.site-header:not(.scrolled) .header-nav a { color: #fff; }

/* Offset page content for fixed header (except on hero pages where header overlays) */
main { padding-top: var(--header-h, 72px); }
body.has-hero main { padding-top: 0; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background: var(--color-primary);
  color: #fff;
  border-radius: var(--btn-radius);
  font-weight: var(--btn-font-weight);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.btn:hover { background: var(--color-primary-hover); }

@media (max-width: 1024px) {
  .header-logo::before { width: 80px; height: 80px; }
  .header-logo img { width: 62px; height: 62px; }
  .header-nav { gap: 18px; }
  .header-nav a { font-size: 15px; }
  .header-cta { padding: 10px 14px; font-size: 14px; }
}
@media (max-width: 900px) {
  .header-nav { display: none; }
  .header-toggle { display: inline-flex; align-items:center; justify-content:center; }
  .header-cta { display: none; }
}


/* Hero */
.hero {
  position: relative;
  min-height: 85vh; /* show more image area on desktop */
  display: grid;
  place-items: center;
  color: #fff;
  overflow: hidden;
}
.hero .bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.hero .bg-video iframe,
.hero .bg-video video,
.hero .bg-video img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120vw;
  height: 120vh;
  transform: translate(-50%, -50%);
}
.hero .bg-video video, .hero .bg-video img { object-fit: cover; }
/* Ensure full-bleed cover on small devices to avoid letterboxing */
@media (max-width: 700px) {
  .hero { min-height: 100vh; }
  @supports (height: 100svh) { .hero { min-height: 100svh; } }
  .hero .bg-video iframe,
  .hero .bg-video video,
  .hero .bg-video img {
    width: 140vw;
    height: 140vh;
  }
  @supports (height: 100svh) {
    .hero .bg-video iframe,
    .hero .bg-video video,
    .hero .bg-video img { height: 140svh; }
  }
}
.hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}
.hero .content {
  position: relative;
  text-align: center;
  padding: 40px 20px;
}
.hero h1 {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(32px, 5vw, var(--heading-h1-size));
  letter-spacing: 0.02em;
  margin: 0 0 16px 0;
  line-height: 1.05;
  text-transform: uppercase;
  color: #fff;
}
/* Load-in animation for hero content */
.hero .content > * { opacity: 0; transform: translateY(10px); animation: fadeUp .5s ease forwards; }
.hero .content > *:nth-child(1) { animation-delay: .05s; }
.hero .content > *:nth-child(2) { animation-delay: .15s; }
.hero .content > *:nth-child(3) { animation-delay: .25s; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
/* Ensure hero headings are white across variations */
.hero h2, .hero h3 { color: #fff; }
.hero p {
  margin: 0 0 24px 0;
  font-size: clamp(16px, 2.5vw, 22px);
  font-weight: 500;
}

/* Sections */
section {
  padding: 80px 0;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media (max-width: 900px) {
  section { padding: 56px 0; }
  .split { grid-template-columns: 1fr; }
}
@media (max-width: 1024px) {
  .hero { min-height: 65vh; }
}
@media (max-width: 700px) {
  .hero { min-height: 60vh; }
}
.eyebrow {
  font-family: 'Oswald', sans-serif;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
h2 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(26px, 3.6vw, 35px);
  margin: 0 0 12px 0;
}
.lead { font-size: 18px; }
.lead p { margin: 0 0 12px 0; }
/* About section (card overlapping image) */
section.about { position: relative; }
section.about .about-wrap { position: relative; min-height: 520px; }
section.about .about-image { width: min(58%, 680px); }
section.about .about-image img { width: 100%; height: auto; display:block; }
section.about .about-card {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: min(640px, calc(100% - 24px));
  background: #f3f3f3;
  border-radius: 10px;
  padding: 36px 40px;
  box-shadow: 0 10px 24px rgba(0,0,0,.10);
}
section.about .about-title { margin: 0 0 12px 0; }
section.about .about-title .pink { color: var(--color-primary); }
@media (max-width: 1024px) {
  section.about .about-image { width: min(64%, 640px); }
}
@media (max-width: 900px) {
  section.about .about-wrap { min-height: unset; display: flex; flex-direction: column; }
  section.about .about-image { width: 100%; order: 2; margin-top: 16px; }
  section.about .about-card { position: static; transform: none; width: auto; order: 1; margin-top: 0; }
}
/* About image sizing on small phones: match hosting image (container width) */
@media (max-width: 700px) {
  section.about .about-image { margin-left: 0; margin-right: 0; }
  section.about .about-image picture, section.about .about-image img { width: 100%; max-width: 100%; }
}

/* Forms */
form label span,
fieldset legend { display:block; font-weight:600; margin-bottom:6px; font-size:14px; color: var(--color-muted); }
form input[type="text"],
form input[type="email"],
form input[type="tel"],
form input[type="number"],
form input[type="date"],
form input[type="time"],
form select,
form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: #fff;
  font: inherit;
}
fieldset { border: 1px solid #eee; padding: 12px 14px; border-radius: 6px; }
fieldset label { display:block; margin: 6px 0; font-weight: 400; }
form input:focus, form select:focus, form textarea:focus { outline: none; border-color: #ccc; box-shadow: 0 0 0 2px rgba(255,98,177,0.12); }

/* Swiper tweaks to mirror Elementor */
.swiper { position: relative; overflow: hidden; }
.swiper-wrapper { display: flex; width: 100%; height: 100%; transition: transform 300ms ease; }
.swiper-slide { flex-shrink: 0; width: 100%; height: auto; }
.themes-swiper .swiper-button-prev,
.themes-swiper .swiper-button-next,
.howitworks-swiper .swiper-button-prev,
.howitworks-swiper .swiper-button-next {
  color: #222;
  position: absolute;
  top: 45%;
  z-index: 5;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  box-shadow: 0 3px 8px rgba(0,0,0,0.12);
  display: grid; place-items: center;
  cursor: pointer;
}
.themes-swiper .swiper-button-prev { left: -18px; }
.themes-swiper .swiper-button-next { right: -18px; }
.howitworks-swiper .swiper-button-prev { left: -18px; }
.howitworks-swiper .swiper-button-next { right: -18px; }
.swiper-button-prev::after, .swiper-button-next::after { content: ''; }
.swiper-button-prev::before { content: '‹'; font-size: 26px; line-height: 1; }
.swiper-button-next::before { content: '›'; font-size: 26px; line-height: 1; }

/* Better overlay on hero for readability */
.hero .overlay { background: linear-gradient(180deg, rgba(0,0,0,0.35), rgba(0,0,0,0.55)); }

/* Utilities */
.badge { display:inline-block; padding:4px 8px; border-radius:999px; font-size:12px; font-weight:700; letter-spacing:.02em; background: var(--color-primary); color:#fff; }
.pill { display:inline-block; padding:6px 12px; border-radius:999px; border:1px solid var(--color-text); color: var(--color-text); }
.eyebrow { position: relative; }
/* Remove decorative dash/line after eyebrow text */
.eyebrow::after { content: none; }
.promo-box {
  background: var(--color-pink-translucent);
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  padding: 16px 20px;
  border-radius: 8px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 20px 0;
  font-size: 18px;
  line-height: 1.4;
}

/* Included checklist (shared) */
.included { columns: 2; column-gap: 24px; padding-left: 0; list-style: none; }
.included li { break-inside: avoid; margin: 6px 0; position: relative; padding-left: 22px; }
.included li::before { content: '✓'; position: absolute; left: 0; color: var(--color-accent); font-weight: 700; }
@media (max-width: 700px) { .included { columns: 1; } }

/* Reusable grids */
.how-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 991px) { .how-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 639px) { .how-grid { grid-template-columns: 1fr; } }
.how-grid .card { background:#fff; border:1px solid #e9e9e9; border-radius:10px; padding:20px; box-shadow:0 6px 16px rgba(0,0,0,0.05); text-align:left; }
.how-grid .card h3 { margin: 8px 0; font-family: 'Oswald', sans-serif; }
.how-grid .card p { margin: 0; }
.how-grid .icon { font-size: 28px; }

.themes-mini { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 900px) { .themes-mini { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .themes-mini { grid-template-columns: 1fr; } }
.themes-mini .mini { display:block; text-decoration: none; color: inherit; border: 1px solid #eee; border-radius: 12px; overflow: hidden; background:#fff; box-shadow: 0 6px 16px rgba(0,0,0,.08); }
.themes-mini .thumb { aspect-ratio: 16/9; background:#f6f6f6; }
.themes-mini .thumb img { width:100%; height:100%; object-fit: cover; display:block; }
.themes-mini .body { padding: 12px 14px; }

/* Card polish */
.card { transition: box-shadow .2s ease, transform .2s ease; }
.card:hover { box-shadow: 0 10px 24px rgba(0,0,0,.10); transform: translateY(-1px); }

/* Carousel arrows polish */
.themes-carousel .carousel-prev:hover,
.themes-carousel .carousel-next:hover,
.how-carousel .carousel-prev:hover,
.how-carousel .carousel-next:hover { transform: translateY(-50%) scale(1.06); box-shadow: 0 6px 16px rgba(0,0,0,.16); }

/* Section helpers */
.section-muted { background: var(--color-bg-muted); }
.section-pink { background: var(--color-pink-translucent); }

/* Mentions (logos) */
section.mentions { padding: 56px 0; background: var(--color-bg-muted); }
section.mentions .mentions-head { text-align: center; margin-bottom: 24px; }
section.mentions .mentions-head h2 { margin: 0 0 10px 0; }
section.mentions .note { text-align: center; margin: 0; color: #555; }
section.mentions .note a { color: inherit; text-decoration: underline; }
section.mentions .note a:hover { color: var(--color-primary); }
section.mentions .mentions-panel { margin-top: 16px; padding-top: 18px; border-top: 1px solid #e6e6e6; background: transparent; box-shadow: none; }
section.mentions .logo-row { display:flex; gap: 32px; justify-content: center; align-items: center; flex-wrap: wrap; }
section.mentions .logo-row .logo { display:flex; flex-direction: column; align-items:center; justify-content:flex-start; padding: 0; }
section.mentions .logo-row .logo img { height: 136px; width: auto; max-width: 100%; object-fit: contain; display:block; transition: transform .2s ease; }
@media (max-width: 900px) { section.mentions .logo-row .logo img { height: 110px; } }
@media (max-width: 600px) { section.mentions .logo-row .logo img { height: 88px; } }
section.mentions .logo-row .logo:hover img { transform: translateY(-2px); }
section.mentions .logo-row .logo .caption { margin-top: 6px; font-size: 12px; color: #666; text-align: center; font-weight: 600; letter-spacing: .02em; }

/* Hosting section (mirrors screenshot with pink background and left card) */
section.hosting { background: #FFE7F2; position: relative; overflow: hidden; }
section.hosting .hosting-wrap { position: relative; min-height: 560px; }
section.hosting .hosting-card {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: min(720px, calc(100% - 24px));
  background: #ffffff;
  border-radius: 10px;
  padding: 36px 40px;
  box-shadow: 0 10px 24px rgba(0,0,0,.10);
  z-index: 2;
}
section.hosting .hosting-title { margin: 0 0 12px 0; }
section.hosting .hosting-title .pink { color: var(--color-primary); }
section.hosting .hosting-image { position: absolute; right: 0; top: 50%; transform: translateY(-50%); width: min(50%, 660px); z-index: 1; }
section.hosting .hosting-image img { width: 100%; height: auto; display: block; }
@media (max-width: 900px) {
  section.hosting .hosting-card { position: static; transform: none; width: auto; margin-bottom: 16px; z-index: auto; }
  section.hosting .hosting-image { position: static; transform: none; width: auto; z-index: auto; }
}

/* Sticky mobile CTA */
.sticky-cta { position: fixed; left: 12px; right: 12px; bottom: 12px; display: none; z-index: 80; justify-content: center; padding: 14px 18px; background: var(--color-primary); color:#fff; border-radius: var(--btn-radius); font-weight: var(--btn-font-weight); text-transform: uppercase; box-shadow: 0 8px 24px rgba(0,0,0,.18); }
.sticky-cta.show { display: flex; }
@media (min-width: 901px) { .sticky-cta { display: none !important; } }

/* Footer */
footer.site-footer {
  background: #1f1f1f;
  border-top: 0;
  color: #fff;
}
footer.site-footer a { color: #fff; }
footer.site-footer a:hover { color: var(--color-primary); }
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-col h4 {
  font-family: 'Oswald', sans-serif;
  margin: 0 0 12px 0;
  color: #fff;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin: 6px 0; }

/* Small helpers */
.mt-2 { margin-top: 8px; }
.mt-3 { margin-top: 12px; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.mt-10 { margin-top: 40px; }

/* Gallery rail (scroll-snap) */
section.gallery-rail { padding: 24px 0 40px 0; padding-left: 20px; padding-right: 20px; }
@supports(padding: max(0px)) {
  section.gallery-rail { padding-left: calc(20px + env(safe-area-inset-left)); padding-right: calc(20px + env(safe-area-inset-right)); }
}
section.gallery-rail .gallery-footer { text-align: center; margin-top: 8px; }
section.gallery-rail .link-more { color: var(--color-primary); font-weight: 700; text-transform: uppercase; letter-spacing: .02em; display: inline-flex; align-items: center; gap: 6px; text-decoration: none; border-bottom: 2px solid transparent; }
section.gallery-rail .link-more::after { content: '›'; font-size: 18px; line-height: 1; }
section.gallery-rail .link-more:hover { border-bottom-color: currentColor; }
.gallery-rail .rail-wrap { position: relative; }
.gallery-rail .rail {
  display: grid;
  grid-auto-flow: column;
  gap: 12px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 16px 20px;
}
.gallery-rail .rail::-webkit-scrollbar { height: 8px; }
.gallery-rail .rail::-webkit-scrollbar-thumb { background: #e6e6e6; border-radius: 999px; }
.gallery-rail .rail-item { scroll-snap-align: start; position: relative; display:block; border-radius: 10px; overflow: hidden; width: clamp(260px, 33vw, 520px); aspect-ratio: 3 / 2; }
.gallery-rail .rail-item picture, .gallery-rail .rail-item img { width: 100%; height: 100%; display:block; }
.gallery-rail .rail-item img { object-fit: cover; }
.gallery-rail .rail-nav { position: absolute; top: 50%; transform: translateY(-50%); z-index: 3; width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,0.95); border: 0; box-shadow: 0 3px 8px rgba(0,0,0,.12); cursor: pointer; color: #222; font-size: 28px; line-height: 1; display: grid; place-items: center; }
.gallery-rail .rail-nav.prev { left: 8px; }
.gallery-rail .rail-nav.next { right: 8px; }
@media (max-width: 900px) { .gallery-rail .rail-nav { display: none; } }

/* Reviews */
section.reviews { padding: 56px 0; }
.reviews-header { display:flex; align-items:center; gap: 12px; margin-bottom: 16px; flex-wrap: wrap; }
.reviews-header .provider { display:inline-flex; align-items:center; gap:6px; padding:6px 10px; border:1px solid #e6e6e6; border-radius:999px; background:#fff; box-shadow:0 2px 6px rgba(0,0,0,.06); color:#222; text-decoration:none; font-weight:700; }
.reviews-header .provider:hover { box-shadow: 0 4px 10px rgba(0,0,0,.08); transform: translateY(-1px); }
.reviews-header .g-icon { width:18px; height:18px; display:inline-block; }
.reviews-header .stars { color:#f5a300; font-size: 20px; letter-spacing: 2px; }
.reviews-header .score { font-weight: 900; font-size: 28px; line-height: 1; }
.reviews-header .count { color: #666; font-weight: 600; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 1000px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .reviews-grid { grid-template-columns: 1fr; } }
.reviews-grid .card { border: 1px solid #eee; border-radius: 12px; background: #fff; padding: 18px; box-shadow: 0 6px 16px rgba(0,0,0,.08); display:flex; flex-direction: column; gap: 10px; position: relative; }
/* playful stacked look */
.reviews-grid .card.playful::before { content: ''; position: absolute; inset: 8px -8px -8px 8px; border-radius: 12px; background: #ffe7f2; z-index: -1; transform: rotate(1.5deg); box-shadow: 0 8px 16px rgba(0,0,0,.06); }
.reviews-grid .card.playful:nth-child(2n)::before { background: #eaf7ff; transform: rotate(-1.5deg); }
.reviews-grid .card.playful { transform: rotate(-0.5deg); }
.reviews-grid .card.playful:nth-child(2n) { transform: rotate(0.7deg); }
.reviews-grid .card.playful:hover { transform: rotate(0deg) translateY(-2px); box-shadow: 0 10px 24px rgba(0,0,0,.12); }
.reviews-grid .stars { color: #f5a300; font-size: 18px; letter-spacing: 2px; }
.reviews-grid .text { margin: 0; font-style: italic; color: #333; }
.reviews-grid .by { margin-top: 4px; font-weight: 700; color: #555; }
.reviews-footer { text-align: center; margin-top: 12px; }
.reviews-footer .link-more { color: var(--color-primary); font-weight: 700; text-transform: uppercase; letter-spacing: .02em; text-decoration: none; border-bottom: 2px solid transparent; }
.reviews-footer .link-more:hover { border-bottom-color: currentColor; }

/* Gallery masonry */
.masonry { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
@media (max-width: 1000px) { .masonry { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .masonry { grid-template-columns: 1fr; } }
.masonry .masonry-item { display:block; border-radius: 10px; overflow: hidden; background:#f6f6f6; box-shadow: 0 6px 16px rgba(0,0,0,.06); }
.masonry .masonry-item picture, .masonry .masonry-item img { width: 100%; height: 100%; display:block; }
.masonry .masonry-item img { object-fit: cover; transition: transform .25s ease; }
.masonry .masonry-item:hover img { transform: scale(1.03); }

/* Mobile: show fallback image for hero to avoid heavy iframe */
/* Respect users who prefer reduced motion: fall back to a poster image */
@media (prefers-reduced-motion: reduce) {
  .hero .bg-video { display: none; }
  .hero { background: url('/uploads/2022/09/IMG_8479-1.jpg') center/cover no-repeat; }
}
