/*
Theme Name:   Hello Elementor Child — Muse Club
Theme URI:    https://muse.test
Description:  Child theme for Hello Elementor — Muse Club
Author:       Muse Club
Template:     hello-elementor
Version:      1.0.0
Text Domain:  hello-elementor-child
*/

/* ── RESET & BASE ─────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: "Outfit", sans-serif;
  font-weight: 300;
  background: #faf7f5;
  color: #0a0a08;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }

/* ── CSS VARIABLES ────────────────────────────── */
:root {
  --cream:   #faf7f5;
  --cream2:  #ede4e1;
  --dark:    #0a0a08;
  --dark2:   #181614;
  --gold:    #B2C9BF;
  --goldl:   #C8DDD7;
  --salmon:  #F4846A;
  --salmonl: #F79D87;
  --muted:   #7a8a87;
  --border:  rgba(10,10,8,.1);
  --bordk:   rgba(250,247,245,.1);
}

/* ── LAYOUT ──────────────────────────────────── */
.wrap { max-width: 1240px; margin: 0 auto; padding: 0 52px; }

/* ── NAV ─────────────────────────────────────── */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 500; padding: 28px 0; transition: padding .4s, background .4s; border-bottom: 1px solid transparent; }
nav.sc { background: rgba(250,247,245,.96); backdrop-filter: blur(12px); padding: 16px 0; border-bottom-color: var(--border); }
.nav-i { display: flex; align-items: center; justify-content: space-between; max-width: 1240px; margin: 0 auto; padding: 0 52px; }
.nav-logo-dark { display: none; }
.nav-logo-light { display: block; }
nav.sc .nav-logo-dark  { display: block; }
nav.sc .nav-logo-light { display: none; }
/* Text fallback when no logo image is uploaded */
.nav-logo-text { font-family: "Playfair Display", serif; font-size: 22px; font-weight: 700; letter-spacing: -.01em; }
nav:not(.sc) .nav-logo-text { color: #fff; }
nav.sc .nav-logo-text  { color: var(--dark); }
.nav-links { display: flex; list-style: none; gap: 36px; }
.nav-links a { font-size: 15px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: #fff; opacity: .75; transition: opacity .2s, color .3s; }
nav.sc .nav-links a { color: var(--dark); }
.nav-links a:hover { opacity: 1; }
.nav-btn { font-size: 15px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; padding: 15px 38px; background: var(--gold); color: var(--dark); border: none; cursor: pointer; transition: background .25s; }
nav:not(.sc) .nav-btn { background: var(--salmon); color: #fff; }
nav:not(.sc) .nav-btn:hover { background: var(--salmonl); }
nav.sc .nav-btn:hover { background: var(--goldl); }
/* ── DROPDOWN ─────────────────────────────── */
.nav-links li { position: relative; }
.nav-links li .sub-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 0;
  min-width: 300px;
  background: rgba(250,247,245,.97);
  backdrop-filter: blur(12px);
  border-top: 2px solid var(--salmon);
  padding: 8px 0;
  list-style: none;
  box-shadow: 0 16px 40px rgba(10,10,8,.12);
  z-index: 600;
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
  /* appear fast, disappear with a delay so mouse can reach it */
  transition: opacity .2s ease, transform .2s ease;
  transition-delay: 0s;
}
/* invisible bridge fills the gap so mouse travel doesn't break hover */
.nav-links li::after {
  content: "";
  position: absolute;
  top: 100%;
  left: -10px;
  right: -10px;
  height: 22px;
  display: none;
}
.nav-links li:hover::after { display: block; }

.nav-links li:hover > .sub-menu,
.nav-links li:focus-within > .sub-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
  transition-delay: 0s;
}
/* linger on mouse-out — delay before disappearing */
.nav-links li .sub-menu {
  transition-delay: 0s;
}
.nav-links li:not(:hover):not(:focus-within) .sub-menu {
  transition: opacity .25s ease .2s, transform .25s ease .2s;
}
.nav-links .sub-menu li { display: block; }
.nav-links .sub-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 28px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--dark) !important;
  opacity: 1 !important;
  transition: background .18s, color .18s;
  white-space: nowrap;
}
.nav-links .sub-menu a::before {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--salmon);
  flex-shrink: 0;
  opacity: .6;
  transition: opacity .18s, transform .18s;
}
.nav-links .sub-menu a:hover {
  background: var(--cream2);
  color: var(--dark) !important;
}
.nav-links .sub-menu a:hover::before { opacity: 1; transform: scale(1.4); }

/* dark nav state — submenu is always light, no override needed */

