/* 
================================================================================
  ROSE'S CLEANING & JANITORIAL - ELEVATED BOTANICAL DESIGN SYSTEM
  Created for: Rose's Cleaning and Janitorial
  Author: AI Coding Partner & Dixie Tech Software Student
  
  Student Learning Note:
  - This updated stylesheet shifts our brand away from pink-dominance to a 
    soothing, airy, botanical nature theme (luxury Airbnb / high-end boutique spa).
  - We use standard CSS custom properties to redefine the color scheme instantly.
  - We define standard ".reveal-item" states. JavaScript will monitor when these
    elements enter the viewport and append ".reveal-active" to trigger smooth transitions.
  - We use keyframe animations for floating rose petals/leaves and sliding typography overlays.
================================================================================
*/

/* 1. IMPORTS & FONTS */
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Great+Vibes&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap");

/* 2. BOTANICAL DESIGN SYSTEM CONSTANTS */
:root {
  /* Color Palette — Blush Rose & Sage */
  --color-sage-primary: #6b9080;
  /* Mid sage green */
  --color-sage-dark: #6b9080;
  /* Sage for headings & contrast */
  --color-sage-light: #cce3de;
  /* Soft mint/sage for card backgrounds */

  /* Rose family (aliased blue vars for backward compatibility) */
  --color-blue-primary: #f2a1b0;
  --color-blue-dark: #e198ab;
  --color-blue-light: #fedcd9;
  --color-blue-slate: #e198ab;

  --color-cream-bg: #fff0e9;
  /* Lightest blush peach — page background */
  --color-white: #ffffff;

  /* Rose Palette */
  --color-blush-nude: #fedcd9;
  /* Light blush pink */
  --color-rose-accent: #f2a1b0;
  /* Main rose accent */
  --color-rose-dark: #e198ab;
  /* Deeper rose for hover/contrast */
  --color-rose-light: #fedcd9;
  /* Pale rose for soft backgrounds */
  --color-rose-wine: #3d5a4e;
  /* Deep sage for top bar, footer */
  --color-rose-mid: #f7b2ce;
  /* Soft mid-tone rose */

  /* Extra palette tokens */
  --color-mint-pale: #f6fff8;
  /* Near-white with green hint */
  --color-sage-med: #a4c3b2;
  /* Medium sage */

  /* Typography Colors */
  --color-text-main: #2f3430;
  --color-text-muted: #5e6660;

  /* Fonts */
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  --font-cursive: "Great Vibes", cursive;

  /* Shadows — rose-warm tones */
  --shadow-subtle: 0 4px 30px rgba(225, 152, 171, 0.06);
  --shadow-soft: 0 16px 40px rgba(225, 152, 171, 0.12);
  --shadow-hover: 0 24px 60px rgba(225, 152, 171, 0.22);

  /* Border Radii */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  /* More rounded corners for organic feel */
  --radius-full: 9999px;

  /* Transitions - Using custom cubic-bezier for a lazy, luxurious drift */
  --transition-lazy: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.25s ease;
}

/* 3. RESET & BASE LAYOUT */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background:
    radial-gradient(ellipse at 18% 22%, rgba(247, 178, 206, 0.55) 0%, transparent 46%),
    radial-gradient(ellipse at 82% 68%, rgba(242, 161, 176, 0.45) 0%, transparent 46%),
    radial-gradient(ellipse at 60% 8%,  rgba(255, 210, 225, 0.42) 0%, transparent 36%),
    linear-gradient(125deg,
      #fff0e9  0%,
      #fde4ec 16%,
      #f7b2ce 32%,
      #fde8eb 50%,
      #fedcd9 66%,
      #f9c5d1 82%,
      #fff0e9 100%
    );
  background-size: 300% 300%;
  background-attachment: fixed;
  animation: ribbon-flow 22s ease-in-out infinite;
  color: var(--color-text-main);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

@keyframes ribbon-flow {
  0%   { background-position: 0%   50%; }
  25%  { background-position: 75%  20%; }
  50%  { background-position: 100% 65%; }
  75%  { background-position: 30% 100%; }
  100% { background-position: 0%   50%; }
}

/* Disable fixed attachment on mobile — iOS Safari perf */
@media (max-width: 768px) {
  body {
    background-attachment: scroll;
    background-size: 400% 400%;
  }
}

/* Vine decorations removed — using animated ribbon gradient as background */
.vine-left,
.vine-right {
  display: none;
}

/* Rose pattern texture removed — ribbon gradient provides all background depth */
body::before {
  display: none;
}

/* Drifting glow orbs layered behind all content */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 15%, rgba(255, 210, 225, 0.55) 0%, transparent 40%),
    radial-gradient(ellipse at 12% 80%, rgba(247, 178, 206, 0.5)  0%, transparent 42%),
    radial-gradient(ellipse at 88% 55%, rgba(242, 161, 176, 0.35) 0%, transparent 38%);
  pointer-events: none;
  z-index: -1;
  animation: orb-drift 28s ease-in-out infinite alternate;
}

@keyframes orb-drift {
  0%   { opacity: 0.6; transform: scale(1)    translate(0,   0);   }
  33%  { opacity: 0.9; transform: scale(1.05) translate(2%,  -2%); }
  66%  { opacity: 0.7; transform: scale(0.97) translate(-1%, 3%);  }
  100% { opacity: 1;   transform: scale(1.08) translate(1%,  1%);  }
}


