/* ============================================
   Cincuenta Svatby — V1 "Romantic Blush"
   Svatební koordinace — Ivana Marková
   Premium wedding designer portfolio
   ============================================ */

:root {
  /* Colors */
  --color-primary: #C4908C;
  --color-primary-dark: #A67571;
  --color-primary-light: #F3E5E4;
  --color-accent: #C5A55A;
  --color-accent-dark: #A8893E;
  --color-accent-light: #F0E6CC;
  --color-text: #2D2926;
  --color-text-muted: #7A706C;
  --color-bg: #FFFBFA;
  --color-bg-alt: #FBF5F3;
  --color-bg-dark: #2D2926;
  --color-border: #EDE4E1;
  --color-white: #FFFFFF;

  /* Typography */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Montserrat', -apple-system, sans-serif;

  /* Spacing */
  --section-padding: 8rem 0;
  --container-max: 1280px;
  --container-padding: 0 2.5rem;

  /* Transitions */
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   Reset & Base
   ============================================ */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 1440px;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul {
  list-style: none;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--container-padding);
}

/* ============================================
   Typography
   ============================================ */

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.15;
  color: var(--color-text);
}

h1 {
  font-size: 4rem;
  letter-spacing: -0.01em;
  font-weight: 400;
}

h2 {
  font-size: 3rem;
  letter-spacing: 0.01em;
  font-weight: 400;
}

h3 {
  font-size: 1.5rem;
  letter-spacing: 0.01em;
  font-weight: 500;
}

h4 {
  font-size: 1.25rem;
}

p {
  color: var(--color-text-muted);
}

.section-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.section-heading {
  margin-bottom: 1.25rem;
  font-style: italic;
}

/* Centered gold underline on headings */
.section-heading::after {
  content: '';
  display: block;
  width: 60px;
  height: 1px;
  background-color: var(--color-accent);
  margin: 1.25rem auto 0;
}

.section-subtext {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  max-width: 560px;
  line-height: 1.8;
}

.section-header {
  text-align: center;
  margin-bottom: 4.5rem;
}

.section-header .section-subtext {
  margin: 1rem auto 0;
}

/* ============================================
   Decorative Elements
   ============================================ */

.gold-line {
  width: 60px;
  height: 1px;
  background-color: var(--color-accent);
  margin: 1.75rem 0;
}

.gold-line--center {
  margin: 1.75rem auto;
}

/* Ornamental diamond divider between sections */
.ornament {
  text-align: center;
  padding: 0.5rem 0;
  line-height: 1;
  position: relative;
}

.ornament::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 8px;
  height: 8px;
  border: 1px solid var(--color-accent);
  opacity: 0.6;
}

.ornament::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    var(--color-accent) 30%,
    transparent 48%,
    transparent 52%,
    var(--color-accent) 70%,
    transparent
  );
  opacity: 0.35;
}

/* Services ornament — wider, more decorative */
.ornament--wide::after {
  width: 400px;
}

/* Grain texture overlay — used on hero and CTA */
.grain-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* ============================================
   Buttons
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1.1rem 2.5rem;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: all var(--transition);
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
  pointer-events: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
  color: var(--color-white);
  box-shadow: 0 2px 12px rgba(197, 165, 90, 0.25);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--color-accent-dark) 0%, #96792F 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(197, 165, 90, 0.35);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.btn-secondary::after {
  display: none;
}

.btn-secondary:hover {
  border-color: var(--color-primary);
  color: var(--color-primary-dark);
  background-color: rgba(243, 229, 228, 0.25);
}

.btn-gold-outline {
  background-color: transparent;
  color: var(--color-accent);
  border: 1px solid var(--color-accent);
}

.btn-gold-outline::after {
  display: none;
}

.btn-gold-outline:hover {
  background-color: var(--color-accent);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(197, 165, 90, 0.3);
}

