/* ─── VARIABLES & RESET ─────────────────────── */
:root {
  --forest: #3B2C22;
  --lys: #D5C8B5;
  --copper: #B8865C;
  --copper-light: #D4A679;
  --cream: #FFF9F9;
  --warm-white: #FFF9F9;
  --beige: #D5C8B5;
  --charcoal: #040102;
  --mid: #5B5852;
  --light-text: #9C917F;
  --lenora-bg: #FFF9F9;
  --lenora-beige: #D5C8B5;
  --lenora-black: #040102;
  --lenora-charcoal: #5B5852;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--warm-white); color: var(--charcoal); overflow-x: hidden; }
img { max-width: 100%; display: block; }

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

:focus-visible { outline: none; box-shadow: 0 0 0 3px rgba(184,134,92,0.4); border-radius: 6px; }

/* ─── NAV ───────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 60px;
  transition: background 0.4s, padding 0.4s, box-shadow 0.4s;
}
nav.scrolled {
  background: rgba(253,250,245,0.97); backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08); padding: 14px 60px;
}
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo img {
  height: 62px; width: auto;
}
.nav-logo-tagline {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copper-light);
  opacity: 0.85;
  line-height: 1;
  margin-top: 3px;
}
nav.scrolled .nav-logo-tagline { color: var(--mid); opacity: 1; }
.nav-phone {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; letter-spacing: 0.05em;
  color: rgba(255,255,255,0.9) !important;
  text-decoration: none; padding: 8px 10px;
  white-space: nowrap; transition: color 0.3s;
}
nav.scrolled .nav-phone { color: var(--forest) !important; }
.nav-phone:hover { color: var(--copper) !important; }

.nav-links { display: flex; gap: 4px; list-style: none; align-items: center; }
.nav-links > li { position: relative; }
.nav-links > li > a {
  font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none; color: rgba(255,255,255,0.75);
  transition: color 0.3s; padding: 8px 14px; display: flex; align-items: center; gap: 4px;
}
nav.scrolled .nav-links > li > a { color: var(--mid); }
.nav-links > li > a:hover { color: var(--copper); }
.nav-arrow { font-size: 8px; opacity: 0.6; transition: transform 0.2s; }
.nav-links > li:hover .nav-arrow { transform: rotate(180deg); }

.nav-dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--warm-white); border: 1px solid var(--beige);
  border-radius: 4px; min-width: 240px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  opacity: 0; pointer-events: none; transform: translateY(-8px);
  transition: opacity 0.25s, transform 0.25s; z-index: 100;
}
.nav-links > li:hover .nav-dropdown { opacity: 1; pointer-events: auto; transform: translateY(0); }
.nav-dropdown a {
  display: block; padding: 12px 20px; font-size: 13px; color: var(--mid) !important;
  text-decoration: none; text-transform: none !important; letter-spacing: 0 !important;
  transition: background 0.2s, color 0.2s;
}
.nav-dropdown a:hover { background: var(--cream); color: var(--forest) !important; }
.nav-dropdown .drop-section {
  font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--light-text); padding: 14px 20px 6px; font-weight: 500;
}
.nav-dropdown .drop-sep { height: 1px; background: var(--beige); margin: 4px 0; }

.nav-cta {
  background: var(--copper) !important; color: #fff !important;
  padding: 10px 22px !important; border-radius: 2px !important;
  font-size: 12px !important; letter-spacing: 0.1em !important;
  text-transform: uppercase !important; transition: background 0.3s !important;
  margin-left: 8px;
}
.nav-cta:hover { background: var(--forest) !important; }

/* ─── HAMBURGER ─────────────────────────────── */
.nav-hamburger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; width: 40px; height: 40px;
  background: none; border: none; cursor: pointer; padding: 4px; z-index: 1001;
}
.nav-hamburger span {
  display: block; width: 24px; height: 1.5px;
  background: rgba(255,255,255,0.85); border-radius: 2px;
  transition: transform 0.35s ease, opacity 0.25s ease, background 0.3s;
  transform-origin: center;
}
nav.scrolled .nav-hamburger span { background: var(--forest); }
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ─── MOBILE OVERLAY ────────────────────────── */
.nav-mobile-overlay {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--forest); z-index: 950;
  flex-direction: column; justify-content: center; align-items: flex-start;
  padding: 100px 40px 60px; overflow-y: auto;
  opacity: 0; transform: translateX(100%);
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.16,1,0.3,1);
}
.nav-mobile-overlay.open { opacity: 1; transform: translateX(0); }
.nav-mobile-links { list-style: none; width: 100%; }
.nav-mobile-links li { border-bottom: 1px solid rgba(255,255,255,0.08); }
.nav-mobile-links > li > a {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 0; font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 300; color: rgba(255,255,255,0.85);
  text-decoration: none; transition: color 0.2s; letter-spacing: 0.01em;
}
.nav-mobile-links > li > a:hover { color: var(--copper-light); }
.nav-mobile-links .mobile-sub { padding: 0 0 16px 16px; display: none; }
.nav-mobile-links .mobile-sub.open { display: block; }
.nav-mobile-links .mobile-sub a {
  display: block; padding: 8px 0; font-size: 14px;
  color: rgba(255,255,255,0.5); text-decoration: none;
  letter-spacing: 0.06em; transition: color 0.2s;
}
.nav-mobile-links .mobile-sub a:hover { color: var(--copper-light); }
.nav-mobile-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--copper); color: #fff; padding: 16px 32px;
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none; border-radius: 2px; margin-top: 40px;
  font-family: 'DM Sans', sans-serif;
}
.mobile-chevron { font-size: 14px; opacity: 0.5; transition: transform 0.25s; }
.mobile-chevron.open { transform: rotate(180deg); }
/* ─── HERO ──────────────────────────────────── */
.hero {
  position: relative; height: 100vh; min-height: 700px;
  display: flex; flex-direction: column; justify-content: flex-start; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, #4A3526 0%, #2A1B10 50%, #3C2818 100%);
}
.hero-bg::before {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-bg::after {
  content: ''; position: absolute; top: -20%; right: -5%; width: 55%; height: 140%;
  background: linear-gradient(135deg, rgba(213,200,181,0.35) 0%, transparent 60%);
  transform: skewX(-8deg);
}
.hero-image-block {
  position: absolute; top: 0; right: 0; width: 50%; height: 100%; overflow: hidden;
}
.hero-image-block::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to right, rgba(40,56,40,0.75) 0%, transparent 45%),
              linear-gradient(to top, rgba(40,27,16,0.5) 0%, transparent 35%);
}
.hero-property-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
}

