/* ============================================
   Cincuenta Svatby — V3 "Luxe Burgundy"
   Dark, dramatic, luxury fashion meets
   exclusive wedding atelier.
   ============================================ */

/* --- Design Tokens --- */
:root {
  --color-primary: #7B2D40;
  --color-primary-dark: #5A1F2E;
  --color-primary-light: #F2E0E4;
  --color-accent: #C9A96E;
  --color-accent-light: #D4B87A;
  --color-accent-glow: rgba(201, 169, 110, 0.15);
  --color-text: #1A1A1A;
  --color-text-muted: #666660;
  --color-bg: #FFFFFF;
  --color-bg-alt: #F8F6F4;
  --color-bg-dark: #1A1118;
  --color-border: #E8E2DF;
  --font-heading: 'Bodoni Moda', 'Georgia', serif;
  --font-body: 'Nunito', 'Segoe UI', sans-serif;
  --container-max: 1280px;
  --section-pad: 7.5rem 0;
  --radius: 6px;
  --radius-lg: 12px;
  --transition: 0.3s ease-out;
  --transition-slow: 0.5s ease-out;

  /* Noise texture as inline SVG data URI */
  --noise: 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)' opacity='0.03'/%3E%3C/svg%3E");
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

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

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

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
}

h1 { font-size: 4.25rem; }
h2 { font-size: 2.75rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
  margin-bottom: 1rem;
}

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

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

/* --- Placeholder Images --- */
.placeholder-img {
  background: linear-gradient(135deg, var(--color-primary-light) 0%, #E8D5DA 50%, #D4BFC6 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.placeholder-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(123, 45, 64, 0.08) 0%, rgba(201, 169, 110, 0.06) 100%);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1.05rem 2.4rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

/* Gold shimmer on hover */
.btn-gold {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-light) 50%, var(--color-accent) 100%);
  background-size: 200% 100%;
  color: var(--color-bg-dark);
  border-color: var(--color-accent);
}

.btn-gold:hover {
  background-position: 100% 0;
  transform: translateY(-3px);
  box-shadow:
    0 8px 24px rgba(201, 169, 110, 0.4),
    0 0 48px rgba(201, 169, 110, 0.15);
}

.btn-gold-lg {
  font-size: 1rem;
  padding: 1.25rem 3rem;
  letter-spacing: 0.08em;
}

.btn-outline {
  background: transparent;
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  transform: translateY(-3px);
}

/* --- Reusable Gold Corner Accent --- */
.gold-corner {
  position: relative;
}

.gold-corner::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  width: 40px;
  height: 40px;
  border-top: 2px solid var(--color-accent);
  border-left: 2px solid var(--color-accent);
  pointer-events: none;
  z-index: 2;
}

/* --- Gold Decorative Separator --- */
.gold-sep {
  width: 80px;
  height: 1px;
  background: var(--color-accent);
  margin: 1.5rem auto 0;
  opacity: 0.5;
}

/* --- Section Header --- */
.section-header {
  text-align: center;
  margin-bottom: 4.5rem;
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1rem;
  position: relative;
  padding: 0 3.5rem;
}

.section-label::before,
.section-label::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 2rem;
  height: 1px;
  background: var(--color-accent);
  opacity: 0.5;
}

.section-label::before {
  left: 0;
}

.section-label::after {
  right: 0;
}

.section-header h2 {
  color: var(--color-text);
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}

/* --- Dark section label (white text) --- */
.section-header-dark .section-label {
  color: var(--color-accent);
}

.section-header-dark h2 {
  color: #FFFFFF;
}

.section-header-dark p {
  color: rgba(255, 255, 255, 0.55);
}

/* --- Noise overlay mixin for dark sections --- */
.noise-overlay {
  position: relative;
}

.noise-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--noise);
  background-repeat: repeat;
  background-size: 256px 256px;
  opacity: 0.03;
  pointer-events: none;
  z-index: 0;
}


/* ========================================
   NAVIGATION — Dark Luxury
   ======================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.15rem 0;
  background: rgba(26, 17, 24, 0.88);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid rgba(201, 169, 110, 0.15);
  transition: background var(--transition-slow), padding var(--transition);
}

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

.nav-brand {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 400;
  font-style: italic;
  color: var(--color-accent);
  letter-spacing: 0.04em;
  transition: opacity var(--transition);
}

.nav-brand:hover {
  opacity: 0.8;
}

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

.nav-links a {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--transition);
  position: relative;
}

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

.nav-links a.nav-back {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
}

.nav-links a.nav-back:hover {
  color: rgba(255, 255, 255, 0.85);
}

/* Gold underline reveal on hover */
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-accent);
  transition: width var(--transition);
}

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

