/* ==========================================
   NUWAVE SKIN — BOTANICAL LUXURY STYLESHEET
   Rose Gold: #C4846A | Cream: #FAF6F1 | Espresso: #2C1A0E
   Sage: #8A9E80 | Blush: #F2D9CE
   ========================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600&family=Nunito+Sans:wght@200;300;400;500;600;700&display=swap');

/* ── CSS VARIABLES ── */
:root {
  --rose:          #C4846A;
  --rose-light:    #E8B09A;
  --rose-dark:     #8B5A44;
  --rose-pale:     rgba(196,132,106,0.10);
  --rose-blush:    #F2D9CE;

  --cream:         #FAF6F1;
  --cream-soft:    #F5EDE5;
  --cream-card:    #FFFFFF;
  --cream-deep:    #EFE5DA;
  --cream-border:  #E5D8CE;
  --cream-hover:   #F7EEE7;

  --espresso:      #2C1A0E;
  --espresso-soft: #4A2E1E;
  --espresso-mid:  #7A5540;
  --espresso-dim:  #A87B65;
  --espresso-faint:#C8A896;

  --sage:          #8A9E80;
  --sage-light:    #B5C8AD;
  --sage-pale:     rgba(138,158,128,0.10);

  --success: #6B9E7A;
  --error:   #C05A4A;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Nunito Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --container-max: 1280px;
  --nav-height:    80px;
  --section-pad:   100px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);

  --shadow-sm: 0 2px 12px rgba(44,26,14,0.06);
  --shadow-md: 0 8px 40px rgba(44,26,14,0.09);
  --shadow-lg: 0 24px 64px rgba(44,26,14,0.12);
  --shadow-rose: 0 8px 40px rgba(196,132,106,0.20);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--espresso-soft);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }

/* ── CONTAINER ── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 36px;
}

/* ══════════════════════════════════════
   MARQUEE ANNOUNCEMENT BAR
══════════════════════════════════════ */
.marquee-bar {
  background: var(--espresso);
  padding: 10px 0;
  overflow: hidden;
  position: relative;
}

.marquee-bar::before,
.marquee-bar::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.marquee-bar::before { left: 0; background: linear-gradient(to right, var(--espresso), transparent); }
.marquee-bar::after  { right: 0; background: linear-gradient(to left, var(--espresso), transparent); }

.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 36s linear infinite;
}

.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose-blush);
  padding: 0 28px;
  font-family: var(--font-body);
}

.marquee-track span::after {
  content: '✦';
  font-size: 8px;
  color: var(--rose);
  opacity: 0.7;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ══════════════════════════════════════
   TYPOGRAPHY
══════════════════════════════════════ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--espresso);
}

h1 { font-size: clamp(2.6rem, 5.5vw, 4.4rem); font-weight: 500; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 500; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.75rem); font-weight: 500; }
h4 { font-size: 1.15rem; }

p { color: var(--espresso-mid); }