.hero-content {
  position: relative; z-index: 2; padding: 110px 60px 80px;
  max-width: min(680px, 50%);
  animation: heroIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes heroIn { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--copper-light); margin-bottom: 28px;
}
.hero-eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--copper); }

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4.8vw, 64px); font-weight: 300; line-height: 1.15;
  color: var(--warm-white); margin-bottom: 28px; letter-spacing: -0.01em;
}
.hero h1 em { font-style: italic; color: var(--copper-light); }
.hero h1 strong { font-weight: 500; }

.hero-sub {
  font-size: 15.5px; line-height: 1.75; color: rgba(255,255,255,0.6);
  max-width: 500px; margin-bottom: 44px; font-weight: 300;
}
.hero-actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--copper); color: #fff; padding: 16px 32px;
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none; border-radius: 2px;
  transition: background 0.3s, transform 0.2s; font-family: 'DM Sans', sans-serif;
  border: none; cursor: pointer;
}
.btn-primary:hover { background: #A0724B; transform: translateY(-1px); }
.btn-primary svg { transition: transform 0.3s; }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.65); font-size: 13px; text-decoration: none;
  padding: 16px 4px; border-bottom: 1px solid rgba(255,255,255,0.2);
  transition: color 0.3s, border-color 0.3s; font-weight: 300;
}
.btn-ghost:hover { color: var(--copper-light); border-color: var(--copper-light); }

.hero-scroll {
  position: absolute; bottom: 40px; right: 60px; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.3); font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase;
  animation: fadeUp 2s 1.5s both;
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{transform:scaleY(1);opacity:1}50%{transform:scaleY(0.5);opacity:0.3} }

/* ─── PAGE HERO (inner pages) ───────────────── */
.page-hero {
  position: relative;
  background: linear-gradient(160deg, #4A3526 0%, #2A1B10 50%, #3C2818 100%);
  padding: 160px 60px 80px; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero::after {
  content: ''; position: absolute; top: -20%; right: -5%; width: 55%; height: 140%;
  background: linear-gradient(135deg, rgba(213,200,181,0.35) 0%, transparent 60%);
  transform: skewX(-8deg);
}
.page-hero-content { position: relative; z-index: 2; max-width: 700px; }
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4.8vw, 56px); font-weight: 300; line-height: 1.15;
  color: var(--warm-white); margin: 16px 0 20px; letter-spacing: -0.01em;
}
.page-hero h1 em { font-style: italic; color: var(--copper-light); }
.page-hero p {
  font-size: 15.5px; line-height: 1.75; color: rgba(255,255,255,0.6);
  max-width: 500px; font-weight: 300;
}