.nav-links .btn {
  padding: 0.6rem 1.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

.nav-links .btn::after {
  display: none;
}


/* ========================================
   HERO — Cinematic, Full-Impact Dark
   ======================================== */
.hero {
  background: var(--color-bg-dark);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

/* Burgundy radial glow — center right */
.hero .hero-glow-burgundy {
  position: absolute;
  top: 0;
  right: -10%;
  width: 80%;
  height: 120%;
  background: radial-gradient(ellipse 70% 60% at 60% 45%, rgba(123, 45, 64, 0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Gold glow — top left */
.hero .hero-glow-gold {
  position: absolute;
  top: -20%;
  left: -15%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse 50% 50% at 40% 40%, rgba(201, 169, 110, 0.05) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

/* Noise/grain texture */
.hero .hero-noise {
  position: absolute;
  inset: 0;
  background-image: var(--noise);
  background-repeat: repeat;
  background-size: 256px 256px;
  opacity: 0.03;
  pointer-events: none;
  z-index: 0;
}

/* Thin gold line at bottom of hero */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--color-accent) 30%, var(--color-accent) 70%, transparent 100%);
  opacity: 0.35;
  z-index: 2;
}

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

/* --- Hero Content (Left) --- */
.hero-content {
  color: #FFFFFF;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 2rem;
}

.hero-label::before {
  content: '';
  display: inline-block;
  width: 2.5rem;
  height: 1px;
  background: var(--color-accent);
  flex-shrink: 0;
}

.hero h1 {
  font-size: 4.25rem;
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 2rem;
  color: #FFFFFF;
  max-width: 580px;
}

.hero h1 em {
  font-style: italic;
  color: var(--color-accent);
  font-weight: 400;
}

/* Gold thin line below h1 */
.hero-line {
  width: 80px;
  height: 1px;
  background: var(--color-accent);
  margin-bottom: 2rem;
  opacity: 0.6;
}

.hero-text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.85;
  max-width: 460px;
  margin-bottom: 2.75rem;
}

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

/* --- Hero Image (Right) --- */
.hero-img-wrap {
  position: relative;
  padding: 14px;
}

.hero-img-wrap .placeholder-img {
  width: 100%;
  height: 600px;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, #2A1822 0%, #3D2230 40%, #4A2A3A 70%, #2E1924 100%);
  box-shadow: inset 0 2px 60px rgba(0, 0, 0, 0.4);
}

.hero-img-wrap .placeholder-img::after {
  background: linear-gradient(180deg, rgba(26, 17, 24, 0.1) 0%, rgba(26, 17, 24, 0.35) 100%);
}

/* Gold corner accents — top-right */
.hero-img-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  border-top: 2px solid var(--color-accent);
  border-right: 2px solid var(--color-accent);
  pointer-events: none;
  z-index: 2;
}

/* Gold corner accents — bottom-left */
.hero-img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 120px;
  height: 120px;
  border-bottom: 2px solid var(--color-accent);
  border-left: 2px solid var(--color-accent);
  pointer-events: none;
  z-index: 2;
}


/* ========================================
   TRUST BAR — Prestigious
   ======================================== */
.trust {
  padding: 5rem 0;
  background: var(--color-bg);
  position: relative;
}

.trust::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-border), transparent);
}

.trust .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  text-align: center;
}

.trust-item {
  position: relative;
  padding: 1.5rem 2rem;
}

/* Gold vertical separators */
.trust-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 56px;
  background: linear-gradient(180deg, transparent, var(--color-accent), transparent);
  opacity: 0.5;
}

.trust-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.trust-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-variant: small-caps;
}


/* ========================================
   SERVICES — Premium 2x2 Grid
   ======================================== */
.services {
  padding: var(--section-pad);
  background: var(--color-bg-alt);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

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

/* Gold top border — default state */
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--color-accent);
  border-radius: 0 0 3px 3px;
  transition: width var(--transition-slow);
}

/* Hover: gold border extends full width, card lifts */
.service-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 20px 50px rgba(123, 45, 64, 0.07),
    0 0 0 1px rgba(201, 169, 110, 0.12),
    0 0 80px rgba(201, 169, 110, 0.06);
}