.text-gradient {
  background: linear-gradient(120deg, var(--rose) 0%, var(--rose-light) 60%, var(--rose-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ══════════════════════════════════════
   NAVIGATION
══════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: rgba(250,246,241,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1000;
  border-bottom: 1px solid var(--cream-border);
  transition: all 0.35s var(--ease-in-out);
}

.navbar.scrolled {
  background: rgba(250,246,241,1);
  box-shadow: var(--shadow-sm);
  border-bottom-color: rgba(196,132,106,0.15);
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 36px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-link {
  padding: 8px 18px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--espresso-mid);
  transition: color 0.2s;
  font-family: var(--font-body);
}

.nav-link:hover,
.nav-link.active {
  color: var(--rose);
}

.nav-link.nav-cta {
  background: var(--espresso);
  color: var(--cream);
  font-weight: 700;
  margin-left: 12px;
  padding: 10px 24px;
  transition: background 0.2s, transform 0.2s;
}

.nav-link.nav-cta:hover,
.nav-link.nav-cta.active {
  background: var(--rose);
  color: white;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--espresso);
  transition: all 0.25s;
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .nav-menu {
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 28px;
    gap: 4px;
    border-bottom: 1px solid var(--cream-border);
    transform: translateY(-108%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s var(--ease-out);
    box-shadow: var(--shadow-md);
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-link { width: 100%; text-align: center; }
  .nav-link.nav-cta { margin-left: 0; margin-top: 10px; }
}

/* ══════════════════════════════════════
   FLASH MESSAGES
══════════════════════════════════════ */
.flash-container {
  position: fixed;
  top: calc(var(--nav-height) + 20px);
  right: 20px;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 380px;
}

.flash-message {
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  animation: slideIn 0.3s var(--ease-out);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--cream-border);
  background: var(--cream-card);
  font-size: 14px;
  border-radius: 2px;
}

@keyframes slideIn {
  from { transform: translateX(110%); opacity: 0; }
  to   { transform: translateX(0); opacity: 1; }
}

.flash-success {
  background: rgba(107,158,122,0.10);
  color: #4A8A5C;
  border-color: rgba(107,158,122,0.3);
}

.flash-error {
  background: rgba(192,90,74,0.10);
  color: #C05A4A;
  border-color: rgba(192,90,74,0.3);
}

.flash-close {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: var(--espresso-dim);
  transition: color 0.2s;
}
.flash-close:hover { color: var(--espresso); }

/* ══════════════════════════════════════
   BUTTONS
══════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 34px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.28s var(--ease-out);
}

.btn-primary {
  background: var(--espresso);
  color: var(--cream);
  border-color: var(--espresso);
}
.btn-primary:hover {
  background: var(--rose);
  border-color: var(--rose);
  transform: translateY(-2px);
  box-shadow: var(--shadow-rose);
}

.btn-outline {
  background: transparent;
  color: var(--rose);
  border-color: var(--rose);
}
.btn-outline:hover {
  background: var(--rose);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-rose);
}

.btn-white {
  background: var(--cream);
  color: var(--espresso);
  border-color: var(--cream);
}
.btn-white:hover {
  background: var(--rose-blush);
  border-color: var(--rose-blush);
  transform: translateY(-2px);
}

.btn-full { width: 100%; }

/* ══════════════════════════════════════
   SECTION COMPONENTS
══════════════════════════════════════ */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 68px;
}

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 12px;
  display: block;
  font-family: var(--font-body);
}

.section-badge {
  display: inline-block;
  padding: 5px 16px;
  background: var(--rose-pale);
  border: 1px solid rgba(196,132,106,0.25);
  color: var(--rose);
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-family: var(--font-body);
}

.section-header h2 { margin-bottom: 16px; }
.section-header p { font-size: 1.0625rem; line-height: 1.8; color: var(--espresso-mid); }

.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--rose-blush), transparent);
}

/* ══════════════════════════════════════
   HERO SECTION
══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  overflow: hidden;
}

.hero-bg-wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-soft) 50%, var(--rose-blush) 100%);
}

/* Botanical texture overlay */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(196,132,106,0.06) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(138,158,128,0.05) 0%, transparent 40%),
                    radial-gradient(circle at 60% 80%, rgba(196,132,106,0.04) 0%, transparent 40%);
  z-index: 1;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C4846A' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='1.5'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 0;
}

.hero-bg.image-mode {
  background-size: cover;
  background-position: center;
}

.hero-bg.image-mode::after,
.hero-bg.carousel-mode::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
    rgba(250,246,241,0.92) 0%,
    rgba(250,246,241,0.60) 50%,
    rgba(250,246,241,0.25) 100%);
  z-index: 3;
}

.hero-bg.carousel-mode {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.carousel-slide.active { opacity: 1; z-index: 1; }

.hero-pattern {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 5;
  width: 100%;
}

.hero-content .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-text { max-width: 580px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border: 1px solid rgba(196,132,106,0.4);
  background: rgba(196,132,106,0.08);
  font-size: 11px;
  font-weight: 700;
  color: var(--rose-dark);
  margin-bottom: 28px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-family: var(--font-body);
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rose);
  animation: rosePulse 2.2s infinite;
}

@keyframes rosePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.35; transform: scale(0.7); }
}