/* ─── FORM SUCCESS ──────────────────────────── */
.form-success {
  background: #eaf7ef; border: 1px solid #27ae60; border-radius: 8px;
  padding: 1.5rem 2rem; color: #1e7e34; font-weight: 500; margin-bottom: 1.5rem;
}
.form-success p { margin: 0; color: inherit; line-height: 1.6; }
/* ─── STATS STRIP ───────────────────────────── */
.stats-strip { background: var(--forest); display: grid; grid-template-columns: repeat(3,1fr); }
.stat-item {
  padding: 40px 52px; border-right: 1px solid rgba(255,255,255,0.07);
  position: relative; overflow: hidden; transition: background 0.3s;
}
.stat-item:hover { background: rgba(255,255,255,0.03); }
.stat-item::after {
  content: ''; position: absolute; bottom: 0; left: 52px;
  width: 0; height: 2px; background: var(--copper); transition: width 0.5s ease;
}
.stat-item:hover::after { width: 40px; }
.stat-num {
  font-family: 'Cormorant Garamond', serif; font-size: 52px; font-weight: 300;
  color: var(--warm-white); line-height: 1; letter-spacing: -0.02em;
}
.stat-num sup { color: var(--copper); font-size: 26px; vertical-align: super; }
.stat-label { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-top: 6px; }

/* ─── SECTION COMMONS ───────────────────────── */
section { padding: 100px 60px; }
.section-label {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--copper); margin-bottom: 20px; font-weight: 500;
}
.section-label::before { content: ''; width: 24px; height: 1px; background: var(--copper); }
h2.serif {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(36px, 4vw, 58px);
  font-weight: 300; line-height: 1.15; color: var(--forest); letter-spacing: -0.01em;
}
h2.serif em { font-style: italic; color: var(--copper); }

