/* ============================================
   PĚTILISTÁ — Premium Redesign v3.0
   Light · Dark · Glossy Bronze
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Inter:wght@300;400;500;600&display=swap');

/* ============================================
   DESIGN TOKENS
   ============================================ */
:root {
  /* Light backgrounds (80% of site) */
  --bg-light: #F8F6F3;
  --bg-off-white: #EFECE7;
  --bg-white: #FFFFFF;

  /* Dark backgrounds (20% of site) */
  --bg-dark: #141414;
  --bg-dark-soft: #1C1C1C;

  /* Bronze / Gold — GLOSSY */
  --bronze: #B08D6E;
  --bronze-glossy: linear-gradient(135deg, #8B6914 0%, #C9A050 35%, #E8D5A0 50%, #C9A050 65%, #8B6914 100%);
  --bronze-light: #D4B896;
  --bronze-pale: #E8D5B8;
  --bronze-glow: rgba(176, 141, 110, 0.25);

  /* Text */
  --text-dark: #1A1A1A;
  --text-body: #555555;
  --text-muted: #999999;
  --text-light: #F5F2EE;
  --text-light-muted: rgba(245, 242, 238, 0.6);

  /* Borders */
  --border-light: rgba(0, 0, 0, 0.08);
  --border-dark: rgba(255, 255, 255, 0.1);
  --border-bronze: rgba(176, 141, 110, 0.3);

  /* Fonts */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Easing */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.45, 0, 0.55, 1);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
  --shadow-bronze: 0 8px 30px rgba(176, 141, 110, 0.2);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul { list-style: none; }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-light); }
::-webkit-scrollbar-thumb { background: var(--bronze); border-radius: 3px; }

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.18;
  color: var(--text-dark);
  letter-spacing: -0.01em;
}

p {
  font-family: var(--font-body);
  color: var(--text-body);
}

/* ============================================
   LAYOUT
   ============================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 36px;
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 14px;
}

.section-header {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 64px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 400;
  margin-bottom: 16px;
}

.section-title em {
  font-style: italic;
  color: var(--bronze);
}

.section-desc {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-body);
}

/* Dark section overrides */
.dark-section {
  background-color: var(--bg-dark);
}

.dark-section .section-title,
.dark-section h2,
.dark-section h3,
.dark-section h4 {
  color: var(--text-light);
}

.dark-section p,
.dark-section .section-desc {
  color: var(--text-light-muted);
}

.dark-section .section-label {
  color: var(--bronze-light);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 34px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 3px;
  border: 1px solid transparent;
  transition: all 0.5s var(--ease-out);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-bronze {
  background: linear-gradient(135deg, #8B6914 0%, #C9A050 35%, #E8D5A0 50%, #C9A050 65%, #8B6914 100%);
  background-size: 200% 200%;
  color: #1A1A1A;
  font-weight: 600;
  border-color: rgba(201, 160, 80, 0.4);
  box-shadow: var(--shadow-bronze);
}

.btn-bronze::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 0%, rgba(255,255,255,0.35) 45%, rgba(255,255,255,0.5) 50%, rgba(255,255,255,0.35) 55%, transparent 100%);
  transform: translateX(-120%);
  transition: transform 0.8s var(--ease-out);
}

.btn-bronze:hover::before { transform: translateX(120%); }
.btn-bronze:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 44px rgba(176, 141, 110, 0.35);
}

/* Copper variant (alias) */
.btn-copper {
  background: linear-gradient(135deg, #8B6914 0%, #C9A050 35%, #E8D5A0 50%, #C9A050 65%, #8B6914 100%);
  background-size: 200% 200%;
  color: #1A1A1A;
  font-weight: 600;
  border-color: rgba(201, 160, 80, 0.4);
  box-shadow: var(--shadow-bronze);
}

.btn-copper::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 0%, rgba(255,255,255,0.35) 45%, rgba(255,255,255,0.5) 50%, rgba(255,255,255,0.35) 55%, transparent 100%);
  transform: translateX(-120%);
  transition: transform 0.8s var(--ease-out);
}

.btn-copper:hover::before { transform: translateX(120%); }
.btn-copper:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 44px rgba(176, 141, 110, 0.35);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--text-light);
}
.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.06);
}

.btn-outline {
  background: transparent;
  border-color: var(--border-light);
  color: var(--text-dark);
}
.btn-outline:hover {
  border-color: rgba(0, 0, 0, 0.3);
  background: rgba(0, 0, 0, 0.02);
}

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal {
  opacity: 0;
  transition:
    opacity 0.9s var(--ease-out),
    transform 0.9s var(--ease-out);
}

.reveal-up    { transform: translateY(40px); }
.reveal-left  { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-scale { transform: scale(0.95); }

.reveal.revealed {
  opacity: 1;
  transform: none;
}

.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.18s; }
.delay-3 { transition-delay: 0.28s; }
.delay-4 { transition-delay: 0.38s; }
.delay-5 { transition-delay: 0.48s; }

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.5s var(--ease-out);
}