/* FULL-WIDTH VIDEO BANNER — autoplaying ambient cleaning video */
.video-banner {
  width: 100%;
  height: 420px;
  overflow: hidden;
  position: relative;
  background: #1c1010;
}

.video-banner video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(107, 144, 128, 0.3));
  pointer-events: none;
}

@media (max-width: 580px) {
  .video-banner { height: 260px; }
}

/* WORK SHOWCASE — full-bleed luxury photo grid */
.work-showcase {
  background: var(--color-cream-bg);
  padding: 0;
  position: relative;
}

.work-showcase-header {
  padding: clamp(60px, 8vw, 100px) 30px 40px;
  text-align: center;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.work-showcase-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.75fr;
  grid-template-rows: 560px;
  gap: 4px;
  width: 100%;
}

.work-feature,
.work-stack,
.work-tall {
  position: relative;
  overflow: hidden;
}

.work-feature {
  grid-row: span 1;
}

.work-stack {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 4px;
}

.work-small {
  position: relative;
  overflow: hidden;
}

.work-tall {
  grid-row: span 1;
}

.work-feature img,
.work-small img,
.work-tall img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}

.work-feature:hover img,
.work-small:hover img,
.work-tall:hover img {
  transform: scale(1.04);
}

.work-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 20px 18px;
  background: linear-gradient(transparent, rgba(61, 90, 78, 0.5));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.work-feature:hover .work-overlay,
.work-small:hover .work-overlay,
.work-tall:hover .work-overlay {
  opacity: 1;
}

.work-overlay span {
  color: rgba(255, 255, 255, 0.95);
  font-family: var(--font-serif);
  font-size: 1.05rem;
  letter-spacing: 1.5px;
}

@media (max-width: 991px) {
  .work-showcase-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 300px 300px;
  }

  .work-feature {
    grid-column: span 2;
  }

  .work-stack {
    grid-template-rows: 1fr;
    grid-template-columns: 1fr 1fr;
  }

  .work-tall {
    display: none;
  }
}

@media (max-width: 580px) {
  .work-showcase-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 260px);
  }

  .work-feature {
    grid-column: span 1;
  }

  .work-stack {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
  }
}

/* 4. SCROLL REVEAL STYLES (MOTION SYSTEM) */
.reveal-item {
  opacity: 0;
  transform: translateY(35px);
  filter: blur(4px);
  transition:
    opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.2s cubic-bezier(0.16, 1, 0.3, 1),
    filter 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity, filter;
}

/* Reveal directional variants */
.reveal-left {
  transform: translateX(-35px) translateY(0);
}

.reveal-right {
  transform: translateX(35px) translateY(0);
}

.reveal-scale {
  transform: scale(0.95) translateY(15px);
}

/* Class triggered by JS Intersection Observer */
.reveal-active {
  opacity: 1;
  transform: translate(0) scale(1);
  filter: blur(0);
}

/* Delayed reveals for sibling cards */
.delay-1 {
  transition-delay: 0.15s;
}

.delay-2 {
  transition-delay: 0.3s;
}

.delay-3 {
  transition-delay: 0.45s;
}

/* 5. TYPOGRAPHY SYSTEM */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--color-sage-dark);
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  font-weight: 300;
}

h2 {
  font-size: clamp(2.2rem, 3.8vw, 3rem);
  font-weight: 400;
  text-align: center;
  position: relative;
  margin-bottom: 2.5rem;
}

h2::after {
  display: none;
}

h3 {
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  margin-bottom: 0.8rem;
}

p {
  font-size: 1rem;
  color: var(--color-text-muted);
}

/* Script Accent Style — Great Vibes cursive for all pink eyebrow labels */
.script-accent {
  font-family: var(--font-cursive);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--color-rose-accent);
  margin-bottom: 0.6rem;
  display: block;
  font-weight: 400;
  line-height: 1.2;
}

/* Spacing Utilities */
section {
  padding: clamp(100px, 12vw, 140px) 0;
}

/* Thin divider between consecutive sections for clean visual separation */
section + section {
  border-top: 1px solid rgba(107, 144, 128, 0.1);
}

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

/* 6. BUTTONS & UI ACTIONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 32px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.8px;
  border-radius: var(--radius-full);
  transition: var(--transition-smooth);
  cursor: pointer;
  border: none;
  text-transform: uppercase;
}

.btn-primary {
  background: linear-gradient(120deg,
    var(--color-rose-accent) 0%,
    var(--color-rose-mid) 45%,
    var(--color-rose-dark) 100%);
  background-size: 220% 100%;
  background-position: 0% 0%;
  color: var(--color-white);
  box-shadow: 0 4px 18px rgba(242, 161, 176, 0.3);
  animation: btn-silk 5s ease-in-out infinite;
}

.btn-primary:hover {
  background-position: 100% 0%;
  animation: none;
  transform: translateY(-2px);
  box-shadow: 0 10px 35px rgba(242, 161, 176, 0.5), 0 0 22px rgba(247, 178, 206, 0.28);
}

@keyframes btn-silk {
  0%, 100% { background-position: 0%   0%; }
  50%       { background-position: 100% 0%; }
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-sage-dark);
  border: 1px solid rgba(107, 144, 128, 0.3);
  margin-left: 10px;
}

.btn-secondary:hover {
  background-color: var(--color-sage-light);
  border-color: var(--color-sage-primary);
  transform: translateY(-2px);
}

.btn-blue {
  background-color: var(--color-blue-primary);
  color: var(--color-white);
}

.btn-blue:hover {
  background-color: var(--color-blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(126, 160, 166, 0.25);
}

/* 7. NAVIGATION & HEADER */
.top-bar {
  background-color: var(--color-rose-wine);
  color: rgba(255, 255, 255, 0.85);
  padding: 10px 0;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.5px;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-info span {
  margin-right: 25px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.top-bar-info a {
  color: var(--color-white);
  font-weight: 600;
}

.top-bar-badge {
  background-color: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 3px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 500;
}

header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(250, 248, 245, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(107, 144, 128, 0.08);
  padding: 22px 0;
  transition: var(--transition-smooth);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-family: var(--font-cursive);
  font-size: 2.2rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: var(--color-sage-dark);
  line-height: 1;
}

.logo-sub {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-rose-accent);
  font-weight: 600;
  margin-top: -3px;
}

nav ul {
  display: flex;
  gap: 35px;
}

nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-main);
  position: relative;
  padding: 6px 0;
  letter-spacing: 0.5px;
}