.nav-burger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 36px; height: 36px; cursor: pointer; background: transparent; border: none; padding: 4px; }
.nav-burger span { display: block; height: 1.5px; border-radius: 2px; background: #fff; transition: background .3s, transform .3s, opacity .3s; }
nav.sc .nav-burger span { background: var(--dark); }
@media (max-width: 768px) {
  .nav-links, .nav-btn { display: none; }
  .nav-burger { display: flex; }
}

/* ── MOBILE MENU ─────────────────────────────── */
.mob-menu { position: fixed; inset: 0; z-index: 900; background: var(--dark); display: flex; flex-direction: column; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity .45s cubic-bezier(.16,1,.3,1); }
.mob-menu.open { opacity: 1; pointer-events: all; }
.mob-close { position: absolute; top: 28px; right: 24px; width: 44px; height: 44px; background: transparent; border: 1px solid rgba(250,247,245,.15); cursor: pointer; display: flex; align-items: center; justify-content: center; color: rgba(250,247,245,.6); font-size: 20px; transition: border-color .2s, color .2s; }
.mob-close:hover { border-color: var(--salmon); color: var(--salmon); }
.mob-logo { position: absolute; top: 28px; left: 24px; }
.mob-nav { list-style: none; text-align: center; margin-bottom: 40px; }
.mob-nav li { overflow: hidden; }
.mob-nav a { display: block; font-family: "Playfair Display", serif; font-size: clamp(32px,7vw,52px); font-weight: 700; color: rgba(250,247,245,.85); letter-spacing: -.01em; line-height: 1.35; padding: 6px 0; transition: color .2s; }
.mob-nav a:hover { color: var(--salmon); }
.mob-btn { font-size: 11px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; padding: 16px 44px; background: var(--salmon); color: #fff; border: none; cursor: pointer; transition: background .25s; margin-bottom: 36px; }
.mob-btn:hover { background: var(--salmonl); }
.mob-socs { display: flex; gap: 10px; }

/* ── MOBILE ACCORDION SUBMENU ────────────────── */
.mob-nav > li { position: relative; }

/* toggle button */
.mob-acc-toggle {
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  background: transparent; border: none;
  color: rgba(250,247,245,.5);
  cursor: pointer;
  padding: 8px;
  display: flex; align-items: center; justify-content: center;
  transition: color .2s, transform .3s;
  line-height: 1;
}
.mob-nav > li.mob-open .mob-acc-toggle {
  color: var(--salmon);
  transform: translateY(-50%) rotate(180deg);
}

/* submenu */
.mob-nav .sub-menu {
  list-style: none;
  overflow: hidden;
  max-height: 0;
  transition: max-height .4s cubic-bezier(.16,1,.3,1);
  padding: 0;
}
.mob-nav .sub-menu li { overflow: hidden; }
.mob-nav .sub-menu a {
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(250,247,245,.65);
  padding: 8px 0 8px 20px;
  line-height: 1.4;
  transition: color .2s;
  position: relative;
}
.mob-nav .sub-menu a::before {
  content: "";
  display: inline-block;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--salmon);
  margin-right: 12px;
  vertical-align: middle;
  opacity: .7;
}
.mob-nav .sub-menu a:hover { color: var(--salmon); }
.mob-soc { width: 38px; height: 38px; border: 1px solid rgba(250,247,245,.12); display: flex; align-items: center; justify-content: center; color: rgba(250,247,245,.3); font-size: 12px; transition: all .22s; }
.mob-soc:hover { border-color: var(--salmon); color: var(--salmon); }

/* ── HERO ────────────────────────────────────── */
.hero { min-height: 100vh; position: relative; overflow: hidden; display: flex; align-items: flex-end; }
.hero-bg { position: absolute; inset: -10%; will-change: transform; overflow: hidden; }
.hero-bg video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(105deg,rgba(17,17,16,.82) 0%,rgba(17,17,16,.5) 50%,rgba(17,17,16,.2) 100%); }
.hero-grain { position: absolute; inset: 0; opacity: .04; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); background-size: 256px; }
.hero-content { position: relative; z-index: 10; padding: 0 52px 90px; max-width: 1240px; width: 100%; margin: 0 auto; }
.hero-eyebrow { display: flex; align-items: center; gap: 16px; margin-bottom: 28px; overflow: hidden; }
.hero-eyebrow span { font-size: 12px; font-weight: 600; letter-spacing: .25em; text-transform: uppercase; color: var(--goldl); transform: translateY(100%); animation: slideUp .7s cubic-bezier(.16,1,.3,1) .4s forwards; }
.hero-line { width: 40px; height: 1px; background: var(--goldl); transform: scaleX(0); transform-origin: left; animation: scaleIn .6s ease .6s forwards; }
.hero-title { font-family: "Playfair Display", serif; font-weight: 900; font-size: clamp(58px,7.5vw,118px); line-height: .95; letter-spacing: -.02em; color: #fff; margin-bottom: 32px; overflow: hidden; }
.hero-title-line { display: block; transform: translateY(100%); animation: slideUp .9s cubic-bezier(.16,1,.3,1) forwards; }
.hero-title-line:nth-child(1) { animation-delay: .5s; }
.hero-title-line:nth-child(2) { animation-delay: .65s; font-style: italic; font-weight: 400; color: var(--gold); }
.hero-title-line:nth-child(3) { animation-delay: .8s; }
.hero-bottom { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.hero-desc { font-size: 16px; font-weight: 400; line-height: 1.85; color: rgba(255,255,255,.8); max-width: 380px; transform: translateY(20px); opacity: 0; animation: fadeUp .8s ease .95s forwards; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; transform: translateY(20px); opacity: 0; animation: fadeUp .8s ease 1.1s forwards; }
@media (max-width: 768px) {
  .hero-content { padding: 0 20px 70px; }
}

/* ── FOOTER ──────────────────────────────────── */
footer { background: var(--dark); padding: 76px 0 34px; border-top: 1px solid rgba(178,201,191,.12); }
.ft-top { display: grid; grid-template-columns: 2.4fr 1fr 1fr 1.5fr; gap: 56px; margin-bottom: 60px; }
.ft-logo { font-family: "Playfair Display", serif; font-size: 26px; font-weight: 700; color: var(--cream); margin-bottom: 14px; }
.ft-logo em { font-style: italic; font-weight: 400; color: var(--gold); }
.ft-tag { font-size: 16px; font-weight: 400; color: rgba(250,247,245,.9); line-height: 1.8; max-width: 300px; margin-bottom: 28px; }
.ft-socs { display: flex; gap: 7px; }
.ft-soc { width: 36px; height: 36px; border: 1px solid var(--gold); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 12px; transition: all .22s; }
.ft-soc:hover { background:var(--gold) ;color: var(--dark2); }
.ft-ct { font-size: 16px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: rgba(178,201,191,.9); margin-bottom: 18px; }
.ft-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.ft-links a { font-size: 16px; font-weight: 400; color: rgba(250,247,245,.8); transition: color .22s; }
.ft-links a:hover { color: var(--goldl); }
.ft-iw { display: flex; margin-top: 7px; }
.ft-in { flex: 1; background: rgba(250,247,245,.04); border: 1px solid rgba(250,247,245,.1); border-right: none; padding: 11px 13px; font-size: 12px; font-family: "Outfit", sans-serif; font-weight: 300; color: var(--cream); outline: none; }
.ft-in::placeholder { color: rgba(250,247,245,.2); }
.ft-snd { background: var(--salmon); border: none; color: #fff; padding: 0 14px; cursor: pointer; font-size: 13px; transition: background .22s; }
.ft-snd:hover { background: var(--salmonl); }
.ft-bot { display: flex; align-items: center; justify-content: space-between; padding-top: 26px; border-top: 1px solid rgba(250,247,245,.05); }
.ft-copy { font-size: 15px; font-weight: 400; color: rgba(250,247,245,.8); }
.ft-leg { list-style: none; display: flex; gap: 18px; }
.ft-leg a { font-size: 14px; letter-spacing: .07em; color: rgba(250,247,245,.8); transition: color .22s; }
.ft-leg a:hover { color: var(--salmon); }
@media (max-width: 1024px) { .ft-top { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 768px)  { .ft-top { grid-template-columns: 1fr; gap: 28px; } .ft-bot { flex-direction: column; gap: 14px; text-align: center; } }

/* ── CURSOR ──────────────────────────────────── */
.cursor { width: 10px; height: 10px; border-radius: 50%; background: var(--dark); position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999; transform: translate(-50%,-50%); transition: transform .1s, width .3s, height .3s; }
.cursor-ring { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--salmon); position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9998; transform: translate(-50%,-50%); transition: transform .12s ease, width .3s, height .3s, opacity .3s; opacity: .5; }

/* ── BUTTONS ─────────────────────────────────── */
.btn { display: inline-flex; align-items: center; gap: 13px; font-family: "Outfit", sans-serif; font-size: 15px; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; padding: 15px 32px; cursor: pointer; border: none; transition: all .28s; position: relative; overflow: hidden; }
.btn-wt  { background: var(--gold); color: var(--dark); }
.btn-wt:hover  { background: var(--gold); transform: translateY(-1px); color:var(--dark); }
.btn-ol  { background: var(--salmon); color: #fff; border: 1px solid var(--salmonl); }
.btn-ol:hover  { background: var(--salmonl); color:white; }
.btn-dk  { background: var(--gold); color: var(--dark); }
.btn-dk:hover  { background: var(--goldl); transform: translateY(-1px); }
.btn-gd  { background: var(--salmon); color: #fff; }
.btn-gd:hover  { background: var(--salmonl); transform: translateY(-1px); color:var(--cream)!important; }
.btn-gd-ol { background: transparent; color: var(--salmon); border: 1px solid var(--salmon); }
.btn-gd-ol:hover { background: var(--salmon); color: #fff; }
.btn-lt-ol { background: transparent; color: var(--cream); border: 1px solid rgba(250,247,245,.4); }
.btn-lt-ol:hover { background: var(--cream); color: var(--dark); }
.arr { font-size: 15px; transition: transform .28s; }
.btn:hover .arr { transform: translateX(5px); }

/* ── TICKER ──────────────────────────────────── */
.ticker { background: var(--gold); padding: 30px 0; overflow: hidden;}
.tk-track { display: flex; white-space: nowrap; animation: tk 28s linear infinite; }
.tk-item { font-family: "Outfit", sans-serif; font-size: 15px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--dark); padding: 0 18px; display: flex; align-items: center; gap: 28px; flex-shrink: 0; }
.tk-item b { font-style: normal; font-weight: 600; color: var(--cream); letter-spacing: .22em; }
.tk-sep { font-size: 18px; color: white; opacity: .7; }
@keyframes tk { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── ABOUT ───────────────────────────────────── */
.about { background: var(--cream); padding: 130px 0; overflow: hidden; border-top: 3px solid var(--gold); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-photos { position: relative; height: 620px; }
.ap-main { position: absolute; top: 0; left: 0; width: 72%; height: 80%; overflow: hidden; }
.ap-main img { width: 100%; height: 100%; object-fit: cover; transition: transform 8s ease; }
.ap-main:hover img { transform: scale(1.04); }
.ap-sec { position: absolute; bottom: 0; right: 0; width: 48%; height: 52%; overflow: hidden; border: 5px solid var(--cream); }
.ap-sec img { width: 100%; height: 100%; object-fit: cover; transition: transform 8s ease; }
.ap-sec:hover img { transform: scale(1.04); }
.about-label { font-size: 14px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.about-label::before { content: ""; display: block; width: 30px; height: 1px; background: var(--gold); }
.about-title { font-family: "Playfair Display", serif; font-size: clamp(34px,3.2vw,52px); font-weight: 700; line-height: 1.1; color: var(--dark); margin: 30px 0; letter-spacing: -.01em; }
.about-title em { font-style: italic; font-weight: 400; color: var(--salmon); }
.about-body { font-size: 16px; font-weight: 400; line-height: 1.9; color: var(--muted); margin-bottom: 15px; }
.btn-about{font-size:14px; font-weight: 500; margin-top:20px}

/* ── SERVICES ────────────────────────────────── */
.services { background: var(--dark); padding: 130px 0; }
.sv-head { margin-bottom: 64px; }
.sv-label { font-size: 14px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.sv-label::before { content: ""; display: block; width: 30px; height: 1px; background: var(--gold); }
.sv-title { font-family: "Playfair Display", serif; font-size: clamp(40px,4vw,64px); font-weight: 700; color: var(--cream); line-height: 1; letter-spacing: -.02em; }
.sv-title em { font-style: italic; font-weight: 400; color: var(--goldl); }
.sv-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 3px; }
.sv-card { position: relative; overflow: hidden; cursor: pointer; height: 320px; }
.sv-card img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .7s cubic-bezier(.25,.46,.45,.94), filter .4s; }
.sv-card:hover img { transform: scale(1.06); filter: brightness(.65); }
.sv-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top,rgba(17,17,16,.88) 0%,rgba(17,17,16,.2) 55%,transparent 100%); }
.sv-card-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 26px 24px; }
.sv-card-cat { font-size: 12px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--goldl); margin-bottom: 6px; }
.sv-card-name { font-family: "Playfair Display", serif; font-size: clamp(17px,1.8vw,22px); font-weight: 700; color: #fff; line-height: 1.2;text-transform: uppercase;  }
.sv-card-desc { font-size: 15px; font-weight: 400; color: rgba(255,255,255,.8); line-height: 1.6; margin-top: 7px; max-height: 0; overflow: hidden; opacity: 0; transition: max-height .4s, opacity .35s; }
.sv-card:hover .sv-card-desc { max-height: 60px; opacity: 1; }
.sv-card-num { position: absolute; top: 18px; right: 18px; font-family: "Playfair Display", serif; font-size: 12px; font-weight: 700; color: rgba(200,221,215,.45); letter-spacing: .06em; }

/* ── ENERGY ──────────────────────────────────── */
.energy { background: var(--cream2); padding: 100px 0; overflow: hidden; position: relative; }
.energy::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 8px; background: linear-gradient(90deg,transparent,var(--salmon),transparent); }
.energy-cta { text-align: center; margin-top: 56px; }
.energy-quote { font-family: "Playfair Display", serif; font-size: clamp(28px,3.2vw,46px); font-weight: 700; color: var(--dark); letter-spacing: -.015em; line-height: 1.15; margin-bottom: 10px; }
.energy-quote em { font-style: italic; font-weight: 400; color: var(--salmon); }
.energy-sub { font-size: 22px; font-weight: 500; color: var(--muted); margin-bottom: 36px; letter-spacing: .03em; }

/* ── HOW ─────────────────────────────────────── */
.how { background: var(--dark2); padding: 120px 0; }
.hw-head { text-align: center; margin-bottom: 80px; }
.hw-label { font-size: 14px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); display: flex; align-items: center; justify-content: center; gap: 14px; margin-bottom: 16px; }
.hw-label::before, .hw-label::after { content: ""; display: block; width: 30px; height: 1px; background: var(--gold); }
.hw-title { font-family: "Playfair Display", serif; font-size: clamp(34px,3.2vw,52px); font-weight: 700; color: var(--cream); line-height: 1.1; letter-spacing: -.01em; }
.hw-title em { font-style: italic; font-weight: 400; color: var(--goldl); }
.hw-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 3px; }
.hw-step { background: #1e1d1a; padding: 52px 44px 56px; position: relative; overflow: hidden; transition: background .35s; display: flex; flex-direction: column; }
.hw-step:hover { background: #252220; }
.hw-step::after { content: ""; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .55s cubic-bezier(.16,1,.3,1); }
.hw-step:hover::after { transform: scaleX(1); }
.hw-num-wrap { position: relative; height: 100px; margin-bottom: 32px; user-select: none; }
.hw-num-bg { font-family: "Playfair Display", serif; font-size: 110px; font-weight: 900; line-height: 1; letter-spacing: -.04em; color: transparent; -webkit-text-stroke: 1px rgba(178,201,191,.15); position: absolute; top: 0; left: -4px; transition: -webkit-text-stroke .35s; }
.hw-step:hover .hw-num-bg { -webkit-text-stroke: 1px rgba(178,201,191,.3); }
.hw-num-fill { font-family: "Playfair Display", serif; font-size: 110px; font-weight: 900; line-height: 1; letter-spacing: -.04em; color: var(--goldl); position: absolute; top: 0; left: -4px; clip-path: inset(100% 0 0 0); transition: clip-path .65s cubic-bezier(.16,1,.3,1); }
.hw-step:hover .hw-num-fill, .hw-step.num-on .hw-num-fill { clip-path: inset(0% 0 0 0); }
.hw-t { font-family: "Playfair Display", serif; font-size: 22px; font-weight: 700; color: var(--cream); margin-bottom: 12px; line-height: 1.2; }
.hw-b { font-size: 16px; font-weight: 400; line-height: 1.85; color: rgba(250,247,245,.7); }

/* ── TESTIMONIALS ────────────────────────────── */
.testi { background: var(--cream2); padding: 120px 0; overflow: hidden; border-top: 3px solid var(--gold); }
.ts-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 52px; }
.ts-label { font-size: 14px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.ts-label::before { content: ""; display: block; width: 30px; height: 1px; background: var(--gold); }
.ts-title { font-family: "Playfair Display", serif; font-size: clamp(32px,2.8vw,46px); font-weight: 700; color: var(--dark); line-height: 1.1; letter-spacing: -.01em; }
.ts-title em { font-style: italic; font-weight: 400; color: var(--salmon); }
.ts-btns { display: flex; gap: 6px; }
.ts-btn { width: 44px; height: 44px; border: 1px solid var(--border); background: transparent; cursor: pointer; font-size: 16px; display: flex; align-items: center; justify-content: center; transition: all .22s; color: var(--dark); }
.ts-btn:hover { background: var(--dark); color: var(--cream); border-color: var(--dark); }
.ts-ov { overflow: hidden; }
.ts-track { display: flex; gap: 20px; transition: transform .5s cubic-bezier(.4,0,.2,1); }
.ts-card { flex: 0 0 calc(33.333% - 14px); background: var(--cream); padding: 44px 38px; border: 1px solid var(--border); position: relative; overflow: hidden; }
.ts-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--salmon); transform: scaleX(0); transition: transform .4s; }
.ts-card:hover::before { transform: scaleX(1); }
.ts-stars { display: flex; gap: 3px; margin-bottom: 20px; }
.ts-star { width: 9px; height: 9px; background: var(--salmon); clip-path: polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%); }
.ts-text { font-family: "Playfair Display", serif; font-size: 19px; font-style: italic; font-weight: 400; line-height: 1.65; color: var(--dark); margin-bottom: 28px; }
.ts-auth { display: flex; align-items: center; gap: 14px; padding-top: 22px; border-top: 1px solid var(--border); }
.ts-av { width: 40px; height: 40px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.ts-av img { width: 100%; height: 100%; object-fit: cover; }
.ts-av-init { width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-family: "Playfair Display", serif; font-size: 16px; font-weight: 700; font-style: italic; color: var(--salmon); border: 1px solid rgba(244,132,106,.3); }
.ts-name { font-size: 13px; font-weight: 600; color: var(--dark); letter-spacing: .02em; }
.ts-svc { font-size: 10px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-top: 2px; }

/* ── PRICING ─────────────────────────────────── */
.pricing { background: var(--cream); padding: 120px 0; }
.pr-head { margin-bottom: 64px; }
.pr-label { font-size: 14px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.pr-label::before { content: ""; display: block; width: 30px; height: 1px; background: var(--gold); }
.pr-title { font-family: "Playfair Display", serif; font-size: clamp(36px,3.2vw,52px); font-weight: 700; color: var(--dark); line-height: 1.1; letter-spacing: -.01em; }
.pr-title em { font-style: italic; font-weight: 400; color: var(--salmon); }
.pr-sub { font-size: 14px; color: var(--muted); font-weight: 300; margin-top: 10px; }
.pr-grid { display: grid; grid-template-columns: repeat(3,1fr); border: 1px solid var(--border); }
.pr-card { padding: 52px 44px; border-right: 1px solid var(--border); position: relative; transition: background .28s; display: flex; flex-direction: column; }
.pr-card:last-child { border-right: none; }
.pr-card:hover { background: var(--cream2); }
.pr-feat { background: var(--dark2); }
.pr-feat:hover { background: #1e1d1a; }
.pr-badge { position: absolute; top: 0; right: 32px; background: var(--salmon); color: #fff; font-size: 9px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; padding: 5px 13px; }
.pr-plan { font-size: 9px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.pr-name { font-family: "Playfair Display", serif; font-size: 26px; font-weight: 700; margin-bottom: 6px; }
.pr-name-dk { color: var(--dark); }
.pr-name-lt { color: var(--cream); }
.pr-desc { font-size: 13px; font-weight: 300; line-height: 1.7; margin-bottom: 28px; }
.pr-desc-dk { color: var(--muted); }
.pr-desc-lt { color: rgba(250,247,245,.38); }
.pr-amt { display: flex; align-items: baseline; gap: 2px; margin-bottom: 4px; }
.pr-cur { font-family: "Playfair Display", serif; font-size: 20px; font-weight: 400; }
.pr-cur-dk { color: var(--salmon); }
.pr-cur-lt { color: var(--salmonl); }
.pr-num { font-family: "Playfair Display", serif; font-size: 60px; font-weight: 900; line-height: 1; letter-spacing: -.02em; }
.pr-num-dk { color: var(--dark); }
.pr-num-lt { color: var(--cream); }
.pr-per { font-size: 12px; font-weight: 300; letter-spacing: .07em; margin-bottom: 32px; }
.pr-per-dk { color: var(--muted); }
.pr-per-lt { color: rgba(250,247,245,.28); }
.pr-feats { list-style: none; margin-bottom: 40px; flex: 1; }
.pr-feats li { font-size: 13px; font-weight: 300; padding: 10px 0; display: flex; align-items: center; gap: 11px; }
.pr-feats-dk li { color: var(--muted); border-bottom: 1px solid var(--border); }
.pr-feats-lt li { color: rgba(250,247,245,.5); border-bottom: 1px solid rgba(250,247,245,.07); }
.pr-tick { color: var(--gold); font-size: 11px; flex-shrink: 0; }

/* ── CTA SECTION ─────────────────────────────── */
.cta-s { position: relative; height: 600px; overflow: hidden; display: flex; align-items: center; justify-content: center; text-align: center; }
.cta-bg { position: absolute; inset: -35%;  will-change: transform; }
.cta-overlay { position: absolute; inset: 0; background: rgba(17,17,16,.72); }
.cta-c { position: relative; z-index: 2; }
.cta-label { font-size: 14px; font-weight: 700; letter-spacing: .25em; text-transform: uppercase; color: var(--goldl); margin-bottom: 18px; }
.cta-title { font-family: "Playfair Display", serif; font-size: clamp(44px,5.5vw,82px); font-weight: 900; color: #fff; line-height: .98; letter-spacing: -.02em; margin-bottom: 20px; }
.cta-title em { font-style: italic; font-weight: 400; display: block; color: var(--goldl); }
.cta-sub { font-size: 16px; font-weight: 400; color: rgba(255,255,255,.8); margin-bottom: 44px; letter-spacing: .03em; line-height: 1.7; }
.cta-acts { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── INFO ────────────────────────────────────── */
.info { background: var(--cream2); padding: 96px 0; border-top: 1px solid var(--border); }
.info-grid { display: grid; grid-template-columns: repeat(3,1fr); border: 1px solid var(--border); }
.info-col { padding: 48px 44px; border-right: 1px solid var(--border); }
.info-col:last-child { border-right: none; }
.info-lbl { font-size: 14px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--salmon); margin-bottom: 22px; }
.info-addr { font-family: "Playfair Display", serif; font-size: 22px; font-weight: 700; color: var(--dark); line-height: 1.5; margin-bottom: 14px; border-left: 3px solid var(--gold); padding-left: 14px; }
.info-txt { font-size: 16px !important; font-weight: 400; color: var(--muted); line-height: 1.85; }
.info-lnk { display: inline-flex; align-items: center; gap: 8px; font-size: 10px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--salmon); margin-top: 18px; transition: gap .25s; }
.info-lnk:hover { gap: 13px; }
.hr-row { display: flex; justify-content: space-between; font-size: 16px; font-weight: 400; padding: 10px 0; border-bottom: 1px solid var(--border); color: var(--muted); }
.hr-row strong { font-weight: 600; color: var(--dark); }
.ct-row { display: flex; align-items: center; gap: 13px; padding: 12px 0; border-bottom: 1px solid var(--border); font-size: 16px; font-weight: 500; color: var(--muted); transition: color .22s; }
.ct-row:hover { color: var(--dark); }
.ct-ico { color: var(--salmon); flex-shrink: 0; width: 20px; display: flex; align-items: center; justify-content: center; }

/* ── REVEAL ANIMATIONS ───────────────────────── */
.r { opacity: 0; transform: translateY(28px); transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1); }
.r.on { opacity: 1; transform: none; }
.r-left { opacity: 0; transform: translateX(-32px); transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1); }
.r-left.on { opacity: 1; transform: none; }
.r-right { opacity: 0; transform: translateX(32px); transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1); }
.r-right.on { opacity: 1; transform: none; }
.d1 { transition-delay: .1s; } .d2 { transition-delay: .2s; } .d3 { transition-delay: .3s; } .d4 { transition-delay: .4s; } .d5 { transition-delay: .5s; }

@keyframes slideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }
@keyframes fadeUp  { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes scaleIn { from { transform: scaleX(0); } to { transform: scaleX(1); } }

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 1024px) {
  .wrap, .nav-i { padding: 0 32px; }
  .about-grid { grid-template-columns: 1fr; gap: 52px; }
  .about-photos { height: 480px; }
  .sv-grid { grid-template-columns: 1fr 1fr; }
  .hw-steps { grid-template-columns: 1fr; }
  .ts-card { flex: 0 0 calc(50% - 10px); }
  .pr-grid { grid-template-columns: 1fr; }
  .pr-card { border-right: none; border-bottom: 1px solid var(--border); }
  .pr-card:last-child { border-bottom: none; }
  .info-grid { grid-template-columns: 1fr; }
  .info-col { border-right: none; border-bottom: 1px solid var(--border); }
  .info-col:last-child { border-bottom: none; }
  .ft-top { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 768px) {
  .wrap, .nav-i { padding: 0 20px; }
  .about, .services, .energy, .how, .testi, .pricing, .info { padding: 80px 0; }
  .sv-grid, .hw-steps { grid-template-columns: 1fr; }
  .ts-card { flex: 0 0 100%; }
  .ts-head { flex-direction: column; align-items: flex-start; gap: 20px; }
  .ft-top { grid-template-columns: 1fr; gap: 28px; }
  .ft-bot { flex-direction: column; gap: 14px; text-align: center; }
  .cta-acts { flex-direction: column; align-items: center; }
  .cursor, .cursor-ring { display: none; }
}
.hero-actions .btn-wt{
  background-color: var(--cream);
  color: var(--dark);
}
.hero-actions .btn-wt:hover{
  background-color: var(--gold);
  color:var(--dark2)
}

/* ── CONTACT PAGE ───────────────────────────── */
.ctp { background: var(--cream); padding: 80px 0 120px; }

.ctp-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

/* left — intro */
.ctp-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--salmon);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.ctp-label::before {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  background: var(--salmon);
}
.ctp-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(30px, 3vw, 46px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.01em;
  color: var(--dark);
  margin-bottom: 20px;
}
.ctp-title em { font-style: italic; font-weight: 400; color: var(--salmon); }
.ctp-desc {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 40px;
}

/* left — details list */
.ctp-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 40px;
  border: 1px solid var(--border);
}
.ctp-details li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  font-weight: 400;
  color: var(--dark);
  transition: background .2s;
}
.ctp-details li:last-child { border-bottom: none; }
.ctp-details li:hover { background: var(--cream2); }
.ctp-details li a { color: var(--dark); transition: color .2s; }
.ctp-details li a:hover { color: var(--salmon); }
.ctp-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: var(--cream2);
  color: var(--salmon);
}