.header--top {
  background: transparent;
}

.header--scrolled {
  background: rgba(248, 246, 243, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border-light);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 120px;
  transition: height 0.4s var(--ease-out);
}

.header--scrolled .header-inner {
  height: 90px;
}

.logo-link {
  display: flex;
  align-items: center;
  position: relative;
  padding: 0 40px;
}

.logo-link::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 320px;
  height: 140px;
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
  z-index: 1;
  pointer-events: none;
  transition: all 0.4s var(--ease-out);
}

.logo-img {
  position: relative;
  z-index: 2;
  height: 80px;
  width: auto;
  transition: all 0.4s var(--ease-out);
  border: none;
}

.header--scrolled .logo-link::before {
  width: 260px;
  height: 100px;
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
}

.header--scrolled .logo-img {
  height: 60px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--text-dark);
  transition: color 0.3s;
  position: relative;
}

.header--top .nav-link {
  color: var(--text-light);
}

.header--scrolled .nav-link {
  color: var(--text-dark);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--bronze);
  transition: width 0.4s var(--ease-out);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 24px;
  font-size: 0.7rem;
}

.header--top .nav-cta {
  color: #1A1A1A;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text-dark);
  transition: all 0.3s var(--ease-out);
  transform-origin: center;
}

.header--top .hamburger span {
  background: var(--text-light);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translateY(6.5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-6.5px);
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: rgba(20, 20, 20, 0.97);
  backdrop-filter: blur(30px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out);
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu .nav-link {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--text-light);
  font-weight: 300;
}

.mobile-menu .btn {
  margin-top: 12px;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(20, 20, 20, 0.55) 0%,
    rgba(20, 20, 20, 0.35) 40%,
    rgba(20, 20, 20, 0.5) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
  padding: 0 32px;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze-light);
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.5vw, 4rem);
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.12;
  margin-bottom: 20px;
}

.hero-title em {
  font-style: italic;
  color: var(--bronze-light);
}

.hero-desc {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(245, 242, 238, 0.75);
  max-width: 540px;
  margin: 0 auto 32px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-meta {
  display: flex;
  gap: 28px;
  justify-content: center;
  margin-top: 48px;
  flex-wrap: wrap;
}

.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: rgba(245, 242, 238, 0.6);
}

.hero-meta-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--bronze-light);
  flex-shrink: 0;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--bronze-light), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

.hero-scroll-label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 242, 238, 0.4);
}

/* ============================================
   TRUST STRIP
   ============================================ */
.trust-strip {
  background: var(--bg-white);
  padding: 56px 0;
  border-bottom: 1px solid var(--border-light);
}

.trust-strip .container {
  display: flex;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
}

.trust-item {
  text-align: center;
}

.trust-number {
  display: block;
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 300;
  color: var(--text-dark);
  line-height: 1;
  margin-bottom: 6px;
}

.trust-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* ============================================
   PHILOSOPHY
   ============================================ */
.philosophy-sec {
  padding: 110px 0;
  background: var(--bg-light);
}

.philosophy-sec .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.philosophy-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 160px 24px 160px 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.03);
}

.philosophy-img-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Smooth radial gradient fading image edges to match the section's off-white background */
  background: radial-gradient(circle at center, transparent 35%, var(--bg-light) 98%);
  pointer-events: none;
  z-index: 2;
}

.philosophy-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.8s var(--ease-out);
}

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

.philosophy-content .section-title {
  text-align: left;
}

.philosophy-content .section-desc {
  text-align: left;
  margin-bottom: 40px;
}

.pillar-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pillar-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.pillar-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--bronze);
  border: 1px solid var(--border-bronze);
  border-radius: 50%;
}

.pillar-body h4 {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.pillar-body p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--text-body);
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works-sec {
  padding: 110px 0;
  background: var(--bg-white);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 24px;
  left: calc(12.5% + 16px);
  right: calc(12.5% + 16px);
  height: 1px;
  background: var(--border-bronze);
}

.timeline-step {
  text-align: center;
  position: relative;
}

.timeline-num {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--bronze);
  border: 1px solid var(--border-bronze);
  border-radius: 50%;
  background: var(--bg-white);
  position: relative;
  z-index: 1;
}

.timeline-step h3 {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.timeline-step p {
  font-size: 0.84rem;
  line-height: 1.7;
  color: var(--text-body);
}

/* ============================================
   GALLERY
   ============================================ */
.gallery-sec {
  padding: 110px 0;
  background: var(--bg-white);
}

.florist-marquee-container {
  overflow: hidden;
  width: 100%;
  position: relative;
  margin-top: 48px;
  padding: 30px 0;
}

/* Linear gradients on the sides for a beautiful fade-out effect */
.florist-marquee-container::before,
.florist-marquee-container::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 150px;
  z-index: 2;
  pointer-events: none;
}

.florist-marquee-container::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-white) 0%, rgba(255, 255, 255, 0) 100%);
}

.florist-marquee-container::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-white) 0%, rgba(255, 255, 255, 0) 100%);
}