/* ─── ABOUT ──────────────────────────────────── */
.about {
  background: var(--cream); display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center; padding: 100px 60px;
}
.about-image-col { position: relative; }
.about-portrait {
  aspect-ratio: 1/1; min-height: 380px; max-width: 420px;
  border-radius: 50%; overflow: hidden; background: var(--beige);
  margin: 0 auto;
}
.about-portrait-img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block;
}
.about-badge {
  position: absolute; bottom: -24px; right: -24px;
  width: 160px; height: 160px; background: var(--forest); border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; gap: 4px; padding: 20px;
}
.about-badge-stars { color: var(--copper-light); font-size: 18px; letter-spacing: 2px; }
.about-badge-label { font-size: 9px; letter-spacing: 0.13em; text-transform: uppercase; color: rgba(255,255,255,0.55); line-height: 1.5; }
.about-label-block {
  position: absolute; top: 32px; left: -32px; background: var(--copper); color: #fff;
  padding: 14px 20px; font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  writing-mode: vertical-rl; transform: rotate(180deg); border-radius: 1px;
}
.about-content { padding: 20px 0; }
.about-intro {
  font-family: 'Cormorant Garamond', serif; font-size: 23px; font-weight: 400;
  font-style: italic; color: var(--mid); line-height: 1.65;
  margin: 24px 0 32px; padding-left: 24px; border-left: 2px solid var(--copper);
}
.about-body { font-size: 15px; line-height: 1.8; color: #4A4438; margin-bottom: 18px; font-weight: 300; }
.about-name-story {
  background: var(--beige); border-radius: 4px; padding: 22px 24px; margin: 24px 0;
  border-left: 3px solid var(--copper);
}
.about-name-story p { font-family: 'Cormorant Garamond', serif; font-size: 17px; line-height: 1.75; color: var(--mid); font-style: italic; }
.about-name-story strong { font-style: normal; color: var(--forest); }
.about-formation {
  background: rgba(213,200,181,0.4); border-radius: 4px; padding: 24px;
  margin-top: 28px; display: flex; gap: 16px; align-items: flex-start;
  border-left: 3px solid var(--copper);
}
.formation-icon {
  width: 42px; height: 42px; background: rgba(213,200,181,0.4); border-radius: 50%;
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  color: var(--copper);
}
.formation-text { font-size: 13px; line-height: 1.7; color: var(--mid); }
.formation-text strong { color: var(--charcoal); display: block; margin-bottom: 4px; font-size: 14px; }
/* ─── SERVICES ──────────────────────────────── */
.services { background: var(--warm-white); padding: 100px 60px; }
.services-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 64px; gap: 40px;
}
.services-sub { max-width: 380px; font-size: 15px; line-height: 1.7; color: var(--mid); font-weight: 300; }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
.service-card {
  background: var(--cream); padding: 48px 40px; position: relative;
  overflow: hidden; transition: background 0.4s;
}
.service-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--copper); transform: scaleX(0);
  transform-origin: left; transition: transform 0.4s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { background: #E8E0D0; }
.service-num {
  font-family: 'Cormorant Garamond', serif; font-size: 72px; font-weight: 300;
  color: rgba(40,56,40,0.06); line-height: 1; position: absolute; top: 16px; right: 20px;
}
.service-icon {
  width: 48px; height: 48px; background: var(--forest); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin-bottom: 24px;
}
.service-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 500; color: var(--forest); margin-bottom: 6px; }
.service-sub-label { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--copper); margin-bottom: 20px; }
.service-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.service-list li { font-size: 14px; color: var(--mid); display: flex; align-items: flex-start; gap: 10px; line-height: 1.5; font-weight: 300; }
.service-list li::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--copper); flex-shrink: 0; margin-top: 7px; }
.service-card-wide {
  grid-column: span 3; background: var(--copper);
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  padding: 56px 60px; transition: background 0.3s;
}
.service-card-wide:hover { background: #A97040; }
.service-card-wide::before { top: 0; bottom: auto; height: 2px; background: var(--copper-light); }
.service-card-wide .service-num { color: rgba(255,255,255,0.04); }
.service-card-wide h3 { color: var(--warm-white); font-size: 30px; }
.service-card-wide .service-sub-label { color: var(--copper-light); }
.service-card-wide .service-list li { color: rgba(255,255,255,0.6); }
.service-card-wide .service-list li::before { background: var(--copper-light); }
.wide-right {
  font-size: 14px; line-height: 1.8; color: rgba(255,255,255,0.5); font-weight: 300;
  padding-left: 40px; border-left: 1px solid rgba(255,255,255,0.1);
}
.wide-right strong { color: var(--copper-light); display: block; margin-bottom: 8px; font-size: 15px; font-weight: 500; }

/* ─── PROCESS ───────────────────────────────── */
.process { background: var(--cream); padding: 100px 60px; }
.process-header { text-align: center; margin-bottom: 80px; }
.process-header .section-label { justify-content: center; }
.process-header p { font-size: 15px; color: var(--mid); margin-top: 20px; font-weight: 300; }
.process-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; position: relative; }
.process-steps::before {
  content: ''; position: absolute; top: 31px; left: 12.5%; right: 12.5%;
  height: 1px; background: linear-gradient(to right, transparent, var(--copper), var(--copper), transparent);
  opacity: 0.25;
}
.process-step { padding: 0 28px; text-align: center; }
.step-circle {
  width: 64px; height: 64px; border-radius: 50%; background: var(--warm-white);
  border: 1px solid var(--beige); display: flex; align-items: center; justify-content: center;
  margin: 0 auto 28px; position: relative; z-index: 1; transition: background 0.3s, border-color 0.3s;
}
.process-step:hover .step-circle { background: var(--forest); border-color: var(--forest); }
.process-step:hover .step-circle svg { stroke: white; }
.step-num {
  position: absolute; top: -6px; right: -6px; width: 20px; height: 20px;
  background: var(--copper); border-radius: 50%; font-size: 9px; color: #fff;
  display: flex; align-items: center; justify-content: center; font-weight: 500;
}
.process-step h4 { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 500; color: var(--forest); margin-bottom: 12px; }
.process-step p { font-size: 13.5px; line-height: 1.7; color: var(--mid); font-weight: 300; }/* ─── ZONES ──────────────────────────────────── */
.zones { background: var(--warm-white); padding: 100px 60px; }
.zones-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 56px; gap: 40px; }
.zones-intro { max-width: 420px; font-size: 15px; line-height: 1.8; color: var(--mid); font-weight: 300; margin-top: 16px; }
.zones-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
.zone-card {
  background: var(--cream); padding: 48px 40px; position: relative; overflow: hidden; transition: background 0.3s;
}
.zone-card:hover { background: #E8E0D0; }
.zone-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--copper); transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease;
}
.zone-card:hover::after { transform: scaleX(1); }
.zone-dept {
  font-family: 'Cormorant Garamond', serif; font-size: 64px; font-weight: 300;
  color: rgba(40,56,40,0.06); position: absolute; top: 12px; right: 24px; line-height: 1;
}
.zone-icon {
  width: 44px; height: 44px; background: var(--forest); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin-bottom: 22px;
}
.zone-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 500; color: var(--forest); margin-bottom: 16px; }
.zone-cities { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.zone-city { background: var(--beige); color: var(--mid); font-size: 11px; letter-spacing: 0.08em; padding: 5px 12px; border-radius: 100px; }
.zone-seo-note { font-size: 13px; color: var(--light-text); font-style: italic; line-height: 1.6; font-family: 'Cormorant Garamond', serif; }
.zone-link {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 20px;
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--copper); text-decoration: none; transition: gap 0.3s;
}
.zone-link:hover { gap: 10px; }

