/* ===== Reset & base ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --blush: #f7e6e0;
  --blush-soft: #fbf1ee;
  --rose: #d98a7a;
  --rose-dark: #a15943;
  --rose-darker: #7d3f2e;
  --gold: #a3792f;
  --ink: #2c2422;
  --ink-soft: #6f625d;
  --cream: #fffaf7;
  --white: #ffffff;
  --border: #ece0da;
  --shadow: 0 20px 45px -25px rgba(44, 36, 34, 0.35);
  --shadow-lg: 0 30px 60px -20px rgba(44, 36, 34, 0.28);
  --ease: cubic-bezier(.16, .84, .44, 1);
  --radius: 18px;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 { font-family: var(--serif); font-weight: 600; color: var(--ink); }

.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose-dark);
  font-weight: 600;
  margin-bottom: 10px;
}
.center { text-align: center; margin-left: auto; margin-right: auto; }

.section-sub {
  color: var(--ink-soft);
  max-width: 560px;
  margin: 14px auto 0;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.3s var(--ease), border-color 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  white-space: nowrap;
}
.btn-primary { background: linear-gradient(135deg, var(--rose-dark) 0%, var(--rose-darker) 100%); color: #fff; box-shadow: 0 12px 24px -14px rgba(161, 89, 67, 0.7); }
.btn-primary:hover { background: linear-gradient(135deg, var(--rose-darker) 0%, #601f14 100%); transform: translateY(-2px); box-shadow: 0 16px 30px -12px rgba(125, 63, 46, 0.6); }
.btn-primary:active { transform: translateY(0); }
.btn-outline { border-color: var(--rose); color: var(--rose-dark); background: transparent; }
.btn-outline:hover { background: var(--blush-soft); border-color: var(--rose-dark); transform: translateY(-2px); }
.btn-ghost { color: var(--ink); padding: 10px; border-radius: 50%; }
.btn-ghost:hover { background: var(--blush-soft); }
.btn-light { background: #fff; color: var(--rose-dark); }
.btn-light:hover { background: var(--blush-soft); transform: translateY(-2px); }
.btn-lg { padding: 15px 30px; font-size: 1rem; }

/* ===== Topbar ===== */
.topbar {
  background: var(--ink);
  color: #eee2dc;
  font-size: 0.8rem;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 24px;
  flex-wrap: wrap;
  text-align: center;
}
.topbar a:hover { color: var(--gold); }
.topbar .dot { opacity: 0.5; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 250, 247, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.35s var(--ease), border-color 0.35s var(--ease), background-color 0.35s var(--ease);
}
.site-header.scrolled {
  background: rgba(255, 250, 247, 0.97);
  border-bottom-color: var(--border);
  box-shadow: 0 12px 30px -24px rgba(44, 36, 34, 0.4);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
}
.logo {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--rose-dark);
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1.1;
}
.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--border);
}
.logo-text { display: flex; flex-direction: column; }
.logo span {
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}
.nav {
  display: flex;
  gap: 28px;
}
.nav a {
  font-size: 0.92rem;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1.5px;
  background: var(--rose-dark);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav a:hover { color: var(--rose-dark); }
.nav a:hover::after { transform: scaleX(1); }
.header-cta { display: flex; align-items: center; gap: 10px; }
.lang-dropdown {
  position: relative;
  margin-right: 6px;
  padding-right: 14px;
  border-right: 1px solid var(--border);
}
.lang-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 11px;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--ink);
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.lang-dropdown-toggle:hover { border-color: var(--rose); color: var(--rose-dark); }
.lang-caret { width: 10px; height: 10px; transition: transform 0.2s ease; }
.lang-dropdown.open .lang-caret { transform: rotate(180deg); }
.lang-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 100px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
  z-index: 60;
}
.lang-dropdown.open .lang-dropdown-menu { display: block; }
.lang-dropdown-menu a,
.lang-dropdown-menu span {
  display: block;
  padding: 10px 16px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink);
}
.lang-dropdown-menu a:hover { background: var(--blush-soft); color: var(--rose-dark); }
.lang-dropdown-menu span.active { color: var(--rose-dark); font-weight: 700; background: var(--blush-soft); }
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.burger span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; }