.btn-white {
  background-color: var(--color-white);
  color: var(--color-accent-dark);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.btn-white::after {
  display: none;
}

.btn-white:hover {
  background-color: var(--color-bg);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
}

/* ============================================
   Placeholder Images
   ============================================ */

.placeholder-img {
  background: linear-gradient(145deg, var(--color-primary-light) 0%, #E8D8D6 50%, var(--color-border) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.placeholder-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg,
    rgba(196, 144, 140, 0.1) 0%,
    rgba(197, 165, 90, 0.06) 50%,
    rgba(196, 144, 140, 0.04) 100%
  );
}

/* ============================================
   Navigation
   ============================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(255, 251, 250, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(237, 228, 225, 0.6);
  min-width: 1440px;
}

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

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: 0.03em;
}

.nav-logo .logo-script {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 700;
  color: var(--color-primary-dark);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.75rem;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--color-text-muted);
  transition: color var(--transition);
  position: relative;
}

.nav-links a:not(.btn):not(.nav-back)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-accent);
  transition: width var(--transition);
}

.nav-links a:not(.btn):not(.nav-back):hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--color-primary-dark);
}

.nav-links a.nav-back {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
}

.nav-links a.nav-back:hover {
  color: var(--color-primary-dark);
}

.nav-links .btn {
  padding: 0.65rem 1.6rem;
  font-size: 0.75rem;
}

/* ============================================
   Hero Section
   ============================================ */

.hero {
  padding: 11rem 0 8rem;
  background: linear-gradient(
    175deg,
    var(--color-bg) 0%,
    #FEF6F4 25%,
    var(--color-primary-light) 60%,
    #F8E8E5 80%,
    var(--color-bg) 100%
  );
  position: relative;
  overflow: hidden;
}

/* Soft radial glow — top right */
.hero::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -100px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(197, 165, 90, 0.08) 0%, transparent 65%);
  pointer-events: none;
}

/* Soft radial glow — bottom left */
.hero::after {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(196, 144, 140, 0.1) 0%, transparent 65%);
  pointer-events: none;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content .section-label {
  margin-bottom: 1.75rem;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
}

.hero-content h1 {
  margin-bottom: 0;
  max-width: 560px;
  font-style: italic;
  font-weight: 300;
  font-size: 3.85rem;
  line-height: 1.18;
}

.hero-content h1 em {
  font-style: italic;
  color: var(--color-primary);
  font-weight: 500;
}

.hero .gold-line {
  margin: 2rem 0;
  width: 80px;
}

.hero-perex {
  font-size: 1.1rem;
  line-height: 1.85;
  color: var(--color-text-muted);
  max-width: 460px;
  margin-bottom: 3rem;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

/* Hero visual — image with double frame */
.hero-visual {
  position: relative;
  z-index: 2;
}

.hero-visual .placeholder-img {
  width: 100%;
  height: 600px;
  border-radius: 4px;
  position: relative;
  z-index: 2;
}

/* Double frame effect — top-right corner line */
.hero-visual::before {
  content: '';
  position: absolute;
  top: -16px;
  right: -16px;
  width: 55%;
  height: 55%;
  border-top: 1px solid var(--color-accent);
  border-right: 1px solid var(--color-accent);
  border-radius: 0 4px 0 0;
  z-index: 1;
  opacity: 0.5;
}

/* Double frame effect — bottom-left corner line */
.hero-visual::after {
  content: '';
  position: absolute;
  bottom: -16px;
  left: -16px;
  width: 55%;
  height: 55%;
  border-bottom: 1px solid var(--color-accent);
  border-left: 1px solid var(--color-accent);
  border-radius: 0 0 0 4px;
  z-index: 1;
  opacity: 0.5;
}

/* ============================================
   Trust Bar
   ============================================ */

.trust-bar {
  padding: 3.75rem 0;
  background-color: var(--color-bg);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  position: relative;
}

.trust-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  text-align: left;
  padding: 0 4rem;
}

.trust-number {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--color-primary);
  line-height: 1;
  font-style: italic;
}

.trust-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text-muted);
  line-height: 1.45;
  letter-spacing: 0.02em;
}