.hero-text h1 {
  color: var(--espresso);
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero-text h1 em {
  font-style: italic;
  color: var(--rose);
}

.hero-text p {
  font-size: 1.125rem;
  color: var(--espresso-mid);
  margin-bottom: 40px;
  line-height: 1.85;
  font-weight: 300;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Hero botanical shapes */
.hero-visual {
  position: relative;
  height: 500px;
}

.hero-shape {
  position: absolute;
  border-radius: 60% 40% 50% 50% / 50% 40% 60% 50%;
  opacity: 0.15;
  animation: floatShape 8s ease-in-out infinite;
}

.hero-shape-1 {
  width: 280px; height: 280px;
  top: 8%; right: 10%;
  background: radial-gradient(ellipse, var(--rose) 0%, var(--rose-blush) 70%);
  animation-delay: 0s;
}
.hero-shape-2 {
  width: 180px; height: 180px;
  bottom: 18%; right: 28%;
  background: radial-gradient(ellipse, var(--sage) 0%, var(--sage-light) 70%);
  animation-delay: -3s;
  border-radius: 40% 60% 50% 50%;
}
.hero-shape-3 {
  width: 130px; height: 130px;
  top: 38%; right: 2%;
  background: radial-gradient(ellipse, var(--rose-blush) 0%, transparent 70%);
  animation-delay: -5.5s;
}

@keyframes floatShape {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33%       { transform: translateY(-18px) rotate(4deg); }
  66%       { transform: translateY(-8px) rotate(-2deg); }
}

@media (max-width: 992px) {
  .hero-content .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-text { max-width: 100%; }
  .hero-buttons { justify-content: center; }
  .hero-visual { display: none; }
}

/* ══════════════════════════════════════
   FEATURES SECTION
══════════════════════════════════════ */
.features {
  padding: var(--section-pad) 0;
  background: var(--cream-soft);
  border-top: 1px solid var(--cream-border);
  border-bottom: 1px solid var(--cream-border);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--cream-border);
  border: 1px solid var(--cream-border);
}

.feature-card {
  background: var(--cream-card);
  padding: 44px 32px;
  text-align: center;
  transition: all 0.3s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--rose), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.feature-card:hover {
  background: var(--cream-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-card:hover::before { opacity: 1; }

.feature-icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 24px;
  background: var(--rose-pale);
  border: 1px solid rgba(196,132,106,0.22);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--rose);
}

.feature-card h3 {
  margin-bottom: 12px;
  font-size: 1.15rem;
  color: var(--espresso);
}

.feature-card p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--espresso-mid);
}

@media (max-width: 992px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
  .features-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════
   STATS SECTION
══════════════════════════════════════ */
.stats {
  padding: 90px 0;
  background: var(--espresso);
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 80% at 15% 50%, rgba(196,132,106,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 45% 70% at 85% 50%, rgba(138,158,128,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(196,132,106,0.2);
  border: 1px solid rgba(196,132,106,0.2);
  position: relative;
  z-index: 1;
}

.stat-item {
  background: rgba(44,26,14,0.5);
  padding: 44px 32px;
  text-align: center;
  transition: background 0.3s;
}

.stat-item:hover { background: rgba(196,132,106,0.1); }

.stat-number {
  font-family: var(--font-display);
  font-size: 3.4rem;
  font-weight: 600;
  color: var(--rose-light);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-number::after { content: "+"; font-size: 2rem; }

.stat-label {
  font-size: 11px;
  color: var(--rose-blush);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-family: var(--font-body);
  font-weight: 600;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ══════════════════════════════════════
   ABOUT PREVIEW SECTION
══════════════════════════════════════ */
.about-preview {
  padding: var(--section-pad) 0;
  background: var(--cream);
}

.about-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-preview-image { position: relative; }

.image-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--cream-soft);
  border: 1px solid var(--cream-border);
}

.image-frame.large { aspect-ratio: 1; }

.image-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream-soft);
}

.image-placeholder svg {
  width: 70px;
  height: 70px;
  stroke: var(--espresso-faint);
}

.experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--rose);
  color: white;
  padding: 26px 30px;
  text-align: center;
  box-shadow: var(--shadow-rose);
}

.exp-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 600;
  line-height: 1;
  color: white;
}

.exp-text {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.8);
  font-family: var(--font-body);
  font-weight: 600;
}

.about-preview-content h2 { margin-bottom: 20px; }

.about-preview-content > p {
  font-size: 1.0625rem;
  margin-bottom: 36px;
  line-height: 1.85;
  color: var(--espresso-mid);
  font-weight: 300;
}

.about-list { margin-bottom: 40px; }

.about-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  color: var(--espresso-mid);
  border-bottom: 1px solid var(--cream-border);
  font-size: 15px;
}

.about-list li:first-child { border-top: 1px solid var(--cream-border); }

.about-list svg {
  width: 20px;
  height: 20px;
  fill: var(--sage);
  flex-shrink: 0;
}