.florist-marquee-wrapper {
  display: flex;
  gap: 80px;
  width: max-content;
  animation: florist-marquee 65s linear infinite;
}

.florist-marquee-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 320px;
}

.florist-marquee-item img {
  height: 100%;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 25px rgba(0, 0, 0, 0.04));
  background: transparent;
}

@keyframes florist-marquee {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .florist-marquee-container {
    margin-top: 32px;
    padding: 15px 0;
  }
  .florist-marquee-item {
    height: 220px;
  }
  .florist-marquee-wrapper {
    gap: 40px;
  }
  .florist-marquee-container::before,
  .florist-marquee-container::after {
    width: 60px;
  }
}

/* ============================================
   CIRCUMSTANCES
   ============================================ */
.circumstances-sec {
  padding: 110px 0;
  background: var(--bg-dark);
}

.circumstances-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
}

.circumstance-col .section-title {
  text-align: left;
}

.circumstance-col .section-desc {
  text-align: left;
  margin-bottom: 36px;
}

.circ-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.circ-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.circ-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(176, 141, 110, 0.3);
}

.circ-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--bronze-light);
}

.circ-item h4 {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-light);
  margin-bottom: 4px;
}

.circ-item p {
  font-size: 0.84rem;
  line-height: 1.7;
  color: var(--text-light-muted);
}

.areas-groups {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.areas-group-title {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-light);
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}

.areas-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.area-tag {
  display: inline-block;
  padding: 6px 16px;
  font-size: 0.75rem;
  color: var(--text-light-muted);
  border: 1px solid var(--border-dark);
  border-radius: 20px;
  transition: all 0.3s;
}

.area-tag:hover {
  border-color: var(--border-bronze);
  color: var(--bronze-light);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-sec {
  padding: 120px 0;
  background: var(--bg-dark-soft); /* #1C1C1C */
}

.testimonials-content-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 80px;
  align-items: center;
}

.testimonials-text-col {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.decent-testimonial {
  position: relative;
}

.decent-quote {
  font-family: var(--font-display);
  font-size: 2.1rem;
  line-height: 1.55;
  font-weight: 300;
  color: var(--text-light);
  font-style: italic;
}

.decent-testimonial-divider {
  width: 80px;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.testimonials-img-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.testimonials-img-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 440px;
  aspect-ratio: 1 / 1;
  /* Mirrored organic leaf shape compared to principles section for balance */
  border-radius: 24px 160px 24px 160px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  background: var(--bg-dark-soft);
}

.img-badge-pred,
.img-badge-po {
  position: absolute;
  top: 80px; /* Moved down to clear the leaf curve */
  z-index: 3;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 6px 16px;
  border-radius: 4px;
  background: rgba(28, 28, 28, 0.75);
  color: var(--text-light);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  pointer-events: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.img-badge-pred {
  left: 24px;
}

.img-badge-po {
  right: 36px; /* Moved slightly left to clear the leaf curve */
  background: rgba(176, 141, 110, 0.85); /* Copper/bronze background for 'After' */
  border-color: rgba(176, 141, 110, 0.3);
  color: var(--text-dark);
  font-weight: 600;
}

.testimonials-img-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Blends photo edges into the dark background (#1C1C1C) */
  background: radial-gradient(circle at center, transparent 35%, var(--bg-dark-soft) 98%);
  pointer-events: none;
  z-index: 2;
}

.testimonials-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease-out);
}

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


/* ============================================
   HOW IT WORKS (SIMPLE)
   ============================================ */
.how-simple-sec {
  padding: 100px 0;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-light);
}

.how-simple-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 54px;
}

.how-simple-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
}

.how-simple-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bronze);
  margin-bottom: 26px;
  transition: all 0.4s var(--ease-out);
}

.how-simple-item:hover .how-simple-icon {
  background: var(--bronze);
  color: var(--bg-white);
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.15);
}

.how-simple-icon svg {
  width: 26px;
  height: 26px;
}

.how-simple-item h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.how-simple-item p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-muted);
}

/* Mobile adjustments for simple how it works */
@media (max-width: 768px) {
  .how-simple-sec {
    padding: 72px 0;
  }
  
  .how-simple-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 36px;
  }
  
  .how-simple-item {
    padding: 0;
  }
}

/* ============================================
   PACKAGES
   ============================================ */
.packages-sec {
  padding: 110px 0;
  background: var(--bg-light);
}

.packages-group {
  width: 100%;
}

.packages-group-title {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-light);
  text-align: left;
}

.packages-row-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: stretch;
  margin-bottom: 48px;
}

.packages-row-grid--two-cards {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  grid-template-columns: repeat(2, 1fr) !important;
}

@media (max-width: 1024px) {
  .packages-row-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .packages-row-grid--two-cards {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 768px) {
  .packages-row-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .packages-row-grid--two-cards {
    grid-template-columns: 1fr !important;
  }
}

.package-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.4s var(--ease-out);
}

.package-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-bronze);
}

