.elementor-51 .elementor-element.elementor-element-5480559{--display:grid;--e-con-grid-template-columns:repeat(1, 1fr);--e-con-grid-template-rows:repeat(1, 1fr);--grid-auto-flow:row;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-5480559{--grid-auto-flow:row;}}@media(max-width:767px){.elementor-51 .elementor-element.elementor-element-5480559{--e-con-grid-template-columns:repeat(1, 1fr);--e-con-grid-template-rows:repeat(1, 1fr);--grid-auto-flow:row;}}/* Start custom CSS for container, class: .elementor-element-5480559 */:root {
  --black:   #080808;
  --off:     #111111;
  --white:   #fafaf8;
  --cream:   #fdf8f3;
  --cream2:  #f8f0e8;
  --gold:    #c9a84c;
  --gold-lt: #f0d878;
  --gold-dk: #8a6520;
  --pink:    #e8b4c4;
  --pink-lt: #f7e8ef;
  --pink-dk: #c4789a;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Cormorant Garamond', Georgia, serif;
  --font-ui:      'Montserrat', sans-serif;
}
 
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--white); color: var(--black); font-family: var(--font-body); overflow-x: hidden; }
 
/* ── ANIMATIONS ───────────────────────────────────────── */
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes drawLine {
  from { stroke-dashoffset: 1000; }
  to   { stroke-dashoffset: 0; }
}
@keyframes floatA {
  0%,100% { transform: translate(0,0) rotate(0deg); }
  33%  { transform: translate(8px,-12px) rotate(2deg); }
  66%  { transform: translate(-6px,8px) rotate(-1deg); }
}
@keyframes floatC {
  0%,100% { transform: translate(0,0); }
  40%  { transform: translate(6px,10px); }
  70%  { transform: translate(-8px,4px); }
}
@keyframes goldPulse {
  0%,100% { opacity: 0.5; } 50% { opacity: 0.85; }
}
@keyframes stripeReveal {
  from { clip-path: inset(0 100% 0 0); }
  to   { clip-path: inset(0 0% 0 0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.96); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes floatIn {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
 
/* ── SHARED BUTTONS ───────────────────────────────────── */
.btn-gold {
  display: inline-block; font-family: var(--font-ui); font-size: 13px; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--black);
  padding: 16px 36px; text-decoration: none;
  background: linear-gradient(90deg,#c9a84c 0%,#f0d878 25%,#e2c05a 50%,#c9a84c 75%,#f5e090 100%);
  background-size: 200% auto;
  transition: background-position 0.5s, transform 0.25s;
  box-shadow: 0 0 30px rgba(201,168,76,0.2), 0 2px 12px rgba(0,0,0,0.15);
}
.btn-gold:hover { background-position: right center; transform: translateY(-2px); box-shadow: 0 0 50px rgba(201,168,76,0.35), 0 4px 20px rgba(0,0,0,0.2); }
 
.btn-outline-dark {
  display: inline-block; font-family: var(--font-ui); font-size: 13px; font-weight: 400;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--black);
  padding: 16px 36px; text-decoration: none;
  border: 1px solid rgba(0,0,0,0.3);
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}
.btn-outline-dark:hover { border-color: var(--gold); color: var(--gold-dk); }
 
.btn-outline-light {
  display: inline-block; font-family: var(--font-ui); font-size: 13px; font-weight: 400;
  letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.7);
  padding: 16px 36px; text-decoration: none;
  border: 1px solid rgba(255,255,255,0.25);
  transition: border-color 0.3s, color 0.3s;
}
.btn-outline-light:hover { border-color: var(--gold); color: var(--gold); }
 
/* ── SECTION LABELS ──────────────────────────────────── */
.label {
  font-family: var(--font-ui); font-size: clamp(0.85rem, 1.1vw, 1.1rem); font-weight: 400;
  letter-spacing: 0.3em; text-transform: uppercase;
  display: flex; align-items: center; gap: 14px; margin-bottom: 20px;
}
.label.gold { color: var(--gold-dk); }
.label.gold::before { content: ''; width: 32px; height: 1px; background: var(--gold-dk); display: block; }
.label.white { color: var(--gold); }
.label.white::before { content: ''; width: 32px; height: 1px; background: var(--gold); display: block; }
.label.centered { justify-content: center; }
.label.centered::before { display: none; }
 
/* ── HERO ─────────────────────────────────────────────── */
.hero {
  min-height: 100vh; display: grid; grid-template-columns: 55% 45%;
   position: relative;
}
 
.hero-left {
  position: relative; background: var(--black);
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 72px 80px 80px; overflow: hidden;
}
.hero-stripes {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(90deg,transparent 0,transparent 18px,rgba(255,255,255,0.018) 18px,rgba(255,255,255,0.018) 20px);
  animation: stripeReveal 1.2s cubic-bezier(0.4,0,0.2,1) 0.2s both;
}
.hero-left::before {
  content: ''; position: absolute; top: 80px; left: 0;
  width: 3px; height: 200px;
  background: linear-gradient(to bottom,transparent,var(--gold),transparent);
  animation: goldPulse 3s ease-in-out infinite;
}
.hero-box {
  position: relative; z-index: 2; padding: 56px 52px;
  border: 2px solid rgba(201,168,76,0.7);
  background: rgba(255,255,255,0.015);
  animation: fadeUp 0.9s ease 0.4s both;
}
.hero-box::before {
  content: ''; position: absolute; top: 9px; left: 9px; right: 9px; bottom: 9px;
  border: 1px solid rgba(201,168,76,0.3); pointer-events: none;
}
.corner-floral {
  position: absolute; font-size: 28px; color: var(--pink); opacity: 0.8; line-height: 1;
}
.corner-floral.tl { top: -14px; left: -14px; }
.corner-floral.tr { top: -14px; right: -14px; }
.corner-floral.bl { bottom: -14px; left: -14px; }
.corner-floral.br { bottom: -14px; right: -14px; }
 
.hero-eyebrow {
  font-family: var(--font-ui); font-size: 13px; font-weight: 400;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 22px; display: flex; align-items: center; gap: 14px;
  animation: fadeUp 0.9s ease 0.5s both; opacity: 0; animation-fill-mode: both;
}
.hero-eyebrow::before { content: ''; display: block; width: 36px; height: 1px; background: linear-gradient(90deg,var(--gold-dk),var(--gold-lt)); }
 
h1 {
  font-family: var(--font-display); font-size: clamp(40px,4.5vw,64px);
  font-weight: 400; line-height: 1.1; color: var(--white); margin-bottom: 10px;
  animation: fadeUp 0.9s ease 0.6s both; opacity: 0; animation-fill-mode: both;
}
h1 em {
  font-style: italic;
  background: linear-gradient(90deg,#8a6520 0%,#c9a84c 15%,#f5e090 30%,#e2c05a 45%,#c9a84c 55%,#f0d878 70%,#c9a84c 85%,#8a6520 100%);
  background-size: 200% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  animation: shimmer 3s linear infinite, fadeUp 0.9s ease 0.6s both;
  animation-fill-mode: both; display: inline-block;
}
.hero-divider {
  width: 60px; height: 1px; background: linear-gradient(90deg,var(--gold-dk),var(--gold-lt),var(--gold-dk));
  margin-bottom: 28px; animation: fadeUp 0.9s ease 0.65s both; opacity: 0; animation-fill-mode: both;
}
.hero-sub {
  font-family: var(--font-body); font-size: 20px; font-weight: 300; font-style: italic;
  color: rgba(255,255,255,0.82); line-height: 1.85; margin-bottom: 36px; max-width: 440px;
  animation: fadeUp 0.9s ease 0.7s both; opacity: 0; animation-fill-mode: both;
}
.hero-actions {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  animation: fadeUp 0.9s ease 0.8s both; opacity: 0; animation-fill-mode: both;
}
.hero-stats {
  display: flex; gap: 36px; margin-top: 44px; padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.07);
  animation: fadeUp 0.9s ease 0.9s both; opacity: 0; animation-fill-mode: both;
}
.stat-num { font-family: var(--font-display); font-size: 30px; color: var(--gold); line-height: 1; margin-bottom: 4px; }
.stat-label { font-family: var(--font-ui); font-size: 11px; font-weight: 300; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.9); }
 