@media (max-width: 992px) {
  .about-preview-grid { grid-template-columns: 1fr; gap: 60px; }
  .experience-badge { bottom: 20px; right: 20px; }
}

/* ══════════════════════════════════════
   SERVICES PREVIEW
══════════════════════════════════════ */
.services-preview {
  padding: var(--section-pad) 0;
  background: var(--cream-soft);
  border-top: 1px solid var(--cream-border);
  border-bottom: 1px solid var(--cream-border);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--cream-border);
  border: 1px solid var(--cream-border);
}

.service-card {
  background: var(--cream-card);
  padding: 44px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s var(--ease-out);
  cursor: pointer;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, var(--rose), var(--rose-light));
  opacity: 0;
  transition: opacity 0.3s;
}

.service-card:hover {
  background: var(--cream-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  z-index: 1;
}

.service-card:hover::before { opacity: 1; }

.service-number {
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 300;
  color: rgba(196,132,106,0.09);
  line-height: 1;
  margin-bottom: 18px;
}

.service-card h3 {
  margin-bottom: 14px;
  font-size: 1.35rem;
  color: var(--espresso);
}

.service-card p {
  margin-bottom: 24px;
  line-height: 1.75;
  font-size: 14px;
  color: var(--espresso-mid);
}

.service-link {
  color: var(--rose);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  transition: letter-spacing 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
}

.service-link:hover { letter-spacing: 0.20em; }

.services-cta { text-align: center; margin-top: 52px; }

@media (max-width: 992px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════
   BLOG PREVIEW
══════════════════════════════════════ */
.blog-preview {
  padding: var(--section-pad) 0;
  background: var(--cream);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.blog-card {
  background: var(--cream-card);
  overflow: hidden;
  border: 1px solid var(--cream-border);
  transition: all 0.3s var(--ease-out);
}

.blog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(196,132,106,0.35);
  box-shadow: var(--shadow-md);
}

.blog-card-image {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--cream-soft);
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-placeholder {
  width: 100%;
  height: 100%;
  background: var(--cream-deep);
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-placeholder svg {
  width: 50px;
  height: 50px;
  stroke: var(--espresso-faint);
}

.blog-card-content { padding: 30px; }

.blog-date {
  font-size: 11px;
  color: var(--rose);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-family: var(--font-body);
}

.blog-card-content h3 {
  margin: 10px 0 14px;
  font-size: 1.2rem;
  line-height: 1.4;
}

.blog-card-content h3 a {
  color: var(--espresso);
  transition: color 0.2s;
}

.blog-card-content h3 a:hover { color: var(--rose); }

.blog-card-content p {
  font-size: 14px;
  margin-bottom: 18px;
  line-height: 1.75;
  color: var(--espresso-mid);
}

.blog-link {
  color: var(--rose);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-family: var(--font-body);
}

.blog-cta { text-align: center; margin-top: 52px; }

@media (max-width: 992px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .blog-grid { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════
   CTA SECTION
══════════════════════════════════════ */
.cta-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background: var(--cream-soft);
  border-top: 1px solid var(--cream-border);
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 50% 50%, rgba(196,132,106,0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* Botanical leaf decoration */
.cta-section::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50% 20% 50% 30%;
  background: radial-gradient(ellipse, rgba(138,158,128,0.06) 0%, transparent 70%);
  bottom: -60px;
  right: -40px;
  pointer-events: none;
}

.cta-bg { display: none; }

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.cta-content h2 {
  color: var(--espresso);
  margin-bottom: 18px;
}

.cta-content p {
  color: var(--espresso-mid);
  font-size: 1.125rem;
  margin-bottom: 44px;
  font-weight: 300;
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer {
  background: var(--espresso);
  border-top: 3px solid var(--rose);
  color: var(--rose-blush);
}

.footer-wave { display: none; }

.footer-content { padding: 72px 0 32px; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 64px;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
}

.footer-logo img {
  height: 50px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.1) saturate(0.9);
}

.footer-tagline {
  font-size: 14px;
  line-height: 1.85;
  margin-bottom: 28px;
  color: rgba(242,217,206,0.65);
  font-weight: 300;
}

.footer-social { display: flex; gap: 10px; }

.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(196,132,106,0.12);
  border: 1px solid rgba(196,132,106,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.footer-social a:hover {
  background: var(--rose);
  border-color: var(--rose);
  transform: translateY(-3px);
}

.footer-social svg {
  width: 16px;
  height: 16px;
  fill: var(--rose-blush);
  transition: fill 0.2s;
}

.footer-social a:hover svg { fill: white; }

.footer-links h4,
.footer-contact h4 {
  color: var(--rose-light);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}

.footer-links h4::after,
.footer-contact h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 1px;
  background: var(--rose);
}

.footer-links ul { display: flex; flex-direction: column; gap: 10px; }

.footer-links a {
  color: rgba(242,217,206,0.60);
  font-size: 14px;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--rose-light); }

.footer-contact ul { display: flex; flex-direction: column; gap: 16px; }

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  line-height: 1.65;
  color: rgba(242,217,206,0.60);
}

.footer-contact svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  stroke: var(--rose);
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(196,132,106,0.2);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(242,217,206,0.4);
  letter-spacing: 0.04em;
}

@media (max-width: 992px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 576px) {
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ══════════════════════════════════════
   PAGE HEADER (inner pages)
══════════════════════════════════════ */
.page-header {
  position: relative;
  padding: 180px 0 100px;
  text-align: center;
  overflow: hidden;
  background: var(--cream-soft);
}

.page-header-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-soft) 60%, var(--rose-blush) 100%);
  z-index: 0;
}