.package-card--featured {
  border-left: 3px solid var(--bronze);
}

.package-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 6px;
  flex-wrap: wrap;
  gap: 8px;
}

.package-name {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
}

.package-price {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--bronze);
}

.package-prices-wrapper {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}

.package-price-divider {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-family: var(--font-body);
}

.package-price small {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-weight: normal;
}

.package-period {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.package-narrative {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--text-body);
  margin-bottom: 20px;
}

.package-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.package-features li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.84rem;
  color: var(--text-body);
  line-height: 1.6;
}

.package-features svg {
  width: 16px;
  height: 16px;
  stroke: var(--bronze);
  flex-shrink: 0;
  margin-top: 3px;
}

.package-expand {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out);
}

.package-expand.expanded {
  margin-bottom: 16px;
}

.package-expand p {
  font-size: 0.85rem;
  line-height: 1.75;
  color: var(--text-body);
  padding-top: 12px;
  border-top: 1px solid var(--border-light);
}

.package-actions {
  display: flex;
  margin-top: auto;
}

.package-actions .btn {
  width: 100%;
}

.shipping-notice {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 20px 24px;
  background: var(--bg-off-white);
  border-radius: 8px;
  font-size: 0.82rem;
  line-height: 1.7;
  color: var(--text-body);
  margin-top: 8px;
}

.shipping-notice svg {
  width: 18px;
  height: 18px;
  stroke: var(--bronze);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ============================================
   ADDONS
   ============================================ */
.addons-sec {
  padding: 110px 0;
  background: var(--bg-white);
}

.addons-sec .addons-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.addons-sec .addon-card {
  flex: 0 1 calc(33.333% - 14px);
  min-width: 260px;
  max-width: 360px;
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 28px 24px;
  transition: all 0.4s var(--ease-out);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.addon-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
  border-color: var(--border-bronze);
}

.addon-card h4 {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.addon-card p {
  font-size: 0.82rem;
  line-height: 1.7;
  color: var(--text-body);
  margin-bottom: 16px;
}

.addon-price {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--bronze);
}

/* ============================================
   CARE SECTION
   ============================================ */
.care-sec {
  padding: 120px 0;
  background: var(--bg-light);
}

.care-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.2fr 0.9fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}

.care-info-col {
  display: flex;
  flex-direction: column;
}

.care-info-col .section-title {
  text-align: left;
  margin-top: 12px;
}

.care-info-col .section-desc {
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--text-body);
}

.care-visual-col {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* Ethereal background spotlight glow behind the angel photo */
.care-visual-col::before {
  content: '';
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.care-fade-img-wrap {
  position: relative;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.care-fade-img-wrap::after {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  /* Extremely smooth radial vignette overlay that fades the image borders completely into the beige background */
  background: radial-gradient(circle at center, transparent 15%, rgba(248, 246, 243, 0.4) 45%, rgba(248, 246, 243, 0.8) 70%, var(--bg-light) 95%);
  pointer-events: none;
  z-index: 3;
}

.care-fade-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.9) contrast(1.02);
  transition: transform 0.8s var(--ease-out);
}

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

/* Care Accordion styling */
.care-accordion-col {
  display: flex;
  flex-direction: column;
}

.care-accordion-wrapper {
  display: flex;
  flex-direction: column;
}

.care-accordion-item {
  border-bottom: 1px solid var(--border-light);
  padding: 24px 0;
  cursor: pointer;
  transition: border-color 0.3s ease;
}

.care-accordion-item:last-child {
  border-bottom: none;
}

.care-accordion-header {
  display: flex;
  align-items: center;
  gap: 16px;
}

.care-accordion-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1.5px solid var(--border-bronze);
  background: transparent;
  display: inline-block;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  flex-shrink: 0;
}

.care-accordion-item.active .care-accordion-dot {
  background: var(--bronze);
  border-color: var(--bronze);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
}

.care-accordion-header h3 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.3s ease;
  margin: 0;
}

.care-accordion-item.active .care-accordion-header h3 {
  color: var(--text-dark);
  font-weight: 600;
}

.care-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.4s ease, padding 0.4s ease;
  opacity: 0;
}

.care-accordion-item.active .care-accordion-body {
  max-height: 200px; /* Safe upper bound */
  opacity: 1;
  padding-top: 12px;
  padding-left: 28px;
}

.care-accordion-body p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--text-body);
  margin: 0;
}