/* left — hours */
.ctp-hours {
  border: 1px solid var(--border);
  padding: 24px 20px;
}
.ctp-hours-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.ctp-hr-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 400;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
}
.ctp-hr-row:last-child { border-bottom: none; padding-bottom: 0; }
.ctp-hr-row span:last-child { font-weight: 600; color: var(--dark); }

/* right — form panel */
.ctp-right {
  background: var(--dark2);
  padding: 0;
  position: sticky;
  top: 100px;
}
.ctp-form-head {
  padding: 32px 40px 28px;
  border-bottom: 1px solid rgba(250,247,245,.07);
}
.ctp-form-title {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: -.01em;
}
.ctp-form-body {
  padding: 36px 40px 44px;
}
.ctp-form-placeholder {
  font-size: 13px;
  color: rgba(250,247,245,.3);
  font-style: italic;
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .ctp-grid { grid-template-columns: 1fr; gap: 52px; }
  .ctp-right { position: static; }
}
@media (max-width: 768px) {
  .ctp-form-head, .ctp-form-body { padding-left: 24px; padding-right: 24px; }
}

/* ── SERVICES PAGE ───────────────────────────── */
.svp { background: var(--cream); padding: 80px 0 120px; }

/* filter bar */
.svp-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 56px;
}
.svp-ftag {
  font-family: "Outfit", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 10px 22px;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted);
  cursor: pointer;
  transition: all .22s;
}
.svp-ftag:hover  { background: var(--gold); border-color: var(--gold); color: var(--dark2); }
.svp-ftag.active { background: var(--gold); border-color: var(--gold); color: var(--dark2); }