.page-header-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 30% 50%, rgba(196,132,106,0.07) 0%, transparent 60%);
}

.page-header-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.page-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  background: rgba(196,132,106,0.10);
  border: 1px solid rgba(196,132,106,0.28);
  font-size: 11px;
  font-weight: 700;
  color: var(--rose-dark);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-family: var(--font-body);
}

.page-header-content h1 { color: var(--espresso); margin-bottom: 18px; }
.page-header-content p { font-size: 1.2rem; color: var(--espresso-mid); font-weight: 300; }

/* ══════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════ */
.about-story {
  padding: var(--section-pad) 0;
  background: var(--cream-soft);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-content h2 { margin-bottom: 22px; }

.story-content p {
  font-size: 1.0625rem;
  line-height: 1.85;
  margin-bottom: 20px;
  color: var(--espresso-mid);
}

.mission-vision {
  padding: 80px 0;
  background: var(--espresso);
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.mv-card {
  background: rgba(196,132,106,0.08);
  padding: 52px 44px;
  text-align: center;
  border: 1px solid rgba(196,132,106,0.2);
  position: relative;
  overflow: hidden;
}

.mv-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--rose), transparent);
}

.mv-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  background: rgba(196,132,106,0.15);
  border: 1px solid rgba(196,132,106,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mv-icon svg { width: 32px; height: 32px; stroke: var(--rose-light); }
.mv-card h3 { margin-bottom: 14px; color: var(--rose-blush); }
.mv-card p { font-size: 15px; line-height: 1.8; color: rgba(242,217,206,0.65); }

.core-values { padding: var(--section-pad) 0; background: var(--cream); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--cream-border);
  border: 1px solid var(--cream-border);
}

.value-card {
  padding: 44px;
  background: var(--cream-card);
  transition: all 0.3s;
}

.value-card:hover { background: var(--cream-hover); }

.value-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: rgba(196,132,106,0.14);
  margin-bottom: 14px;
}

.value-card h3 { margin-bottom: 10px; font-size: 1.15rem; color: var(--espresso); }
.value-card p { font-size: 14px; line-height: 1.75; color: var(--espresso-mid); }

.team-section {
  padding: var(--section-pad) 0;
  background: var(--cream-soft);
}

@media (max-width: 992px) {
  .story-grid, .mv-grid { grid-template-columns: 1fr; }
}
@media (max-width: 576px) {
  .values-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════
   SERVICES PAGE
══════════════════════════════════════ */
.services-full {
  padding: var(--section-pad) 0;
  background: var(--cream-soft);
}

.services-list { display: flex; flex-direction: column; gap: 60px; }

.service-full-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 50px;
  align-items: start;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--cream-border);
}

.service-full-card:last-child { border-bottom: none; }

.service-full-card.reverse { direction: rtl; }
.service-full-card.reverse > * { direction: ltr; }