nav a:hover {
  color: var(--color-rose-accent);
}

/* Hamburger for mobile screens */
.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  flex-direction: column;
  justify-content: space-between;
  width: 22px;
  height: 15px;
  z-index: 150;
}

.hamburger span {
  display: block;
  height: 1px;
  width: 100%;
  background-color: var(--color-sage-dark);
  transition: var(--transition-fast);
}

/* Mobile Drawer */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background-color: var(--color-cream-bg);
  box-shadow: -10px 0 40px rgba(88, 105, 89, 0.05);
  z-index: 140;
  padding: 110px 40px 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  transition: var(--transition-smooth);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.mobile-menu a {
  font-size: 1.3rem;
  font-weight: 400;
  font-family: var(--font-serif);
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(47, 52, 48, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 130;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* 8. BOTANICAL FLOATING GRAPHICS */
.floating-petal-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.floating-leaf {
  position: absolute;
  pointer-events: none;
  opacity: 0.15;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

/* Animation keyframes for floating organic items */
@keyframes sway-slow {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-15px) rotate(8deg);
  }
}

.leaf-sway {
  animation: sway-slow 10s ease-in-out infinite;
}

/* 9. HERO SECTION (IMMERSIVE & MOVEMENT) */
.hero {
  position: relative;
  padding: clamp(100px, 14vw, 180px) 0;
  background: transparent;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* hero::before — watermark removed for clean look */
.hero::before {
  display: none;
}

/* Slow animated sunbeam overlay */
.hero-sunbeam {
  position: absolute;
  top: -20%;
  left: -20%;
  width: 150%;
  height: 150%;
  background: radial-gradient(circle at 80% 20%,
      rgba(255, 255, 255, 0.3) 0%,
      transparent 50%);
  pointer-events: none;
  animation: pulse-beam 15s ease-in-out infinite alternate;
  z-index: 1;
}

@keyframes pulse-beam {
  0% {
    transform: scale(1) rotate(0deg);
    opacity: 0.5;
  }

  100% {
    transform: scale(1.1) rotate(5deg);
    opacity: 0.9;
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 5;
}

.hero-content {
  max-width: 680px;
}

/* Animated Title reveal overlay */
.hero h1 {
  margin-bottom: 2rem;
  overflow: hidden;
}

.hero h1 span.reveal-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
  animation: word-reveal 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero h1 span.word-1 {
  animation-delay: 0.1s;
}

.hero h1 span.word-2 {
  animation-delay: 0.25s;
}

.hero h1 span.word-3 {
  animation-delay: 0.4s;
}

@keyframes word-reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h1 span.highlight {
  color: var(--color-rose-accent);
  font-family: var(--font-cursive);
  font-size: 1.15em;
}

.hero-description {
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 3rem;
  color: var(--color-text-muted);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
  margin-bottom: 3.5rem;
}

.hero-trust-row {
  display: flex;
  gap: 40px;
  border-top: 1px solid rgba(107, 144, 128, 0.15);
  padding-top: 2rem;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--color-text-main);
  font-weight: 500;
}

.hero-trust-item svg {
  color: var(--color-rose-accent);
}

/* Hero Parallax Image Wrapper */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-img-wrapper {
  position: relative;
  width: 100%;
  max-width: 410px;
  height: 520px;
  border-radius: 200px 200px 100px 100px;
  /* Highly organic oval shape */
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.4);
  background-color: var(--color-white);
}

/* Simulated elegant architectural rendering */
.hero-img-interactive-back {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
      var(--color-sage-light) 0%,
      var(--color-blush-nude) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
}

/* Slow-moving ambient light ripple inside hero card */
.hero-img-light-ripple {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle,
      rgba(255, 255, 255, 0.4) 0%,
      transparent 70%);
  pointer-events: none;
  animation: ambient-drift 12s linear infinite;
}

@keyframes ambient-drift {
  0% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(15%, 15%);
  }

  100% {
    transform: translate(0, 0);
  }
}

.hero-visual-logo {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.floating-badge {
  position: absolute;
  bottom: 40px;
  left: -30px;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 18px 26px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  gap: 14px;
  border-left: 3px solid var(--color-rose-accent);
  z-index: 20;
  transition: transform 0.3s ease;
}

.floating-badge:hover {
  transform: translateY(-5px);
}

.floating-badge-text h4 {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text-main);
}