.hero-right {
  position: relative; overflow: hidden; background: #0a0a0a;
}
.hero-photo {
  position: absolute; inset: 0;
  background: url('https://michelessalonandspanm.com/wp-content/uploads/2026/06/IMG_7816-scaled.webp') center/cover no-repeat;
  filter: brightness(0.55) contrast(1.05);
  transform: scale(1.04); transition: transform 8s ease; will-change: transform;
}
.hero-right:hover .hero-photo { transform: scale(1.08); }
.hero-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right,rgba(8,8,8,0.65) 0%,rgba(8,8,8,0.1) 40%,transparent 100%),
              linear-gradient(to top,rgba(8,8,8,0.75) 0%,transparent 50%);
}
.floral-overlay { position: absolute; pointer-events: none; user-select: none; }
.floral-br {
  bottom: -10px; right: -10px; width: 320px; opacity: 0.8;
  animation: floatC 12s ease-in-out infinite; mix-blend-mode: multiply;
}
.floral-tl {
  top: -10px; left: -10px; width: 240px; opacity: 0.4;
  animation: floatA 14s ease-in-out infinite; animation-delay: -4s;
  mix-blend-mode: multiply; transform: rotate(180deg);
}
.gold-frame {
  position: absolute; top: 32px; right: 32px; width: 180px; height: 240px; pointer-events: none;
}
.gold-frame rect {
  stroke: var(--gold); stroke-width: 1; fill: none;
  stroke-dasharray: 840; stroke-dashoffset: 840;
  animation: drawLine 2.5s cubic-bezier(0.4,0,0.2,1) 0.8s forwards; opacity: 0.5;
}
.gold-frame-inner rect {
  stroke-dasharray: 760; stroke-dashoffset: 760;
  animation: drawLine 2.5s cubic-bezier(0.4,0,0.2,1) 1.2s forwards; opacity: 0.25;
}
.hero-photo-card {
  position: absolute; bottom: 48px; left: -1px; right: 48px;
  border-left: 4px solid var(--gold); padding: 28px 32px;
  background: rgba(8,8,8,0.82); backdrop-filter: blur(16px);
  animation: fadeUp 1s ease 1.2s both; opacity: 0; animation-fill-mode: both;
}
.hero-photo-card-text {
  font-family: var(--font-body); font-size: 22px; font-weight: 300; font-style: italic;
  color: rgba(255,255,255,0.92); line-height: 1.65; margin-bottom: 14px;
}
.hero-photo-card-cite {
  font-family: var(--font-ui); font-size: 13px; font-weight: 400;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold);
}
.pink-dot {
  position: absolute; border-radius: 50%; background: var(--pink);
  filter: blur(60px); pointer-events: none; animation: goldPulse 4s ease-in-out infinite;
}
 