.service-full-icon {
  width: 100px;
  height: 100px;
  background: var(--rose-pale);
  border: 1px solid rgba(196,132,106,0.22);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-full-icon svg { width: 40px; height: 40px; stroke: var(--rose); }

.service-full-content { position: relative; }

.service-full-number {
  position: absolute;
  top: -20px;
  right: 0;
  font-family: var(--font-display);
  font-size: 6rem;
  font-weight: 300;
  color: rgba(196,132,106,0.06);
  line-height: 1;
  z-index: -1;
}

.service-full-content h3 { font-size: 1.65rem; margin-bottom: 14px; color: var(--espresso); }
.service-full-content > p { font-size: 1.0625rem; line-height: 1.85; margin-bottom: 24px; color: var(--espresso-mid); }

.service-features { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

.service-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--espresso-mid);
  font-size: 14px;
}

.service-features li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--rose);
  border-radius: 50%;
  flex-shrink: 0;
}

.process-section { padding: var(--section-pad) 0; background: var(--cream); }

.process-timeline {
  display: flex;
  flex-direction: column;
  max-width: 800px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  gap: 40px;
  padding: 40px 0;
  position: relative;
}

.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 34px;
  top: 100px;
  bottom: -40px;
  width: 1px;
  background: var(--cream-border);
}

.process-number {
  width: 68px;
  height: 68px;
  background: var(--rose);
  color: white;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 50%;
  position: relative;
  z-index: 1;
}

.process-content h3 { font-size: 1.4rem; margin-bottom: 10px; color: var(--espresso); }
.process-content p { font-size: 1.0625rem; line-height: 1.75; color: var(--espresso-mid); }

@media (max-width: 768px) {
  .service-full-card { grid-template-columns: 1fr; gap: 24px; }
  .service-full-card.reverse { direction: ltr; }
  .service-full-number { display: none; }
  .service-features { grid-template-columns: 1fr; }
  .process-step { gap: 24px; }
}

/* ══════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════ */
.contact-section {
  padding: var(--section-pad) 0;
  background: var(--cream-soft);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
}

.contact-info h2 { margin-bottom: 14px; }

.contact-info > p {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin-bottom: 40px;
  color: var(--espresso-mid);
  font-weight: 300;
}

.contact-details { display: flex; flex-direction: column; gap: 24px; margin-bottom: 40px; }

.contact-item { display: flex; gap: 16px; }

.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--rose-pale);
  border: 1px solid rgba(196,132,106,0.22);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg { width: 20px; height: 20px; stroke: var(--rose); }
.contact-text h4 { font-size: 11px; color: var(--espresso-dim); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 4px; font-family: var(--font-body); font-weight: 700; }
.contact-text p { color: var(--espresso); font-size: 15px; }

.contact-social h4 { font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; margin-bottom: 14px; color: var(--espresso-dim); font-family: var(--font-body); font-weight: 700; }

.social-links { display: flex; gap: 10px; }

.social-links a {
  width: 42px;
  height: 42px;
  background: var(--cream-card);
  border: 1px solid var(--cream-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.social-links a:hover {
  background: var(--rose);
  border-color: var(--rose);
  transform: translateY(-3px);
}

.social-links svg { width: 18px; height: 18px; fill: var(--espresso-dim); transition: fill 0.2s; }
.social-links a:hover svg { fill: white; }

.contact-form-wrapper {
  background: var(--cream-card);
  padding: 52px;
  border: 1px solid var(--cream-border);
  border-top: 3px solid var(--rose);
}

.contact-form h3 { margin-bottom: 28px; font-size: 1.5rem; color: var(--espresso); }

.form-group { margin-bottom: 22px; }

.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--espresso-dim);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-family: var(--font-body);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 15px;
  border: 1px solid var(--cream-border);
  background: var(--cream);
  color: var(--espresso);
  transition: all 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(196,132,106,0.5);
  box-shadow: 0 0 0 3px rgba(196,132,106,0.08);
  background: var(--cream-card);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--espresso-faint); }

.form-group textarea { resize: vertical; min-height: 120px; }

.map-section { height: 400px; }

.map-placeholder {
  width: 100%;
  height: 100%;
  background: var(--cream-deep);
  border: 1px solid var(--cream-border);
  position: relative;
}

.map-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-content { text-align: center; }
.map-content svg { width: 56px; height: 56px; margin-bottom: 14px; stroke: var(--espresso-faint); }

@media (max-width: 992px) {
  .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .contact-form-wrapper { padding: 36px; }
}