.trust-divider {
  width: 1px;
  height: 52px;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--color-accent) 25%,
    var(--color-accent) 75%,
    transparent
  );
  opacity: 0.4;
  flex-shrink: 0;
}

/* ============================================
   Services Section
   ============================================ */

.services {
  padding: var(--section-padding);
  background-color: var(--color-bg);
}

/* Decorative ornament between header and grid */
.services .section-header {
  margin-bottom: 3.5rem;
}

.services-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.services-ornament::before,
.services-ornament::after {
  content: '';
  width: 120px;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    var(--color-accent)
  );
  opacity: 0.35;
}

.services-ornament::after {
  background: linear-gradient(
    to left,
    transparent,
    var(--color-accent)
  );
}

.services-ornament-diamond {
  width: 10px;
  height: 10px;
  border: 1px solid var(--color-accent);
  transform: rotate(45deg);
  opacity: 0.5;
  flex-shrink: 0;
}

/* 2x2 staggered grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.25rem;
  max-width: 960px;
  margin: 0 auto;
}

.service-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 2.75rem 2.5rem 2.75rem 3rem;
  position: relative;
  transition: all var(--transition);
  border-left: 3px solid var(--color-accent);
  overflow: hidden;
}

/* Staggered offset — odd cards get top margin */
.service-card:nth-child(odd) {
  margin-top: 2rem;
}

.service-card:nth-child(even) {
  margin-bottom: 2rem;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(196, 144, 140, 0.12), 0 4px 12px rgba(197, 165, 90, 0.06);
  border-left-width: 3px;
  border-color: var(--color-border);
  border-left-color: var(--color-accent);
}

.service-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.75rem;
  position: relative;
  transition: all var(--transition);
}

.service-card:hover .service-icon-wrap {
  background-color: rgba(197, 165, 90, 0.06);
  border-color: var(--color-accent-dark);
}

.service-icon {
  font-size: 1.5rem;
  color: var(--color-accent);
  line-height: 1;
}

.service-card h3 {
  margin-bottom: 0.85rem;
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 500;
}

.service-card p {
  font-size: 0.938rem;
  line-height: 1.75;
  color: var(--color-text-muted);
}

.service-tag {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  padding: 0.35rem 1rem;
  border: 1px solid var(--color-accent-light);
  border-radius: 20px;
  background-color: rgba(197, 165, 90, 0.04);
}

/* ============================================
   About Section (O mně)
   ============================================ */

.about {
  padding: var(--section-padding);
  background-color: var(--color-bg-alt);
  position: relative;
  overflow: hidden;
}

.about .container {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 6rem;
  align-items: center;
}

/* Image with elegant gold frame offset */
.about-visual {
  position: relative;
}

.about-visual .placeholder-img {
  width: 100%;
  height: 640px;
  border-radius: 4px;
  position: relative;
  z-index: 2;
}

.about-visual::before {
  content: '';
  position: absolute;
  top: 20px;
  right: -16px;
  bottom: -20px;
  left: 16px;
  border: 1px solid var(--color-accent);
  border-radius: 4px;
  z-index: 1;
  opacity: 0.35;
}

/* Text column */
.about-content {
  position: relative;
}