/* ── GOLD STRIP DIVIDER ──────────────────────────────── */
.strip-divider {
  height: 6px;
  background: repeating-linear-gradient(90deg,var(--black) 0,var(--black) 20px,var(--gold) 20px,var(--gold) 22px);
}
 
/* ── ABOUT / INTRO ──────────────────────────────────── */
.about {
  display: grid; grid-template-columns: 1fr 1fr; min-height: 600px;
}
.about-left {
  position: relative; overflow: hidden;
}
.about-photo {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  display: block; filter: brightness(0.92);
  transition: transform 0.8s ease;
  transform-origin: center center;
  min-height: 100%;
  scale: 1.35;
}
.about-left:hover .about-photo { transform: scale(1.04); }
.about-floral {
  position: absolute; bottom: -20px; left: -20px;
  width: 280px; opacity: 0.85; pointer-events: none;
  animation: floatC 10s ease-in-out infinite; mix-blend-mode: multiply;
}
.about-right {
  background: var(--cream); padding: 100px 80px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
}
.about-right::before {
  content: ''; position: absolute; top: 0; right: 0; bottom: 0; width: 4px;
  background: linear-gradient(to bottom,transparent,var(--gold),transparent);
}
.about-right h2 {
  font-family: var(--font-display); font-size: clamp(30px,3vw,46px);
  font-weight: 400; line-height: 1.2; color: var(--black); margin-bottom: 24px;
}
.about-right h2 em { font-style: italic; color: var(--pink-dk); }
.about-right p {
  font-family: var(--font-body); font-size: 19px; font-weight: 300;
  line-height: 1.9; color: #222222; margin-bottom: 18px;
}
.about-signature {
  font-family: var(--font-display); font-size: 28px; font-style: italic;
  color: var(--pink-dk); margin-top: 16px; margin-bottom: 32px;
}
 