/* grid */
.svp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* card */
.svp-card {
  display: flex;
  flex-direction: column;
  background: var(--cream);
  overflow: hidden;
  transition: transform .35s cubic-bezier(.16,1,.3,1);
}
.svp-card:hover { transform: translateY(-4px); }

.svp-card-img {
  position: relative;
  height: 260px;
  overflow: hidden;
  background: var(--dark2);
}
.svp-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .7s cubic-bezier(.25,.46,.45,.94), filter .4s;
}
.svp-card:hover .svp-card-img img { transform: scale(1.06); filter: brightness(.75); }

.svp-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,8,.7) 0%, rgba(10,10,8,.1) 60%, transparent 100%);
}
.svp-card-num {
  position: absolute;
  top: 16px;
  right: 16px;
  font-family: "Playfair Display", serif;
  font-size: 11px;
  font-weight: 700;
  color: rgba(200,221,215,.45);
  letter-spacing: .06em;
}
.svp-card-cat {
  position: absolute;
  bottom: 16px;
  left: 16px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--goldl);
}

/* body */
.svp-card-body {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
  border: 1px solid var(--border);
  border-top: none;
}
.svp-card-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: .03em;
  margin-bottom: 10px;
}
.svp-card-desc {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 18px;
  flex: 1;
}
.svp-card-btn {
  align-self: flex-start;
  font-size: 11px;
  padding: 12px 26px;
  background: var(--dark) !important;
  color: var(--cream) !important;
  border-color: var(--dark) !important;
}
.svp-card-btn:hover {
  background: var(--dark2) !important;
  color: var(--cream) !important;
}

