/*
Theme Name: Verdana Paysagisme
Theme URI: https://verdana-paysagisme.fr
Description: Premium landscaping theme — Elementor compatible
Version: 1.0.0
Author: Verdana
Text Domain: verdana
*/

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

:root {
  --moss:        #3d5a2e;
  --moss-light:  #5a7a45;
  --earth:       #7a5c3a;
  --bark:        #2e2218;
  --sage:        #8fa67a;
  --stone:       #c4b89a;
  --cream:       #f5f0e8;
  --parchment:   #ede6d6;
  --white:       #fdfaf5;
  --text:        #2a1f14;
  --text-muted:  #6b5a48;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', system-ui, sans-serif;
  --radius:       2px;
  --transition:   .35s cubic-bezier(.4,0,.2,1);
  --shadow:       0 8px 32px rgba(46,34,24,.12);
}

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

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--font-body); }

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ═══════════════════════════════════════
   TYPOGRAPHY
═══════════════════════════════════════ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.1;
  color: var(--bark);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--earth);
  margin-bottom: 16px;
}
.section-tag::before {
  content: '';
  width: 28px;
  height: 1px;
  background: currentColor;
  flex-shrink: 0;
}
.section-tag-light { color: var(--sage); }

.section-title {
  font-size: clamp(32px, 4vw, 56px);
  color: var(--bark);
  line-height: 1.08;
}
.section-title em { font-style: italic; color: var(--moss); }
.section-title-light { color: var(--white); }
.section-title-light em { color: var(--sage); }

.section-pad { padding: 100px 0; }

.section-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  gap: 40px;
}
.section-header-desc {
  max-width: 300px;
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-muted);
  text-align: right;
}

/* ═══════════════════════════════════════
   BUTTONS
═══════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 36px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--moss);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--moss-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(61,90,46,.32);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.45);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.1);
}

/* ═══════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════ */
#masthead {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 24px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all .4s ease;
}
#masthead.scrolled {
  background: rgba(245,240,232,.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 14px 60px;
  border-bottom: 1px solid var(--stone);
  box-shadow: 0 2px 20px rgba(46,34,24,.06);
}

.site-branding a {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  transition: color var(--transition);
}
#masthead.scrolled .site-branding a { color: var(--moss); }
.site-branding a em { font-style: italic; color: var(--sage); }
#masthead.scrolled .site-branding a em { color: var(--earth); }

/* NAV LINKS — plus grands et lisibles */
.main-navigation ul {
  display: flex;
  gap: 40px;
  list-style: none;
  align-items: center;
}
.main-navigation a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  position: relative;
  padding-bottom: 4px;
  transition: color var(--transition);
}
.main-navigation a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: currentColor;
  transition: width var(--transition);
}
.main-navigation a:hover { color: var(--white); }
.main-navigation a:hover::after { width: 100%; }

#masthead.scrolled .main-navigation a { color: var(--text-muted); }
#masthead.scrolled .main-navigation a:hover { color: var(--moss); }

/* Lang switcher */
.lang-switcher {
  display: flex;
  gap: 2px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 40px;
  padding: 3px;
}
#masthead.scrolled .lang-switcher {
  background: var(--parchment);
  border-color: var(--stone);
}
.lang-switcher a {
  padding: 5px 14px;
  border-radius: 40px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  transition: all .2s;
}
.lang-switcher a.active,
.lang-switcher a:hover {
  background: var(--moss);
  color: var(--white);
}
#masthead.scrolled .lang-switcher a { color: var(--text-muted); }

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.menu-toggle span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--white);
  transition: all .3s;
}
#masthead.scrolled .menu-toggle span { background: var(--bark); }

/* ═══════════════════════════════════════
   HERO — corrigé tablette/mobile
═══════════════════════════════════════ */
.hero-section {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 120px 60px 80px;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp .8s .3s ease forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 5.5vw, 86px);
  font-weight: 300;
  line-height: 1.04;
  color: var(--white);
  opacity: 0;
  animation: fadeUp .8s .5s ease forwards;
}
.hero-title em { font-style: italic; color: var(--sage); }