/* ── SERVICES ────────────────────────────────────────── */
.services {
  background: var(--cream); padding: 120px 80px; position: relative; overflow: hidden;
}
.services::before {
  content: ''; position: absolute; top: 0; right: 0; bottom: 0; width: 35%;
  background-image: repeating-linear-gradient(180deg,var(--cream) 0,var(--cream) 16px,#f0e8df 16px,#f0e8df 32px);
}
.services-header {
  position: relative; z-index: 2;
  display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 64px; gap: 40px;
}
.services-header h2 {
  font-family: var(--font-display); font-size: clamp(30px,4vw,52px);
  font-weight: 400; color: var(--black); line-height: 1.1;
}
.services-header h2 em { font-style: italic; color: var(--pink-dk); }
.services-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 2px;
  position: relative; z-index: 2;
}
.service-card {
  background: #ffffff; padding: 52px 40px;
  border-top: 2px solid transparent;
  border: 1px solid rgba(0,0,0,0.07);
  transition: border-color 0.4s, background 0.3s, transform 0.3s, box-shadow 0.3s;
  position: relative; overflow: hidden;
}
.service-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg,var(--pink-dk),var(--gold));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.service-card:hover { border-top-color: var(--pink-dk); background: var(--pink-lt); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(196,120,154,0.1); }
.service-card:hover::after { transform: scaleX(1); }
.service-num {
  font-family: var(--font-display); font-size: 52px; font-weight: 400;
  color: var(--pink); line-height: 1; margin-bottom: 16px;
  transition: color 0.3s;
}
.service-card:hover .service-num { color: var(--pink-dk); }
.service-card h3 {
  font-family: var(--font-display); font-size: 26px; font-weight: 500;
  color: var(--black); margin-bottom: 14px; line-height: 1.2;
}
.service-card p {
  font-family: var(--font-body); font-size: 21px; font-weight: 400;
  color: #333333; line-height: 1.8; font-style: italic; margin-bottom: 28px;
}
.service-link {
  font-family: var(--font-ui); font-size: 13px; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--pink-dk); text-decoration: none;
  display: inline-flex; align-items: center; gap: 10px;
  transition: gap 0.2s, color 0.2s;
}
.service-link:hover { gap: 16px; color: var(--gold-dk); }
 
/* ── PHOTO TRIO ──────────────────────────────────────── */
.photo-trio {
  display: grid; grid-template-columns: 1.2fr 0.8fr 1fr; height: 480px;
}
.photo-trio-item {
  position: relative; overflow: hidden;
}
.photo-trio-item img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  display: block; transition: transform 0.8s ease; filter: brightness(0.75);
}
.photo-trio-item:hover img { transform: scale(1.06); filter: brightness(0.85); }
.photo-trio-item.rotated img { transform: rotate(90deg) scale(1.55); transform-origin: center center; }
.photo-trio-item.rotated:hover img { transform: rotate(90deg) scale(1.6); }
.photo-trio-label {
  position: absolute; bottom: 24px; left: 24px;
  font-family: var(--font-display); font-size: 22px; font-style: italic;
  color: var(--white); text-shadow: 0 2px 12px rgba(0,0,0,0.5);
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s;
}
.photo-trio-item:hover .photo-trio-label { opacity: 1; transform: translateY(0); }
.photo-trio-gold-line {
  position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg,var(--gold-dk),var(--gold-lt),var(--gold-dk));
  transform: scaleX(0); transition: transform 0.4s;
}
.photo-trio-item:hover .photo-trio-gold-line { transform: scaleX(1); }
 