@media (max-width: 1024px) {
  .svp-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .svp-grid { grid-template-columns: 1fr; }
  .svp-card-img { height: 220px; }
}

/* ── TITLE PAGE ──────────────────────────────── */
.tp-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  background-color: var(--dark2);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.tp-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10,10,8,.85) 0%,
    rgba(10,10,8,.55) 55%,
    rgba(10,10,8,.25) 100%
  );
}
.tp-grain {
  position: absolute;
  inset: 0;
  opacity: .045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px;
  pointer-events: none;
}
.tp-content {
  position: relative;
  z-index: 10;
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  padding: 0 52px 64px;
}
.tp-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.tp-breadcrumb a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--salmon);
  transition: color .22s;
}
.tp-breadcrumb a:hover { color: var(--salmonl); }
.tp-sep {
  display: flex;
  align-items: center;
  color: rgba(250,247,245,.35);
  flex-shrink: 0;
}
.tp-current {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: .9;
}
.tp-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  margin-bottom: 20px;
  text-transform: capitalize;
}
.tp-desc {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.8;
  color: rgba(250,247,245,.9);
  
}
@media (max-width: 768px) {
  .tp-content { padding: 0 20px 48px; max-width: 100%; }
  .tp-title { font-size: clamp(30px, 8vw, 48px); }
}