/* Large decorative quotation mark behind text */
.about-content::before {
  content: '\201C';
  position: absolute;
  top: -30px;
  left: -20px;
  font-family: var(--font-serif);
  font-size: 18rem;
  color: var(--color-primary-light);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

.about-content .section-label {
  position: relative;
  z-index: 1;
}

.about-content h2 {
  font-style: italic;
  font-weight: 400;
  font-size: 3rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.about-content h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 1px;
  background-color: var(--color-accent);
  margin-top: 1.5rem;
}

.about-text {
  position: relative;
  z-index: 1;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
}

.about-text p:last-child {
  margin-bottom: 0;
}

/* Signature block */
.about-signature {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
  position: relative;
  z-index: 1;
}

.about-signature-name {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-style: italic;
  font-weight: 500;
  color: var(--color-primary-dark);
  display: block;
  margin-bottom: 0.25rem;
}

.about-signature-role {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

/* ============================================
   Process Section
   ============================================ */

.process {
  padding: var(--section-padding);
  background-color: var(--color-bg);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

/* Dashed gold connecting line */
.process-steps::before {
  content: '';
  position: absolute;
  top: 44px;
  left: calc(12.5% + 2rem);
  right: calc(12.5% + 2rem);
  height: 1px;
  border-top: 2px dashed var(--color-accent);
  opacity: 0.3;
}

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

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background-color: var(--color-bg);
  border: 2px dashed var(--color-accent);
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 500;
  font-style: italic;
  color: var(--color-accent);
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
  transition: all var(--transition);
}

.process-step:hover .step-number {
  border-style: solid;
  background-color: var(--color-accent);
  color: var(--color-white);
  box-shadow: 0 8px 24px rgba(197, 165, 90, 0.25);
  transform: scale(1.05);
}

.process-step h3 {
  margin-bottom: 0.85rem;
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 500;
}

.process-step p {
  font-size: 0.938rem;
  color: var(--color-text-muted);
  max-width: 220px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================
   Testimonials Section
   ============================================ */

.testimonials {
  padding: var(--section-padding);
  background-color: var(--color-bg-alt);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.25rem;
}

.testimonial-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 3rem 2.5rem 2.5rem;
  position: relative;
  transition: all var(--transition);
  overflow: hidden;
}

.testimonial-card:hover {
  border-color: var(--color-primary);
  box-shadow: 0 12px 40px rgba(196, 144, 140, 0.12);
  transform: translateY(-4px);
}

.testimonial-quote-mark {
  font-family: var(--font-serif);
  font-size: 6rem;
  color: var(--color-primary-light);
  line-height: 0.6;
  display: block;
  margin-bottom: 0.75rem;
  opacity: 0.7;
  pointer-events: none;
}

.testimonial-stars {
  color: var(--color-accent);
  font-size: 0.95rem;
  letter-spacing: 0.2em;
  margin-bottom: 1.25rem;
  display: block;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--color-text);
  font-style: italic;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 400;
  margin-bottom: 2rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
}

.testimonial-initials {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-white);
  letter-spacing: 0.05em;
}

.testimonial-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.3;
  display: block;
}

.testimonial-detail {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  display: block;
  margin-top: 0.15rem;
}

/* ============================================
   CTA Banner
   ============================================ */

.cta-banner {
  padding: 7rem 0;
  background-color: var(--color-bg-dark);
  position: relative;
  overflow: hidden;
}

/* Radial glow — dusty rose */
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(196, 144, 140, 0.12) 0%, transparent 65%);
  pointer-events: none;
}

.cta-banner .container {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-banner .section-label {
  color: var(--color-accent);
  opacity: 0.7;
  margin-bottom: 1.5rem;
}

/* Heading with decorative flanking lines */
.cta-heading-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.cta-heading-line {
  width: 100px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--color-accent));
  opacity: 0.4;
}

.cta-heading-line:last-child {
  background: linear-gradient(to left, transparent, var(--color-accent));
}

.cta-banner h2 {
  color: var(--color-white);
  font-size: 3rem;
  font-style: italic;
  font-weight: 400;
}

.cta-banner .gold-line--center {
  margin: 1.5rem auto;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 1.1rem;
  margin-bottom: 2.75rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

/* ============================================
   Footer
   ============================================ */

.footer {
  padding: 5rem 0 0;
  background-color: var(--color-bg-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3.5rem;
  padding-bottom: 3.5rem;
}

.footer-brand .nav-logo {
  color: var(--color-white);
  margin-bottom: 1.25rem;
  display: inline-block;
}

.footer-brand .nav-logo .logo-script {
  color: var(--color-primary);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.938rem;
  line-height: 1.75;
  max-width: 300px;
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 1.5rem;
}

.footer-col a,
.footer-col p {
  display: block;
  font-size: 0.938rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.8rem;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--color-primary);
}

/* Gold line above footer-bottom */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 0;
  border-top: 1px solid var(--color-accent);
  opacity: 1;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.8rem;
  transition: color var(--transition);
}