.floating-badge-text p {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

/* 10. ABOUT & INTRO */
.about {
  background-color: var(--color-white);
  position: relative;
  overflow: hidden;
}

/* about::after — watermark removed for clean look */
.about::after {
  display: none;
}

/* ABOUT BAND — compact centered mission strip between hero and services */
.about-band {
  background: var(--color-white);
  padding: clamp(70px, 8vw, 100px) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-band-inner {
  max-width: 720px;
  margin: 0 auto;
}

.about-band-inner h2 {
  margin-bottom: 1.5rem;
}

.about-band-inner .script-accent {
  text-align: center;
}

.about-band-text {
  font-size: 1.08rem;
  line-height: 1.9;
  color: var(--color-text-muted);
  margin-bottom: 2.5rem;
}

.about-band-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.about-band-tags span {
  padding: 9px 20px;
  border-radius: var(--radius-full);
  background: var(--color-sage-light);
  color: var(--color-sage-dark);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: var(--transition-fast);
}

.about-band-tags span:hover {
  background: var(--color-sage-med);
  color: var(--color-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 70px;
  align-items: center;
}

.about-graphics {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  position: relative;
}

/* Stacked two-image layout for about section */
.about-img-stack {
  display: grid;
  grid-template-rows: 1.2fr 0.8fr;
  gap: 14px;
  height: 460px;
}

.about-img-stack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  display: block;
}

.about-img-stack img:first-child {
  object-position: center 30%;
}

/* Framed spa aesthetics layout */
.about-frame-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(107, 144, 128, 0.1);
  background-color: var(--color-cream-bg);
}

.about-frame-content {
  height: 420px;
  background: linear-gradient(135deg,
      var(--color-blush-nude) 0%,
      rgba(242, 245, 242, 0.15) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 50px;
  position: relative;
}

.about-frame-quote {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--color-sage-dark);
  line-height: 1.4;
  margin-bottom: 2rem;
}

.about-frame-signature {
  font-family: var(--font-cursive);
  font-size: 1.6rem;
  color: var(--color-rose-accent);
}

.about-content {
  display: flex;
  flex-direction: column;
}

.about-title {
  text-align: left;
  margin-bottom: 2.5rem;
}

.about-title::after {
  left: 0;
  transform: none;
  letter-spacing: 6px;
}

.about-text {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.about-features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-top: 1.5rem;
  margin-bottom: 2.5rem;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.about-feature-icon {
  width: 28px;
  height: 28px;
  background-color: var(--color-sage-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-sage-primary);
  flex-shrink: 0;
}

.about-feature h4 {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--color-text-main);
  font-weight: 600;
}

.about-feature p {
  font-size: 0.8rem;
  margin-top: 2px;
}

.owners-note {
  background-color: var(--color-rose-light);
  border-left: 2px solid var(--color-rose-accent);
  padding: 24px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.owners-note-title {
  font-family: var(--font-cursive);
  font-size: 1.7rem;
  color: var(--color-rose-accent);
  margin-bottom: 8px;
}

/* 11. SERVICES CARDS (SPA GLASS DESIGN) */
.services {
  background: linear-gradient(125deg,
    rgba(255, 240, 233, 0.92) 0%,
    rgba(247, 178, 206, 0.32) 24%,
    rgba(255, 240, 233, 0.88) 50%,
    rgba(254, 220, 217, 0.42) 76%,
    rgba(255, 240, 233, 0.92) 100%
  );
  background-size: 300% 300%;
  animation: ribbon-flow 22s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}

/* services::before — watermark removed for clean look */
.services::before {
  display: none;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 50px 35px;
  box-shadow: var(--shadow-subtle);
  border: 1px solid rgba(242, 161, 176, 0.12);
  border-top: 2px solid transparent;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

/* Soft botanical watermark behind cards */
.service-card::after {
  content: "";
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 140px;
  height: 140px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' opacity='0.02'%3E%3Cpath fill='%23586959' d='M50,10 C55,25 65,25 75,25 C85,25 90,40 80,50 C70,60 70,70 50,80 C30,70 30,60 20,50 C10,40 15,25 25,25 C35,25 45,25 50,10 Z'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
  transition: var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(242, 161, 176, 0.3);
  border-top-color: var(--color-rose-accent);
}

.service-card:hover::after {
  transform: scale(1.15) rotate(-10deg);
}

.service-card-icon {
  display: none;
}

.service-card h3 {
  color: var(--color-sage-dark);
  font-weight: 500;
  margin-bottom: 12px;
}

.service-price {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--color-sage-dark);
  font-weight: 600;
  margin-bottom: 24px;
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.service-price span {
  font-size: 0.8rem;
  font-family: var(--font-sans);
  color: var(--color-text-muted);
  font-weight: 400;
}

.service-checklist {
  margin-bottom: 35px;
  flex-grow: 1;
}

.service-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 10px;
  line-height: 1.5;
}

.service-checklist li svg {
  display: block;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--color-rose-accent);
  stroke: var(--color-rose-accent);
}

.service-checklist li::before {
  display: none;
}

.service-card .btn {
  width: 100%;
}

/* 12. INTERACTIVE ESTIMATE CALCULATOR */
.pricing-calculator {
  background-color: var(--color-white);
  position: relative;
}

.calculator-card {
  background-color: var(--color-blush-nude);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  max-width: 950px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  border: 1px solid rgba(242, 161, 176, 0.12);
}

.calculator-form-side {
  padding: 50px;
  background-color: var(--color-white);
}

.calculator-form-side h3 {
  margin-bottom: 2rem;
  font-weight: 500;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--color-text-main);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-group select,
.form-group input[type="number"],
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid rgba(107, 144, 128, 0.22);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--color-text-main);
  background-color: var(--color-white);
  transition: var(--transition-fast);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='10' viewBox='0 0 14 10'%3E%3Cpath d='M1 1l6 7 6-7' fill='none' stroke='%23f2a1b0' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}

