/* ============================================================
   KARINE CRISTINE — COPYWRITER
   style.css — Mobile-first, production-ready
   ============================================================ */

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  /* Colors */
  --wine-deep: #3d0d20;
  --wine-main: #6b1f3a;
  --wine-mid: #8e3255;
  --wine-soft: #e8c8d4;
  --wine-blush: #f3e4ea;
  --bege-light: #f7f1ea;
  --bege-warm: #ede3d6;
  --bege-mid: #d9c9b8;
  --gold: #c8a050;
  --gold-light: #e8c890;
  --sage: #5c8060;
  --dark: #2c2022;
  --dark-mid: #4a3035;
  --white: #ffffff;

  /* Typography */
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Jost", system-ui, sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 7rem;

  /* Radius */
  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 20px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --duration: 0.6s;

  /* Layout */
  --max-w: 1200px;
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--dark);
  background: var(--bege-light);
  overflow-x: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
ul,
ol {
  list-style: none;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
}
textarea {
  resize: vertical;
}

/* ── SKIP LINK ───────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  padding: 0.5rem 1rem;
  background: var(--wine-main);
  color: var(--bege-light);
  font-size: 0.875rem;
  border-radius: var(--radius-sm);
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 1rem;
}

/* ── CONTAINER ───────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 1.25rem;
}
@media (min-width: 768px) {
  .container {
    padding-inline: 2rem;
  }
}
@media (min-width: 1280px) {
  .container {
    padding-inline: 2.5rem;
  }
}

/* ── SECTION BASE ────────────────────────────────────────── */
.section {
  padding-block: var(--space-xl);
}
@media (min-width: 768px) {
  .section {
    padding-block: var(--space-2xl);
  }
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: var(--space-xl);
}
.section-sub {
  margin-top: var(--space-sm);
  color: var(--dark-mid);
  font-size: 1.05rem;
}

/* ── TYPOGRAPHY ──────────────────────────────────────────── */
h1,
h2,
h3 {
  font-family: var(--font-serif);
  line-height: 1.2;
  color: var(--wine-deep);
}

h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 400;
  letter-spacing: -0.01em;
}
h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 400;
}
h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 500;
}

em {
  font-style: italic;
  color: var(--wine-main);
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-sm);
}
.eyebrow--light {
  color: var(--gold-light);
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 2px;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: all 0.3s var(--ease-out);
  white-space: nowrap;
}
.btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--wine-main);
  color: var(--bege-light);
  border: 1px solid var(--wine-main);
}
.btn-primary:hover {
  background: var(--wine-deep);
  border-color: var(--wine-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(107, 31, 58, 0.3);
}

.btn-header {
  background: transparent;
  color: var(--wine-main);
  border: 1px solid var(--wine-main);
  padding: 0.6rem 1.4rem;
}
.btn-header:hover {
  background: var(--wine-main);
  color: var(--bege-light);
}

.btn-form {
  width: 100%;
  background: var(--wine-main);
  color: var(--bege-light);
  padding: 1rem;
  border: 1px solid var(--wine-main);
}
.btn-form:hover {
  background: var(--wine-deep);
  border-color: var(--wine-deep);
}
.btn-form:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.btn-cta {
  background: var(--gold);
  color: var(--dark);
  border: 1px solid var(--gold);
  font-size: 1rem;
  padding: 1.1rem 2.5rem;
}
.btn-cta:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(200, 160, 80, 0.35);
}

/* ── REVEAL ANIMATION ────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s var(--ease-out) var(--delay, 0s),
    transform 0.7s var(--ease-out) var(--delay, 0s);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ════════════════════════════════════════════════════════════
   HEADER
   ════════════════════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: var(--bege-light);
  border-bottom: 1px solid var(--bege-warm);
  transition: box-shadow 0.3s;
}
.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(61, 13, 32, 0.08);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  display: flex;
  flex-direction: column;
  gap: 1px;
  text-decoration: none;
}
.logo-name {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--wine-deep);
  line-height: 1;
}
.logo-tagline {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Nav */
.main-nav ul {
  display: none;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 900px) {
  .main-nav ul {
    display: flex;
  }
}

.nav-link {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dark-mid);
  transition: color 0.2s;
  position: relative;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease-out);
}
.nav-link:hover {
  color: var(--wine-main);
}
.nav-link:hover::after {
  width: 100%;
}
.nav-link:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
  border-radius: 2px;
}

/* Hamburger */
.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
}
.menu-toggle:hover {
  background: var(--bege-warm);
}
.menu-toggle:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
@media (min-width: 900px) {
  .menu-toggle {
    display: none;
  }
}

.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--wine-main);
  transition:
    transform 0.3s,
    opacity 0.3s;
}
.hamburger {
  position: relative;
}
.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  left: 0;
}
.hamburger::before {
  top: -7px;
}
.hamburger::after {
  top: 7px;
}