/* ── REVIEWS ─────────────────────────────────────────── */
.reviews { background: var(--cream); padding: 120px 80px; position: relative; overflow: hidden; }
.reviews::before {
  content: ''; position: absolute; top: -40px; right: -40px;
  width: 520px; height: 520px; pointer-events: none;
  background: url('https://michelessalonandspanm.com/wp-content/uploads/2026/06/5-1.png') center/contain no-repeat;
  opacity: 0.15;
}
.reviews::after {
  content: ''; position: absolute; bottom: -60px; left: -60px;
  width: 400px; height: 400px; pointer-events: none;
  background: url('https://michelessalonandspanm.com/wp-content/uploads/2026/06/5-1.png') center/contain no-repeat;
  opacity: 0.1;
  transform: rotate(180deg);
}
.reviews-header { text-align: center; margin-bottom: 72px; }
.reviews-header h2 {
  font-family: var(--font-display); font-size: clamp(28px,3vw,44px);
  font-weight: 400; color: var(--black); line-height: 1.2; margin-top: 8px;
}
.reviews-header h2 em { font-style: italic; color: var(--pink-dk); }
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 36px; max-width: 1260px; margin: 0 auto; }
.review-card {
  padding: 56px 48px; border: 1px solid #e8e0d8; border-top: 3px solid var(--gold); position: relative;
  background: var(--white); transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  overflow: hidden; opacity: 0;
}
.review-card.float-in { animation: floatIn 0.75s ease forwards; }
.review-card.float-in:nth-child(2) { animation-delay: 0.15s; }
.review-card.float-in:nth-child(3) { animation-delay: 0.30s; }
.review-card::before {
  content: '\201C'; position: absolute; top: 16px; left: 28px;
  font-family: var(--font-display); font-size: 160px; color: var(--pink); line-height: 1; opacity: 0.4;
}
.review-card:hover { border-color: var(--pink); box-shadow: 0 20px 70px rgba(232,180,196,0.2); transform: translateY(-6px); }
.review-stars { display: flex; gap: 6px; margin-bottom: 24px; }
.star { color: var(--gold); font-size: 22px; }
.review-text {
  font-family: var(--font-body); font-size: clamp(1.15rem, 1.4vw, 1.4rem); font-weight: 400;
  font-style: italic; line-height: 1.85; color: #1a1a1a;
  position: relative; z-index: 1; margin-bottom: 32px;
}
.review-author { display: flex; align-items: center; gap: 16px; }
.review-avatar {
  width: 50px; height: 50px; background: var(--pink-lt); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 20px; color: var(--pink-dk); font-weight: 500;
}
.review-name {
  font-family: var(--font-ui); font-size: clamp(0.85rem, 0.95vw, 1rem); font-weight: 600;
  letter-spacing: 0.08em; color: var(--black);
}
.review-source {
  font-family: var(--font-ui); font-size: clamp(0.75rem, 0.85vw, 0.85rem); letter-spacing: 0.1em; color: #888; text-transform: uppercase;
}
 
/* ── SIGN / IDENTITY SECTION ─────────────────────────── */
.identity {
  display: grid; grid-template-columns: 1fr 1fr; min-height: 500px;
}
.identity-photo { position: relative; overflow: hidden; }
.identity-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.identity-photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right,transparent 60%,rgba(201,168,76,0.08));
}
.identity-content {
  background: var(--white); display: flex; flex-direction: column; justify-content: center;
  padding: 80px 80px; position: relative; overflow: hidden;
  border-left: 1px solid #eee;
}
.identity-content::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg,transparent,var(--gold),transparent);
}
.identity-content h2 {
  font-family: var(--font-display); font-size: clamp(30px,3vw,48px);
  font-weight: 400; color: var(--black); line-height: 1.2; margin-bottom: 24px;
}
.identity-content h2 em { font-style: italic; color: var(--pink-dk); }
.identity-content p {
  font-family: var(--font-body); font-size: 21px; font-weight: 400;
  color: #333; line-height: 1.9; font-style: italic; margin-bottom: 16px;
}
.identity-details {
  margin-top: 40px; display: flex; flex-direction: column; gap: 20px;
}
.identity-detail {
  display: flex; align-items: flex-start; gap: 16px;
  font-family: var(--font-body); font-size: 21px; color: #222; font-weight: 400;
}
.identity-detail-icon {
  color: var(--pink-dk); font-size: 16px; flex-shrink: 0; margin-top: 4px;
  font-family: var(--font-ui);
}
.identity-floral {
  position: absolute; top: -30px; right: -30px; width: 280px;
  opacity: 0.35; pointer-events: none; mix-blend-mode: multiply;
}
 