.form-group select:focus,
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--color-rose-accent);
  background-color: var(--color-white);
  box-shadow: 0 0 0 4px rgba(242, 161, 176, 0.12);
}

/* Range input styling overrides */
.slider-container {
  display: flex;
  align-items: center;
  gap: 20px;
}

.slider-val-display {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-sage-dark);
  width: 120px;
  min-width: 120px;
  text-align: right;
  white-space: nowrap;
}

input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 5px;
  background: rgba(107, 144, 128, 0.2);
  outline: none;
  padding: 0 !important;
  border: none !important;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-rose-accent);
  cursor: pointer;
  transition: var(--transition-fast);
}

input[type="range"]::-webkit-slider-thumb:hover {
  background: var(--color-rose-dark);
  transform: scale(1.15);
}

.calculator-results-side {
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: linear-gradient(135deg,
      var(--color-blush-nude) 0%,
      var(--color-rose-light) 100%);
  border-left: 1px solid rgba(242, 161, 176, 0.15);
}

.results-heading {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-text-muted);
  margin-bottom: 12px;
}

.price-output {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 500;
  color: var(--color-sage-dark);
  line-height: 1.1;
  margin-bottom: 10px;
}

.calculator-disclaimer {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  max-width: 260px;
  margin-top: 15px;
  margin-bottom: 30px;
  line-height: 1.5;
}

/* 13. TRUST BUILDERS (SPA ROW) */
.trust-builders {
  padding: 90px 0;
  background: var(--color-blush-nude);
  position: relative;
  overflow: hidden;
}

/* trust-builders::before — watermark removed for clean look */
.trust-builders::before {
  display: none;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  text-align: center;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.trust-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: var(--color-white);
  color: var(--color-rose-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  box-shadow: 0 4px 20px rgba(242, 161, 176, 0.2);
  transition: var(--transition-smooth);
  border: 1px solid rgba(242, 161, 176, 0.15);
}

.trust-item:hover .trust-icon {
  transform: scale(1.06);
  color: var(--color-rose-dark);
  box-shadow: 0 8px 30px rgba(242, 161, 176, 0.3);
}

.trust-item h3 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--color-sage-dark);
}

.trust-item p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  max-width: 220px;
  line-height: 1.6;
}

/* 14. BEFORE/AFTER IMAGE GALLERY */
.gallery {
  background-color: var(--color-sage-light);
}

.gallery-intro {
  max-width: 650px;
  margin: 0 auto 60px;
  text-align: center;
}

/* Before/After Slideshow */
.ba-slideshow {
  max-width: 860px;
  margin: 0 auto 50px;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(107, 144, 128, 0.12);
}

.ba-slide {
  display: none;
  grid-template-columns: 1fr 1fr;
}

.ba-slide.active {
  display: grid;
}

.ba-panel {
  position: relative;
  height: 420px;
  overflow: hidden;
}

.ba-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.ba-panel:hover img {
  transform: scale(1.03);
}

.ba-before::after,
.ba-after::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 60%, rgba(47, 52, 48, 0.25));
  pointer-events: none;
}

.ba-after::after {
  background: linear-gradient(transparent 60%, rgba(107, 144, 128, 0.25));
}

.ba-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  z-index: 10;
  background: rgba(47, 52, 48, 0.78);
  color: white;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.ba-label-after {
  left: auto;
  right: 16px;
  background: rgba(242, 161, 176, 0.88);
}

.ba-divider {
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
  z-index: 5;
  transform: translateX(-50%);
  pointer-events: none;
}

.ba-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 20;
}

.ba-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.85);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.ba-dot.active {
  background: white;
  transform: scale(1.25);
}

@media (max-width: 580px) {
  .ba-slide {
    grid-template-columns: 1fr;
  }

  .ba-panel {
    height: 260px;
  }

  .ba-divider {
    display: none;
  }
}

/* Legacy label — kept for transform pairs */
.gallery-label {
  display: none;
}

.label-before {
  left: 24px;
}

.label-after {
  right: 24px;
  background-color: rgba(242, 161, 176, 0.9);
  color: var(--color-white);
}

/* Legacy slider image rules (no longer used) */
.after-image img,
.before-image img {
  display: none;
}

/* Transformation pairs below slider */
.transform-pairs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 850px;
  margin: 40px auto 0;
}

.transform-pair {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
  align-items: center;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-subtle);
  border: 1px solid rgba(242, 161, 176, 0.12);
}