.hero-desc {
  margin-top: 22px;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,.72);
  max-width: 420px;
  opacity: 0;
  animation: fadeUp .8s .7s ease forwards;
}

.hero-buttons {
  margin-top: 44px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .8s .9s ease forwards;
}

.hero-visual {
  position: relative;
  overflow: hidden;
}
.hero-visual-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, #3d5a2e 0%, #1a3012 40%, #2d4a1e 70%, #5a7a45 100%);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 60px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  opacity: 0;
  animation: fadeUp .8s 1.2s ease forwards;
  z-index: 2;
}
.scroll-line {
  width: 36px;
  height: 1px;
  background: rgba(255,255,255,.25);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--sage);
  animation: slideLine 2s 1.5s ease infinite;
}

/* Hero background full sur tablette/mobile */
@media (max-width: 900px) {
  .hero-section {
    grid-template-columns: 1fr;
    min-height: 100svh;
    background: linear-gradient(150deg, #2a4020 0%, #1a3012 45%, #3d5a2e 100%);
  }
  .hero-content {
    justify-content: center;
    padding: 100px 40px 60px;
    min-height: 100svh;
  }
  .hero-visual { display: none; }
  .hero-desc { max-width: 100%; }
  .hero-scroll-hint { left: 40px; }
}

@media (max-width: 600px) {
  .hero-content { padding: 90px 24px 56px; }
  .hero-title { font-size: clamp(38px, 10vw, 56px); }
  .hero-scroll-hint { left: 24px; }
}

/* ═══════════════════════════════════════
   STATS BAR
═══════════════════════════════════════ */
.stats-bar {
  background: var(--bark);
  position: relative;
  z-index: 1;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 48px 32px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.07);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 300;
  color: var(--sage);
  line-height: 1;
}
.stat-label {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
}

@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { padding: 36px 20px; border-bottom: 1px solid rgba(255,255,255,.07); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3), .stat-item:nth-child(4) { border-bottom: none; }
}

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

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--parchment);
}

.service-card {
  background: var(--white);
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
  transition: background var(--transition);
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--moss);
  transform: translateY(100%);
  transition: transform .5s cubic-bezier(.4,0,.2,1);
  z-index: 0;
}
.service-card:hover::before { transform: translateY(0); }
.service-card > * { position: relative; z-index: 1; }

.service-number {
  display: block;
  font-family: var(--font-display);
  font-size: 60px;
  font-weight: 300;
  color: var(--parchment);
  line-height: 1;
  margin-bottom: 16px;
  transition: color var(--transition);
}
.service-card:hover .service-number { color: rgba(255,255,255,.1); }

.service-icon {
  width: 42px; height: 42px;
  stroke: var(--moss);
  fill: none;
  stroke-width: 1.5px;
  stroke-linecap: round;
  margin-bottom: 18px;
  transition: stroke var(--transition);
}
.service-card:hover .service-icon { stroke: var(--sage); }

.service-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--bark);
  margin-bottom: 10px;
  transition: color var(--transition);
}
.service-card:hover .service-name { color: var(--white); }

.service-desc {
  font-size: 13px;
  line-height: 1.75;
  color: var(--text-muted);
  transition: color var(--transition);
}
.service-card:hover .service-desc { color: rgba(255,255,255,.65); }

@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 32px 24px; }
}

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

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

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

.about-image-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(155deg, #2d4a1e 0%, #1a3012 45%, #3d5a2e 100%);
  border-radius: var(--radius);
  overflow: hidden;
}