/* ─── TESTIMONIALS ──────────────────────────── */
.testimonials { background: var(--cream); padding: 100px 60px; }
.testimonials-header { text-align: center; margin-bottom: 64px; }
.testimonials-header .section-label { justify-content: center; }
.testimonials-note { font-family: 'Cormorant Garamond', serif; font-size: 15px; font-style: italic; color: var(--light-text); margin-top: 14px; }
.testimonials-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.testimonial-card {
  background: var(--warm-white); padding: 44px 48px; border-radius: 2px;
  position: relative; transition: transform 0.3s, box-shadow 0.3s;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.07); }
.testimonial-card.featured { background: var(--lys); border-left: 3px solid var(--copper); }
.testimonial-card.featured .testimonial-text { color: var(--charcoal); font-size: 17px; }
.testimonial-card.featured .testimonial-name { color: var(--forest); }
.testimonial-card.featured .testimonial-role { color: var(--mid); }
.testimonial-card.featured .quote-mark { color: var(--copper); }
.testimonial-card.featured .author-avatar { background: rgba(255,255,255,0.6); color: var(--forest); }
.quote-mark { font-family: 'Cormorant Garamond', serif; font-size: 80px; line-height: 0.6; color: var(--copper); opacity: 0.35; margin-bottom: 24px; display: block; }
.stars { color: var(--copper); font-size: 13px; letter-spacing: 3px; margin-bottom: 20px; }
.testimonial-text { font-family: 'Cormorant Garamond', serif; font-size: 17px; font-style: italic; line-height: 1.7; color: #5A5044; margin-bottom: 28px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 40px; height: 40px; border-radius: 50%; background: var(--beige);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-size: 17px; color: var(--copper); font-style: italic;
}
.testimonial-name { font-size: 13px; font-weight: 500; color: var(--forest); }
.testimonial-role { font-size: 11px; color: var(--light-text); letter-spacing: 0.06em; margin-top: 2px; }

/* ─── TARIFS ────────────────────────────────── */
.tarifs { background: var(--forest); padding: 100px 60px; }
.tarifs-header { text-align: center; margin-bottom: 56px; }