/* ══════════════════════════════════════
   BLOG PAGE
══════════════════════════════════════ */
.blog-section {
  padding: var(--section-pad) 0;
  background: var(--cream-soft);
}

.blog-grid-full {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.blog-card-full {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--cream-card);
  overflow: hidden;
  border: 1px solid var(--cream-border);
  transition: all 0.3s var(--ease-out);
}

.blog-card-full:hover {
  transform: translateY(-5px);
  border-color: rgba(196,132,106,0.35);
  box-shadow: var(--shadow-md);
}

.blog-card-full .blog-card-image { aspect-ratio: unset; height: 100%; min-height: 240px; }

.blog-card-full .blog-card-content {
  padding: 34px;
  display: flex;
  flex-direction: column;
}

.blog-meta { margin-bottom: 10px; }

.blog-card-full h2 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-card-full h2 a { color: var(--espresso); transition: color 0.2s; }
.blog-card-full h2 a:hover { color: var(--rose); }
.blog-card-full p { font-size: 13px; line-height: 1.75; margin-bottom: 20px; flex-grow: 1; color: var(--espresso-mid); }
.blog-card-full .blog-link { color: var(--rose); font-weight: 700; font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; font-family: var(--font-body); }

/* Pagination */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 60px;
}

.pagination-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: var(--cream-card);
  border: 1px solid var(--cream-border);
  font-size: 12px;
  font-weight: 700;
  color: var(--espresso-mid);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.2s;
  font-family: var(--font-body);
}

.pagination-link:hover { border-color: var(--rose); color: var(--rose); }

.pagination-numbers { display: flex; gap: 6px; }

.pagination-number {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--espresso-mid);
  border: 1px solid transparent;
  transition: all 0.2s;
}

.pagination-number:hover { border-color: var(--cream-border); color: var(--espresso); }
.pagination-number.active { background: var(--rose); color: white; font-weight: 700; }

.blog-empty { text-align: center; padding: 80px 20px; }

.empty-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 24px;
  background: var(--cream-card);
  border: 1px solid var(--cream-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.empty-icon svg { width: 44px; height: 44px; stroke: var(--espresso-faint); }
.blog-empty h2 { margin-bottom: 10px; }

.newsletter-section { padding: 0 0 var(--section-pad); background: var(--cream-soft); }

.newsletter-card {
  background: var(--cream-card);
  border: 1px solid var(--cream-border);
  border-top: 3px solid var(--rose);
  padding: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.newsletter-content h2 { margin-bottom: 6px; font-size: 1.8rem; }
.newsletter-content p { color: var(--espresso-mid); font-size: 1.0625rem; }

.newsletter-form { display: flex; gap: 10px; flex-shrink: 0; }

.newsletter-form input {
  padding: 14px 22px;
  border: 1px solid var(--cream-border);
  background: var(--cream);
  color: var(--espresso);
  font-size: 14px;
  width: 280px;
  transition: all 0.2s;
  font-family: var(--font-body);
}

.newsletter-form input::placeholder { color: var(--espresso-faint); }

.newsletter-form input:focus {
  outline: none;
  border-color: rgba(196,132,106,0.45);
  background: var(--cream-card);
}

@media (max-width: 992px) {
  .blog-grid-full { grid-template-columns: 1fr; }
  .newsletter-card { flex-direction: column; text-align: center; padding: 44px; }
  .newsletter-form { flex-direction: column; width: 100%; max-width: 400px; }
  .newsletter-form input { width: 100%; }
}

@media (max-width: 768px) {
  .blog-card-full { grid-template-columns: 1fr; }
  .blog-card-full .blog-card-image { min-height: 200px; }
}

/* ══════════════════════════════════════
   BLOG POST PAGE
══════════════════════════════════════ */
.post-header {
  position: relative;
  padding: 180px 0 80px;
  overflow: hidden;
  background: var(--cream-soft);
}

.post-header-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--espresso-dim);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 24px;
  transition: color 0.2s;
  font-family: var(--font-body);
  font-weight: 700;
}

.back-link:hover { color: var(--rose); }
.back-link svg { width: 16px; height: 16px; }

.post-header-content h1 {
  color: var(--espresso);
  margin-bottom: 24px;
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.post-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.post-meta > span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--espresso-mid);
  font-size: 13px;
}

.post-meta svg { width: 15px; height: 15px; }

.post-content-section {
  padding: var(--section-pad) 0;
  background: var(--cream);
}