.footer-bottom a:hover {
  color: var(--color-primary);
}

/* ============================================
   Selection styles
   ============================================ */

::selection {
  background-color: var(--color-primary-light);
  color: var(--color-text);
}

/* ============================================
   Scrollbar
   ============================================ */

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--color-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--color-border);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary);
}

/* ============================================
   Unique Visual Elements
   ============================================ */

/* 1. Hero watermark — large decorative "Love" text */
.hero-watermark {
  position: absolute;
  font-family: var(--font-serif);
  font-size: 22rem;
  font-style: italic;
  font-weight: 300;
  color: rgba(196, 144, 140, 0.04);
  transform: rotate(-12deg);
  pointer-events: none;
  z-index: 0;
  top: 10%;
  right: -5%;
  line-height: 1;
  user-select: none;
}

/* 2. Curved wave separator before CTA */
.wave-separator {
  position: relative;
  height: 80px;
  background: var(--color-bg-alt);
  overflow: hidden;
}

.wave-separator::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -5%;
  width: 110%;
  height: 80px;
  background: var(--color-bg-dark);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

/* 3. Floating heart decorations */
.floating-hearts {
  position: absolute;
  right: 12%;
  top: 30%;
  width: 120px;
  height: 200px;
  z-index: 0;
  pointer-events: none;
}

.floating-hearts span {
  position: absolute;
  display: block;
  width: 12px;
  height: 12px;
  animation: floatUp 6s ease-in-out infinite;
}

.floating-hearts span::before,
.floating-hearts span::after {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--color-primary-light);
  border-radius: 50% 50% 0 50%;
  opacity: 0.15;
}

.floating-hearts span::before {
  transform: rotate(-45deg);
  left: 0;
  top: 0;
}

.floating-hearts span::after {
  transform: rotate(45deg);
  left: 6px;
  top: 0;
}

.floating-hearts span:nth-child(1) {
  left: 10px;
  top: 60%;
  animation-delay: 0s;
}

.floating-hearts span:nth-child(2) {
  left: 55px;
  top: 70%;
  animation-delay: 2s;
  transform: scale(0.7);
}

.floating-hearts span:nth-child(3) {
  left: 90px;
  top: 50%;
  animation-delay: 4s;
  transform: scale(0.5);
}

@keyframes floatUp {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0.15;
  }
  50% {
    opacity: 0.1;
  }
  100% {
    transform: translateY(-100px) scale(0.5);
    opacity: 0;
  }
}

/* 4. About section pull-quote */
.pull-quote {
  position: relative;
  z-index: 1;
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-primary-dark);
  border-left: 3px solid var(--color-accent);
  padding: 1rem 0 1rem 2rem;
  margin: 2rem 0 0 0;
}

/* 5. Popular badge on service card */
.popular-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-white);
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
  padding: 0.35rem 0.9rem;
  border-radius: 20px;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(197, 165, 90, 0.3);
  animation: badgePulse 2.5s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% {
    box-shadow: 0 2px 8px rgba(197, 165, 90, 0.3);
  }
  50% {
    box-shadow: 0 2px 16px rgba(197, 165, 90, 0.55);
  }
}

/* 6. Heart-shaped ornament dividers (replaces diamond) */
.ornament::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 13px;
  background: var(--color-primary-light);
  clip-path: path('M7 12.6 C7 12.6 0.5 8.5 0.5 4.8 C0.5 2.8 2 1.2 3.8 1.2 C5.1 1.2 6.2 2 7 3.1 C7.8 2 8.9 1.2 10.2 1.2 C12 1.2 13.5 2.8 13.5 4.8 C13.5 8.5 7 12.6 7 12.6 Z');
  border: none;
  opacity: 0.6;
}