.transform-img-wrap {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.transform-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.transform-label {
  position: absolute;
  bottom: 8px;
  left: 8px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  background: rgba(47, 52, 48, 0.75);
  color: var(--color-white);
  backdrop-filter: blur(4px);
}

.transform-label.after {
  background: rgba(242, 161, 176, 0.9);
}

.transform-arrow {
  color: var(--color-rose-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Luxury showcase grid */
.luxury-gallery {
  margin-top: 60px;
}

.gallery-sub-label {
  font-family: var(--font-cursive);
  font-size: 1.8rem;
  color: var(--color-rose-accent);
  text-align: center;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.luxury-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 850px;
  margin: 0 auto;
}

.luxury-img-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  box-shadow: var(--shadow-soft);
}

.luxury-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.luxury-img-wrap:hover img {
  transform: scale(1.04);
}

@media (max-width: 768px) {
  .transform-pairs {
    grid-template-columns: 1fr;
  }

  .luxury-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 15. TESTIMONIALS (SPA REVIEW BLOCK) */
.testimonials {
  background: linear-gradient(125deg,
    rgba(255, 240, 233, 0.88) 0%,
    rgba(242, 161, 176, 0.28) 24%,
    rgba(255, 240, 233, 0.85) 50%,
    rgba(247, 178, 206, 0.36) 76%,
    rgba(255, 240, 233, 0.88) 100%
  );
  background-size: 300% 300%;
  animation: ribbon-flow 22s ease-in-out 4s infinite;
  position: relative;
  overflow: hidden;
}

/* testimonials::before — watermark removed for clean look */
.testimonials::before {
  display: none;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 50px;
  box-shadow: var(--shadow-subtle);
  border: 1px solid rgba(242, 161, 176, 0.15);
  border-top: 3px solid var(--color-rose-accent);
  position: relative;
  display: flex;
  flex-direction: column;
}

.stars {
  display: flex;
  gap: 4px;
  margin-bottom: 24px;
  color: #dfb273;
  /* Muted gold stars */
}

.testimonial-text {
  font-family: var(--font-sans);
  font-size: 0.98rem;
  line-height: 1.8;
  color: var(--color-text-main);
  margin-bottom: 30px;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 18px;
  border-top: 1px solid rgba(107, 144, 128, 0.15);
  padding-top: 24px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--color-rose-light);
  color: var(--color-rose-accent);
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.author-info h4 {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-sage-dark);
}

.author-info p {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

/* 16. CONTACT & QUOTE REGISTRATION */
.contact {
  background: linear-gradient(125deg,
    rgba(254, 220, 217, 0.95) 0%,
    rgba(242, 161, 176, 0.38) 24%,
    rgba(254, 220, 217, 0.92) 50%,
    rgba(247, 178, 206, 0.45) 76%,
    rgba(254, 220, 217, 0.95) 100%
  );
  background-size: 300% 300%;
  animation: ribbon-flow 22s ease-in-out 8s infinite;
  position: relative;
  overflow: hidden;
}

/* contact::after — watermark removed for clean look */
.contact::after {
  display: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: start;
}

.contact-info-side {
  padding-right: 20px;
}

.contact-info-side h2 {
  text-align: left;
  margin-bottom: 2.5rem;
}

.contact-intro-text {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 3rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 35px;
  margin-bottom: 3rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact-item-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--color-blue-light);
  color: var(--color-blue-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item-text p {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  color: var(--color-rose-accent);
  margin-bottom: 2px;
}

.contact-item-text a,
.contact-item-text h4 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--color-sage-dark);
  font-weight: 500;
}

.contact-item-text a:hover {
  color: var(--color-sage-primary);
}

.badges-row {
  display: flex;
  gap: 15px;
  align-items: center;
}

.badge-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background-color: var(--color-blue-light);
  color: var(--color-blue-dark);
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
}

.contact-form-side {
  background-color: var(--color-rose-light);
  border-radius: var(--radius-lg);
  padding: 55px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(242, 161, 176, 0.15);
}

.form-email-fallback {
  text-align: center;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: 14px;
  margin-bottom: 0;
}

.form-email-fallback a {
  color: var(--color-rose-accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-email-fallback a:hover {
  color: var(--color-rose-dark);
}

.contact-form-side h3 {
  margin-bottom: 1.2rem;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 500;
}

.contact-action-btns {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
}

.contact-action-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  padding: 17px 28px;
  border-radius: var(--radius-full);
  text-align: center;
}

/* Call — sage green primary */
.contact-action-btn.btn-primary {
  background: linear-gradient(120deg, var(--color-sage-primary) 0%, var(--color-sage-med) 50%, var(--color-sage-primary) 100%);
  background-size: 220% 100%;
  animation: btn-silk 5s ease-in-out infinite;
  box-shadow: 0 6px 22px rgba(107, 144, 128, 0.35);
  color: var(--color-white);
}

.contact-action-btn.btn-primary:hover {
  background-position: 100% 0%;
  animation: none;
  box-shadow: 0 10px 32px rgba(107, 144, 128, 0.5);
  transform: translateY(-2px);
}

/* Text + Email — sage outlined */
.contact-action-btn.btn-secondary {
  background: rgba(164, 195, 178, 0.15);
  border: 1.5px solid var(--color-sage-primary);
  color: var(--color-sage-dark);
}

.contact-action-btn.btn-secondary:hover {
  background: var(--color-sage-light);
  border-color: var(--color-sage-dark);
  transform: translateY(-2px);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* 17. FOOTER */
footer {
  background: linear-gradient(135deg, var(--color-rose-wine) 0%, #1e3329 100%);
  color: rgba(255, 255, 255, 0.85);
  padding: 90px 0 35px;
  position: relative;
  overflow: hidden;
}

/* footer::before — watermark removed for clean look */
footer::before {
  display: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand .logo-main {
  color: var(--color-white);
}

.footer-brand .logo-sub {
  color: rgba(249, 213, 215, 0.85);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-top: 1.5rem;
  line-height: 1.8;
  max-width: 320px;
}

.footer-links h4,
.footer-contact h4 {
  color: var(--color-white);
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin-bottom: 1.8rem;
  position: relative;
  padding-bottom: 10px;
}

.footer-links h4::after,
.footer-contact h4::after {
  display: none;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--color-white);
  padding-left: 6px;
}

.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}

.footer-contact svg {
  color: rgba(255, 255, 255, 0.6);
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 35px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

/* 18. SUCCESS MODAL FEEDBACK */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(47, 52, 48, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.modal.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background-color: var(--color-white);
  padding: 50px 40px;
  border-radius: var(--radius-lg);
  max-width: 480px;
  width: 90%;
  text-align: center;
  box-shadow: var(--shadow-hover);
  border: 1px solid rgba(107, 144, 128, 0.15);
  transform: scale(0.9);
  transition: var(--transition-smooth);
}

.modal.active .modal-content {
  transform: scale(1);
}

.modal-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--color-rose-light);
  color: var(--color-rose-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.modal h3 {
  font-size: 1.8rem;
  margin-bottom: 12px;
  color: var(--color-sage-dark);
}

.modal p {
  margin-bottom: 30px;
  font-size: 0.95rem;
}

/* 19. RESPONSIVE QUERY BREAKPOINTS */
@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 50px;
  }

  .hero-content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-trust-row {
    justify-content: center;
    width: 100%;
  }

  .hero-visual {
    order: -1;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-graphics {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
  }

  .calculator-card {
    grid-template-columns: 1fr;
  }

  .calculator-results-side {
    padding: 50px 40px;
    border-left: none;
    border-top: 1px solid rgba(242, 161, 176, 0.15);
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }

  nav ul,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  /* Tighten section padding site-wide on mobile */
  section {
    padding: 60px 0;
  }

  .container {
    padding: 0 20px;
  }

  /* Hero */
  .hero {
    padding: 60px 0 50px;
  }

  .hero-img-wrapper {
    height: 340px;
    border-radius: 120px 120px 60px 60px;
    max-width: 280px;
    margin: 0 auto;
  }

  .hero-trust-row {
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
  }

  .hero-trust-item {
    font-size: 0.8rem;
  }

  /* Work showcase */
  .work-showcase-header {
    padding: 40px 20px 24px;
  }

  /* About band */
  .about-band {
    padding: 50px 0;
  }

  .about-band-tags {
    gap: 8px;
  }

  .about-band-tags span {
    font-size: 0.75rem;
    padding: 7px 14px;
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-card {
    padding: 36px 28px;
  }

  /* Calculator */
  .calculator-form-side {
    padding: 36px 28px;
  }

  .calculator-results-side {
    padding: 36px 28px;
  }

  /* Trust builders */
  .trust-grid {
    gap: 28px;
  }

  .trust-icon {
    width: 56px;
    height: 56px;
  }

  /* Gallery slideshow */
  .ba-panel {
    height: 280px;
  }

  /* Testimonials */
  .testimonials-grid {
    gap: 20px;
  }

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

  /* Contact */
  .contact-info-side h2 {
    text-align: center;
  }

  .contact-info-side {
    text-align: center;
    padding-right: 0;
  }

  .contact-methods {
    align-items: center;
  }

  .contact-item {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .badges-row {
    justify-content: center;
  }

  .contact-form-side {
    padding: 36px 24px;
  }

  .contact-action-btns {
    max-width: 100%;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-brand {
    grid-column: span 1;
  }
}

@media (max-width: 580px) {
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .hero-cta .btn {
    width: 100%;
    margin-left: 0 !important;
  }

  .hero-cta {
    gap: 10px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  /* Make h2 always centered on small phones */
  h2 {
    font-size: clamp(1.7rem, 7vw, 2.2rem);
  }

  /* Service cards single column with less padding */
  .service-card {
    padding: 30px 22px;
  }

  /* Tighter trust grid */
  .trust-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .trust-item p {
    font-size: 0.78rem;
  }

  /* Gallery pairs stack */
  .transform-pairs {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: span 1;
  }
}

/* 20. SILKY PINK GLOW EFFECTS */

@keyframes pearl-pulse {
  0%   { opacity: 0.4; transform: scale(1); }
  100% { opacity: 0.85; transform: scale(1.06); }
}

@keyframes section-sheen {
  0%   { transform: translateX(-120%); }
  55%  { transform: translateX(320%); }
  100% { transform: translateX(320%); }
}

/* Trust builders section — drifting silk highlight */
.trust-builders::after {
  content: '';
  position: absolute;
  top: -100%;
  left: -20%;
  width: 55%;
  height: 300%;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.14) 50%, transparent 70%);
  animation: section-sheen 9s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.trust-grid {
  position: relative;
  z-index: 1;
}

/* Trust icons — rosy glow on hover */
.trust-icon {
  transition: var(--transition-smooth);
}
.trust-item:hover .trust-icon {
  box-shadow: 0 8px 30px rgba(242, 161, 176, 0.35), 0 0 18px rgba(247, 178, 206, 0.25);
}

/* Contact form card — pearl shimmer highlight + hover glow */
.contact-form-side {
  overflow: hidden;
}

.contact-form-side::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -25%;
  width: 65%;
  height: 180%;
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.22) 0%, transparent 68%);
  pointer-events: none;
  animation: pearl-pulse 5s ease-in-out infinite alternate;
  z-index: 0;
}

.contact-form-side > * {
  position: relative;
  z-index: 1;
}

.contact-form-side:hover {
  box-shadow: 0 24px 60px rgba(242, 161, 176, 0.28), 0 0 40px rgba(247, 178, 206, 0.15);
  transition: box-shadow 0.7s ease;
}

/* Calculator results side — inner pearl glow */
.calculator-results-side {
  position: relative;
  overflow: hidden;
}

.calculator-results-side::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -30%;
  width: 80%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.28) 0%, transparent 65%);
  pointer-events: none;
  animation: pearl-pulse 6s ease-in-out infinite alternate;
}