/* Open state */
.menu-toggle[aria-expanded="true"] .hamburger {
  background: transparent;
}
.menu-toggle[aria-expanded="true"] .hamburger::before {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle[aria-expanded="true"] .hamburger::after {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile nav open */
.main-nav.open ul {
  display: flex;
  flex-direction: column;
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: var(--bege-light);
  padding: 2rem 1.5rem;
  gap: 1.5rem;
  align-items: flex-start;
  border-top: 1px solid var(--bege-warm);
}

/* ════════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════════ */
.hero {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
    url("images/background-image.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: calc(var(--space-xl) + var(--header-h));
  padding-bottom: var(--space-2xl);
  position: relative;
  overflow: hidden;
}

.hero .hero-heading {
  color: var(--bege-light);
}
.hero .hero-heading em {
  color: var(--gold-light);
}
.hero .hero-sub {
  color: rgba(247, 241, 234, 0.88);
}
.hero .eyebrow {
  color: var(--gold-light);
}
.hero .trust-note {
  color: rgba(247, 241, 234, 0.7);
}
.hero .btn-primary {
  background: var(--bege-light);
  color: var(--wine-deep);
  border-color: var(--bege-light);
  font-weight: 600;
  letter-spacing: 0.1em;
}
.hero .btn-primary:hover {
  background: var(--white);
  border-color: var(--white);
  box-shadow: 0 8px 28px rgba(247, 241, 234, 0.25);
  transform: translateY(-2px);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: start;
}
@media (min-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr 420px;
    gap: var(--space-lg);
    align-items: center;
  }
}

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

.hero-heading {
  margin-bottom: var(--space-md);
}

.hero-sub {
  font-size: 1.1rem;
  max-width: 520px;
  margin-bottom: var(--space-lg);
}

.trust-note {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: var(--space-md);
  font-size: 0.82rem;
  color: var(--dark-mid);
}
.trust-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sage);
  flex-shrink: 0;
}

/* Form Card */
.form-card {
  background: var(--white);
  border: 1px solid var(--bege-warm);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  box-shadow: 0 12px 48px rgba(61, 13, 32, 0.07);
}

.form-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.form-title {
  font-size: 1.3rem;
  margin-bottom: var(--space-md);
  color: var(--wine-deep);
}

/* Fields */
.field-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: var(--space-sm);
}
.field-group label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--dark-mid);
}
.field-group input,
.field-group textarea {
  padding: 0.75rem 1rem;
  border: 1px solid var(--bege-mid);
  border-radius: var(--radius-sm);
  background: var(--bege-light);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--dark);
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.field-group input::placeholder,
.field-group textarea::placeholder {
  color: var(--bege-mid);
}
.field-group input:focus,
.field-group textarea:focus {
  outline: none;
  border-color: var(--wine-mid);
  box-shadow: 0 0 0 3px rgba(107, 31, 58, 0.1);
}
.field-group input.error,
.field-group textarea.error {
  border-color: #c0392b;
}

.field-error {
  font-size: 0.75rem;
  color: #c0392b;
  min-height: 1em;
}

.form-success {
  margin-top: var(--space-sm);
  padding: var(--space-sm);
  background: rgba(92, 128, 96, 0.1);
  border: 1px solid var(--sage);
  border-radius: var(--radius-sm);
  color: var(--sage);
  font-size: 0.875rem;
  text-align: center;
}

/* Scroll indicator */
.hero-scroll-indicator {
  display: flex;
  justify-content: center;
  margin-top: var(--space-lg);
}
.scroll-line {
  display: block;
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--wine-soft), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.4;
    transform: scaleY(1);
  }
  50% {
    opacity: 1;
    transform: scaleY(1.1);
  }
}
@media (prefers-reduced-motion: reduce) {
  .scroll-line {
    animation: none;
  }
}

/* ════════════════════════════════════════════════════════════
   METRICS
   ════════════════════════════════════════════════════════════ */
.metrics-section {
  background: var(--wine-deep);
  padding-block: var(--space-xl);
}

.metrics-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
}
@media (min-width: 640px) {
  .metrics-list {
    grid-template-columns: repeat(4, 1fr);
  }
}

