/* =========================================
   CSS CUSTOM PROPERTIES
   ========================================= */
:root {
  --bg:       #FBF7F2;
  --primary:  #C97B82;
  --blush:    #E8C4C0;
  --text:     #2B2420;
  --gold:     #C9A876;
  --white:    #FFFFFF;
  --text-muted: #6B5E5A;

  --font-serif:  'Playfair Display', Georgia, serif;
  --font-sans:   'Inter', system-ui, sans-serif;
  --font-script: 'Dancing Script', cursive;

  --radius: 10px;
  --shadow: 0 4px 24px rgba(43, 36, 32, 0.08);
  --shadow-hover: 0 10px 48px rgba(43, 36, 32, 0.14);

  --container: 1200px;
  --section-gap: 6rem;
  --nav-h: 72px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

/* =========================================
   TYPOGRAPHY
   ========================================= */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.2;
  color: var(--text);
}

h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }

p {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 65ch;
}

/* =========================================
   LAYOUT UTILITIES
   ========================================= */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: var(--section-gap) 0; }

.section-label {
  font-family: var(--font-sans);
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.65rem;
}

.section-intro {
  font-size: 1.1rem;
  margin-bottom: 3rem;
  max-width: 58ch;
}

.text-center { text-align: center; }
.text-center p { margin-inline: auto; }

/* =========================================
   GOLD DIVIDER
   ========================================= */
.gold-divider {
  border: none;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 0 auto;
  max-width: 560px;
  opacity: 0.65;
}

/* =========================================
   BUTTONS
   ========================================= */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 0.875rem 2.2rem;
  border-radius: 6px;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
}
.btn-primary:hover {
  background-color: #b56870;
  box-shadow: 0 4px 18px rgba(201, 123, 130, 0.38);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--text);
}
.btn-outline:hover {
  background-color: var(--text);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}
.btn-ghost:hover {
  background-color: var(--primary);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-white {
  background-color: var(--white);
  color: var(--primary);
  font-weight: 600;
}
.btn-white:hover {
  background-color: var(--bg);
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(0,0,0,0.12);
}

/* =========================================
   NAVIGATION
   ========================================= */
.nav {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 200;
  background-color: rgba(251, 247, 242, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201, 168, 118, 0.18);
  transition: box-shadow 0.3s ease;
}
.nav.scrolled {
  box-shadow: 0 2px 20px rgba(43, 36, 32, 0.09);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.02em;
}
.nav-logo span { color: var(--primary); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text);
  position: relative;
  transition: color 0.2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 1px;
  background-color: var(--gold);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}
.nav-links a:hover,
.nav-links a.active { color: var(--primary); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

.nav-cta { margin-left: 0.75rem; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background-color: var(--text);
  transition: all 0.3s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile drawer */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  inset-inline: 0;
  background-color: var(--bg);
  border-bottom: 1px solid rgba(201, 168, 118, 0.2);
  padding: 1.25rem 1.5rem 1.75rem;
  z-index: 199;
  box-shadow: 0 8px 28px rgba(43, 36, 32, 0.09);
}
.nav-mobile.open { display: block; }
.nav-mobile a {
  display: block;
  padding: 0.85rem 0;
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(201, 168, 118, 0.15);
  color: var(--text);
  transition: color 0.2s;
}
.nav-mobile a:last-child { border-bottom: none; padding-bottom: 0; }
.nav-mobile a:hover { color: var(--primary); }

/* =========================================
   HERO
   ========================================= */
.hero {
  padding-top: var(--nav-h);
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(155deg, #f0deda 0%, #f6ede8 28%, var(--bg) 65%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -15%; right: -8%;
  width: 580px; height: 580px;
  background: radial-gradient(circle, rgba(232,196,192,0.32) 0%, transparent 68%);
  pointer-events: none;
}

.hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 4.5rem 1.5rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4.5rem;
  align-items: center;
}

.hero-eyebrow {
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 30px; height: 1px;
  background-color: var(--gold);
  flex-shrink: 0;
}

.hero h1 { margin-bottom: 1.4rem; font-weight: 500; }
.hero h1 em { font-style: italic; color: var(--primary); }

.hero-sub {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 54ch;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Hero visual */
.hero-visual { position: relative; }

.hero-card {
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 3rem 2.5rem;
  border-top: 3px solid var(--gold);
}
.hero-card-icon {
  font-size: 1.5rem;
  color: var(--blush);
  margin-bottom: 1.25rem;
  display: block;
}
.hero-card-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--text);
  margin-bottom: 1.75rem;
}
.hero-card-divider {
  border: none;
  border-top: 1px solid rgba(201, 168, 118, 0.35);
  margin-bottom: 1.75rem;
}
.hero-card-list { display: flex; flex-direction: column; gap: 0.9rem; }
.hero-card-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}
.hero-card-list i { color: var(--primary); font-size: 0.85rem; }