.tarif-offer {
  max-width: 680px; margin: 0 auto; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 32px;
}
.tarif-offer-price {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.tarif-offer-from {
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.4); font-family: 'DM Sans', sans-serif;
}
.tarif-offer-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(64px, 10vw, 96px); font-weight: 300; line-height: 1;
  color: var(--copper-light);
}
.tarif-offer-number small {
  font-size: 0.38em; color: rgba(255,255,255,0.5);
  font-family: 'DM Sans', sans-serif; font-weight: 300; vertical-align: middle;
}
.tarif-offer-base {
  font-size: 13px; color: rgba(255,255,255,0.4); letter-spacing: 0.06em;
}
.tarif-offer-sep {
  width: 40px; height: 1px; background: rgba(184,134,92,0.4);
}
.tarif-offer-text p {
  font-size: 15px; line-height: 1.8; color: rgba(255,255,255,0.55);
  font-weight: 300; margin-bottom: 10px;
}
.tarif-offer-text p:last-child {
  font-style: italic; font-family: 'Cormorant Garamond', serif;
  font-size: 16px; color: rgba(255,255,255,0.35); margin-bottom: 0;
}
.tarifs-header .section-label { justify-content: center; color: var(--copper-light); }
.tarifs-header .section-label::before { background: var(--copper-light); }
.tarifs-header h2 { color: var(--warm-white); }
.tarifs-header p { color: rgba(255,255,255,0.5); font-size: 15px; margin-top: 16px; font-weight: 300; max-width: 560px; margin-left: auto; margin-right: auto; line-height: 1.8; }
.tarifs-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; margin-bottom: 40px; }
.tarif-card {
  background: rgba(255,255,255,0.05); padding: 44px 36px;
  border: 1px solid rgba(255,255,255,0.08); transition: background 0.3s; position: relative;
}
.tarif-card:hover { background: rgba(255,255,255,0.08); }
.tarif-card.highlight { background: var(--copper); border-color: var(--copper); }
.tarif-card.highlight:hover { background: #A97040; }
.tarif-card.highlight .tarif-name,
.tarif-card.highlight h3,
.tarif-card.highlight .tarif-price { color: #fff; }
.tarif-card.highlight .tarif-price small { color: rgba(255,255,255,0.7); }
.tarif-card.highlight .tarif-desc { color: rgba(255,255,255,0.75); border-color: rgba(255,255,255,0.2); }
.tarif-card.highlight .tarif-list li { color: rgba(255,255,255,0.85); }
.tarif-card.highlight .tarif-list li::before { background: rgba(255,255,255,0.5); }
.tarif-recommended {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--forest); color: var(--copper-light); font-size: 9px;
  letter-spacing: 0.16em; text-transform: uppercase; padding: 5px 14px; white-space: nowrap;
}
.tarif-name { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--copper-light); margin-bottom: 12px; }
.tarif-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 500; color: var(--warm-white); margin-bottom: 12px; }
.tarif-price { font-family: 'Cormorant Garamond', serif; font-size: 44px; font-weight: 300; color: var(--copper-light); line-height: 1; margin-bottom: 6px; }
.tarif-price span { font-size: 13px; font-family: 'DM Sans', sans-serif; font-weight: 300; color: rgba(255,255,255,0.4); display: block; margin-bottom: 2px; }
.tarif-price small { font-size: 14px; color: rgba(255,255,255,0.4); font-family: 'DM Sans', sans-serif; font-weight: 300; }
.tarif-desc { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.7; margin-bottom: 24px; margin-top: 12px; font-weight: 300; padding-top: 12px; border-top: 1px solid rgba(255,255,255,0.08); }
.tarif-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.tarif-list li { font-size: 13px; color: rgba(255,255,255,0.55); display: flex; align-items: flex-start; gap: 10px; line-height: 1.5; font-weight: 300; }
.tarif-list li::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--copper); flex-shrink: 0; margin-top: 7px; }
.tarifs-note { text-align: center; font-family: 'Cormorant Garamond', serif; font-size: 17px; font-style: italic; color: rgba(255,255,255,0.3); line-height: 1.8; }
/* ─── BLOG ───────────────────────────────────── */
.blog { background: var(--warm-white); padding: 100px 60px; }
.blog-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 56px; gap: 40px; }
.blog-link-all {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--copper); text-decoration: none; transition: gap 0.3s;
  padding-bottom: 2px; border-bottom: 1px solid var(--copper);
}
.blog-link-all:hover { gap: 12px; }
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.blog-card { background: var(--cream); overflow: hidden; border-radius: 2px; transition: transform 0.3s, box-shadow 0.3s; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,0.08); }
.blog-thumb {
  height: 180px; background: linear-gradient(135deg, #3D4F3A, #283828);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.blog-thumb .blog-illus { width: 100%; height: 100%; }
.blog-card-body { padding: 28px 32px 20px; }
.blog-tag {
  display: inline-block; font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--copper); background: rgba(213,200,181,0.35); padding: 4px 10px;
  border-radius: 100px; margin-bottom: 14px;
}
.blog-card h4 { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 500; color: var(--forest); line-height: 1.4; margin-bottom: 12px; }
.blog-card p { font-size: 13px; color: var(--mid); line-height: 1.7; font-weight: 300; }
.blog-card-footer { padding: 16px 32px 28px; }
.blog-read { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--copper); text-decoration: none; display: inline-flex; align-items: center; gap: 6px; transition: gap 0.3s; }
.blog-read:hover { gap: 10px; }