/* Care Bottom Notice */
.care-bottom-notice {
  text-align: center;
  max-width: 900px;
  margin: 20px auto 0;
  padding: 24px;
  background: var(--bg-white);
  border-radius: 12px;
  border: 1px solid var(--border-light);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.care-bottom-notice p {
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0;
}

/* Mobile adjustments for care section */
@media (max-width: 991px) {
  .care-layout {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
  }
  
  .care-info-col {
    text-align: center;
  }
  
  .care-info-col .section-title {
    text-align: center;
  }
  
  .care-fade-img-wrap {
    max-width: 320px;
  }
  
  .care-accordion-item {
    padding: 20px 0;
  }
}

/* ============================================
   TEAM
   ============================================ */
.team-sec {
  padding: 110px 0;
  background: var(--bg-white);
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.team-content .section-title {
  text-align: left;
}

.team-content .section-desc {
  text-align: left;
  margin-bottom: 32px;
}

.team-signature-container {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 24px;
  margin-bottom: 24px;
}

.team-signature-img {
  max-height: 76px;
  width: auto;
  opacity: 0.95;
  display: block;
}

.team-contact-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.team-contact-info {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  letter-spacing: 0.04em;
}

.team-contact-link {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s var(--ease);
}

.team-contact-link:hover {
  color: var(--bronze);
}

.team-contact-separator {
  color: var(--bronze-soft);
}

.team-signature-meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.signature-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-dark);
}

.signature-role {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--bronze);
}

.team-img-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.team-img-wrap::before {
  content: '';
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.team-img-wrap img {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 440px;
  height: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.08));
  transition: transform 0.8s var(--ease-out), filter 0.8s var(--ease-out);
}

.team-img-wrap:hover img {
  transform: translateY(-8px) rotate(-1.5deg);
  filter: drop-shadow(0 25px 45px rgba(212, 175, 55, 0.15));
}

/* ============================================
   FAQ
   ============================================ */
.faq-sec {
  padding: 110px 0;
  background: var(--bg-light);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-light);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  cursor: pointer;
  gap: 16px;
  transition: color 0.3s;
}

.faq-question:hover {
  color: var(--bronze);
}

.faq-q-text {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.5;
}

.faq-question:hover .faq-q-text {
  color: var(--bronze);
}

.faq-icon {
  font-size: 1.2rem;
  color: var(--text-muted);
  transition: transform 0.4s var(--ease-out);
  flex-shrink: 0;
  line-height: 1;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out);
}

.faq-answer-inner {
  padding-bottom: 22px;
}

.faq-answer-inner p {
  font-size: 0.88rem;
  line-height: 1.8;
  color: var(--text-body);
}

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta-sec {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
  background: var(--bg-dark);
}

/* Smooth transition: cream top -> transparent/dark image middle -> solid dark bottom */
.final-cta-sec::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    var(--bg-light) 0px,
    rgba(248, 246, 243, 0) 80px,
    rgba(0, 0, 0, 0.45) 120px,
    rgba(0, 0, 0, 0.45) calc(100% - 100px),
    var(--bg-dark) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.final-cta-bg {
  position: absolute !important;
  inset: 0;
  z-index: 0;
}

.final-cta-bg img {
  position: absolute;
  top: -15%;
  left: 0;
  width: 100%;
  height: 130%;
  object-fit: cover;
  filter: brightness(0.65) contrast(1.05) saturate(0.95);
}

.final-cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.final-cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--text-light);
  margin-bottom: 16px;
}

.final-cta-title em {
  font-style: italic;
  color: var(--bronze-light);
}

.final-cta-desc {
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--text-light-muted);
  margin-bottom: 32px;
}

.final-cta-note {
  font-size: 0.78rem;
  color: var(--text-light-muted);
  margin-top: 16px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--bg-dark);
  padding: 48px 0 32px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  margin-bottom: 12px;
}

.footer-logo-img-wrap {
  position: relative;
  display: inline-block;
  padding: 0 40px;
  margin-bottom: 20px;
}

.footer-logo-img-wrap::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 320px;
  height: 140px;
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.footer-logo img {
  position: relative;
  z-index: 2;
  height: 80px;
  margin: 0 auto;
  border: none;
  display: block;
}

.footer-tagline {
  font-size: 0.82rem;
  color: var(--text-light-muted);
  text-align: center;
  max-width: 400px;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 0.75rem;
  color: var(--text-light-muted);
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--bronze-light);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid var(--border-dark);
}

.footer-bottom p {
  font-size: 0.72rem;
  color: var(--text-light-muted);
  line-height: 1.8;
}

/* ============================================
   CURSOR GLOW
   ============================================ */