.service-card:hover::before {
  width: 100%;
  border-radius: 0;
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-accent);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  flex-shrink: 0;
}

.service-card h3 {
  margin-bottom: 1rem;
  color: var(--color-text);
  font-size: 1.4rem;
}

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

.service-price {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-primary);
  padding-top: 1.25rem;
  border-top: 1px solid var(--color-border);
  margin-top: auto;
}


/* ========================================
   ABOUT — Luxury Bio
   ======================================== */
.about {
  padding: var(--section-pad);
  background: var(--color-bg);
}

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

.about-img-wrap {
  position: relative;
}

.about-img-wrap .placeholder-img {
  width: 100%;
  height: 620px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.08);
}

/* Gold vertical accent line on left */
.about-img-wrap::before {
  content: '';
  position: absolute;
  top: 3rem;
  left: -1.75rem;
  width: 3px;
  height: 220px;
  background: linear-gradient(180deg, var(--color-accent) 0%, rgba(201, 169, 110, 0.1) 100%);
  border-radius: 3px;
}

/* Subtle corner accent */
.about-img-wrap::after {
  content: '';
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 80px;
  height: 80px;
  border-bottom: 2px solid var(--color-accent);
  border-right: 2px solid var(--color-accent);
  opacity: 0.35;
  pointer-events: none;
}

.about-content .section-label {
  text-align: left;
  padding-left: 0;
}

.about-content .section-label::before {
  display: none;
}

.about-content .section-label::after {
  left: calc(100% + 1rem);
  right: auto;
}

.about-content h2 {
  margin-bottom: 1.75rem;
  text-align: left;
  font-size: 3rem;
}

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

.about-text:last-of-type {
  margin-bottom: 0;
}

.about-signature {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
}

.about-signature-name {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-style: italic;
  color: var(--color-primary);
  margin-bottom: 0.35rem;
  line-height: 1.2;
}

.about-signature-title {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  font-variant: small-caps;
}


/* ========================================
   PORTFOLIO — Dark Showcase
   ======================================== */
.portfolio {
  padding: var(--section-pad);
  background: var(--color-bg-dark);
  position: relative;
  overflow: hidden;
}

/* Top gold line */
.portfolio::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 169, 110, 0.3), transparent);
}

/* Noise overlay */
.portfolio .portfolio-noise {
  position: absolute;
  inset: 0;
  background-image: var(--noise);
  background-repeat: repeat;
  background-size: 256px 256px;
  opacity: 0.03;
  pointer-events: none;
  z-index: 0;
}

.portfolio .container {
  position: relative;
  z-index: 1;
}

.portfolio .section-header {
  margin-bottom: 4rem;
}

.portfolio-grid {
  display: flex;
  gap: 1.5rem;
  align-items: stretch;
}

.portfolio-item {
  flex: 1;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  transition: all var(--transition);
  cursor: pointer;
}

.portfolio-item:nth-child(1) { flex: 1.4; }
.portfolio-item:nth-child(2) { flex: 0.9; }
.portfolio-item:nth-child(3) { flex: 1.1; }
.portfolio-item:nth-child(4) { flex: 0.8; }

.portfolio-item .placeholder-img {
  width: 100%;
  height: 320px;
  border-radius: 8px;
  background: linear-gradient(135deg, #2A1822 0%, #3D2230 50%, #4A2A3A 100%);
}

/* Dark overlay gradient — bottom to top */
.portfolio-item .placeholder-img::after {
  background: linear-gradient(0deg, rgba(26, 17, 24, 0.7) 0%, rgba(26, 17, 24, 0.05) 60%, transparent 100%);
}

/* Location text overlay */
.portfolio-location {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  z-index: 2;
  font-variant: small-caps;
}

/* Hover: gold border + lift */
.portfolio-item:hover {
  transform: translateY(-4px);
}

.portfolio-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  border-radius: 8px;
  transition: border-color var(--transition);
  pointer-events: none;
  z-index: 3;
}

.portfolio-item:hover::after {
  border-color: var(--color-accent);
}


/* ========================================
   PROCESS — Gold Numbered Timeline
   ======================================== */
.process {
  padding: var(--section-pad);
  background: var(--color-bg-alt);
}

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

/* Connecting dashed gold line across all steps */
.process-steps::before {
  content: '';
  position: absolute;
  top: 2.2rem;
  left: 12%;
  right: 12%;
  height: 1px;
  border-top: 1px dashed var(--color-accent);
  opacity: 0.35;
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  padding: 0 2rem;
  z-index: 1;
}