/* ── CTA ─────────────────────────────────────────────── */
.cta {
  background: var(--black); padding: 120px 80px; text-align: center;
  position: relative; overflow: hidden;
}
.cta::before {
  content: ''; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(90deg,transparent 0,transparent 40px,rgba(201,168,76,0.015) 40px,rgba(201,168,76,0.015) 41px),
                    repeating-linear-gradient(180deg,transparent 0,transparent 40px,rgba(201,168,76,0.015) 40px,rgba(201,168,76,0.015) 41px);
  pointer-events: none;
}
.cta-floral-l {
  position: absolute; bottom: -40px; left: -40px; width: 320px;
  opacity: 0.15; pointer-events: none; mix-blend-mode: screen;
  animation: floatC 12s ease-in-out infinite;
}
.cta-floral-r {
  position: absolute; top: -40px; right: -40px; width: 280px;
  opacity: 0.12; pointer-events: none; mix-blend-mode: screen;
  transform: rotate(180deg); animation: floatA 10s ease-in-out infinite; animation-delay: -3s;
}
.cta-inner { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; }
.cta h2 {
  font-family: var(--font-display); font-size: clamp(32px,4.5vw,58px);
  font-weight: 400; color: var(--white); line-height: 1.15; margin-bottom: 20px;
}
.cta h2 em { font-style: italic; color: var(--pink); }
.cta-sub {
  font-family: var(--font-body); font-size: 21px; font-weight: 400; font-style: italic;
  color: rgba(255,255,255,0.75); line-height: 1.7; margin-bottom: 52px;
}
.cta-phone {
  display: block; font-family: var(--font-display); font-size: clamp(28px,4vw,48px);
  font-weight: 400; color: var(--gold); text-decoration: none;
  margin-bottom: 32px; letter-spacing: 0.05em;
  transition: color 0.3s;
}
.cta-phone:hover { color: var(--gold-lt); }
.cta-actions { display: flex; justify-content: center; align-items: center; gap: 20px; flex-wrap: wrap; }
.cta-note {
  font-family: var(--font-ui); font-size: 13px; letter-spacing: 0.15em;
  color: rgba(255,255,255,0.5); text-transform: uppercase; margin-top: 24px;
}
 
/* ── FOOTER ──────────────────────────────────────────── */
footer {
  background: #050505; border-top: 1px solid #111; padding: 72px 80px 40px;
  position: relative; overflow: hidden;
}
footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg,transparent,var(--gold),transparent);
}
.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px;
  margin-bottom: 56px; max-width: 1200px; margin-left: auto; margin-right: auto;
}
.footer-brand-name {
  font-family: var(--font-display); font-size: 28px; font-weight: 400;
  color: var(--white); letter-spacing: 0.05em; margin-bottom: 4px;
  background: linear-gradient(90deg,#c9a84c 0%,#f0d878 40%,#c9a84c 100%);
  background-size: 200% auto; -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
  animation: shimmer 5s linear infinite;
}
.footer-brand-sub {
  font-family: var(--font-ui); font-size: 11px; font-weight: 300;
  letter-spacing: 0.25em; color: var(--gold); text-transform: uppercase; margin-bottom: 20px;
}
.footer-brand p {
  font-family: var(--font-body); font-size: 17px; font-weight: 400;
  color: rgba(255,255,255,0.65); line-height: 1.8; font-style: italic;
}
.footer-col h4 {
  font-family: var(--font-ui); font-size: 11px; font-weight: 500;
  letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1px solid #1a1a1a;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a, .footer-col ul li {
  font-family: var(--font-body); font-size: 17px; font-weight: 400;
  color: rgba(255,255,255,0.65); text-decoration: none; transition: color 0.2s; font-style: italic;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1200px; margin: 0 auto; padding-top: 28px; border-top: 1px solid #111;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p {
  font-family: var(--font-ui); font-size: 13px; font-weight: 400;
  letter-spacing: 0.12em; color: rgba(255,255,255,0.5); text-transform: uppercase;
}
 
/* ── REVEAL ──────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }
 
/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; }
  .hero-right { height: 440px; }
  .about, .identity { grid-template-columns: 1fr; }
  .about-left { height: 380px; }
  .identity-photo { height: 320px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .photo-trio { grid-template-columns: 1fr 1fr; height: auto; }
  .photo-trio-item { height: 260px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  nav { padding: 0 32px; }
  .services, .reviews, .cta { padding: 80px 40px; }
  .about-right { padding: 60px 40px; }
  .identity-content { padding: 60px 40px; }
}
@media (max-width: 700px) {
  .hero-left { padding: 52px 28px; }
  .hero-box { padding: 36px 28px; }
  .services-grid, .reviews-grid, .photo-trio { grid-template-columns: 1fr; }
  .photo-trio-item { height: 220px; }
  .services, .reviews, .cta { padding: 60px 24px; }
  .about-right { padding: 48px 24px; }
  .identity-content { padding: 48px 24px; }
  footer { padding: 56px 24px 32px; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}/* End custom CSS */