.cursor-glow {
  position: fixed;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(176, 141, 110, 0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 998;
  opacity: 0;
  transition: opacity 0.5s;
  transform: translate(-50%, -50%);
  mix-blend-mode: screen;
}

.cursor-glow.visible {
  opacity: 1;
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 20, 20, 0.92);
  backdrop-filter: blur(10px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s;
  cursor: pointer;
}

.lightbox-overlay.visible {
  opacity: 1;
}

.lightbox-overlay img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

/* ============================================
   RESPONSIVE — TABLET
   ============================================ */
@media (max-width: 900px) {
  .nav { display: none; }
  .hamburger { display: flex; }

  .philosophy-sec .container,
  .circumstances-grid,
  .packages-grid,
  .care-grid,
  .team-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  .timeline::before { display: none; }

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



  .addons-sec .addon-card {
    flex: 0 1 calc(50% - 10px);
    max-width: 100%;
  }

  .hero-title {
    font-size: clamp(2.2rem, 6vw, 3rem);
  }

  .hero-meta {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
}

/* ============================================
   RESPONSIVE — MOBILE
   ============================================ */
@media (max-width: 600px) {
  .container { padding: 0 20px; }

  .header-inner { height: 60px; }
  .logo-img { height: 28px; }

  .hero-title {
    font-size: 2rem;
  }

  .hero-desc {
    font-size: 0.88rem;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .trust-strip .container {
    flex-direction: column;
    gap: 28px;
  }

  .trust-number { font-size: 2.6rem; }

  .philosophy-sec,
  .how-it-works-sec,
  .gallery-sec,
  .circumstances-sec,
  .testimonials-sec,
  .packages-sec,
  .addons-sec,
  .care-sec,
  .team-sec,
  .faq-sec {
    padding: 72px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .timeline {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .gallery-img-wrap img {
    height: 220px;
  }

  .addons-sec .addon-card {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .care-images {
    grid-template-columns: 1fr;
  }

  .care-img-box img { height: 220px; }

  .package-header {
    flex-direction: column;
    gap: 4px;
  }

  .package-actions {
    flex-direction: column;
  }

  .package-actions .btn {
    width: 100%;
  }

  .hero-meta-item {
    font-size: 0.7rem;
  }

  /* Testimonials Mobile Optimization */
  .testimonials-content-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .testimonials-text-col {
    gap: 24px;
    text-align: center;
  }

  .decent-quote {
    font-size: 1.25rem;
    line-height: 1.6;
    font-weight: 300;
  }

  .decent-testimonial-divider {
    margin: 0 auto;
  }

  .testimonials-img-wrap {
    max-width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  }

  .testimonials-img-wrap::after {
    display: none;
  }

  .img-badge-pred,
  .img-badge-po {
    top: 16px;
  }

  .img-badge-pred {
    left: 16px;
  }

  .img-badge-po {
    right: 16px;
  }

  .final-cta-sec { padding: 80px 0; }
}

/* ============================================
   CHECKOUT PAGE STYLES
   ============================================ */
.checkout-body {
  background-color: var(--bg-light);
  color: var(--text-dark);
}

.checkout-header {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-light);
  padding: 16px 0;
}

.checkout-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.checkout-main {
  max-width: 1200px;
  margin: 48px auto;
  padding: 0 36px;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 40px;
  align-items: start;
}

.checkout-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.summary-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 32px;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 110px;
}

/* Stepper */
.stepper {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 24px;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  position: relative;
  opacity: 0.4;
  transition: opacity 0.3s;
}

.step.active {
  opacity: 1;
}

.step.completed {
  opacity: 0.8;
}

.step-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
  transition: all 0.3s;
}

.step.active .step-circle {
  border-color: var(--bronze);
  background: var(--bg-white);
  color: var(--bronze);
}

.step.completed .step-circle {
  background: var(--bronze);
  border-color: var(--bronze);
  color: #fff;
}

.step-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text-dark);
}

/* Forms */
.step-content {
  display: none;
}

.step-content.active {
  display: block;
}

.step-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 28px;
  color: var(--text-dark);
}

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

.form-group label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text-dark);
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: 6px;
  transition: all 0.3s;
}

.form-control:focus {
  outline: none;
  border-color: var(--bronze);
  background: var(--bg-white);
  box-shadow: 0 0 0 3px var(--bronze-glow);
}

/* Checkbox & Radios */
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  margin-bottom: 12px;
}

.form-check input[type="checkbox"],
.form-check input[type="radio"] {
  margin-top: 5px;
  accent-color: var(--bronze);
}

.form-check-label {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-body);
  user-select: none;
}

/* Conditional Block */
.conditional-block {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.4s var(--ease-out);
  padding: 0;
  border-left: 2px solid transparent;
}

.conditional-block.active {
  max-height: 600px;
  opacity: 1;
  padding: 16px 0 16px 20px;
  border-left-color: var(--border-bronze);
  margin-bottom: 24px;
}

/* Addons Grid in Form */
.step-content .addons-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.step-content .addon-card {
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s;
}

.step-content .addon-card.selected {
  border-color: var(--bronze);
  background: var(--bg-white);
  box-shadow: var(--shadow-sm);
}

.addon-info-side {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.addon-text {
  display: flex;
  flex-direction: column;
}

.addon-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
}

.addon-desc {
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--text-body);
  margin-top: 2px;
}

.addon-price-side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.qty-adjuster {
  display: none; /* JS will show inline-flex when selected */
  align-items: center;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  background: var(--bg-white);
  overflow: hidden;
}

.qty-adjuster button {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: background 0.2s;
}

.qty-adjuster button:hover {
  background: var(--bg-light);
}

.qty-adjuster span {
  padding: 0 10px;
  font-size: 0.82rem;
  font-weight: 600;
}

/* Autocomplete wrapper */
.autocomplete-wrapper {
  position: relative;
}

.autocomplete-items {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 6px;
  box-shadow: var(--shadow-md);
  max-height: 240px;
  overflow-y: auto;
}