/* ── NOTRE HISTOIRE — STORYTELLING ──────────── */

/* animation base */
.st-fade       { opacity:0; transform:translateY(40px);  transition: opacity .9s cubic-bezier(.16,1,.3,1), transform .9s cubic-bezier(.16,1,.3,1); }
.st-fade-left  { opacity:0; transform:translateX(-56px); transition: opacity .95s cubic-bezier(.16,1,.3,1), transform .95s cubic-bezier(.16,1,.3,1); }
.st-fade-right { opacity:0; transform:translateX( 56px); transition: opacity .95s cubic-bezier(.16,1,.3,1), transform .95s cubic-bezier(.16,1,.3,1); }
.st-up         { opacity:0; transform:translateY(28px);  transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1); }
.st-rule-anim  { transform:scaleX(0); transform-origin:left; transition: transform .8s ease .3s; }
.st-fade.st-on, .st-fade-left.st-on, .st-fade-right.st-on, .st-up.st-on { opacity:1; transform:none; }
.st-rule-anim.st-on { transform:scaleX(1); }

/* BODY */
.st-body { background: var(--cream); }

.st-block { padding: 80px 0; border-bottom: 1px solid var(--border); }
.st-block-inner { max-width: 780px; }

/* typography */
.st-para {
  font-family: "Outfit", sans-serif;
  font-size: clamp(17px, 1.8vw, 22px);
  font-weight: 300;
  line-height: 1.85;
  color: var(--muted);
}
.st-para--lead {
  font-family: "Playfair Display", serif;
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.55;
  color: var(--dark);
}
.st-para--med {
  font-size: clamp(17px, 1.8vw, 22px);
  color: var(--dark2);
}
.st-para--accent {
  font-family: "Playfair Display", serif;
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 600;
  font-style: italic;
  color: var(--gold);
  line-height: 1.6;
  text-align: center;
}