.post-article {
  max-width: 800px;
  margin: 0 auto;
}

.post-featured-image {
  margin-bottom: 50px;
  overflow: hidden;
  border: 1px solid var(--cream-border);
}

.post-body {
  font-size: 1.0625rem;
  line-height: 1.95;
  color: var(--espresso-mid);
}

.post-body h2, .post-body h3, .post-body h4 { margin-top: 40px; margin-bottom: 20px; }
.post-body p { margin-bottom: 24px; color: var(--espresso-mid); }
.post-body ul, .post-body ol { margin-bottom: 24px; padding-left: 24px; }
.post-body li { margin-bottom: 8px; list-style: disc; }
.post-body ol li { list-style: decimal; }
.post-body a { color: var(--rose); text-decoration: underline; }

.post-body blockquote {
  margin: 32px 0;
  padding: 24px 34px;
  border-left: 3px solid var(--rose);
  background: var(--rose-pale);
  font-style: italic;
  color: var(--espresso-mid);
}

.post-footer {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--cream-border);
}

.post-share { display: flex; align-items: center; gap: 16px; }
.post-share > span { font-weight: 700; color: var(--espresso-dim); font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; font-family: var(--font-body); }

.share-links { display: flex; gap: 8px; }

.share-links a {
  width: 38px;
  height: 38px;
  background: var(--cream-card);
  border: 1px solid var(--cream-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.share-links a:hover { background: var(--rose); border-color: var(--rose); }
.share-links svg { width: 16px; height: 16px; fill: var(--espresso-dim); transition: fill 0.2s; }
.share-links a:hover svg { fill: white; }

.post-navigation { text-align: center; margin-top: 60px; }

/* ══════════════════════════════════════
   TEAM CAROUSEL
══════════════════════════════════════ */
.carousel-container {
  position: relative !important;
  padding: 0 60px !important;
  overflow: visible !important;
}

.team-grid {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  overflow-x: auto !important;
  gap: 24px !important;
  padding: 20px 0 40px !important;
  scrollbar-width: none !important;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth !important;
}

.team-grid::-webkit-scrollbar { display: none !important; }

.team-card {
  flex: 0 0 calc(33.333% - 16px) !important;
  min-width: calc(33.333% - 16px) !important;
  max-width: calc(33.333% - 16px) !important;
  background: var(--cream-card) !important;
  border: 1px solid var(--cream-border) !important;
  scroll-snap-align: start;
  transition: all 0.3s var(--ease-out) !important;
}

.team-card:hover {
  transform: translateY(-6px) !important;
  border-color: rgba(196,132,106,0.35) !important;
  box-shadow: var(--shadow-md) !important;
}

.team-image {
  width: 100% !important;
  height: 280px !important;
  overflow: hidden !important;
}

.team-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  filter: saturate(0.85);
  transition: filter 0.3s !important;
}

.team-card:hover .team-image img { filter: saturate(1) !important; }

.team-placeholder {
  width: 100%;
  height: 100%;
  background: var(--cream-deep);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-placeholder svg { width: 70px; height: 70px; stroke: var(--espresso-faint); }

.team-info {
  padding: 28px;
  text-align: center;
  border-top: 1px solid var(--cream-border);
}

.team-info h3 { margin-bottom: 6px; font-size: 1.15rem; color: var(--espresso); }

.team-role {
  color: var(--rose);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 10px;
  font-family: var(--font-body);
}

.team-info > p:last-child { font-size: 13px; line-height: 1.75; color: var(--espresso-mid); }

.nav-btn {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 48px !important;
  height: 48px !important;
  background: var(--cream-card) !important;
  border: 1px solid rgba(196,132,106,0.4) !important;
  color: var(--rose) !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  z-index: 999 !important;
  box-shadow: var(--shadow-sm) !important;
  transition: all 0.2s !important;
}

.nav-btn:hover {
  background: var(--rose) !important;
  color: white !important;
}

.nav-btn svg { width: 22px !important; height: 22px !important; stroke: currentColor !important; }
.prev-btn { left: -24px !important; }
.next-btn { right: -24px !important; }

@media (max-width: 768px) {
  .team-card {
    flex: 0 0 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
  }
  .carousel-container { padding: 0 48px !important; }
  .prev-btn { left: 0 !important; }
  .next-btn { right: 0 !important; }
}