.autocomplete-items div {
  padding: 12px 18px;
  cursor: pointer;
  font-size: 0.88rem;
  color: var(--text-dark);
  border-bottom: 1px solid var(--border-light);
  transition: background 0.2s;
}

.autocomplete-items div:last-child {
  border-bottom: none;
}

.autocomplete-items div:hover {
  background: var(--bg-light);
}

/* Summary Panel Card */
.summary-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 16px;
  margin-bottom: 20px;
}

.billing-switch {
  display: flex;
  background: var(--bg-light);
  padding: 4px;
  border-radius: 8px;
  margin-bottom: 24px;
}

.billing-switch-btn {
  flex: 1;
  padding: 8px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 6px;
  text-align: center;
  transition: all 0.3s;
  color: var(--text-muted);
}

.billing-switch-btn.active {
  background: var(--bg-white);
  color: var(--text-dark);
  box-shadow: var(--shadow-sm);
}

.summary-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--text-body);
}

.summary-item.main-service {
  font-weight: 600;
  color: var(--text-dark);
}

.summary-totals {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.total-row {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--text-dark);
  border-top: 1px solid var(--border-light);
  padding-top: 14px;
}

.vat-notice {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* Stripe payment inputs */
.stripe-form-wrapper {
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 24px;
  margin-top: 16px;
}

.stripe-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.card-icon {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--bronze);
  letter-spacing: 0.05em;
}

/* Nav buttons */
.checkout-navigation-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 36px;
  border-top: 1px solid var(--border-light);
  padding-top: 24px;
}