/* image block */
.st-block--img {
  padding: 40px 0;
  border: none;
}
.st-img-frame {
  max-width: 860px;
  margin: 0 auto;
  height: 420px;
  overflow: hidden;
  position: relative;
}
.st-img-frame img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 9s ease;
}
.st-img-frame:hover img { transform: scale(1.05); }

/* pull quote */
.st-block--quote { padding: 80px 0; background: var(--cream2); border: none; }
.st-quote {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  max-width: 720px;
}
.st-quote-bar {
  flex-shrink: 0;
  display: block;
  width: 3px;
  height: 100%;
  min-height: 60px;
  background: var(--salmon);
  align-self: stretch;
}
.st-quote blockquote {
  font-family: "Playfair Display", serif;
  font-size: clamp(22px, 2.8vw, 36px);
  font-weight: 700;
  font-style: italic;
  line-height: 1.35;
  letter-spacing: -.015em;
  color: var(--dark);
}

/* split block */
.st-block--split {
  padding: 0;
  border: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}
.st-split-text {
  display: flex;
  align-items: center;
  padding: 72px 64px;
  background: var(--cream);
}
.st-split-img {
  overflow: hidden;
  background: var(--cream2);
}
.st-split-img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 9s ease;
}
.st-split-img:hover img { transform: scale(1.05); }
.st-split-img--empty { background: var(--cream2); }

/* tinted block */
.st-block--dark { background: var(--cream2); }

/* accent block */
.st-block--accent { background: var(--cream); }

/* CLOSING */
.st-closing {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  background: var(--dark2);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.st-closing-ov {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(10,10,8,.9) 0%, rgba(10,10,8,.6) 55%, rgba(10,10,8,.3) 100%);
}
.st-closing-grain {
  position: absolute; inset: 0; pointer-events: none; opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px;
}
.st-closing-inner { position: relative; z-index: 2; padding: 80px 0; }
.st-tagline {
  font-family: "Playfair Display", serif;
  font-size: clamp(36px, 5.5vw, 80px);
  font-weight: 900;
  letter-spacing: -.02em;
  line-height: 1;
  color: #fff;
}
.st-tagline em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}

/* responsive */
@media (max-width: 1024px) {
  .st-block--split { grid-template-columns: 1fr; }
  .st-split-img    { height: 360px; }
  .st-split-text   { padding: 52px 40px; }
  .st-img-frame    { height: 380px; }
}
@media (max-width: 768px) {
  .st-block        { padding: 60px 0; }
  .st-img-frame    { height: 260px; }
  .st-split-text   { padding: 40px 24px; }
  .st-closing      { min-height: 420px; }
  .st-closing-inner { padding: 56px 0; }
}

/* ── PRICING PAGE ────────────────────────────── */
.ppp { background: var(--cream); padding: 80px 0 100px; }

/* equal-height grid — zones align across all 3 cards */
.ppp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 0;
  border: 1px solid var(--border);
}

/* card */
.ppp-card {
  display: grid;
  grid-template-rows: auto auto auto auto auto auto auto auto auto auto auto;
  border-right: 1px solid var(--border);
}
.ppp-card:last-child { border-right: none; }

/* skins */
.ppp-card--light { background: var(--cream);  color: var(--dark); }
.ppp-card--mid   { background: var(--cream2); color: var(--dark); }
.ppp-card--dark  { background: var(--dark);   color: var(--cream); }

/* zones — each zone is a row so columns align */
.ppp-zone {
  padding: 28px 36px;
}
.ppp-zone--name  { padding-top: 44px; }
.ppp-zone--cta   { padding-bottom: 44px; display: flex; align-items: flex-end; }

/* horizontal rule between zones */
.ppp-hr {
  height: 1px;
  background: currentColor;
  opacity: .12;
  margin: 0 36px;
}

/* badge */
.ppp-badge {
  display: inline-block;
  font-size: 9px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  padding: 4px 12px;
  margin-bottom: 12px;
  background: var(--salmon);
  color: #fff;
}

/* name */
.ppp-name {
  font-family: "Playfair Display", serif;
  font-size: clamp(17px, 1.6vw, 22px);
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  line-height: 1.15;
  color: inherit;
  margin: 0;
}
.ppp-card--dark .ppp-name { color: var(--cream); }

/* sub (Élite) */
.ppp-sub {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 12px; font-weight: 400; font-style: italic;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
}
.ppp-card--dark .ppp-sub { color: var(--goldl); }