/* ─── CONTACT ────────────────────────────────── */
.contact-section { background: var(--cream); padding: 0 60px 100px; }
.contact-inner {
  background: linear-gradient(135deg, var(--forest) 0%, #140D06 100%);
  border-radius: 4px; padding: 80px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  position: relative; overflow: hidden;
}
.contact-inner::before {
  content: ''; position: absolute; top: -40%; right: -5%; width: 50%; height: 200%;
  background: linear-gradient(135deg, rgba(184,134,92,0.1), transparent); transform: skewX(-10deg);
}
.contact-text .section-label { color: var(--copper-light); }
.contact-text .section-label::before { background: var(--copper-light); }
.contact-text h2 { color: var(--warm-white); }
.contact-text p { color: rgba(255,255,255,0.5); font-size: 15px; line-height: 1.8; margin-top: 20px; font-weight: 300; }
.contact-features { margin-top: 36px; display: flex; flex-direction: column; gap: 14px; }
.contact-feature { display: flex; align-items: center; gap: 12px; font-size: 13px; color: rgba(255,255,255,0.6); }
.contact-feature-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--copper); flex-shrink: 0; }
.contact-form { position: relative; z-index: 1; }
.contact-form h3 { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 400; color: var(--warm-white); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 12px; }
.form-label { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.35); }
.form-input {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 2px; padding: 13px 16px;
  font-family: 'DM Sans', sans-serif; font-size: 14px; color: var(--warm-white);
  outline: none; transition: border-color 0.3s, background 0.3s; width: 100%;
}
.form-input::placeholder { color: rgba(255,255,255,0.22); }
.form-input:focus { border-color: var(--copper); background: rgba(255,255,255,0.1); }
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='white' stroke-opacity='0.35' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
}
.form-input option { background: var(--forest); }
.btn-form {
  width: 100%; background: var(--copper); color: #fff; border: none;
  padding: 16px; font-family: 'DM Sans', sans-serif; font-size: 12px;
  letter-spacing: 0.14em; text-transform: uppercase; cursor: pointer;
  border-radius: 2px; margin-top: 8px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: background 0.3s, transform 0.2s;
}
.btn-form:hover { background: #A0724B; transform: translateY(-1px); }
.btn-form:disabled { opacity: 0.65; cursor: not-allowed; transform: none; }

/* ─── FOOTER ─────────────────────────────────── */
footer { background: var(--charcoal); padding: 64px 60px 32px; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.07); margin-bottom: 32px;
}
.footer-logo { display: block; margin-bottom: 14px; text-decoration: none; }
.footer-logo img { height: 80px; width: auto; filter: brightness(0) invert(1); }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.3); line-height: 1.7; font-weight: 300; max-width: 240px; }
.footer-social { display: flex; gap: 10px; margin-top: 28px; }
.social-link {
  width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.1); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.35); text-decoration: none; font-size: 12px;
  transition: all 0.3s;
}
.social-link:hover { border-color: var(--copper); color: var(--copper); }
.footer-col h4 { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.25); margin-bottom: 20px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13.5px; color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.3s; font-weight: 300; }
.footer-links a:hover { color: var(--copper-light); }
.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-item { font-size: 13px; color: rgba(255,255,255,0.45); font-weight: 300; }
.footer-contact-item strong { color: rgba(255,255,255,0.6); display: block; font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 3px; }
.footer-contact-item a { color: rgba(255,255,255,0.45); text-decoration: none; }
.footer-contact-item a:hover { color: var(--copper-light); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: rgba(255,255,255,0.18); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: rgba(255,255,255,0.18); text-decoration: none; transition: color 0.3s; }
.footer-legal a:hover { color: rgba(255,255,255,0.45); }
.footer-pixeloria {
  text-align: center; font-size: 11px; color: rgba(255,255,255,0.12);
  margin-top: 20px; letter-spacing: 0.05em;
}
.footer-pixeloria a { color: rgba(255,255,255,0.2); text-decoration: none; transition: color 0.3s; }
.footer-pixeloria a:hover { color: rgba(255,255,255,0.45); }
/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */

@media (max-width: 1200px) {
  nav { padding: 20px 40px; }
  nav.scrolled { padding: 14px 40px; }
  section { padding: 80px 40px; }
  .about { padding: 80px 40px; gap: 60px; }
  .services { padding: 80px 40px; }
  .process { padding: 80px 40px; }
  .zones { padding: 80px 40px; }
  .testimonials { padding: 80px 40px; }
  .tarifs { padding: 80px 40px; }
  .blog { padding: 80px 40px; }
  .contact-section { padding: 0 40px 80px; }
  .contact-inner { padding: 60px; gap: 60px; }
  footer { padding: 56px 40px 28px; }
  .footer-top { gap: 40px; }
  .tarif-price { font-size: 36px; }
  .stat-item { padding: 36px 36px; }
  .stat-item::after { left: 36px; }
  .page-hero { padding: 140px 40px 60px; }
}