/* ===== Hero ===== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 110px 0 90px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, var(--blush) 0%, transparent 45%),
    radial-gradient(circle at 85% 10%, #f3ddd3 0%, transparent 40%),
    radial-gradient(circle at 75% 85%, var(--blush-soft) 0%, transparent 50%),
    var(--cream);
  z-index: -2;
}
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  z-index: -1;
  mask-image: linear-gradient(to left, black 0%, black 38%, transparent 68%);
  -webkit-mask-image: linear-gradient(to left, black 0%, black 38%, transparent 68%);
  opacity: 0.9;
}
.hero-inner { max-width: 720px; }
.eyebrow.center, .hero .eyebrow { }
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  line-height: 1.08;
  margin-bottom: 22px;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(120deg, var(--rose-dark) 20%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 540px;
  margin-bottom: 32px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-rating { display: flex; align-items: center; gap: 8px; font-size: 0.92rem; color: var(--ink-soft); }
.stars { color: var(--gold); letter-spacing: 2px; }

/* ===== Strip stats ===== */
.strip { position: relative; z-index: 3; padding: 0 24px; }
.strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
  max-width: 1112px;
  margin: -54px auto 0;
  padding: 34px 24px;
  background: linear-gradient(120deg, var(--ink) 0%, #3d2f28 60%, var(--rose-darker) 130%);
  color: #fff;
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
}
.strip-item strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.8rem;
  color: var(--gold);
}
.strip-item span { font-size: 0.8rem; letter-spacing: 0.05em; color: #cfc3bd; text-transform: uppercase; }

/* ===== Sections ===== */
.section { padding: 90px 0; }
.section-alt { background: linear-gradient(180deg, var(--blush-soft) 0%, var(--blush) 100%); }
.section h2 { font-size: clamp(1.9rem, 3.5vw, 2.6rem); margin-bottom: 8px; }

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.about-media {
  position: relative;
  height: 380px;
}
.about-media-card {
  position: absolute;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  box-shadow: var(--shadow);
  object-fit: cover;
  border: 6px solid var(--cream);
}
.card-1 { width: 240px; height: 280px; top: 0; left: 0; }
.card-2 { width: 170px; height: 170px; bottom: 0; right: 20px; }
.card-3 { width: 120px; height: 120px; background: var(--gold); color: #fff; top: 40%; right: -10px; border: none; }
.about-copy h2 { margin-bottom: 18px; }
.about-copy p { color: var(--ink-soft); margin-bottom: 16px; }
.check-list { margin-top: 20px; display: grid; gap: 10px; }
.check-list li { padding-left: 28px; position: relative; color: var(--ink); font-size: 0.95rem; }
.check-list li::before {
  content: "✓";
  position: absolute; left: 0; top: 0;
  color: var(--rose-dark); font-weight: 700;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 50px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-photo {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.service-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(44, 36, 34, 0.45) 0%, rgba(44, 36, 34, 0) 55%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.service-card:hover .service-photo::after { opacity: 1; }
.service-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.service-card:hover .service-photo img { transform: scale(1.06); }
.service-body { padding: 22px 22px 26px; }
.service-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.service-card p { color: var(--ink-soft); font-size: 0.88rem; margin-bottom: 16px; min-height: 42px; }
.price { font-family: var(--serif); font-size: 1.3rem; color: var(--rose-dark); font-weight: 700; }
.services-cta { text-align: center; margin-top: 46px; }

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 18px;
  margin-top: 50px;
}
.team-card { text-align: center; }
.avatar {
  width: 84px; height: 84px;
  border-radius: 50%;
  margin: 0 auto 12px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(160deg, var(--rose-dark), var(--gold));
  box-shadow: var(--shadow);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.team-card:hover .avatar { transform: translateY(-4px) scale(1.05); box-shadow: var(--shadow-lg); }
.team-card span { font-size: 0.9rem; font-weight: 500; }

/* Recensioni */
.recensioni-inner { text-align: center; }
.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 14px 30px;
  margin: 36px auto 28px;
}
.rating-number { font-family: var(--serif); font-size: 2.4rem; font-weight: 700; color: var(--rose-dark); }
.rating-badge p { font-size: 0.85rem; color: var(--ink-soft); }

/* Instagram */
.instagram-section {
  background: linear-gradient(135deg, var(--rose-dark) 0%, #8f4636 100%);
  color: #fff;
}
.instagram-section .eyebrow { color: #ffe4d6; }
.instagram-section h2 { color: #fff; }
.instagram-section .section-sub { color: #ffe4d6; }
.instagram-inner { text-align: center; }
.instagram-inner .btn-primary { background: #fff; color: var(--rose-dark); }
.instagram-inner .btn-primary:hover { background: var(--blush-soft); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin: 40px 0 36px;
}
.gallery-item {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 15px 30px -18px rgba(0,0,0,0.5);
}
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, rgba(161, 89, 67, 0.35) 0%, rgba(44, 36, 34, 0.35) 100%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.gallery-item:hover img { transform: scale(1.08); }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: stretch;
}
.contact-info h2 { margin-bottom: 30px; }
.info-row { display: flex; gap: 16px; margin-bottom: 24px; }
.info-icon { font-size: 1.3rem; }
.info-row strong { display: block; margin-bottom: 4px; font-size: 0.95rem; }
.info-row p { color: var(--ink-soft); font-size: 0.92rem; }
.info-row a:hover { color: var(--rose-dark); }
.contact-actions { display: flex; gap: 14px; margin-top: 10px; flex-wrap: wrap; }
.contact-map {
  min-height: 380px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

/* Blog */
.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 50px;
}
.post-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.post-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.post-card-photo { aspect-ratio: 16 / 10; overflow: hidden; }
.post-card-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.post-card:hover .post-card-photo img { transform: scale(1.06); }
.post-card-body { padding: 22px 24px 26px; }
.post-meta { display: block; font-size: 0.76rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--rose-dark); font-weight: 600; margin-bottom: 10px; }
.post-card h3 { font-size: 1.15rem; line-height: 1.35; }
.post-card-large { grid-column: span 2; }
.post-card-large .post-card-photo { aspect-ratio: 16 / 8; }
.post-card-large h3 { font-size: 1.5rem; }

/* Blog listing hero */
.blog-hero {
  padding: 70px 0 20px;
  text-align: center;
}
.blog-hero h1 { font-size: clamp(2.2rem, 4.5vw, 3rem); margin-bottom: 14px; }
.blog-hero p { color: var(--ink-soft); max-width: 560px; margin: 0 auto; }

/* Article page */
.article-hero { padding: 60px 0 0; }
.back-link { display: inline-flex; align-items: center; gap: 6px; color: var(--rose-dark); font-size: 0.9rem; font-weight: 500; margin-bottom: 24px; }
.back-link:hover { text-decoration: underline; }
.article-hero .post-meta { text-align: center; display: block; }
.article-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  text-align: center;
  max-width: 780px;
  margin: 12px auto 30px;
}
.article-cover {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 10px;
}
.article-body {
  max-width: 720px;
  margin: 50px auto 0;
  padding: 0 24px 90px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--ink);
}
.article-body h2 {
  font-size: 1.6rem;
  margin: 40px 0 16px;
}
.article-body h3 {
  font-size: 1.25rem;
  margin: 30px 0 12px;
}
.article-body p { margin-bottom: 20px; color: var(--ink); }
.article-body ul, .article-body ol { margin: 0 0 20px 22px; color: var(--ink); }
.article-body li { margin-bottom: 10px; }
.article-body strong { color: var(--rose-dark); }
.article-cta {
  margin-top: 40px;
  padding: 30px;
  background: var(--blush-soft);
  border-radius: var(--radius);
  text-align: center;
}
.article-cta p { color: var(--ink-soft); margin-bottom: 16px; }
.article-share { margin-top: 16px; }

/* CTA band */
.cta-band {
  position: relative;
  color: #fff;
  padding: 100px 0;
  overflow: hidden;
  isolation: isolate;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('/assets/img/salon-1.jpg');
  background-size: cover;
  background-position: center 30%;
  z-index: -2;
}
.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(44, 36, 34, 0.96) 15%, rgba(161, 89, 67, 0.88) 75%, rgba(163, 121, 47, 0.75) 130%);
  z-index: -1;
}
.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.cta-band h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.2rem); max-width: 500px; }