.about-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 150px;
  height: 150px;
  background: var(--parchment);
  border: 6px solid var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-badge-inner {
  width: 110px;
  height: 110px;
  background: linear-gradient(135deg, var(--moss), var(--earth));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
}
.about-badge-number {
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 300;
  color: rgba(255,255,255,.9);
  line-height: 1;
}
.about-badge-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 32px;
}
.value-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 18px;
  background: var(--parchment);
  border-radius: var(--radius);
  transition: background var(--transition);
}
.value-item:hover { background: var(--stone); }
.value-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--moss);
  flex-shrink: 0;
  margin-top: 8px;
}
.value-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  color: var(--bark);
  margin-bottom: 3px;
}
.value-desc { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-badge { display: none; }
  .about-image-placeholder { aspect-ratio: 16/9; }
}

/* ═══════════════════════════════════════
   PROJECTS
═══════════════════════════════════════ */
.projects-section { background: var(--bark); }

.projects-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 3px;
  margin-top: 56px;
}
.project-card {
  position: relative;
  overflow: hidden;
  cursor: default;
}
.project-card:first-child { grid-row: 1 / 3; }

.project-bg {
  position: absolute;
  inset: 0;
  transition: transform .6s cubic-bezier(.4,0,.2,1);
}
.project-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.project-card:hover .project-bg { transform: scale(1.06); }

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18,28,10,.88) 0%, transparent 55%);
  z-index: 2;
}
.project-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px;
  z-index: 3;
  transform: translateY(6px);
  transition: transform .4s;
}
.project-card:hover .project-info { transform: translateY(0); }

.project-category {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 6px;
}
.project-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
}
.project-card:first-child .project-name { font-size: 30px; }

@media (max-width: 900px) {
  .projects-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 220px;
  }
  .project-card:first-child { grid-row: auto; grid-column: 1 / 3; }
}
@media (max-width: 560px) {
  .projects-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .project-card { height: 220px; }
  .project-card:first-child { grid-column: auto; }
}

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

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  margin-top: 60px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 26px; left: 52px; right: 52px;
  height: 1px;
  background: var(--parchment);
  z-index: 0;
}
.process-step { position: relative; z-index: 1; }

.step-number {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--stone);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 300;
  color: var(--moss);
  margin-bottom: 20px;
  transition: all var(--transition);
}
.process-step:hover .step-number {
  background: var(--moss);
  color: var(--white);
  border-color: var(--moss);
}
.step-title {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 400;
  color: var(--bark);
  margin-bottom: 10px;
}
.step-desc { font-size: 13px; line-height: 1.7; color: var(--text-muted); }

@media (max-width: 900px) {
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
}
@media (max-width: 560px) {
  .process-steps { grid-template-columns: 1fr; gap: 24px; }
}

/* ═══════════════════════════════════════
   TESTIMONIAL
═══════════════════════════════════════ */
.testimonial-section {
  background: var(--parchment);
  padding: 110px 60px;
  text-align: center;
}
.testimonial-quote-wrap {
  max-width: 820px;
  margin: 0 auto 40px;
  position: relative;
}
.testimonial-quote-mark {
  position: absolute;
  top: -48px; left: -4px;
  font-family: var(--font-display);
  font-size: 130px;
  color: var(--stone);
  line-height: 1;
  z-index: 0;
  pointer-events: none;
}
.testimonial-text {
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 40px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.35;
  color: var(--bark);
  position: relative;
  z-index: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 36px;
}
.testimonial-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  background: linear-gradient(135deg, var(--moss), var(--earth));
  flex-shrink: 0;
}
.testimonial-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--bark);
  letter-spacing: .5px;
}
.testimonial-role { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

@media (max-width: 600px) {
  .testimonial-section { padding: 72px 24px; }
  .testimonial-quote-mark { font-size: 90px; top: -36px; }
}

/* ═══════════════════════════════════════
   CONTACT
═══════════════════════════════════════ */
.contact-section { background: var(--cream); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.contact-details {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--stone);
}
.contact-item:first-child { border-top: 1px solid var(--stone); }
.contact-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--parchment);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg {
  width: 16px; height: 16px;
  stroke: var(--moss);
  fill: none;
  stroke-width: 1.5px;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 3px;
}
.contact-value { font-size: 14px; color: var(--bark); font-weight: 400; }