.metric-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1rem;
  gap: 0.4rem;
  background: var(--wine-deep);
}
.metric-item + .metric-item {
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.metric-number {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.metric-label {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: rgba(247, 241, 234, 0.65);
  text-transform: uppercase;
}

/* ════════════════════════════════════════════════════════════
   QUOTE
   ════════════════════════════════════════════════════════════ */
.quote-section {
  position: relative;
  padding-block: var(--space-2xl);
  background: linear-gradient(
    135deg,
    var(--wine-deep) 0%,
    var(--wine-main) 60%,
    var(--wine-mid) 100%
  );
  overflow: hidden;
}
.quote-section::before {
  content: '"';
  position: absolute;
  top: -0.2em;
  left: 0.05em;
  font-family: var(--font-serif);
  font-size: clamp(12rem, 30vw, 22rem);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.quote-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 70% 50%,
    rgba(200, 160, 80, 0.05) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.quote-inner {
  position: relative;
  z-index: 1;
}

.main-quote {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}
.main-quote p {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3.5vw, 2.6rem);
  font-weight: 300;
  color: var(--bege-light);
  line-height: 1.45;
  font-style: italic;
}
.main-quote em {
  color: var(--gold-light);
  font-style: normal;
}
.main-quote footer {
  margin-top: var(--space-lg);
}
.main-quote cite {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-style: normal;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247, 241, 234, 0.5);
}

/* ════════════════════════════════════════════════════════════
   SERVICES
   ════════════════════════════════════════════════════════════ */
.services-section {
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 960px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background: var(--bege-light);
  border: 1px solid var(--bege-warm);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition:
    transform 0.3s var(--ease-out),
    box-shadow 0.3s var(--ease-out),
    border-color 0.3s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--wine-main), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(61, 13, 32, 0.1);
  border-color: var(--wine-soft);
}
.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  color: var(--wine-main);
}

.service-tag {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
}

.service-pain {
  font-size: 0.9rem;
  color: var(--dark-mid);
  font-style: italic;
  border-left: 2px solid var(--wine-soft);
  padding-left: 0.75rem;
}
.service-solution {
  font-size: 0.9rem;
  color: var(--dark-mid);
  flex: 1;
}
.service-cta {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--wine-main);
  text-transform: uppercase;
  margin-top: auto;
  transition:
    gap 0.2s,
    color 0.2s;
  display: inline-flex;
  align-items: center;
}
.service-cta:hover {
  color: var(--wine-deep);
}
.service-cta:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

.service-card--secondary {
  background: var(--bege-warm);
  border-style: dashed;
}
.service-card--secondary h3 {
  font-size: 1.3rem;
}
.service-card--secondary p {
  font-size: 0.88rem;
  color: var(--dark-mid);
  flex: 1;
}

/* ════════════════════════════════════════════════════════════
   PROCESS
   ════════════════════════════════════════════════════════════ */
.process-section {
  background: var(--bege-light);
}

.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  position: relative;
}
@media (min-width: 768px) {
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .process-steps {
    grid-template-columns: repeat(4, 1fr);
  }
}

.process-step {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  padding: 2rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--bege-warm);
  position: relative;
}

.step-number {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--wine-blush);
  line-height: 1;
}
.step-content h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.step-content p {
  font-size: 0.88rem;
  color: var(--dark-mid);
}

/* ════════════════════════════════════════════════════════════
   ABOUT
   ════════════════════════════════════════════════════════════ */
.about-section {
  background: var(--white);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}
@media (min-width: 860px) {
  .about-inner {
    grid-template-columns: 380px 1fr;
  }
}

/* Image placeholder */
.about-image {
  display: flex;
  justify-content: center;
}
.image-placeholder {
  position: relative;
  width: 320px;
  height: 400px;
}
.image-frame {
  width: 100%;
  height: 100%;
  background: var(--bege-warm);
  border-radius: var(--radius-md);
  border: 1px solid var(--bege-mid);
  position: relative;
  overflow: hidden;
}
.image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--wine-blush) 0%, transparent 60%);
}
.image-initials {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  width: 90px;
  height: 90px;
  background: var(--wine-main);
  color: var(--bege-light);
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 3px solid var(--white);
}

.about-content {
  max-width: 560px;
}
.about-subtitle {
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--gold);
  font-family: var(--font-serif);
  margin-bottom: var(--space-md);
}
.about-content p {
  color: var(--dark-mid);
  margin-bottom: var(--space-sm);
  font-size: 0.97rem;
}
.about-content em {
  font-style: italic;
  color: var(--wine-main);
}

.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: var(--space-md);
}
.badge {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border: 1px solid var(--wine-soft);
  border-radius: 2px;
  color: var(--wine-main);
  background: var(--wine-blush);
}

/* ════════════════════════════════════════════════════════════
   DIFFERENTIALS
   ════════════════════════════════════════════════════════════ */
.diff-section {
  background: var(--wine-deep);
}
.diff-section .section-header h2 {
  color: var(--bege-light);
}
.diff-section .section-header .eyebrow {
  color: var(--gold-light);
}