/* tagline / description */
.ppp-tagline {
  font-family: "Playfair Display", serif;
  font-size: clamp(15px, 1.5vw, 19px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  color: inherit;
  opacity: .9;
}
.ppp-zone--desc { min-height: 80px; display: flex; align-items: center; }

/* tagline label (Signature Membership) */
.ppp-tagline-label {
  font-size: 9px; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 6px;
}
.ppp-card--dark .ppp-tagline-label { color: var(--goldl); }

/* price */
.ppp-zone--price { min-height: 100px; display: flex; align-items: flex-start; flex-direction: column; justify-content: center; }
.ppp-price-row {
  display: flex;
  align-items: baseline;
  gap: 3px;
  flex-wrap: wrap;
}
.ppp-num {
  font-family: "Playfair Display", serif;
  font-size: clamp(44px, 4.5vw, 64px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.03em;
  color: var(--dark);
}
.ppp-card--dark .ppp-num { color: var(--cream); }
.ppp-cur {
  font-family: "Playfair Display", serif;
  font-size: 18px; font-weight: 700;
  opacity: .85;
  align-self: flex-end;
  padding-bottom: 6px;
}
.ppp-per {
  font-family: "Playfair Display", serif;
  font-size: 15px; font-weight: 400; font-style: italic;
  opacity: .55;
}

/* features */
.ppp-zone--feats { min-height: 120px; }
.ppp-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.ppp-features li {
  font-family: "Playfair Display", serif;
  font-size: clamp(13px, 1.2vw, 16px);
  font-weight: 400;
  line-height: 1.45;
  color: inherit;
  opacity: .88;
}

/* footer lines */
.ppp-zone--footer { min-height: 80px; }
.ppp-footer-lines {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ppp-footer-lines li {
  font-family: "Playfair Display", serif;
  font-size: clamp(12px, 1.1vw, 14px);
  font-weight: 400; font-style: italic;
  line-height: 1.5;
  opacity: .6;
}

/* cta */
.ppp-btn {
  font-size: 10px; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  padding: 13px 26px;
  transition: all .25s;
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 10px;
}
.ppp-card--light .ppp-btn,
.ppp-card--mid   .ppp-btn { background: var(--dark); color: var(--cream); }
.ppp-card--light .ppp-btn:hover,
.ppp-card--mid   .ppp-btn:hover { background: var(--dark2); color: var(--cream); }
.ppp-card--dark  .ppp-btn { background: var(--gold); color: #fff; }
.ppp-card--dark  .ppp-btn:hover { background: var(--goldl); color: #fff; }

/* footnote */
.ppp-footnote {
  margin-top: 24px;
  text-align: center;
  font-size: 12px; font-weight: 300;
  color: var(--muted);
  letter-spacing: .04em;
}

@media (max-width: 1024px) {
  .ppp-grid { grid-template-columns: 1fr; border: none; gap: 2px; }
  .ppp-card { border-right: none; border: 1px solid var(--border); }
}
@media (max-width: 768px) {
  .ppp-zone { padding: 22px 24px; }
  .ppp-zone--name { padding-top: 32px; }
  .ppp-zone--cta  { padding-bottom: 32px; }
  .ppp-hr { margin: 0 24px; }
}

/* ── SERVICE DETAIL ──────────────────────────── */
.sd-wrap { background: var(--cream); }

/* shared label — reuses about-label pattern */
.sd-label {
  font-size: 12px; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold);
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 16px;
}
.sd-label::before {
  content: ""; display: block;
  width: 28px; height: 1px; background: var(--gold);
}

/* shared title */
.sd-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 700; line-height: 1.08;
  letter-spacing: -.015em; color: var(--dark);
  margin-bottom: 20px;
}
.sd-title em { font-style: italic; font-weight: 400; color: var(--salmon); }

/* ① DESCRIPTION */
.sd-desc {
  background: var(--cream);
  padding: 90px 0;
  border-bottom: 1px solid var(--border);
}
.sd-desc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.sd-desc-img {
  position: relative;
  height: 560px;
  overflow: hidden;
}
.sd-desc-img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 8s ease;
}
.sd-desc-img:hover img { transform: scale(1.04); }
.sd-desc-img-ph { width: 100%; height: 100%; background: var(--cream2); }

.sd-detail {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 8px 16px;
  margin-bottom: 22px;
}
.sd-body {
  font-size: 16px; font-weight: 400;
  line-height: 1.9; color: var(--muted);
  margin-bottom: 32px;
}
.sd-body p { margin-bottom: 12px; }

/* ② WHY */
.sd-why {
  background: var(--dark);
  padding: 90px 0;
}
.sd-why-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(26px, 2.8vw, 40px);
  font-weight: 700; color: var(--cream);
  letter-spacing: -.01em; line-height: 1.1;
  margin-bottom: 52px;
}
.sd-why-title em { font-style: italic; font-weight: 400; color: var(--gold); }

.sd-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
}
.sd-why-card {
  background: #1a1816;
  padding: 40px 32px 44px;
  position: relative;
  transition: background .3s;
}
.sd-why-card::after {
  content: "";
  position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .5s cubic-bezier(.16,1,.3,1);
}
.sd-why-card:hover { background: #201e1b; }
.sd-why-card:hover::after { transform: scaleX(1); }

.sd-why-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(178,201,191,.1);
  color: var(--goldl);
  margin-bottom: 20px;
}
.sd-why-heading {
  font-family: "Playfair Display", serif;
  font-size: 18px; font-weight: 700;
  color: var(--cream); line-height: 1.2;
  margin-bottom: 10px;
}
.sd-why-body {
  font-size: 14px; font-weight: 400;
  line-height: 1.8; color: rgba(250,247,245,.55);
}

/* ③ GALLERY */
.sd-gallery {
  background: var(--cream2);
  padding: 80px 0;
  border-top: 3px solid var(--gold);
}
.sd-gallery-head { margin-bottom: 36px; }
.sd-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 260px 260px;
  gap: 3px;
}
.sd-gallery-item {
  position: relative;
  overflow: hidden;
  background: var(--dark2);
}
.sd-gallery-item--big {
  grid-column: span 2;
  grid-row: span 2;
}
.sd-gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 7s ease;
}
.sd-gallery-item:hover img { transform: scale(1.06); }
.sd-gallery-ph { width: 100%; height: 100%; background: var(--cream2); }
.sd-gallery-cap {
  position: absolute; bottom: 12px; left: 14px;
  font-size: 11px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(250,247,245,.8);
  background: rgba(10,10,8,.45);
  padding: 3px 10px;
}

/* ④ CTA override for bg image */
.sd-cta {
  background-size: cover;
  background-position: center;
  position: relative;
}
.sd-cta::after {
  content: "";
  position: absolute; inset: 0;
  background: rgba(10,10,8,.55);
  pointer-events: none;
}
.sd-cta .energy-cta { position: relative; z-index: 1; }
.sd-cta .energy-quote,
.sd-cta .energy-sub { color: var(--cream); }

/* responsive */
@media (max-width: 1024px) {
  .sd-desc-grid   { grid-template-columns: 1fr; gap: 48px; }
  .sd-desc-img    { height: 380px; }
  .sd-why-grid    { grid-template-columns: repeat(2, 1fr); }
  .sd-gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .sd-gallery-item--big { grid-column: span 2; grid-row: span 1; height: 320px; }
  .sd-gallery-item { height: 220px; }
}
@media (max-width: 768px) {
  .sd-desc, .sd-why, .sd-gallery { padding: 64px 0; }
  .sd-why-grid     { grid-template-columns: 1fr; }
  .sd-gallery-grid { grid-template-columns: 1fr; }
  .sd-gallery-item--big { grid-column: span 1; }
}