.process-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 1.25rem;
  opacity: 0.7;
  transition: all var(--transition);
  display: inline-block;
}

.process-step:hover .process-number {
  opacity: 1;
  transform: scale(1.08);
}

.process-step h3 {
  margin-bottom: 0.75rem;
  color: var(--color-text);
  font-size: 1.25rem;
}

.process-step p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.8;
}


/* ========================================
   TESTIMONIALS — Premium Cards
   ======================================== */
.testimonials {
  padding: var(--section-pad);
  background: var(--color-bg);
}

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

.testimonial-card {
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
  padding: 2.75rem 2.5rem 2.5rem;
  border: 1px solid var(--color-border);
  position: relative;
  transition: all var(--transition);
  overflow: hidden;
}

/* Gold top-left corner accent — L-shaped frame corner */
.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  border-top: 2px solid var(--color-accent);
  border-left: 2px solid var(--color-accent);
  opacity: 0.5;
  transition: opacity var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(123, 45, 64, 0.08);
}

.testimonial-card:hover::before {
  opacity: 1;
}

.testimonial-quote-mark {
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--color-primary);
  line-height: 0.8;
  margin-bottom: 0.75rem;
  opacity: 0.25;
}

.testimonial-stars {
  color: var(--color-accent);
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  margin-bottom: 1.25rem;
}

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

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

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
  flex-shrink: 0;
  opacity: 0.6;
}

.testimonial-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.testimonial-name {
  font-weight: 700;
  color: var(--color-text);
  font-size: 0.95rem;
}

.testimonial-detail {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}


/* ========================================
   CTA BANNER — Dramatic Burgundy
   ======================================== */
.cta-banner {
  padding: 6.5rem 0;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Gold line top */
.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 10%, var(--color-accent) 50%, transparent 90%);
  opacity: 0.4;
}

/* Gold line bottom */
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 10%, var(--color-accent) 50%, transparent 90%);
  opacity: 0.4;
}

/* Radial gold glow center */
.cta-banner .cta-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 70% at 50% 50%, rgba(201, 169, 110, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

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

.cta-banner h2 {
  color: #FFFFFF;
  font-size: 4rem;
  margin-bottom: 1.25rem;
  font-weight: 400;
  font-style: italic;
  text-shadow: 0 2px 40px rgba(201, 169, 110, 0.2);
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.15rem;
  max-width: 520px;
  margin: 0 auto 2.75rem;
  line-height: 1.8;
}


/* ========================================
   FOOTER — Luxury Dark
   ======================================== */
.footer {
  background: var(--color-bg-dark);
  padding: 5rem 0 0;
  color: rgba(255, 255, 255, 0.5);
  position: relative;
}

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

.footer-brand {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-style: italic;
  color: var(--color-accent);
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.8;
  max-width: 320px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0;
}

.footer h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1.75rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.45);
  transition: all var(--transition);
  display: inline-block;
}

.footer-links a:hover {
  color: var(--color-accent);
  transform: translateX(3px);
}

.footer-contact-item {
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-contact-item strong {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}

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

.footer-bottom a {
  color: rgba(201, 169, 110, 0.5);
  transition: color var(--transition);
}

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


/* ========================================
   UNIQUE ELEMENTS — V3 Luxe Burgundy
   ======================================== */

/* --- Scroll-Down Indicator --- */
.scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 10;
}

.scroll-indicator span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}

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

@keyframes scrollPulse {
  0%, 100% { opacity: 1; height: 40px; }
  50% { opacity: 0.4; height: 30px; }
}

/* --- Split-Tone About Section --- */
.about {
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 45%;
  height: 100%;
  background: var(--color-bg-dark);
  z-index: 0;
}

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

.about-img-wrap .placeholder-img {
  background: linear-gradient(135deg, #2A1822 0%, #3D2230 50%, #4A2A3A 100%);
}

/* --- Animated Gold Shimmer on Portfolio Locations --- */
.portfolio-item:hover .portfolio-location {
  background: linear-gradient(90deg, var(--color-accent) 0%, #E0C98A 50%, var(--color-accent) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: goldShimmer 1.5s ease-in-out infinite;
}

@keyframes goldShimmer {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

/* --- Footer Brand Subtitle --- */
.footer-brand-sub {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(201, 169, 110, 0.4);
  font-style: normal;
  margin-top: 0.25rem;
}