.hero-img-accent {
  position: absolute;
  bottom: -18px; right: -18px;
  width: 110px; height: 110px;
  border: 1.5px solid var(--gold);
  border-radius: 12px;
  opacity: 0.45;
  pointer-events: none;
}

/* =========================================
   ABOUT
   ========================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: center;
}

.about-image { position: relative; }
.about-img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-img-wrap img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

.about-img-badge {
  position: absolute;
  bottom: -1.25rem; right: -1.25rem;
  background-color: var(--white);
  border: 1px solid rgba(201, 168, 118, 0.4);
  border-radius: var(--radius);
  padding: 1rem 1.4rem;
  box-shadow: var(--shadow);
  text-align: center;
}
.about-img-badge strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--primary);
}
.about-img-badge span {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.about-content p { margin-bottom: 1.2rem; }
.about-content p:last-of-type { margin-bottom: 0; }

.about-signature {
  font-family: var(--font-script);
  font-size: 2.2rem;
  color: var(--primary);
  margin-top: 1.75rem;
  display: block;
  line-height: 1;
}

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

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

.service-card {
  background-color: var(--bg);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  border-top: 3px solid var(--primary);
}
.service-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-5px);
}

.service-icon {
  width: 46px; height: 46px;
  background-color: rgba(232, 196, 192, 0.38);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--primary);
  font-size: 1.2rem;
}

.service-card h3 { margin-bottom: 0.6rem; font-size: 1.2rem; }

.service-for {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
}

.service-card > p { font-size: 0.95rem; }

.service-includes {
  margin-top: 1.4rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(201, 168, 118, 0.28);
}
.service-includes h4 {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.65rem;
}
.service-includes li {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 0.28rem 0 0.28rem 1.1rem;
  position: relative;
}
.service-includes li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 6px; height: 1px;
  background-color: var(--gold);
}

/* =========================================
   PORTFOLIO
   ========================================= */
.portfolio-sub { margin-bottom: 3.5rem; }

.portfolio-sub-title {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.portfolio-sub-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, rgba(201,168,118,0.45), transparent);
}

/* LinkedIn post cards */
.linkedin-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.linkedin-post {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border-left: 3px solid var(--blush);
  transition: box-shadow 0.3s ease;
}
.linkedin-post:hover { box-shadow: var(--shadow-hover); }

.lp-meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}
.lp-avatar {
  width: 38px; height: 38px;
  background-color: var(--blush);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 0.85rem;
}
.lp-name { font-size: 0.875rem; font-weight: 600; color: var(--text); }
.lp-role { font-size: 0.78rem; color: var(--text-muted); }

.linkedin-post p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text);
  max-width: none;
}

.lp-stats {
  margin-top: 1rem;
  padding-top: 0.875rem;
  border-top: 1px solid rgba(201,168,118,0.2);
  display: flex;
  gap: 1.25rem;
}
.lp-stat {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
}
.lp-stat span { color: var(--primary); }

/* Photo grid */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.portfolio-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  cursor: pointer;
}
.portfolio-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.portfolio-item.tall img { aspect-ratio: 3/4; }
.portfolio-item:hover img { transform: scale(1.05); }

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(201, 123, 130, 0.38);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }

.portfolio-caption {
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 500;
  text-shadow: 0 1px 6px rgba(0,0,0,0.35);
}

/* Video grid */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.video-thumb {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.video-thumb img { width: 100%; aspect-ratio: 9/16; object-fit: cover; }

.video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(43, 36, 32, 0.18);
  transition: background 0.3s ease;
}
.video-thumb:hover .video-play { background: rgba(201, 123, 130, 0.38); }

.play-btn {
  width: 50px; height: 50px;
  background: rgba(251, 247, 242, 0.92);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1rem;
  padding-left: 3px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
}

/* =========================================
   RESULTS / INDUSTRIES
   ========================================= */