/* Success Screen */
.success-panel {
  text-align: center;
  padding: 64px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.success-icon-container {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(176, 141, 110, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.success-icon-container svg {
  width: 32px;
  height: 32px;
  stroke: var(--bronze);
}

/* Responsive checkout */
@media (max-width: 900px) {
  .checkout-main {
    grid-template-columns: 1fr;
  }
  .summary-card {
    position: static;
  }
}

@media (max-width: 600px) {
  .checkout-main {
    padding: 0 16px;
    margin: 24px auto;
  }
  .checkout-card {
    padding: 24px 16px;
  }
  .stepper {
    margin-bottom: 28px;
  }
  .step-label {
    display: none;
  }
  .step-title {
    font-size: 1.4rem;
  }
  .stripe-row {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   PREMIUM VISUAL EFFECTS (Inspiration: thenueco.com)
   ============================================ */

/* 1. Scrolling Marquee */
.marquee-ticker {
  width: 100%;
  overflow: hidden;
  background: var(--bg-white);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 24px 0;
  display: flex;
  white-space: nowrap;
  user-select: none;
  z-index: 10;
}

.marquee-content {
  display: inline-flex;
  gap: 40px;
  animation: marqueeRun 20s linear infinite;
  padding-left: 40px;
}

.marquee-content span {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  color: var(--bronze);
  text-transform: uppercase;
}

@keyframes marqueeRun {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-50%); }
}

/* 2. Custom luxury cursor */
.custom-cursor {
  width: 12px;
  height: 12px;
  background-color: var(--bronze);
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 10000;
  transition: width 0.2s, height 0.2s, background-color 0.2s, opacity 0.2s;
  mix-blend-mode: difference;
}

.custom-cursor-ring {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(176, 141, 110, 0.4);
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9999;
  transition: width 0.3s var(--ease-out), height 0.3s var(--ease-out), border-color 0.3s, background-color 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hover link state for cursor */
body.hover-link .custom-cursor {
  width: 6px;
  height: 6px;
  background-color: var(--bronze-light);
}

body.hover-link .custom-cursor-ring {
  width: 64px;
  height: 64px;
  border-color: var(--bronze);
  background: rgba(176, 141, 110, 0.05);
}

/* Gallery hover state for cursor */
body.hover-gallery .custom-cursor {
  width: 0;
  height: 0;
  opacity: 0;
}

body.hover-gallery .custom-cursor-ring {
  width: 80px;
  height: 80px;
  background: var(--bronze);
  border-color: var(--bronze);
}

body.hover-gallery .custom-cursor-ring::after {
  content: 'DETAIL';
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #1A1A1A;
}

/* Hide on touch devices */
@media (hover: none) and (pointer: coarse) {
  .custom-cursor,
  .custom-cursor-ring {
    display: none !important;
  }
}

/* 3. Smooth page background transition colors */
body {
  transition: background-color 0.8s var(--ease-smooth), color 0.6s var(--ease-smooth);
}

body.bg-light-theme {
  background-color: var(--bg-light);
}

body.bg-white-theme {
  background-color: var(--bg-white);
}

body.bg-dark-theme {
  background-color: var(--bg-dark);
}

body.bg-beige-theme {
  background-color: var(--bg-off-white);
}

/* 4. Split screen Philosophy Layout adjustments for sticky side */
@media (min-width: 901px) {
  .philosophy-sec .container {
    align-items: flex-start;
  }
  
  .philosophy-img-wrap {
    position: sticky;
    top: 140px;
  }
}

/* 5. Parallax Image handling */
.parallax-container {
  overflow: hidden;
  position: relative;
}

.parallax-img {
  will-change: transform;
  transition: transform 0.15s linear;
}

/* 6. Text line rising reveal (Luxury clip mask) */
.mask-title-wrap {
  overflow: hidden;
  display: block;
}

.mask-title {
  display: block;
  transform: translateY(105%);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.revealed .mask-title {
  transform: translateY(0);
}

/* Adjustments to Gallery images and styling to look extremely refined */
.gallery-grid {
  gap: 32px; /* Generous spacing */
}

.gallery-item {
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s var(--ease-out);
  padding-bottom: 8px;
}

.gallery-item:hover {
  border-color: var(--border-bronze);
}

.gallery-img-wrap {
  border-radius: 4px; /* subtle */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: box-shadow 0.5s;
}

.gallery-item:hover .gallery-img-wrap {
  box-shadow: 0 10px 30px rgba(176, 141, 110, 0.12);
}



/* ============================================
   VOUCHER MODAL & CERTIFICATE STYLES
   ============================================ */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeInModal 0.3s ease-out;
}

@keyframes fadeInModal {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-card {
  background: #FFFFFF;
  border: 1px solid #C8A47E;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  width: 100%;
}

.voucher-cert-box {
  background: linear-gradient(135deg, #FAF7F2 0%, #F5EFE6 100%);
  border: 2px dashed #C8A47E;
  border-radius: 12px;
  padding: 28px;
  margin: 24px 0;
  text-align: center;
  position: relative;
}

.voucher-cert-code {
  font-family: monospace;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: #2C2623;
  background: #FFFFFF;
  border: 1px solid #C8A47E;
  display: inline-block;
  padding: 10px 24px;
  border-radius: 8px;
  margin: 12px 0;
}

.nav-voucher-btn {
  margin-right: 10px;
  padding: 8px 18px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 6px;
  transition: all 0.3s var(--ease-out);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

/* In Hero / Header top - high contrast gold border & bright cream text */
.header--top .nav-voucher-btn,
header:not(.header--scrolled) .nav-voucher-btn {
  color: #F5F2EE !important;
  background: rgba(201, 160, 80, 0.22) !important;
  border: 1px solid rgba(232, 213, 160, 0.7) !important;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.header--top .nav-voucher-btn:hover,
header:not(.header--scrolled) .nav-voucher-btn:hover {
  background: rgba(201, 160, 80, 0.4) !important;
  border-color: #E8D5A0 !important;
  color: #FFFFFF !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(201, 160, 80, 0.35) !important;
}

/* When header is scrolled (White background) - rich bronze badge */
.header--scrolled .nav-voucher-btn {
  color: #8B6914 !important;
  background: rgba(139, 105, 20, 0.1) !important;
  border: 1px solid rgba(139, 105, 20, 0.5) !important;
}

.header--scrolled .nav-voucher-btn:hover {
  background: #8B6914 !important;
  border-color: #8B6914 !important;
  color: #FFFFFF !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(139, 105, 20, 0.25) !important;
}

/* Unified sharp precision button shape across the entire site (no rounded corners) */
button,
.btn,
.nav-voucher-btn,
.nav-cta,
.billing-switch-btn,
.package-actions .btn,
.modal-card button {
  border-radius: 3px !important;
}

/* ============================================
   COOKIE BANNER COMPONENT (DECENT & COMPACT)
   ============================================ */
.cookie-banner-overlay {
  position: fixed;
  bottom: 20px;
  left: 20px;
  transform: none;
  width: calc(100% - 40px);
  max-width: 440px;
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  border-radius: 6px !important;
  padding: 16px 20px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  animation: slideUpCookie 0.3s var(--ease-out);
}

@keyframes slideUpCookie {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.cookie-banner-title {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
  letter-spacing: -0.01em;
}

.cookie-banner-text {
  font-size: 0.8rem;
  line-height: 1.45;
  color: var(--text-muted);
  margin: 0;
}

.cookie-btn-all {
  background: #2E4835 !important;
  color: #FFFFFF !important;
  border: none !important;
  transition: all 0.2s var(--ease-out);
}
.cookie-btn-all:hover {
  background: #243A2A !important;
  box-shadow: 0 4px 14px rgba(46, 72, 53, 0.3) !important;
  transform: translateY(-1px);
}

.cookie-btn-necessary {
  background: #FFFFFF !important;
  color: var(--text-dark) !important;
  border: 1px solid var(--text-dark) !important;
  transition: all 0.2s var(--ease-out);
}
.cookie-btn-necessary:hover {
  background: var(--bg-cream) !important;
  transform: translateY(-1px);
}

@media (max-width: 600px) {
  .cookie-banner-overlay {
    bottom: 12px;
    width: calc(100% - 24px);
    padding: 18px 20px;
  }
  .cookie-banner-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .cookie-banner-actions .btn {
    width: 100%;
  }
}