/* Footer */
.site-footer { background: var(--blush-soft); padding-top: 60px; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 30px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}
.footer-brand p { color: var(--ink-soft); margin-top: 10px; font-size: 0.9rem; }
.footer-links, .footer-social { display: flex; flex-direction: column; gap: 12px; font-size: 0.9rem; }
.footer-links a:hover, .footer-social a:hover { color: var(--rose-dark); }
.footer-bottom {
  padding: 20px 0;
  font-size: 0.8rem;
  color: var(--ink-soft);
  text-align: center;
}

/* Floating book button (mobile) */
.floating-book {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 200;
  background: var(--rose-dark);
  color: #fff;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.floating-book.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* ===== Scroll reveal (progressive enhancement, no-FOUC via .js html class) ===== */
.js .hero .eyebrow, .js .hero h1, .js .hero-sub, .js .hero-actions, .js .hero-rating,
.js h2, .js .eyebrow, .js .section-sub, .js .about-media, .js .about-copy, .js .strip-inner,
.js .rating-badge, .js .contact-info, .js .contact-map, .js .article-hero .back-link,
.js .article-hero .post-meta, .js .article-hero h1, .js .article-cover,
.js .article-body > h2, .js .article-body > h3, .js .article-body > p,
.js .article-body > ul, .js .article-body > ol, .js .article-cta,
.js .check-list li, .js .info-row, .js .cta-band-inner,
.js .blog-hero .eyebrow, .js .blog-hero h1, .js .blog-hero p {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.js .service-card, .js .post-card, .js .team-card, .js .gallery-item {
  opacity: 0;
  transition: opacity 0.7s var(--ease);
}
.js .hero .eyebrow.is-visible, .js .hero h1.is-visible, .js .hero-sub.is-visible,
.js .hero-actions.is-visible, .js .hero-rating.is-visible,
.js h2.is-visible, .js .eyebrow.is-visible, .js .section-sub.is-visible,
.js .about-media.is-visible, .js .about-copy.is-visible, .js .strip-inner.is-visible,
.js .rating-badge.is-visible, .js .contact-info.is-visible, .js .contact-map.is-visible,
.js .article-hero .back-link.is-visible, .js .article-hero .post-meta.is-visible,
.js .article-hero h1.is-visible, .js .article-cover.is-visible,
.js .article-body > h2.is-visible, .js .article-body > h3.is-visible,
.js .article-body > p.is-visible, .js .article-body > ul.is-visible,
.js .article-body > ol.is-visible, .js .article-cta.is-visible,
.js .check-list li.is-visible, .js .info-row.is-visible, .js .cta-band-inner.is-visible,
.js .blog-hero .eyebrow.is-visible, .js .blog-hero h1.is-visible, .js .blog-hero p.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.js .service-card.is-visible, .js .post-card.is-visible, .js .team-card.is-visible, .js .gallery-item.is-visible {
  opacity: 1;
}
@media (prefers-reduced-motion: reduce) {
  .js .hero .eyebrow, .js .hero h1, .js .hero-sub, .js .hero-actions, .js .hero-rating,
  .js h2, .js .eyebrow, .js .section-sub, .js .about-media, .js .about-copy, .js .strip-inner,
  .js .rating-badge, .js .contact-info, .js .contact-map, .js .article-hero .back-link,
  .js .article-hero .post-meta, .js .article-hero h1, .js .article-cover,
  .js .article-body > h2, .js .article-body > h3, .js .article-body > p,
  .js .article-body > ul, .js .article-body > ol, .js .article-cta,
  .js .check-list li, .js .info-row, .js .cta-band-inner,
  .js .blog-hero .eyebrow, .js .blog-hero h1, .js .blog-hero p,
  .js .service-card, .js .post-card, .js .team-card, .js .gallery-item {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ===== Hero badge ===== */
.hero-badge {
  position: absolute;
  right: 6%;
  bottom: 64px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 14px 20px;
  box-shadow: var(--shadow-lg);
}
.hero-badge-stars { color: var(--gold); letter-spacing: 1px; font-size: 0.95rem; }
.hero-badge-text strong { display: block; font-family: var(--serif); font-size: 1.35rem; color: var(--rose-dark); line-height: 1.1; }
.hero-badge-text span { display: block; font-size: 0.7rem; color: var(--ink-soft); white-space: nowrap; }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .nav { display: none; }
  .burger { display: flex; }
  .hero-photo { display: none; }
  .hero-badge { display: none; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-media { height: 300px; margin-bottom: 20px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(4, 1fr); }
  .strip-inner { grid-template-columns: repeat(2, 1fr); margin-top: -40px; padding: 26px 18px; border-radius: 18px; }
  .floating-book { display: block; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .post-grid { grid-template-columns: repeat(2, 1fr); }
  .post-card-large { grid-column: span 2; }
}

@media (max-width: 640px) {
  .topbar-inner { font-size: 0.72rem; }
  .header-cta .btn-primary { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .cta-band { padding: 70px 0; }
  .cta-band-inner { text-align: center; justify-content: center; }
  .contact-map { min-height: 280px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .post-grid { grid-template-columns: 1fr; }
  .post-card-large { grid-column: span 1; }
  .article-body { font-size: 1rem; }
}

.nav.open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--cream);
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  gap: 16px;
  animation: navSlide 0.3s var(--ease);
}
@keyframes navSlide {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