/* Note: section title uses id="results-title" — change inner text to
   "Client Results" when replacing placeholders with real case studies. */
.results-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-bottom: 4rem;
}

.result-item {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.result-item:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.result-img { width: 100%; aspect-ratio: 16/10; object-fit: cover; display: block; }

.result-body { padding: 1.5rem; }
.result-industry {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.4rem;
}
.result-item h4 { font-family: var(--font-serif); font-size: 1rem; margin-bottom: 0.4rem; }
.result-item p { font-size: 0.875rem; max-width: none; }

.industries-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}
.industry-tag {
  background-color: rgba(232, 196, 192, 0.28);
  border: 1px solid rgba(201, 123, 130, 0.28);
  color: var(--text);
  padding: 0.45rem 1.2rem;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: background 0.2s;
}
.industry-tag:hover { background-color: rgba(232,196,192,0.55); }

/* =========================================
   WHY WORK WITH ME
   ========================================= */
.why-section {
  background-color: var(--text);
}
.why-section .section-label { color: var(--gold); }
.why-section h2  { color: var(--white); }
.why-section .section-intro { color: rgba(251,247,242,0.72); }

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

.why-card {
  padding: 2.25rem;
  border: 1px solid rgba(201,168,118,0.22);
  border-radius: var(--radius);
  transition: border-color 0.3s ease;
}
.why-card:hover { border-color: rgba(201,168,118,0.55); }

.why-icon {
  color: var(--gold);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.why-card h3 { color: var(--white); font-size: 1.2rem; margin-bottom: 0.65rem; }
.why-card p { color: rgba(251,247,242,0.68); max-width: none; }

/* =========================================
   FAQ ACCORDION
   ========================================= */
.faq-list {
  max-width: 760px;
  margin: 3rem auto 0;
}

.faq-item { border-bottom: 1px solid rgba(201,168,118,0.32); }
.faq-item:first-child { border-top: 1px solid rgba(201,168,118,0.32); }

.faq-trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 1.4rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  text-align: left;
}

.faq-question {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.35;
}

.faq-icon {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.7rem;
  transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background-color: var(--gold);
  color: var(--white);
}

.faq-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.38s ease;
}
.faq-answer {
  padding-bottom: 1.4rem;
  font-size: 0.975rem;
  color: var(--text-muted);
  max-width: none;
  line-height: 1.8;
}

/* =========================================
   CONTACT PAGE
   ========================================= */
.page-hero {
  padding-top: var(--nav-h);
  background: linear-gradient(155deg, #f0deda 0%, #f6ede8 28%, var(--bg) 65%);
  padding-bottom: 4rem;
  text-align: center;
}
.page-hero-inner { padding-top: 4.5rem; }
.page-hero h1 { margin-bottom: 0.875rem; }
.page-hero p { font-size: 1.1rem; margin-inline: auto; }

.contact-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 5rem;
  align-items: start;
  padding-top: 4rem;
  padding-bottom: 6rem;
}

.form-group { margin-bottom: 1.4rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }

.form-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  padding: 0.875rem 1rem;
  background-color: var(--white);
  border: 1.5px solid rgba(201,168,118,0.3);
  border-radius: 6px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color 0.22s, box-shadow 0.22s;
  outline: none;
  -webkit-appearance: none;
}
.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(201,123,130,0.12);
}
.form-control::placeholder { color: rgba(107,94,90,0.45); }
textarea.form-control { resize: vertical; min-height: 140px; }

.contact-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }

.contact-info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.25rem;
  box-shadow: var(--shadow);
}
.contact-info-card h3 { font-size: 1.15rem; margin-bottom: 1.25rem; }

.c-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(201,168,118,0.18);
  font-size: 0.9rem;
  color: var(--text-muted);
}
.c-detail:last-child { border-bottom: none; padding-bottom: 0; }
.c-detail i { color: var(--primary); width: 18px; text-align: center; margin-top: 2px; font-size: 0.875rem; }

.booking-card {
  background: linear-gradient(135deg, var(--primary) 0%, #b56870 100%);
  color: var(--white);
  border-radius: var(--radius);
  padding: 2.25rem;
  text-align: center;
}
.booking-card h3 { color: var(--white); margin-bottom: 0.75rem; font-size: 1.2rem; }
.booking-card p { color: rgba(255,255,255,0.85); margin-bottom: 1.75rem; max-width: none; font-size: 0.9rem; }

/* =========================================
   RESOURCES PAGE
   ========================================= */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

.article-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  display: flex;
  flex-direction: column;
}
.article-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.article-card-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }

.article-card-body {
  padding: 1.75rem 2rem 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.article-cat {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.65rem;
}

.article-card h3 { font-size: 1.25rem; margin-bottom: 0.65rem; line-height: 1.3; }
.article-card p { font-size: 0.9rem; flex: 1; margin-bottom: 1.5rem; max-width: none; }

.read-more {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.2s;
  margin-top: auto;
}
.article-card:hover .read-more { gap: 0.75rem; }

/* =========================================
   ARTICLE PAGES
   ========================================= */
.article-hero {
  padding-top: var(--nav-h);
  background: linear-gradient(155deg, #f0deda 0%, #f6ede8 28%, var(--bg) 65%);
  padding-bottom: 3.5rem;
}
.article-hero-inner { padding-top: 4rem; max-width: 760px; }

.article-meta {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 2rem;
  transition: color 0.2s;
}
.back-link:hover { color: var(--primary); }

.article-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 4rem 1.5rem 2rem;
}

.article-body h2 {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  margin: 3rem 0 1rem;
}
.article-body h3 {
  font-size: 1.2rem;
  margin: 2rem 0 0.65rem;
}
.article-body p {
  max-width: none;
  margin-bottom: 1.5rem;
  font-size: 1.025rem;
  line-height: 1.85;
}
.article-body ul, .article-body ol {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}
.article-body li {
  font-size: 1.025rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 0.45rem;
}

.article-cta {
  background: linear-gradient(135deg, rgba(232,196,192,0.28), rgba(201,168,118,0.14));
  border: 1px solid rgba(201,168,118,0.3);
  border-radius: var(--radius);
  padding: 2.5rem;
  margin: 4rem 0 2rem;
  text-align: center;
}
.article-cta h3 { margin-bottom: 0.65rem; }
.article-cta p { margin-bottom: 1.5rem; max-width: none; }

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background-color: var(--text);
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(201,168,118,0.18);
  margin-bottom: 2rem;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--white);
  display: block;
  margin-bottom: 0.875rem;
}
.footer-logo span { color: var(--primary); }

.footer-brand p {
  font-size: 0.875rem;
  color: rgba(251,247,242,0.55);
  max-width: 28ch;
  line-height: 1.75;
}

.footer-social { display: flex; gap: 0.65rem; margin-top: 1.5rem; }
.social-link {
  width: 36px; height: 36px;
  border: 1px solid rgba(201,168,118,0.28);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(251,247,242,0.55);
  font-size: 0.8rem;
  transition: all 0.22s ease;
}
.social-link:hover { border-color: var(--gold); color: var(--gold); }

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.2rem;
}
.footer-col li { margin-bottom: 0.55rem; }
.footer-col li a {
  font-size: 0.875rem;
  color: rgba(251,247,242,0.55);
  transition: color 0.2s;
}
.footer-col li a:hover { color: var(--gold); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.65rem;
  font-size: 0.875rem;
  color: rgba(251,247,242,0.55);
}
.footer-contact-item i { color: var(--gold); margin-top: 2px; font-size: 0.8rem; flex-shrink: 0; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-copy { font-size: 0.78rem; color: rgba(251,247,242,0.35); }

/* =========================================
   RESPONSIVE BREAKPOINTS
   ========================================= */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .results-gallery { grid-template-columns: repeat(2, 1fr); }
  .photo-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  :root { --section-gap: 4rem; }

  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .hero-inner {
    grid-template-columns: 1fr;
    padding: 3rem 1.5rem 4rem;
    gap: 2.5rem;
  }
  .hero-visual { order: -1; max-width: 420px; margin: 0 auto; }
  .hero-card { padding: 2.25rem 1.75rem; }

  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-image { max-width: 280px; margin: 0 auto; }
  .about-img-badge { bottom: -1rem; right: 0; }

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

  .why-grid { grid-template-columns: 1fr; gap: 1.25rem; }

  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }

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

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

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .form-row { grid-template-columns: 1fr; gap: 0; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; text-align: center; }
  .photo-grid { grid-template-columns: repeat(2, 1fr); }
  .video-grid { grid-template-columns: 1fr; }
}