/* Owners note — hover lift + rosy glow */
.owners-note {
  transition: box-shadow 0.5s ease, transform 0.5s ease;
}

.owners-note:hover {
  box-shadow: 0 8px 32px rgba(242, 161, 176, 0.3), 0 0 16px rgba(247, 178, 206, 0.18);
  transform: translateX(3px);
}

/* Hero background — subtle animated silk overlay */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 60%, rgba(255, 255, 255, 0.18) 0%, transparent 55%);
  pointer-events: none;
  animation: pearl-pulse 7s ease-in-out infinite alternate;
  z-index: 2;
}

/* Pink service card border-top shimmer on hover */
.service-card:hover {
  box-shadow: var(--shadow-hover), 0 0 28px rgba(242, 161, 176, 0.15);
}

/* Author avatar — rosy glow */
.author-avatar {
  transition: box-shadow 0.4s ease;
}

.testimonial-card:hover .author-avatar {
  box-shadow: 0 0 14px rgba(242, 161, 176, 0.4);
}

/* === SECTION-WIDE SHIMMER — color-matched per section === */

/* About — white pearl drift */
.about {
  overflow: hidden;
}
.about::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -15%;
  width: 60%;
  height: 180%;
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.55) 0%, transparent 65%);
  pointer-events: none;
  animation: pearl-pulse 8s ease-in-out infinite alternate;
  z-index: 0;
}
.about::after {
  content: '';
  position: absolute;
  top: -80%;
  right: -10%;
  width: 50%;
  height: 300%;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
  animation: section-sheen 13s ease-in-out 2s infinite;
  pointer-events: none;
  z-index: 0;
}
.about-grid,
.about-frame-wrapper {
  position: relative;
  z-index: 1;
}