@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  nav { padding: 16px 32px; }
  nav.scrolled { padding: 12px 32px; }

  .hero { min-height: 600px; }
  .hero-image-block { width: 44%; }
  .hero-content { padding: 100px 40px 60px; max-width: min(580px, 56%); }
  .hero h1 { font-size: clamp(30px, 3.8vw, 52px); }
  .hero-scroll { display: none; }

  .stats-strip { grid-template-columns: repeat(3,1fr); }
  .stat-item { padding: 28px 28px; }
  .stat-item::after { left: 28px; }
  .stat-num { font-size: 42px; }

  .about { grid-template-columns: 1fr 1fr; gap: 48px; padding: 80px 32px; }
  .about-label-block { left: -16px; }

  .services { padding: 80px 32px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .service-card-wide { grid-column: span 2; }

  .process { padding: 80px 32px; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 48px 0; }
  .process-steps::before { display: none; }
  .process-step { padding: 0 20px; }

  .zones { padding: 80px 32px; }
  .zones-grid { grid-template-columns: 1fr 1fr; }
  .zone-card:last-child { grid-column: span 2; }

  .testimonials { padding: 80px 32px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card.featured { border-left: 3px solid var(--copper); }

  .tarifs { padding: 80px 32px; }
  .tarifs-grid { grid-template-columns: 1fr 1fr; }
  .tarif-card:last-child { grid-column: span 2; }

  .blog { padding: 80px 32px; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .blog-card:last-child { grid-column: span 2; }

  .contact-section { padding: 0 32px 80px; }
  .contact-inner { padding: 48px; gap: 48px; }

  footer { padding: 48px 32px 24px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  .page-hero { padding: 120px 32px 60px; }
}

@media (max-width: 900px) {
  .hero-image-block { width: 42%; }
  .hero-content { max-width: min(560px, 58%); }
}

@media (max-width: 768px) {
  nav { top: 0; padding: 16px 24px; }
  nav.scrolled { padding: 12px 24px; }
  .nav-phone { display: none; }

  .hero { height: 100svh; min-height: 580px; }
  .hero-image-block { display: none; }
  .hero-bg::after { display: none; }
  .hero-content { padding: 90px 24px 60px; max-width: 100%; }
  .hero h1 { font-size: clamp(30px, 8vw, 48px); }
  .hero-sub { font-size: 15px; max-width: 100%; }
  .hero-eyebrow { font-size: 10px; }

  .stats-strip { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); padding: 24px 28px; }

  .about { grid-template-columns: 1fr; gap: 48px; padding: 60px 24px; }
  .about-image-col { max-width: 380px; margin: 0 auto; width: 100%; }
  .about-label-block { display: none; }
  .about-portrait { min-height: 340px; }
  .about-badge { width: 130px; height: 130px; bottom: -16px; right: -8px; }

  section { padding: 60px 24px; }
  .services { padding: 60px 24px; }
  .services-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .services-sub { max-width: 100%; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card-wide {
    grid-column: span 1; grid-template-columns: 1fr;
    gap: 32px; padding: 40px 28px;
  }
  .wide-right { padding-left: 0; border-left: none; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 28px; }

  .process { padding: 60px 24px; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 40px 16px; }

  .zones { padding: 60px 24px; }
  .zones-header { flex-direction: column; gap: 16px; }
  .zones-grid { grid-template-columns: 1fr; }
  .zone-card:last-child { grid-column: span 1; }

  .testimonials { padding: 60px 24px; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 16px; }
  .testimonial-card { padding: 32px 28px; }
  .testimonial-card.featured .testimonial-text { font-size: 16px; }

  .tarifs { padding: 60px 24px; }
  .tarifs-grid { grid-template-columns: 1fr; gap: 2px; }
  .tarif-card:last-child { grid-column: span 1; }
  .tarif-card.highlight { padding-top: 52px; }

  .blog { padding: 60px 24px; }
  .blog-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .blog-grid { grid-template-columns: 1fr; gap: 16px; }
  .blog-card:last-child { grid-column: span 1; }

  .contact-section { padding: 0 24px 60px; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; padding: 40px 28px; border-radius: 2px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }

  footer { padding: 48px 24px 24px; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-tagline { max-width: 100%; }

  .page-hero { padding: 100px 24px 48px; }
  .page-hero h1 { font-size: clamp(28px, 7vw, 44px); }
}

@media (max-width: 480px) {
  .hero h1 { font-size: clamp(26px, 9vw, 38px); line-height: 1.2; }
  .hero-sub { font-size: 14px; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 12px; }
  .btn-primary { width: 100%; justify-content: center; padding: 15px 24px; }
  .btn-ghost { padding: 12px 4px; }

  h2.serif { font-size: clamp(28px, 8vw, 40px); }

  .about-portrait { min-height: 280px; }

  .services-header h2 { font-size: 32px; }
  .service-card { padding: 36px 24px; }

  .process-steps { grid-template-columns: 1fr; gap: 36px; }
  .process-step { padding: 0; }

  .tarif-price { font-size: 32px; }
  .tarifs-note { font-size: 14px; }

  .contact-inner { padding: 32px 20px; }
  .contact-form h3 { font-size: 22px; }

  .testimonial-card { padding: 28px 20px; }

  .blog-card-body { padding: 20px 20px 12px; }
  .blog-card-footer { padding: 12px 20px 20px; }

  footer { padding: 40px 20px 20px; }
  .footer-logo img { height: 60px; }
  .nav-logo img { height: 46px; }

  .hero-content { padding: 80px 20px 48px; }
  section { padding: 48px 20px; }
  .zones { padding: 48px 20px; }
  .services { padding: 48px 20px; }
  .tarifs { padding: 48px 20px; }
  .blog { padding: 48px 20px; }
  .testimonials { padding: 48px 20px; }
  .process { padding: 48px 20px; }
  .contact-section { padding: 0 20px 48px; }
  .page-hero { padding: 80px 20px 40px; }
}

/* ── WhatsApp floating button ── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,.45);
  z-index: 800;
  transition: transform .2s, box-shadow .2s;
  animation: waPulse 2.8s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 22px rgba(37,211,102,.6);
  animation: none;
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(37,211,102,.45); }
  50%       { box-shadow: 0 4px 28px rgba(37,211,102,.75); }
}
@media (max-width: 480px) {
  .whatsapp-float { bottom: 18px; right: 18px; width: 50px; height: 50px; }
}
