/*
Theme Name: VALO LOC
Theme URI: https://valoloc.fr
Author: VALO LOC
Description: Elegant gold WordPress theme matching the Lovable design — Playfair Display + Inter, warm gold palette, refined whitespace.
Version: 8.0
License: GPL-2.0+
Text Domain: valo-loc
*/

/* ==========================================================================
   My Hosting Services — WordPress theme styles
   Mirrors the Lovable design (palette, gradients, waves, blur orbs, marquee)
   ========================================================================== */

:root {
  --navy:      #3a2f1a;
  --navy-2:    #4a3d22;
  --sky:       #d4af37;
  --sky-soft:  #ecd9a1;
  --sky-tint:  #fbf7ec;
  --primary:   #c9a14a;
  --primary-2: #b8862a;
  --bg:        #ffffff;
  --fg:        #2a2418;
  --muted:     #7a6f55;
  --border:    #ece4cf;
  --destructive:#d83838;

  --grad-primary: linear-gradient(135deg, #c9a14a 0%, #b8862a 100%);
  --grad-navy:    linear-gradient(135deg, #3a2f1a 0%, #4a3d22 100%);
  --grad-hero:    linear-gradient(135deg, #fbf7ec 0%, #ecd9a1 100%);
  --grad-gold:    linear-gradient(135deg, #ecd9a1 0%, #d4af37 50%, #c9a14a 100%);

  --shadow-soft: 0 10px 40px -15px rgba(201, 161, 74, .30);
  --shadow-card: 0 4px 20px -8px rgba(201, 161, 74, .20);
  --radius:      1rem;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}
h1, h2, h3, h4 {
  font-family: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  letter-spacing: -.02em;
  color: var(--navy);
  margin: 0;
}
p { margin: 0; color: var(--muted); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.myh-container { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }
@media (min-width: 768px) { .myh-container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .myh-container { padding: 0 2rem; } }

.myh-eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: .2em;
}
.myh-text-gradient {
  background: var(--grad-primary);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}

/* Buttons */
.myh-btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5rem; padding: .85rem 1.5rem;
  border-radius: 9999px; font-weight: 600; font-size: .95rem;
  border: 0; cursor: pointer; transition: all .25s ease;
  text-align: center;
}
.myh-btn--primary { background: var(--grad-primary); color: #fff; box-shadow: var(--shadow-soft); }
.myh-btn--primary:hover { transform: translateY(-1px); box-shadow: 0 14px 35px -10px rgba(212,175,55,.30); }
.myh-btn--ghost {
  background: rgba(255,255,255,.85); color: var(--navy);
  border: 1px solid var(--sky-soft); backdrop-filter: blur(8px);
}
.myh-btn--ghost:hover { background: #fff; }
.myh-btn .myh-ico { width: 18px; height: 18px; }

/* ============== HEADER ============== */
.myh-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: background .3s, box-shadow .3s, border-color .3s;
  background: transparent;
}
.myh-header.is-scrolled {
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}
.myh-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: .85rem 1.25rem;
}
.myh-logo { display: inline-flex; color: var(--navy); }
.myh-logo--light { color: #fff; }
.myh-logo__svg { height: 54px; width: auto; }
.myh-nav { display: none; gap: .25rem; }
@media (min-width: 1024px) { .myh-nav { display: flex; } .myh-cta-desktop { display: inline-flex; } }
.myh-cta-desktop { display: none; }
.myh-nav a {
  padding: .5rem 1rem; font-size: .9rem; font-weight: 500;
  color: rgba(26,36,71,.8); border-radius: .5rem; transition: all .2s;
}
.myh-nav a:hover { color: var(--primary); background: var(--sky-tint); }

.myh-burger {
  display: inline-flex; flex-direction: column; gap: 5px;
  background: transparent; border: 0; padding: .5rem; cursor: pointer; color: var(--navy);
}
.myh-burger span { width: 22px; height: 2px; background: currentColor; border-radius: 2px; }
@media (min-width: 1024px) { .myh-burger { display: none; } }

.myh-mobile-nav {
  display: flex; flex-direction: column; gap: .25rem;
  margin: 0 1rem 1rem; padding: .75rem;
  background: rgba(255,255,255,.95); backdrop-filter: blur(10px);
  border: 1px solid var(--border); border-radius: 1rem;
  box-shadow: var(--shadow-card);
}
.myh-mobile-nav[hidden] { display: none !important; }
.myh-mobile-nav a { padding: .7rem 1rem; border-radius: .5rem; font-weight: 500; }
.myh-mobile-nav a:hover { background: var(--sky-tint); color: var(--primary); }
.myh-mobile-nav .myh-btn { margin-top: .5rem; }

/* ============== HERO ============== */
.myh-hero {
  position: relative; padding: 9rem 0 7rem;
  min-height: 88vh;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(180deg, var(--sky-tint) 0%, var(--sky-tint) 60%, var(--bg) 100%);
  overflow: hidden;
  text-align: center;
}
.myh-hero__glow {
  position: absolute; border-radius: 9999px; filter: blur(80px); pointer-events: none;
}
.myh-hero__glow--a { top: -6rem; left: -6rem; width: 24rem; height: 24rem; background: rgba(212,175,55,.30); }
.myh-hero__glow--b { top: 33%; right: -8rem; width: 24rem; height: 24rem; background: rgba(212,175,55,.20); }
.myh-hero__inner { position: relative; max-width: 1100px; margin: 0 auto; padding: 0 1.25rem; text-align: center; }
.myh-hero__title {
  margin-top: 1rem; font-size: clamp(2rem, 5vw + 1rem, 4.5rem);
  font-weight: 700; line-height: 1.05;
}
.myh-hero__sub {
  margin-top: 1rem; font-size: clamp(1.1rem, 1.4vw + .8rem, 1.85rem);
  font-weight: 300; color: rgba(31,44,92,.8);
}
.myh-hero__lead {
  margin: 1.25rem auto 0; max-width: 640px;
  color: var(--muted); font-size: 1rem;
}
.myh-hero__ctas {
  margin: 2rem auto 0; display: flex; flex-direction: column; gap: .75rem;
  align-items: stretch; max-width: 320px;
}
@media (min-width: 640px) {
  .myh-hero { padding: 10rem 0 8rem; min-height: 0; }
  .myh-hero__ctas { flex-direction: row; justify-content: center; max-width: none; }
}
@media (min-width: 1024px) {
  .myh-hero { padding: 11rem 0 9rem; }
}



/* ============== Section base ============== */
.myh-section { position: relative; padding: 6rem 0; overflow: hidden; }
.myh-section__head { text-align: center; max-width: 720px; margin: 0 auto 3.5rem; }
.myh-section__head h2 { margin-top: .75rem; font-size: clamp(1.85rem, 1.5vw + 1.25rem, 3rem); font-weight: 700; }
.myh-section__head p { margin-top: 1rem; font-size: 1.05rem; }

/* ============== ADVANTAGES ============== */
.myh-advantages { background: var(--bg); padding-bottom: 6rem; }
.myh-grid { display: grid; gap: 1.5rem; }
.myh-grid--2 { grid-template-columns: 1fr; }
.myh-grid--3 { grid-template-columns: 1fr; }
@media (min-width: 720px) { .myh-grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .myh-grid--2 { grid-template-columns: repeat(2, 1fr); } .myh-grid--3 { grid-template-columns: repeat(3, 1fr); } }

.myh-adv {
  display: flex; align-items: flex-start; gap: 1.25rem;
  padding: 1.5rem; border-radius: 1.5rem;
  background: var(--sky-tint); border: 1px solid var(--sky-soft);
  transition: all .3s ease;
}
.myh-adv:hover { border-color: var(--sky); box-shadow: var(--shadow-soft); transform: translateY(-2px); }
.myh-adv__icon {
  flex-shrink: 0; width: 56px; height: 56px; border-radius: 1rem;
  background: var(--grad-primary);
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; box-shadow: var(--shadow-soft);
}
.myh-adv__icon .myh-ico { width: 26px; height: 26px; }
.myh-adv h3 { font-size: 1.25rem; font-weight: 700; }
.myh-adv p { margin-top: .4rem; font-size: .95rem; }

/* ============== SERVICES ============== */
.myh-services { background: var(--sky-tint); }
.myh-card-svc {
  background: #fff; border-radius: 1.5rem; padding: 1.75rem;
  border: 1px solid var(--sky-soft); transition: all .3s ease;
}
.myh-card-svc:hover { border-color: var(--sky); box-shadow: var(--shadow-soft); transform: translateY(-3px); }
.myh-svc__icon {
  width: 56px; height: 56px; border-radius: 1rem;
  background: var(--grad-primary); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-soft);
}
.myh-svc__icon .myh-ico { width: 26px; height: 26px; }
.myh-card-svc h3 { margin-top: 1rem; font-size: 1.15rem; font-weight: 700; }
.myh-card-svc p { margin-top: .5rem; font-size: .9rem; }

/* ============== GALLERY ============== */
.myh-gallery { background: var(--sky-tint); padding-bottom: 4rem; }
.myh-gallery__track {
  display: flex; gap: 1.25rem; overflow-x: auto;
  padding: 0 1.5rem 1.5rem; scroll-snap-type: x mandatory; scroll-behavior: smooth;
  -ms-overflow-style: none; scrollbar-width: none;
}
.myh-gallery__track::-webkit-scrollbar { display: none; }
.myh-gallery__item {
  flex: 0 0 auto; width: 85%; aspect-ratio: 4/3;
  border-radius: 1.5rem; overflow: hidden; margin: 0;
  scroll-snap-align: center;
  box-shadow: var(--shadow-soft);
  outline: 1px solid rgba(255,255,255,.4);
  background: #fff;
}
@media (min-width: 640px) { .myh-gallery__item { width: 60%; } }
@media (min-width: 1024px) { .myh-gallery__item { width: 420px; } }
.myh-gallery__item img { width: 100%; height: 100%; object-fit: cover; }

/* Gallery dots */
.myh-gallery__dots {
  margin-top: .5rem;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.myh-gallery__dot {
  height: 6px; width: 6px; border-radius: 9999px;
  background: rgba(31,44,92,.2); transition: all .3s ease;
  border: 0; padding: 0; cursor: pointer;
}
.myh-gallery__dot.is-active { width: 24px; background: var(--primary); }

/* ============== ABOUT ============== */
.myh-about { background: var(--bg); padding-top: 10rem; }
.myh-about__grid {
  display: grid; gap: 4rem; align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) { .myh-about__grid { grid-template-columns: 1fr 1fr; } }
.myh-about__card {
  position: relative; overflow: hidden;
  border-radius: 1.5rem; padding: 2rem 1.5rem;
  background: var(--grad-navy);
  color: #fff; box-shadow: var(--shadow-soft);
}
@media (min-width: 640px) { .myh-about__card { padding: 3rem; } }
.myh-glow {
  position: absolute; border-radius: 9999px; filter: blur(70px); pointer-events: none;
}
.myh-glow--a { top: -6rem; right: -6rem; width: 18rem; height: 18rem; background: rgba(212,175,55,.30); }
.myh-glow--b { bottom: -5rem; left: -5rem; width: 16rem; height: 16rem; background: rgba(212,175,55,.30); }
.myh-about__list { position: relative; display: flex; flex-direction: column; gap: 1.5rem; }
.myh-about__row { display: flex; align-items: flex-start; gap: 1rem; }
.myh-about__ico {
  width: 48px; height: 48px; border-radius: .85rem;
  background: rgba(255,255,255,.15); backdrop-filter: blur(8px);
  display: inline-flex; align-items: center; justify-content: center; color: #fff;
  flex-shrink: 0;
}
.myh-about__t { font-weight: 600; color: #fff; }
.myh-about__d { color: rgba(255,255,255,.75); font-size: .9rem; }
.myh-about__text h2 { margin-top: .75rem; font-size: clamp(1.85rem, 1.5vw + 1.25rem, 3rem); font-weight: 700; }
.myh-about__text p { margin-top: 1rem; }
.myh-about__text strong { color: var(--navy); }
.myh-stats {
  margin-top: 2rem;
  display: grid; grid-template-columns: repeat(3,1fr); gap: .5rem;
}
.myh-stats > div {
  text-align: center; padding: .625rem .5rem;
  background: var(--sky-tint); border: 1px solid var(--sky-soft);
  border-radius: .75rem;
}
.myh-stats p { font-size: 1rem; font-weight: 700; line-height: 1.1; }
.myh-stats span { font-size: .625rem; color: var(--muted); line-height: 1.15; display: inline-block; margin-top: .15rem; }
@media (min-width: 640px) {
  .myh-stats { gap: 1rem; margin-top: 2.5rem; }
  .myh-stats > div { padding: 1.25rem .75rem; border-radius: 1rem; }
  .myh-stats p { font-size: 1.85rem; }
  .myh-stats span { font-size: .8rem; }
}

/* ============== TRUST ============== */
.myh-trust { background: var(--bg); padding: 6rem 0; }
.myh-trust__head { text-align: center; max-width: 640px; margin: 0 auto; }
.myh-trust__eyebrow {
  display: inline-flex; align-items: center; gap: .75rem;
  font-size: .7rem; font-weight: 700; letter-spacing: .3em;
  text-transform: uppercase; color: var(--primary);
}
.myh-trust__rule { display: inline-block; width: 2rem; height: 1px; background: rgba(201,161,74,.6); }
.myh-trust__title {
  margin-top: 1.25rem; font-size: 2.25rem; line-height: 1.1;
  letter-spacing: -.02em; color: var(--navy); font-weight: 500;
}
.myh-trust__title em { font-style: normal; font-weight: 600; }
.myh-trust__sub { margin-top: 1.25rem; color: var(--muted); font-weight: 300; font-size: 1rem; }
@media (min-width: 640px) {
  .myh-trust__title { font-size: 3rem; }
  .myh-trust__sub  { font-size: 1.125rem; }
}
.myh-trust__grid {
  margin: 3.5rem auto 0;
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: 1.25rem; overflow: hidden;
}
@media (min-width: 768px) { .myh-trust__grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .myh-trust__grid { grid-template-columns: repeat(5, 1fr); margin-top: 5rem; } }
.myh-trust__cell {
  background: var(--bg); padding: 1.5rem 1rem; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: .9rem;
  transition: background .3s ease;
}
.myh-trust__cell:hover { background: var(--sky-tint); }
.myh-trust__ico {
  width: 46px; height: 46px; border-radius: 9999px;
  background: var(--sky-tint); border: 1px solid var(--sky-soft);
  color: var(--primary);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .3s ease;
}
.myh-trust__cell:hover .myh-trust__ico { background: #fff; }
.myh-trust__ico .myh-ico { width: 20px; height: 20px; }
.myh-trust__cell p {
  font-size: .7rem; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: var(--navy); line-height: 1.3;
  font-family: 'Inter', system-ui, sans-serif;
}

/* ============== FAQ ============== */
.myh-faq { background: var(--bg); }
.myh-faq__glow {
  position: absolute; top: 50%; left: 25%; transform: translate(-50%,-50%);
  width: 28rem; height: 28rem; border-radius: 9999px;
  background: rgba(212,175,55,.30); filter: blur(80px); pointer-events: none;
}
.myh-faq__inner { max-width: 800px; }
.myh-faq__item {
  background: var(--sky-tint); border: 1px solid var(--sky-soft);
  border-radius: 1rem; padding: 0 1.5rem;
  margin-bottom: 1rem; transition: all .25s;
  -webkit-tap-highlight-color: transparent;
}
.myh-faq__item[open] { background: #fff; box-shadow: var(--shadow-card); }
.myh-faq__item summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 0; font-weight: 600; color: var(--navy); font-size: 1rem;
  -webkit-user-select: none; user-select: none;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  outline: none;
}
.myh-faq__item summary:focus { outline: none; }
.myh-faq__item summary:focus-visible { color: var(--primary); }
.myh-faq__item summary::selection { background: transparent; }
.myh-faq__item summary::-webkit-details-marker { display: none; }
.myh-faq__chev {
  width: 28px; height: 28px; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.25rem; color: var(--primary); transition: transform .3s;
}
.myh-faq__item[open] .myh-faq__chev { transform: rotate(45deg); }
.myh-faq__a { padding: 0 0 1.25rem; color: var(--muted); font-size: .95rem; }

/* ============== CONTACT ============== */
.myh-contact { background: var(--bg); }
.myh-contact__grid {
  display: grid; gap: 2rem; grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .myh-contact__grid { grid-template-columns: 2fr 3fr; }
}
.myh-contact__info {
  position: relative; overflow: hidden;
  background: var(--grad-navy); color: #fff;
  border-radius: 1.5rem; padding: 2.5rem;
  box-shadow: var(--shadow-soft);
}
.myh-contact__info-inner { position: relative; }
.myh-contact__info h3 { color: #fff; font-size: 1.5rem; }
.myh-muted-light { color: rgba(255,255,255,.75); font-size: .9rem; margin-top: .5rem; }
.myh-contact__row {
  display: flex; align-items: center; gap: 1rem; margin-top: 1.5rem;
  color: #fff;
}
.myh-contact__ico {
  width: 48px; height: 48px; border-radius: .85rem;
  background: rgba(255,255,255,.15); backdrop-filter: blur(8px);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: background .2s;
}
a.myh-contact__row:hover .myh-contact__ico { background: rgba(255,255,255,.25); }
.myh-contact__row small { display: block; font-size: .75rem; color: rgba(255,255,255,.7); }
.myh-contact__row strong { display: block; font-weight: 600; }
.myh-contact__form {
  background: #fff; border: 1px solid var(--sky-soft);
  border-radius: 1.5rem; padding: 2.5rem; box-shadow: var(--shadow-card);
}
.myh-form { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.myh-form__row { display: flex; flex-direction: column; }
.myh-form__row--full { grid-column: 1 / -1; }
.myh-form label { font-size: .85rem; font-weight: 600; color: var(--navy); margin-bottom: .5rem; }
.myh-form input, .myh-form textarea {
  width: 100%; border-radius: .85rem; border: 1px solid var(--sky-soft);
  padding: .85rem 1rem; font-size: .95rem; color: var(--navy);
  font-family: inherit; background: #fff;
  transition: border-color .2s, box-shadow .2s;
}
.myh-form input:focus, .myh-form textarea:focus {
  outline: none; border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(212,175,55,.30);
}
.myh-form textarea { resize: vertical; min-height: 120px; }
.myh-form .myh-btn { grid-column: 1 / -1; justify-self: start; }

/* ============== FOOTER ============== */
.myh-footer {
  position: relative;
  background: var(--navy);
  color: #fff;
  padding: 4rem 0 2rem;
  overflow: hidden;
}
.myh-footer__topline {
  position: absolute; inset: 0 0 auto 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,.6), transparent);
}
.myh-footer__orb {
  position: absolute; width: 18rem; height: 18rem; border-radius: 9999px;
  background: rgba(212,175,55,.10); filter: blur(60px); pointer-events: none;
}
.myh-footer__orb--a { top: -8rem; left: -8rem; }
.myh-footer__orb--b { bottom: -8rem; right: -8rem; }
.myh-footer__grid {
  position: relative;
  display: grid; gap: 3rem; grid-template-columns: 1fr; align-items: start;
  padding-bottom: 3rem;
}
@media (min-width: 768px) {
  .myh-footer__grid { grid-template-columns: 1fr 1fr 1fr; gap: 2.5rem; }
  .myh-footer__col--nav { justify-self: center; }
  .myh-footer__col--contact { justify-self: end; }
}
.myh-footer__col { display: flex; flex-direction: column; gap: 1.25rem; }
.myh-footer__logo { color: #fff; }
.myh-footer__logo .myh-logo__svg { height: 56px; color: #fff; }
.myh-footer__tagline {
  color: rgba(255,255,255,.70); font-size: .9rem; line-height: 1.6;
  max-width: 18rem; font-weight: 300;
}
.myh-footer__heading {
  font-size: .72rem; font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; color: var(--sky); margin: 0 0 1.25rem;
}
.myh-footer__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .75rem; }
.myh-footer__list a, .myh-footer__static {
  display: inline-flex; align-items: flex-start; gap: .75rem;
  color: rgba(255,255,255,.78); font-size: .9rem;
  text-decoration: none; transition: color .2s;
}
.myh-footer__list a:hover { color: var(--sky); }
.myh-footer__list .myh-ico { width: 16px; height: 16px; color: var(--sky); flex-shrink: 0; margin-top: 2px; }
.myh-footer__copy {
  position: relative;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.10);
  text-align: center;
  font-size: .75rem; color: rgba(255,255,255,.55);
  letter-spacing: .04em;
}


/* ============== PAGE PROPRIÉTAIRES (sous-location pro) ============== */
.myh-container--narrow { max-width: 860px; }
.slp-section { padding: 5rem 0; background: var(--bg, #fdfcf9); }
.slp-section--tint { background: var(--sky-tint, #fbf8f0); }
.slp-section--dark { background: var(--navy); position: relative; overflow: hidden; }
.slp-label { font-size: .74rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--sky); }
.slp-h1 { font-family: "Playfair Display", Georgia, serif; font-size: clamp(2rem, 5vw, 3.4rem); line-height: 1.08; color: var(--navy); margin: 1.1rem 0 0; }
.slp-h2 { font-family: "Playfair Display", Georgia, serif; font-size: clamp(1.7rem, 3.6vw, 2.9rem); line-height: 1.15; color: var(--navy); margin: 1rem 0 0; }
.slp-h2--light { color: #fff; }
.slp-gold { background: linear-gradient(135deg, #d4af37, #b8912b); -webkit-background-clip: text; background-clip: text; color: transparent; }
.slp-lead { margin-top: 1.1rem; font-size: 1rem; line-height: 1.75; color: rgba(58,47,26,.75); }
.slp-intro { max-width: 46rem; }
.slp-intro--center { max-width: 40rem; margin: 0 auto; text-align: center; }
.slp-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; }
.slp-btn--ghost { background: #fff; color: var(--navy); border: 1px solid var(--sky-soft); }
.slp-btn--ghost:hover { background: var(--sky-tint, #fbf8f0); }

.slp-hero { padding: 9rem 0 4rem; background: linear-gradient(180deg, #fbf8f0 0%, #fdfcf9 100%); }
.slp-hero__grid { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 992px) { .slp-hero__grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.slp-hero__media img { width: 100%; height: 22rem; object-fit: cover; border-radius: 1.5rem; border: 1px solid var(--sky-soft); box-shadow: 0 10px 40px -15px rgba(212,175,55,.35); display: block; }
@media (min-width: 992px) { .slp-hero__media img { height: 34rem; } }

.slp-bubbles { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: .85rem; }
@media (min-width: 992px) { .slp-bubbles { grid-template-columns: repeat(3, minmax(0,1fr)); } }
.slp-bubble { display: flex; align-items: center; justify-content: space-between; gap: .75rem; padding: 1rem 1.35rem; border-radius: 9999px; border: 1px solid var(--sky-soft); background: var(--sky-tint, #fbf8f0); color: var(--navy); font-weight: 600; font-size: .85rem; text-decoration: none; transition: all .25s; }
.slp-bubble:hover { background: #fff; border-color: rgba(212,175,55,.5); box-shadow: 0 4px 20px -8px rgba(212,175,55,.3); }
.slp-arrow { color: var(--sky); font-style: normal; }

.slp-grid { display: grid; gap: 1.1rem; margin-top: 3rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .slp-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (min-width: 992px) { .slp-grid--3 { grid-template-columns: repeat(3, minmax(0,1fr)); } .slp-grid--4 { grid-template-columns: repeat(4, minmax(0,1fr)); } }
.slp-card { background: #fff; border: 1px solid var(--sky-soft); border-radius: 1.25rem; padding: 1.6rem; transition: all .25s; }
.slp-card:hover { box-shadow: 0 4px 20px -8px rgba(212,175,55,.3); transform: translateY(-2px); }
.slp-card--tint { background: var(--sky-tint, #fbf8f0); }
.slp-card--tint:hover { background: #fff; }
.slp-card h3 { font-family: "Playfair Display", Georgia, serif; font-size: 1.1rem; color: var(--navy); margin: .7rem 0 0; }
.slp-card p { margin: .7rem 0 0; font-size: .9rem; line-height: 1.7; color: rgba(58,47,26,.7); }
.slp-num { font-size: .85rem; font-weight: 700; color: var(--sky); }
.slp-card--dark { background: rgba(255,255,255,.05); border-color: rgba(212,175,55,.2); }
.slp-card--dark:hover { border-color: rgba(212,175,55,.5); transform: none; box-shadow: none; }
.slp-card--dark p { color: rgba(255,255,255,.88); font-weight: 600; }
.slp-note { margin-top: 2.5rem; max-width: 48rem; color: rgba(255,255,255,.7); font-size: .95rem; line-height: 1.75; }
.slp-check { display: flex; align-items: flex-start; gap: .75rem; padding: 1rem 1.25rem; border-radius: 1.25rem; border: 1px solid var(--sky-soft); background: var(--sky-tint, #fbf8f0); font-size: .9rem; font-weight: 500; color: var(--navy); transition: all .25s; }
.slp-check:hover { background: #fff; box-shadow: 0 4px 20px -8px rgba(212,175,55,.3); }
.slp-check__ico { color: var(--sky); font-weight: 700; }
.slp-banner { margin-top: 2.5rem; border: 1px solid rgba(212,175,55,.3); background: #fff; border-radius: 1.25rem; padding: 1.25rem 1.5rem; text-align: center; font-weight: 600; color: var(--navy); }

.slp-faq { margin-top: 2.5rem; display: flex; flex-direction: column; gap: .75rem; }
.slp-faq__item { border: 1px solid var(--sky-soft); border-radius: 1.1rem; background: #fff; padding: 1rem 1.35rem; }
.slp-faq__item summary { cursor: pointer; font-weight: 600; color: var(--navy); list-style: none; }
.slp-faq__item summary::-webkit-details-marker { display: none; }
.slp-faq__item summary::after { content: "+"; float: right; color: var(--sky); font-weight: 700; }
.slp-faq__item[open] summary::after { content: "\2013"; }
.slp-faq__item p { margin: .85rem 0 0; font-size: .92rem; line-height: 1.7; color: rgba(58,47,26,.72); }

.slp-form { margin-top: 3rem; background: #fff; border: 1px solid var(--sky-soft); border-radius: 1.5rem; padding: 1.75rem; box-shadow: 0 4px 20px -8px rgba(212,175,55,.2); }
@media (min-width: 640px) { .slp-form { padding: 2.5rem; } }
.slp-form__grid { display: grid; gap: 1.1rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .slp-form__grid { grid-template-columns: 1fr 1fr; } .slp-form__full { grid-column: 1 / -1; } }
.slp-form label { display: flex; flex-direction: column; gap: .5rem; font-size: .85rem; font-weight: 600; color: var(--navy); }
.slp-form input, .slp-form textarea { width: 100%; border: 1px solid var(--sky-soft); border-radius: .9rem; padding: .75rem 1rem; font: inherit; font-weight: 400; background: #fdfcf9; }
.slp-form input:focus, .slp-form textarea:focus { outline: none; border-color: var(--sky); box-shadow: 0 0 0 3px rgba(212,175,55,.15); }
.slp-form textarea { resize: vertical; }
.slp-form .myh-btn { margin-top: 1.5rem; }

.slp-reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.slp-reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .slp-reveal { opacity: 1; transform: none; transition: none; } }

/* SLP bubbles panel v7 */
.slp-panel { position: relative; overflow: hidden; border-radius: 28px; box-shadow: 0 18px 50px -24px rgba(0,0,0,.5); }
.slp-panel__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.slp-panel::after { content: ""; position: absolute; inset: 0; background: rgba(20,20,20,.8); }
.slp-panel__inner { position: relative; z-index: 2; padding: 1.75rem; }
@media (min-width: 768px) { .slp-panel__inner { padding: 2.5rem; } }
.slp-panel__label { margin: 0; font-size: .8rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: #d4af37; }
.slp-panel__cta { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.5rem; }
.slp-panel__bubbles { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1rem; }
.slp-pill { display: inline-flex; align-items: center; justify-content: center; padding: .8rem 1.5rem; border-radius: 9999px; font-size: .9rem; font-weight: 700; text-decoration: none; transition: all .25s; }
.slp-pill--gold { background: #d4af37; color: #1b1b1b; }
.slp-pill--gold:hover { opacity: .9; }
.slp-pill--outline { border: 1px solid #d4af37; color: #d4af37; }
.slp-pill--outline:hover { background: rgba(212,175,55,.12); }
.slp-panel__bubbles .slp-bubble { display: inline-flex; align-items: center; gap: .5rem; padding: .75rem 1.25rem; border-radius: 9999px; border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.1); color: #fff; font-size: .85rem; font-weight: 500; text-decoration: none; transition: all .25s; }
.slp-panel__bubbles .slp-bubble:hover { background: rgba(255,255,255,.2); border-color: rgba(212,175,55,.5); }
.slp-panel__bubbles .slp-arrow { color: #d4af37; font-style: normal; }

/* ==========================================================================
   v8.0 — Key Best style homepage (cream / gold / ink)
   ========================================================================== */
body { background: #fbf6ea; }
.kb-gold { color: var(--primary); }
.kb-section { padding: 5rem 0; }
.kb-section--tight { padding-top: 0; }
.kb-tintbg { background: var(--sky-tint); }
.kb-narrow { max-width: 780px; }
.kb-h2 { font-size: clamp(1.6rem, 3.4vw, 2.4rem); font-weight: 700; text-transform: uppercase; text-align: center; }
.kb-h2--gold { color: var(--primary); }
.kb-head { text-align: center; margin-bottom: 3rem; }
.kb-head p { margin-top: .75rem; }
.kb-rule { display: flex; align-items: center; gap: 1.5rem; }
.kb-rule::before, .kb-rule::after { content: ""; flex: 1; height: 1px; background: var(--border); }
.kb-rule h2 { font-size: clamp(1.5rem, 3.2vw, 2.3rem); font-weight: 700; text-transform: uppercase; text-align: center; }
@media (max-width: 640px) { .kb-rule::before, .kb-rule::after { display: none; } }

.kb-btn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; border-radius: 999px; padding: .85rem 1.8rem; font-size: .9rem; font-weight: 600; border: 1px solid transparent; transition: .25s; }
.kb-btn--gold { background: var(--primary); color: #fff; }
.kb-btn--gold:hover { opacity: .9; }
.kb-btn--outline { border-color: rgba(201,161,74,.5); color: var(--navy); }
.kb-btn--outline:hover { background: var(--sky-tint); }
.kb-btn--ghostwhite { border-radius: 2px; border-color: rgba(255,255,255,.7); color: #fff; }
.kb-btn--ghostwhite:hover { background: rgba(255,255,255,.12); }

/* HERO */
.kb-hero { padding: 9rem 0 4.5rem; background: linear-gradient(180deg,#fdfaf1 0%, #f7efdc 100%); }
.kb-hero__grid { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .kb-hero__grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.kb-hero__title { font-size: clamp(2.2rem, 5.4vw, 3.6rem); line-height: 1.05; font-weight: 700; text-transform: uppercase; }
.kb-hero__sub { margin-top: 1.25rem; font-family: 'Playfair Display', Georgia, serif; font-size: clamp(1.3rem,2.6vw,1.85rem); color: var(--navy); }
.kb-hero__lead { margin-top: 1rem; max-width: 30rem; }
.kb-hero__pillars { margin-top: 2.5rem; display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; max-width: 32rem; }
.kb-pillar { text-align: center; }
.kb-pillar__ring { display: inline-flex; align-items: center; justify-content: center; height: 3rem; width: 3rem; border-radius: 999px; border: 1px solid rgba(201,161,74,.6); color: var(--primary); }
.kb-pillar__ring svg { width: 20px; height: 20px; }
.kb-pillar__t { margin: .75rem 0 0; font-size: .72rem; font-weight: 700; letter-spacing: .04em; color: var(--navy); }
.kb-pillar__s { font-size: .72rem; }
.kb-hero__ctas { margin-top: 2.5rem; display: flex; flex-wrap: wrap; gap: .75rem; }
.kb-hero__media { position: relative; }
.kb-hero__media img { width: 100%; height: 380px; object-fit: cover; border-radius: 3px; box-shadow: var(--shadow-soft); }
@media (min-width: 640px) { .kb-hero__media img { height: 520px; } }
.kb-hero__quote { position: absolute; left: 1rem; right: 1rem; bottom: 1.5rem; background: rgba(42,36,24,.42); backdrop-filter: blur(10px); padding: 1.35rem; border-radius: 3px; }
.kb-hero__quote p { color: #fff; font-size: .85rem; line-height: 1.6; }
@media (min-width: 640px) { .kb-hero__quote { left: auto; width: 20rem; right: 1rem; } }

/* MISSION BAND */
.kb-mission { background: var(--primary); color: #fff; }
.kb-mission__grid { display: grid; gap: 2rem; padding: 2.5rem 1.25rem; align-items: center; }
@media (min-width: 768px) { .kb-mission__grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .kb-mission__grid { grid-template-columns: repeat(4,1fr); } }
.kb-mission__main { display: flex; gap: 1rem; align-items: flex-start; }
.kb-mission__ring { display: inline-flex; align-items: center; justify-content: center; height: 3rem; width: 3rem; flex: 0 0 auto; border-radius: 999px; border: 1px solid rgba(255,255,255,.5); }
.kb-mission__ring svg { width: 20px; height: 20px; }
.kb-mission__label { font-size: .82rem; font-weight: 700; letter-spacing: .04em; color: #fff; }
.kb-mission__text { font-size: .85rem; color: rgba(255,255,255,.9); }
.kb-mission__item { text-align: center; }
.kb-mission__item svg { width: 24px; height: 24px; margin: 0 auto; }
.kb-mission__item p { margin-top: .5rem; font-size: .85rem; font-weight: 600; letter-spacing: .04em; color: #fff; }

/* SERVICES */
.kb-services { margin-top: 3rem; display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
@media (min-width: 640px) { .kb-services { grid-template-columns: repeat(3,1fr); } }
@media (min-width: 1024px) { .kb-services { grid-template-columns: repeat(7,1fr); } }
.kb-service { text-align: center; }
.kb-service__ico { display: inline-flex; align-items: center; justify-content: center; height: 3.5rem; width: 3.5rem; border-radius: 3px; background: #f5ecd8; color: var(--primary); }
.kb-service__t { margin-top: 1rem; font-size: .7rem; font-weight: 700; letter-spacing: .03em; color: var(--primary); line-height: 1.35; }
.kb-service__s { margin-top: .5rem; font-size: .7rem; line-height: 1.5; }

/* WHY */
.kb-why { display: grid; gap: 1.5rem; }
@media (min-width: 1024px) { .kb-why { grid-template-columns: repeat(3,1fr); } }
.kb-why__card { background: #f5ecd8; border: 1px solid var(--border); border-radius: 3px; padding: 2.25rem; }
.kb-why__card h3 { font-size: clamp(1.4rem,3vw,1.9rem); font-weight: 700; text-transform: uppercase; line-height: 1.15; }
.kb-why__card ul { list-style: none; margin: 2rem 0 0; padding: 0; display: grid; gap: 1.25rem; }
.kb-why__card li { display: flex; gap: .75rem; font-size: .88rem; color: var(--fg); line-height: 1.55; }
.kb-check { display: inline-flex; align-items: center; justify-content: center; height: 1.25rem; width: 1.25rem; flex: 0 0 auto; margin-top: .15rem; border-radius: 999px; background: var(--primary); color: #fff; }
.kb-check svg { width: 12px; height: 12px; }
.kb-why__img { width: 100%; height: 100%; min-height: 16rem; object-fit: cover; border-radius: 3px; }
.kb-why__stack { display: grid; gap: 1.5rem; }
.kb-why__stack img { width: 100%; height: 100%; min-height: 10rem; object-fit: cover; border-radius: 3px; }

/* PILLARS QUAD */
.kb-quad { margin-top: 3rem; display: grid; }
@media (min-width: 640px) { .kb-quad { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .kb-quad { grid-template-columns: repeat(4,1fr); } }
.kb-quad__i { padding: 2rem 1.5rem; text-align: center; border-top: 1px solid var(--border); }
@media (min-width: 1024px) { .kb-quad__i { border-top: 0; border-left: 1px solid var(--border); } .kb-quad__i:first-child { border-left: 0; } }
.kb-quad__i svg { width: 24px; height: 24px; margin: 0 auto; color: var(--primary); }
.kb-quad__t { margin-top: 1rem; font-size: .85rem; font-weight: 700; letter-spacing: .04em; color: var(--navy); }
.kb-quad__s { margin-top: .5rem; font-size: .85rem; }
.kb-premium { margin-top: 3rem; display: flex; gap: 1.25rem; align-items: flex-start; background: var(--navy); color: #fff; padding: 2rem; border-radius: 3px; }
.kb-premium > svg { width: 28px; height: 28px; flex: 0 0 auto; color: var(--primary); }
.kb-premium__t { font-size: .85rem; font-weight: 700; letter-spacing: .04em; color: var(--primary); }
.kb-premium__s { margin-top: .25rem; font-size: .85rem; color: rgba(255,255,255,.85); }

/* STEPS */
.kb-steps { margin-top: 3.5rem; display: grid; gap: 2rem; }
@media (min-width: 640px) { .kb-steps { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .kb-steps { grid-template-columns: repeat(5,1fr); } }
.kb-step { text-align: center; }
.kb-step__n { display: inline-flex; align-items: center; justify-content: center; height: 2.5rem; width: 2.5rem; border-radius: 999px; background: var(--navy); color: #fff; font-size: .85rem; font-weight: 600; }
.kb-step__ico { display: block; margin: 1.25rem auto 0; width: 24px; height: 24px; color: var(--primary); }
.kb-step__t { margin-top: 1rem; font-size: .72rem; font-weight: 700; letter-spacing: .03em; color: var(--primary); }
.kb-step ul { list-style: none; margin: .75rem 0 0; padding: 0; text-align: left; font-size: .72rem; color: var(--muted); line-height: 1.6; }

/* FAQ */
.kb-acc { display: grid; gap: 1rem; }
.kb-acc__i { background: var(--sky-tint); border: 1px solid var(--sky-soft); border-radius: 14px; padding: 0 1.25rem; }
.kb-acc__i[open] { background: #fff; box-shadow: var(--shadow-card); }
.kb-acc__i summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.1rem 0; font-weight: 600; color: var(--navy); font-size: .98rem; }
.kb-acc__i summary::-webkit-details-marker { display: none; }
.kb-acc__chev { width: 10px; height: 10px; flex: 0 0 auto; border-right: 2px solid var(--primary); border-bottom: 2px solid var(--primary); transform: rotate(45deg); transition: transform .25s; }
.kb-acc__i[open] .kb-acc__chev { transform: rotate(-135deg); }
.kb-acc__c { padding: 0 0 1.2rem; color: var(--muted); font-size: .9rem; line-height: 1.65; }

/* CONTACT */
.kb-contact { display: grid; gap: 1.5rem; }
@media (min-width: 1024px) { .kb-contact { grid-template-columns: 2fr 3fr; } }
.kb-contact__aside { background: var(--grad-navy); color: #fff; border-radius: 22px; padding: 2.25rem; }
.kb-contact__aside h3 { color: #fff; font-size: 1.35rem; }
.kb-contact__aside a, .kb-contact__static { display: flex; align-items: center; gap: 1rem; margin-top: 1.5rem; }
.kb-contact__ico { display: inline-flex; align-items: center; justify-content: center; height: 3rem; width: 3rem; flex: 0 0 auto; border-radius: 12px; background: rgba(255,255,255,.15); }
.kb-contact__ico svg { width: 20px; height: 20px; }
.kb-contact__aside small { display: block; font-size: .72rem; color: rgba(255,255,255,.7); }
.kb-contact__aside strong { font-size: .95rem; }
.kb-contact__form { background: #fff; border: 1px solid var(--sky-soft); border-radius: 22px; padding: 2.25rem; box-shadow: var(--shadow-card); }
.kb-form__row { display: grid; gap: 1.15rem; }
@media (min-width: 640px) { .kb-form__row { grid-template-columns: repeat(2,1fr); } .kb-form__full { grid-column: 1 / -1; } }
.kb-form label span { display: block; font-size: .85rem; font-weight: 600; color: var(--navy); margin-bottom: .45rem; }
.kb-form input, .kb-form textarea { width: 100%; border: 1px solid var(--sky-soft); border-radius: 12px; background: #fff; padding: .8rem 1rem; font: inherit; font-size: .9rem; color: var(--fg); }
.kb-form input:focus, .kb-form textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(201,161,74,.2); }
.kb-form button { margin-top: 1.6rem; }

/* CTA BAND */
.kb-ctaband { background: var(--primary); color: #fff; }
.kb-ctaband__grid { display: grid; gap: 1.5rem; padding: 3rem 1.25rem; align-items: center; text-align: center; }
@media (min-width: 1024px) { .kb-ctaband__grid { grid-template-columns: repeat(3,1fr); text-align: left; } .kb-ctaband__act { justify-self: end; } }
.kb-ctaband__brand { font-family: 'Playfair Display', Georgia, serif; font-size: 1.4rem; text-transform: uppercase; letter-spacing: .08em; color: #fff; }
.kb-ctaband__text { font-family: 'Playfair Display', Georgia, serif; font-size: 1.3rem; color: #fff; line-height: 1.35; }

/* reveal */
.kb-reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.kb-reveal.is-visible, .no-js .kb-reveal { opacity: 1; transform: none; }