/* Work showcase — blush silk sweep over the photo grid */
.work-showcase {
  overflow: hidden;
}
.work-showcase::before {
  content: '';
  position: absolute;
  top: 0;
  left: -20%;
  width: 55%;
  height: 100%;
  background: linear-gradient(115deg, transparent 28%, rgba(255, 240, 233, 0.16) 50%, transparent 72%);
  animation: section-sheen 4s ease-in-out infinite;
  pointer-events: none;
  z-index: 5;
}

/* Pricing calculator — white/cream pearl glow */
.pricing-calculator {
  overflow: hidden;
}
.pricing-calculator::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 55%;
  height: 160%;
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.45) 0%, transparent 62%);
  pointer-events: none;
  animation: pearl-pulse 7s ease-in-out 1s infinite alternate;
  z-index: 0;
}
.pricing-calculator::after {
  content: '';
  position: absolute;
  bottom: -80%;
  left: -10%;
  width: 50%;
  height: 280%;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 240, 233, 0.12) 50%, transparent 70%);
  animation: section-sheen 14s ease-in-out 1s infinite;
  pointer-events: none;
  z-index: 0;
}
.calculator-card {
  position: relative;
  z-index: 1;
}

/* Gallery — sage-toned shimmer */
.gallery {
  position: relative;
  overflow: hidden;
}
.gallery::before {
  content: '';
  position: absolute;
  top: -80%;
  left: -15%;
  width: 55%;
  height: 280%;
  background: linear-gradient(115deg, transparent 30%, rgba(164, 195, 178, 0.22) 50%, transparent 70%);
  animation: section-sheen 12s ease-in-out 3s infinite;
  pointer-events: none;
  z-index: 0;
}
.gallery::after {
  content: '';
  position: absolute;
  bottom: -10%;
  right: -15%;
  width: 55%;
  height: 65%;
  background: radial-gradient(ellipse, rgba(204, 227, 222, 0.45) 0%, transparent 65%);
  pointer-events: none;
  animation: pearl-pulse 9s ease-in-out infinite alternate;
  z-index: 0;
}
.gallery-intro,
.ba-slideshow,
.transform-pairs,
.luxury-gallery {
  position: relative;
  z-index: 1;
}

/* Testimonials — cream pearl shimmer */
.testimonials::after {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 60%;
  height: 180%;
  background: radial-gradient(ellipse, rgba(255, 240, 233, 0.5) 0%, transparent 65%);
  pointer-events: none;
  animation: pearl-pulse 8s ease-in-out 0.5s infinite alternate;
  z-index: 0;
}
.testimonials::before {
  content: '';
  position: absolute;
  top: -80%;
  left: -10%;
  width: 50%;
  height: 280%;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 240, 233, 0.13) 50%, transparent 70%);
  animation: section-sheen 10s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
.testimonials-grid {
  position: relative;
  z-index: 1;
}

/* Contact section — blush pearl shimmer (form side already has own shimmer) */
.contact::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -15%;
  width: 55%;
  height: 160%;
  background: radial-gradient(ellipse, rgba(254, 220, 217, 0.45) 0%, transparent 62%);
  pointer-events: none;
  animation: pearl-pulse 7s ease-in-out 2s infinite alternate;
  z-index: 0;
}
.contact-grid {
  position: relative;
  z-index: 1;
}

/* === ABOUT LEFT-SIDE DECORATIVE ELEMENTS === */


@keyframes rose-sway {
  0%   { transform: rotate(-2.5deg); }
  100% { transform: rotate(2.5deg); }
}

@media (max-width: 580px) {
  .about-rose-illustration {
    display: none;
  }
}