.diff-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .diff-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 960px) {
  .diff-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.diff-item {
  padding: 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  transition:
    background 0.3s,
    border-color 0.3s;
}
.diff-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(200, 160, 80, 0.3);
}
.diff-icon {
  font-size: 0.75rem;
  color: var(--gold);
  margin-bottom: 1rem;
}
.diff-item h3 {
  color: var(--bege-light);
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
}
.diff-item p {
  color: rgba(237, 227, 214, 0.7);
  font-size: 0.88rem;
}

/* ════════════════════════════════════════════════════════════
   TESTIMONIALS
   ════════════════════════════════════════════════════════════ */
.testimonials-section {
  background: var(--bege-light);
}

.testimonials-slider {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .testimonials-track {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--bege-warm);
  border-radius: var(--radius-md);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
}
.quote-mark {
  font-family: var(--font-serif);
  font-size: 4rem;
  line-height: 1;
  color: var(--wine-soft);
  font-weight: 700;
}
.testimonial-card blockquote p {
  font-size: 0.92rem;
  color: var(--dark-mid);
  font-style: italic;
  line-height: 1.7;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
}
.author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--wine-main);
  color: var(--bege-light);
  font-family: var(--font-serif);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testimonial-author strong {
  display: block;
  font-size: 0.88rem;
  color: var(--dark);
}
.testimonial-author span {
  font-size: 0.75rem;
  color: var(--dark-mid);
}

/* Slider controls (mobile only) */
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: var(--space-lg);
}
@media (min-width: 768px) {
  .slider-controls {
    display: none;
  }
}

.slider-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--bege-warm);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wine-main);
  transition: all 0.2s;
}
.slider-btn:hover {
  background: var(--wine-main);
  color: var(--bege-light);
  border-color: var(--wine-main);
}
.slider-btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.slider-dots {
  display: flex;
  gap: 0.5rem;
}
.slider-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--bege-mid);
  border: none;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.2s;
  padding: 0;
}
.slider-dot.active {
  background: var(--wine-main);
  transform: scale(1.3);
}
.slider-dot:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* Mobile slider behavior */
@media (max-width: 767px) {
  .testimonials-track {
    display: flex;
    transition: transform 0.5s var(--ease-out);
  }
  .testimonial-card {
    min-width: 100%;
    flex-shrink: 0;
  }
  @media (prefers-reduced-motion: reduce) {
    .testimonials-track {
      transition: none;
    }
  }
}

/* ════════════════════════════════════════════════════════════
   FINAL CTA
   ════════════════════════════════════════════════════════════ */
.final-cta-section {
  background:
    radial-gradient(
      ellipse at 30% 60%,
      rgba(200, 160, 80, 0.08) 0%,
      transparent 60%
    ),
    linear-gradient(160deg, var(--wine-deep) 0%, #1a050e 100%);
  padding-block: var(--space-2xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta-section::after {
  content: "K";
  position: absolute;
  bottom: -0.15em;
  right: 0.05em;
  font-family: var(--font-serif);
  font-size: clamp(10rem, 25vw, 20rem);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.02);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.final-cta-content {
  position: relative;
  z-index: 1;
}

.final-cta-heading {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--bege-light);
  margin-bottom: var(--space-md);
}
.final-cta-heading em {
  color: var(--gold-light);
}

.final-cta-sub {
  color: rgba(237, 227, 214, 0.7);
  max-width: 520px;
  margin-inline: auto;
  margin-bottom: var(--space-xl);
  font-size: 1rem;
}

.cta-reassurance {
  margin-top: var(--space-md);
  font-size: 0.78rem;
  color: rgba(237, 227, 214, 0.45);
  letter-spacing: 0.05em;
}

/* ════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--dark);
  color: rgba(237, 227, 214, 0.6);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
}
@media (min-width: 640px) {
  .footer-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 960px) {
  .footer-inner {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--bege-light);
  margin-bottom: 0.5rem;
}
.footer-desc {
  font-size: 0.85rem;
  margin-bottom: var(--space-md);
}

.social-links {
  display: flex;
  gap: 1rem;
}
.social-links a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(237, 227, 214, 0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(237, 227, 214, 0.6);
  transition:
    border-color 0.2s,
    color 0.2s;
}
.social-links a:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.social-links a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.footer-nav-title {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer-nav ul,
.footer-services ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-nav a {
  font-size: 0.875rem;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: var(--bege-light);
}
.footer-nav a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-radius: 2px;
}
.footer-services li {
  font-size: 0.875rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-block: var(--space-md);
}
.footer-bottom .container {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  align-items: center;
  text-align: center;
}
@media (min-width: 640px) {
  .footer-bottom .container {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
.footer-bottom p {
  font-size: 0.8rem;
}
.footer-note {
  font-size: 0.75rem;
  font-style: italic;
  color: rgba(237, 227, 214, 0.3);
}