/* Contact form */
.verdana-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; }
.form-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
  font-weight: 400;
}
.form-input,
.form-textarea {
  padding: 13px 16px;
  background: var(--white);
  border: 1px solid var(--stone);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--text);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}
.form-input:focus,
.form-textarea:focus {
  border-color: var(--moss);
  box-shadow: 0 0 0 3px rgba(61,90,46,.1);
}
.form-textarea { resize: vertical; min-height: 130px; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 56px; }
}
@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
#colophon {
  background: var(--bark);
  padding: 48px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cream);
}
.footer-logo em { font-style: italic; color: var(--sage); }

.footer-nav { display: flex; gap: 28px; flex-wrap: wrap; }
.footer-nav a {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--sage); }

.footer-copy { font-size: 11px; color: rgba(255,255,255,.18); letter-spacing: 1px; }

@media (max-width: 768px) {
  #colophon { flex-direction: column; align-items: flex-start; padding: 40px 24px; }
}

/* ═══════════════════════════════════════
   MOBILE MENU DRAWER
═══════════════════════════════════════ */
.mobile-menu-drawer {
  position: fixed;
  inset: 0;
  background: var(--bark);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 36px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s;
}
.mobile-menu-drawer.open {
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-drawer a {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 300;
  color: rgba(255,255,255,.8);
  letter-spacing: 2px;
  transition: color .3s;
}
.mobile-menu-drawer a:hover { color: var(--sage); }
.drawer-close {
  position: absolute;
  top: 28px; right: 28px;
  background: none; border: none;
  color: rgba(255,255,255,.5);
  font-size: 32px;
  line-height: 1;
  transition: color .3s;
}
.drawer-close:hover { color: var(--white); }

/* ═══════════════════════════════════════
   REVEAL ANIMATIONS
═══════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes slideLine {
  0%   { left: -100%; }
  50%  { left: 0; }
  100% { left: 100%; }
}

/* ═══════════════════════════════════════
   TABLET GLOBAL (768px–900px)
═══════════════════════════════════════ */
@media (max-width: 900px) {
  .container { padding: 0 32px; }
  .section-pad { padding: 72px 0; }
  .section-header-flex { flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 40px; }
  .section-header-desc { text-align: left; max-width: 100%; }
  #masthead { padding: 18px 32px; }
  #masthead.scrolled { padding: 12px 32px; }
  .main-navigation, .lang-switcher { display: none; }
  .menu-toggle { display: flex; }
}

/* ═══════════════════════════════════════
   MOBILE (< 560px)
═══════════════════════════════════════ */
@media (max-width: 560px) {
  .container { padding: 0 20px; }
  .section-pad { padding: 56px 0; }
  #masthead { padding: 16px 20px; }
  #masthead.scrolled { padding: 12px 20px; }
  .testimonial-section { padding: 60px 20px; }
  #colophon { padding: 36px 20px; }
}

/* ═══════════════════════════════════════
   SKIP LINK ACCESSIBILITY
═══════════════════════════════════════ */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--moss);
  color: var(--white);
  padding: 8px 16px;
  font-size: 13px;
  z-index: 9999;
  transition: top .2s;
}
.skip-link:focus { top: 16px; }

/* ═══════════════════════════════════════
   WORDPRESS CORE CLASSES
═══════════════════════════════════════ */
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 12px; color: var(--text-muted); margin-top: 6px; }
.alignleft { float: left; margin: 0 24px 16px 0; }
.alignright { float: right; margin: 0 0 16px 24px; }
.aligncenter { margin: 0 auto 16px; display: block; }
.sticky { border-left: 3px solid var(--moss); padding-left: 16px; }