

:root {
  --primary: #DC2626;
  --primary-dark: #B91C1C;
  --primary-light: #EF4444;
  --primary-pale: #FEE2E2;
  --primary-soft: #FEF2F2;
  --primary-wash: #FFFBFA;
  --accent: #991B1B;
  --dark: #1F1917;
  --text: #1F1917;
  --text-muted: #57534E;
  --text-soft: #A8A29E;
  --bg: #ffffff;
  --bg-cream: #FAF8F5;
  --bg-sand: #F5F0E8;
  --sand: #E8DFD1;
  --gold: #CA8A04;
  --aqua: #0891B2;
  --border: #E7E5E4;
  --wa-green: #25D366;
  --shadow-soft: 0 4px 16px rgba(31,25,23,0.06);
  --shadow-med: 0 10px 32px rgba(31,25,23,0.10);
  --shadow-lg: 0 24px 64px rgba(31,25,23,0.14);
  --font-display: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font: 'Inter', -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container { max-width: 1280px; margin: 0 auto; padding: 0 28px; }
.wide { max-width: 1440px; margin: 0 auto; padding: 0 28px; }
.narrow { max-width: 920px; margin: 0 auto; padding: 0 28px; }
img { max-width: 100%; display: block; }

a { color: var(--primary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--primary-dark); }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text);
  line-height: 1.1;
  letter-spacing: -0.015em;
}
h1 {
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  font-weight: 600;
  letter-spacing: -0.025em;
}
h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
}
h3 {
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 600;
  letter-spacing: -0.01em;
}
h4 { font-size: 1.05rem; font-family: var(--font-heading); font-weight: 600; }

p { margin-bottom: 16px; color: var(--text-muted); line-height: 1.75; }
em { font-style: italic; color: var(--primary); font-weight: 500; }

/* ========= ISSUE NUMBER ========= */
.issue-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--primary);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
}
.issue-tag::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--primary);
}

.section-lede {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--primary);
  line-height: 1.4;
  margin-bottom: 20px;
}

/* ========= TOPBAR ========= */
.topbar {
  background: var(--dark);
  color: rgba(255,255,255,0.85);
  padding: 12px 0;
  font-size: 0.78rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.topbar-left {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.topbar-left span::before {
  content: '◆';
  color: var(--primary);
  margin-right: 8px;
  font-size: 0.55rem;
  vertical-align: middle;
}
.topbar-right { display: flex; gap: 18px; align-items: center; }
.topbar-right a {
  color: white;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}
.topbar-right a:hover { color: var(--primary-light); }

/* ========= HEADER ========= */
.header {
  background: var(--bg);
  padding: 22px 0;
  position: sticky;
  top: 0;
  z-index: 900;
  border-bottom: 1px solid var(--border);
  transition: all 0.3s;
}
.header.scrolled {
  padding: 14px 0;
  box-shadow: var(--shadow-soft);
}
.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}

.logo { display: flex; align-items: center; gap: 14px; }
.logo-mark {
  width: 48px; height: 48px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  position: relative;
}
.logo-mark::after {
  content: '';
  position: absolute;
  inset: -4px;
  border: 1px solid var(--primary);
  border-radius: 50%;
  opacity: 0.3;
}
.logo:hover .logo-mark {
  background: var(--primary-dark);
  transform: rotate(-10deg);
}
.logo-mark svg {
  width: 26px; height: 26px;
  fill: white;
}
.logo-text { line-height: 1.1; }
.logo-text strong {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--text);
  display: block;
  letter-spacing: -0.01em;
}
.logo-text small {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--primary);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 4px;
  display: block;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 4px;
  justify-content: center;
  align-items: center;
}
.main-nav a {
  color: var(--text);
  padding: 10px 16px;
  font-weight: 500;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  transition: all 0.2s;
  display: block;
  position: relative;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 16px; right: 16px;
  height: 1px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform 0.25s;
}
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); }
.main-nav a:hover, .main-nav a.active { color: var(--primary); }

.header-cta { display: flex; gap: 10px; align-items: center; }
.mobile-toggle {
  display: none;
  background: var(--primary);
  color: white;
  border: none;
  padding: 11px 16px;
  font-size: 1.2rem;
  cursor: pointer;
  border-radius: 4px;
  font-weight: 700;
}

/* ========= BUTTONS ========= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 28px;
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(.4,0,.2,1);
  border: 1px solid transparent;
  text-align: center;
  letter-spacing: 0.02em;
  border-radius: 2px;
  font-family: var(--font);
  position: relative;
  overflow: hidden;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--primary);
  color: white;
}
.btn-primary:hover {
  background: var(--primary-dark);
  color: white;
  box-shadow: 0 10px 24px rgba(220,38,38,0.25);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--text);
}
.btn-ghost:hover {
  background: var(--text);
  color: white;
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: white;
}
.btn-whatsapp { background: var(--wa-green); color: white; }
.btn-whatsapp:hover { background: #1ea952; color: white; }
.btn-white {
  background: white;
  color: var(--text);
  border-color: white;
}
.btn-white:hover { background: var(--primary-pale); color: var(--primary-dark); }
.btn-lg { padding: 16px 34px; font-size: 0.95rem; }
.btn-sm { padding: 9px 20px; font-size: 0.82rem; }

/* ========= HERO - Magazine Style ========= */
.hero-fe {
  padding: 50px 0 90px;
  background: var(--bg-cream);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.hero-issue {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 28px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.hero-issue .dot { color: var(--primary); }

.hero-fe-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.hero-fe-title-block { position: relative; }
.hero-fe-title-block h1 {
  margin-bottom: 28px;
  color: var(--text);
}
.hero-fe-title-block h1 .script {
  font-style: italic;
  color: var(--primary);
  font-weight: 400;
  display: inline;
}
.hero-fe-title-block h1 .underline-red {
  position: relative;
  display: inline-block;
}
.hero-fe-title-block h1 .underline-red::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 3px;
  background: var(--primary);
}
.hero-fe-lead {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.35rem;
  line-height: 1.5;
  color: var(--text-muted);
  margin-bottom: 32px;
  padding-left: 20px;
  border-left: 3px solid var(--primary);
}

.hero-fe-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 40px 0;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.hero-fe-meta-item .num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--primary);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}
.hero-fe-meta-item .lbl {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero-fe-cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero visual side - stacked photo cards */
.hero-fe-visual {
  position: relative;
  min-height: 540px;
}
.hero-fe-card {
  position: absolute;
  background: white;
  border-radius: 2px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.hero-fe-card-1 {
  top: 0; right: 40px;
  width: 300px; height: 380px;
  background: linear-gradient(135deg, #DC2626 0%, #991B1B 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px 28px;
  color: white;
  transform: rotate(-3deg);
  z-index: 1;
}
.hero-fe-card-1 .big-label {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
}
.hero-fe-card-1 .big-label em {
  color: white;
  font-style: italic;
  font-weight: 400;
  opacity: 0.85;
}
.hero-fe-card-1 .description {
  font-size: 0.88rem;
  line-height: 1.55;
  opacity: 0.9;
}
.hero-fe-card-1 .tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.8;
}
.hero-fe-card-2 {
  top: 210px; left: 0;
  width: 280px; height: 260px;
  background: var(--bg-sand);
  padding: 24px;
  transform: rotate(4deg);
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--sand);
}
.hero-fe-card-2 .quote-mark {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 0.6;
  color: var(--primary);
}
.hero-fe-card-2 .quote-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text);
}
.hero-fe-card-2 .quote-author {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding-top: 12px;
  border-top: 1px solid var(--text-soft);
}
.hero-fe-card-3 {
  bottom: 20px; right: 0;
  width: 200px; height: 200px;
  background: var(--dark);
  color: white;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px;
  transform: rotate(-8deg);
  z-index: 3;
}
.hero-fe-card-3 .seal-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--primary-light);
  line-height: 1;
}
.hero-fe-card-3 .seal-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 6px;
}
.hero-fe-card-3 .seal-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.85rem;
  margin-top: 4px;
  color: rgba(255,255,255,0.8);
}

/* ========= DIVIDER ========= */
.fe-divider {
  background: var(--primary);
  color: white;
  padding: 20px 0;
  overflow: hidden;
  position: relative;
}
.fe-divider-inner {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: slideLeft 35s linear infinite;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  font-weight: 500;
}
.fe-divider-inner span {
  display: flex;
  align-items: center;
  gap: 60px;
}
.fe-divider-inner span::after {
  content: '✦';
  color: white;
  font-size: 0.9rem;
  opacity: 0.8;
}
@keyframes slideLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ========= SECTIONS ========= */
section {
  padding: 110px 0;
  position: relative;
}
.bg-cream { background: var(--bg-cream); }
.bg-sand { background: var(--bg-sand); }
.bg-dark { background: var(--dark); color: white; }
.bg-dark h2, .bg-dark h3 { color: white; }
.bg-dark p { color: rgba(255,255,255,0.75); }
.bg-red { background: var(--primary); color: white; }
.bg-red h2, .bg-red h3 { color: white; }
.bg-red p { color: rgba(255,255,255,0.92); }

.section-header {
  margin-bottom: 70px;
  max-width: 720px;
}
.section-header.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section-header.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: none;
  align-items: end;
}
.section-header h2 { margin-bottom: 18px; }
.section-header p {
  font-size: 1.08rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.7;
}
.section-header .issue-tag { margin-bottom: 20px; }

/* ========= SERVICES - Horizontal Magazine Cards ========= */
.services-fe {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--border);
}
.service-fe {
  display: grid;
  grid-template-columns: 120px 2fr 1fr auto;
  gap: 50px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  align-items: center;
  transition: all 0.3s;
  position: relative;
}
.service-fe:hover {
  padding-left: 20px;
  background: var(--primary-wash);
}
.service-fe-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 400;
  color: var(--primary);
  line-height: 1;
  font-style: italic;
}
.service-fe-content h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: var(--text);
}
.service-fe-content h3 em {
  color: var(--primary);
  font-style: italic;
  font-weight: 400;
}
.service-fe-content p {
  color: var(--text-muted);
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.65;
  max-width: 540px;
}
.service-fe-tags {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.service-fe-tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.service-fe-tag::before {
  content: '—';
  color: var(--primary);
  margin-right: 8px;
}
.service-fe-arrow {
  width: 56px; height: 56px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--text);
  transition: all 0.25s;
  text-decoration: none;
}
.service-fe:hover .service-fe-arrow {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  transform: rotate(-45deg) translate(2px, -2px);
}

/* ========= ABOUT - Magazine Split ========= */
.about-fe {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-fe-visual {
  position: relative;
  min-height: 520px;
}
.about-fe-img-1 {
  position: absolute;
  top: 0; left: 0;
  width: 70%; height: 360px;
  background: linear-gradient(160deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: white;
  padding: 40px;
  text-align: center;
}
.about-fe-img-1 .big-year {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 600;
  line-height: 1;
}
.about-fe-img-1 .big-year em {
  font-style: italic;
  font-weight: 400;
  opacity: 0.85;
  color: white;
}
.about-fe-img-1 .since-lbl {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 10px;
  opacity: 0.9;
}
.about-fe-img-2 {
  position: absolute;
  bottom: 0; right: 0;
  width: 60%; height: 320px;
  background: var(--bg-sand);
  border-radius: 2px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid var(--sand);
}
.about-fe-img-2 .quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  line-height: 1.45;
  color: var(--text);
}
.about-fe-img-2 .attribution {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  margin-top: 18px;
}
.about-fe-content h2 {
  margin-bottom: 22px;
}
.about-fe-content h2 em {
  color: var(--primary);
  font-style: italic;
  font-weight: 400;
}
.about-fe-content p {
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 20px;
}

/* ========= STATS ========= */
.stats-fe {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.2);
  border-bottom: 1px solid rgba(255,255,255,0.2);
}
.stat-fe {
  padding: 40px 30px;
  border-right: 1px solid rgba(255,255,255,0.15);
  text-align: center;
}
.stat-fe:last-child { border-right: none; }
.stat-fe-num {
  font-family: var(--font-display);
  font-size: 3.4rem;
  font-weight: 600;
  color: white;
  line-height: 1;
  letter-spacing: -0.02em;
  display: block;
  margin-bottom: 10px;
}
.stat-fe-num em {
  font-style: italic;
  font-weight: 400;
  opacity: 0.85;
  color: white;
}
.stat-fe-lbl {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}

/* ========= FEATURES - Editorial Grid ========= */
.features-fe {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
}
.feature-fe {
  background: white;
  padding: 40px 32px;
  transition: all 0.25s;
  position: relative;
}
.feature-fe:hover {
  background: var(--primary-wash);
  transform: translateY(-4px);
}
.feature-fe .fe-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  font-style: italic;
  color: var(--primary);
  margin-bottom: 16px;
  display: block;
}
.feature-fe h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}
.feature-fe h3 em { color: var(--primary); font-style: italic; font-weight: 400; }
.feature-fe p {
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ========= PROCESS - Timeline Style ========= */
.process-fe {
  max-width: 960px;
  margin: 0 auto;
  position: relative;
}
.process-fe::before {
  content: '';
  position: absolute;
  left: 50%; top: 40px; bottom: 40px;
  width: 1px;
  background: var(--border);
  transform: translateX(-50%);
}
.process-step-fe {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 40px;
  margin-bottom: 60px;
  position: relative;
  align-items: start;
}
.process-step-fe:nth-child(even) .process-step-fe-text { grid-column: 3; text-align: left; }
.process-step-fe:nth-child(even) .process-step-fe-visual { grid-column: 1; text-align: right; }
.process-step-fe:nth-child(odd) .process-step-fe-text { grid-column: 1; text-align: right; }
.process-step-fe:nth-child(odd) .process-step-fe-visual { grid-column: 3; text-align: left; }
.process-step-fe-dot {
  grid-column: 2;
  grid-row: 1;
  width: 60px; height: 60px;
  background: white;
  border: 2px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--primary);
  margin: 0 auto;
  position: relative;
  z-index: 2;
  font-size: 1.3rem;
}
.process-step-fe-text {
  grid-row: 1;
}
.process-step-fe-text h3 {
  font-size: 1.45rem;
  margin-bottom: 10px;
}
.process-step-fe-text h3 em { color: var(--primary); font-style: italic; font-weight: 400; }
.process-step-fe-text p {
  font-size: 0.98rem;
  margin: 0;
  line-height: 1.65;
  color: var(--text-muted);
}
.process-step-fe-visual {
  grid-row: 1;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  padding-top: 22px;
}

/* ========= REGIONS ========= */
.regions-fe {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}
.region-fe {
  padding: 20px 24px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: all 0.2s;
  cursor: default;
  position: relative;
}
.region-fe:hover {
  background: var(--primary);
  color: white;
}
.region-fe .r-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
  transition: color 0.2s;
}
.region-fe:hover .r-name { color: white; }
.region-fe .r-sub {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-top: 4px;
  display: block;
  transition: color 0.2s;
}
.region-fe:hover .r-sub { color: rgba(255,255,255,0.75); }
.region-fe.featured {
  background: var(--primary-pale);
}
.region-fe.featured .r-name { color: var(--primary-dark); }
.region-fe.featured .r-sub { color: var(--primary); }
.region-fe.featured:hover { background: var(--primary); }

/* ========= TESTIMONIALS - Editorial Reviews ========= */
.testimonials-fe {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.testimonial-fe {
  display: grid;
  grid-template-columns: 200px 1fr 180px;
  gap: 60px;
  padding: 50px 0;
  border-bottom: 1px solid var(--border);
  align-items: center;
}
.testimonial-fe:first-child { border-top: 1px solid var(--border); }
.testimonial-fe-rating {
  font-family: var(--font-display);
  text-align: left;
}
.testimonial-fe-stars {
  color: var(--primary);
  letter-spacing: 4px;
  font-size: 1.3rem;
  margin-bottom: 14px;
}
.testimonial-fe-score {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1;
}
.testimonial-fe-score-lbl {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 6px;
}
.testimonial-fe-body p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  line-height: 1.5;
  color: var(--text);
  margin: 0;
}
.testimonial-fe-author {
  text-align: left;
}
.testimonial-fe-author strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}
.testimonial-fe-author small {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: block;
}

/* ========= CTA FE ========= */
.cta-fe {
  padding: 120px 0;
  background: var(--dark);
  color: white;
  position: relative;
  overflow: hidden;
}
.cta-fe::before {
  content: '';
  position: absolute;
  top: -40%; right: -10%;
  width: 70%; height: 180%;
  background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
  opacity: 0.25;
  pointer-events: none;
}
.cta-fe-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.cta-fe h2 {
  color: white;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  margin-bottom: 22px;
}
.cta-fe h2 em {
  font-style: italic;
  color: var(--primary-light);
  font-weight: 400;
}
.cta-fe p {
  color: rgba(255,255,255,0.85);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1.55;
  margin-bottom: 32px;
  max-width: 520px;
}
.cta-fe-phone {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 36px 32px;
  border-radius: 2px;
  backdrop-filter: blur(10px);
}
.cta-fe-phone .lbl {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 10px;
  display: block;
}
.cta-fe-phone .num {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.4rem);
  color: white;
  font-weight: 600;
  letter-spacing: -0.01em;
  display: block;
  margin-bottom: 4px;
}
.cta-fe-phone .num:hover { color: var(--primary-light); }
.cta-fe-phone .alt-num {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  display: block;
  margin-bottom: 20px;
}
.cta-fe-phone .wa-btn {
  display: block;
  padding: 13px;
  background: var(--wa-green);
  color: white;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 2px;
  font-size: 0.88rem;
}
.cta-fe-phone .wa-btn:hover { background: #1ea952; color: white; }

/* ========= FAQ ========= */
.faq-fe {
  max-width: 880px;
  margin: 0 auto;
}
.faq-item-fe {
  border-bottom: 1px solid var(--border);
  transition: all 0.25s;
}
.faq-item-fe.open {
  background: var(--bg-cream);
  padding: 0 24px;
  margin: 0 -24px;
  border-radius: 2px;
  border-color: transparent;
}
.faq-q-fe {
  padding: 28px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.faq-q-fe span:first-child {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--text);
}
.faq-toggle-fe {
  width: 34px; height: 34px;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 400;
  transition: all 0.3s;
  flex-shrink: 0;
  background: white;
}
.faq-item-fe.open .faq-toggle-fe {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  transform: rotate(45deg);
}
.faq-a-fe {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-item-fe.open .faq-a-fe {
  max-height: 400px;
  padding-bottom: 28px;
}
.faq-a-fe p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.75;
  font-size: 1rem;
}

/* ========= PAGE HEADER ========= */
.page-header-fe {
  padding: 80px 0 70px;
  background: var(--bg-cream);
  border-bottom: 1px solid var(--border);
  position: relative;
}
.page-header-fe h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  max-width: 820px;
  margin-top: 20px;
}
.page-header-fe h1 em {
  font-style: italic;
  color: var(--primary);
  font-weight: 400;
}
.page-header-fe .lead {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 680px;
  line-height: 1.55;
  margin-top: 22px;
}
.breadcrumb-fe {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.breadcrumb-fe a { color: var(--primary); font-weight: 500; }
.breadcrumb-fe .sep { margin: 0 10px; color: var(--text-soft); }

/* ========= CONTENT ========= */
.content-section { padding: 90px 0; }
.content-fe {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 80px;
  align-items: start;
}
.content-main-fe h2 {
  margin-top: 50px;
  margin-bottom: 20px;
  font-size: 2rem;
}
.content-main-fe h2 em { color: var(--primary); font-style: italic; font-weight: 400; }
.content-main-fe h2:first-child { margin-top: 0; }
.content-main-fe p {
  color: var(--text);
  line-height: 1.8;
  font-size: 1.06rem;
  margin-bottom: 20px;
}
.content-main-fe ul, .content-main-fe ol {
  margin: 18px 0 26px 24px;
  color: var(--text);
}
.content-main-fe li {
  margin-bottom: 10px;
  line-height: 1.75;
}
.content-main-fe li::marker { color: var(--primary); }
.content-main-fe blockquote {
  border-left: 3px solid var(--primary);
  padding: 6px 0 6px 28px;
  margin: 32px 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.35rem;
  line-height: 1.5;
  color: var(--text);
}
.content-main-fe strong { color: var(--text); font-weight: 600; }

.sidebar-fe {
  background: var(--bg-cream);
  padding: 32px 30px;
  border-radius: 2px;
  margin-bottom: 20px;
  position: sticky;
  top: 110px;
  border: 1px solid var(--border);
}
.sidebar-fe:not(:first-of-type) { position: static; }
.sidebar-fe h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: var(--text);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.sidebar-fe h3 em { color: var(--primary); font-style: italic; font-weight: 400; }
.sidebar-fe ul { list-style: none; }
.sidebar-fe ul li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.sidebar-fe ul li:last-child { border: none; }
.sidebar-fe ul a {
  color: var(--text);
  font-weight: 500;
  font-size: 0.94rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.2s;
}
.sidebar-fe ul a::after {
  content: '→';
  color: var(--primary);
  opacity: 0;
  transition: all 0.2s;
}
.sidebar-fe ul a:hover { color: var(--primary); padding-left: 4px; }
.sidebar-fe ul a:hover::after { opacity: 1; }

/* ========= CONTACT ========= */
.contact-fe {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-card-fe {
  padding: 26px 28px;
  margin-bottom: 16px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 2px;
  transition: all 0.25s;
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 22px;
  align-items: center;
}
.contact-card-fe:hover {
  transform: translateX(4px);
  border-color: var(--primary);
  box-shadow: var(--shadow-soft);
}
.contact-card-icon-fe {
  width: 56px; height: 56px;
  background: var(--primary-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
}
.contact-card-fe .info .label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
  display: block;
}
.contact-card-fe .info a,
.contact-card-fe .info span.val {
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
}
.contact-card-fe .info a:hover { color: var(--primary); }

.quote-form-fe {
  background: var(--dark);
  color: white;
  padding: 44px 40px;
  border-radius: 2px;
}
.quote-form-fe h3 {
  color: white;
  font-size: 1.8rem;
  margin-bottom: 10px;
}
.quote-form-fe h3 em { color: var(--primary-light); font-style: italic; font-weight: 400; }
.quote-form-fe > p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 28px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
}
.quote-form-fe .form-group { margin-bottom: 18px; }
.quote-form-fe label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 8px;
}
.quote-form-fe input,
.quote-form-fe textarea,
.quote-form-fe select {
  width: 100%;
  padding: 12px 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  color: white;
  font-family: inherit;
  font-size: 0.95rem;
  border-radius: 2px;
  transition: all 0.2s;
}
.quote-form-fe input:focus,
.quote-form-fe textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(255,255,255,0.08);
}
.quote-form-fe input::placeholder,
.quote-form-fe textarea::placeholder { color: rgba(255,255,255,0.4); }
.quote-form-fe button {
  width: 100%;
  margin-top: 14px;
  background: var(--primary);
  color: white;
  border: none;
}

/* ========= GALLERY ========= */
.gallery-filters-fe {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  justify-content: center;
  margin-bottom: 50px;
  padding: 10px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.filter-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  padding: 10px 22px;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.88rem;
  font-family: inherit;
  letter-spacing: 0.02em;
  transition: all 0.2s;
  position: relative;
}
.filter-btn::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 22px; right: 22px;
  height: 1px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform 0.2s;
}
.filter-btn:hover, .filter-btn.active {
  color: var(--primary);
}
.filter-btn.active::after { transform: scaleX(1); }

.gallery-fe {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 8px;
}
.gallery-item {
  aspect-ratio: 4/5;
  background: var(--bg-sand);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s;
  position: relative;
  border-radius: 2px;
}
.gallery-item:nth-child(4n+1) { aspect-ratio: 3/4; }
.gallery-item:nth-child(4n+3) { aspect-ratio: 5/6; }
.gallery-item:hover { transform: translateY(-4px); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-item.placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-pale) 0%, var(--bg-sand) 100%);
}
.gallery-item.placeholder .ph-ic {
  font-size: 2.8rem;
  margin-bottom: 12px;
  opacity: 0.7;
}
.gallery-item.placeholder p {
  color: var(--primary-dark);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  margin: 0;
  padding: 0 20px;
  text-align: center;
}

/* ========= BLOG ========= */
.blog-grid-fe {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 40px;
}
.blog-card-fe {
  transition: all 0.3s;
  position: relative;
  display: flex;
  flex-direction: column;
}
.blog-card-fe-image {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  margin-bottom: 20px;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  color: rgba(255,255,255,0.8);
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}
.blog-card-fe:nth-child(3n+2) .blog-card-fe-image {
  background: linear-gradient(135deg, var(--dark) 0%, #3F3735 100%);
}
.blog-card-fe:nth-child(3n+3) .blog-card-fe-image {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--gold) 100%);
}
.blog-card-fe:hover .blog-card-fe-image { transform: scale(1.02); }
.blog-card-fe-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}
.blog-card-fe h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  line-height: 1.3;
}
.blog-card-fe h3 a { color: var(--text); }
.blog-card-fe h3 a:hover { color: var(--primary); }
.blog-card-fe p {
  font-size: 0.95rem;
  margin-bottom: 16px;
  flex-grow: 1;
  color: var(--text-muted);
  line-height: 1.6;
}
.blog-meta-fe {
  padding-top: 16px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}
.blog-meta-fe .read-link {
  color: var(--primary);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
  text-transform: uppercase;
}
.blog-meta-fe .read-link:hover { gap: 12px; }

/* Post */
.post-hero-fe {
  padding: 90px 0 60px;
  background: var(--bg-cream);
  border-bottom: 1px solid var(--border);
}
.post-hero-fe h1 {
  margin-bottom: 28px;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  max-width: 860px;
}
.post-hero-fe h1 em { color: var(--primary); font-style: italic; font-weight: 400; }
.post-meta-fe {
  display: flex;
  gap: 30px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  flex-wrap: wrap;
}

.post-content-fe {
  max-width: 760px;
  margin: 0 auto;
  padding: 80px 28px;
}
.post-content-fe h2 {
  margin-top: 50px;
  margin-bottom: 20px;
  font-size: 1.9rem;
}
.post-content-fe h2 em { color: var(--primary); font-style: italic; font-weight: 400; }
.post-content-fe h3 {
  margin-top: 32px;
  margin-bottom: 12px;
  font-size: 1.3rem;
}
.post-content-fe p {
  font-size: 1.1rem;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 22px;
}
.post-content-fe ul, .post-content-fe ol {
  margin: 20px 0 28px 28px;
}
.post-content-fe li {
  margin-bottom: 12px;
  line-height: 1.8;
  font-size: 1.05rem;
}
.post-content-fe li::marker { color: var(--primary); }
.post-content-fe blockquote {
  border-left: 3px solid var(--primary);
  padding: 8px 0 8px 32px;
  margin: 36px 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.45rem;
  line-height: 1.5;
  color: var(--text);
}
.post-content-fe strong { color: var(--text); font-weight: 600; }

/* ========= FOOTER ========= */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 100px 0 0;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--primary);
}
.footer-grid-fe {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.2fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand-fe .logo-text strong { color: white; }
.footer-brand-fe p {
  color: rgba(255,255,255,0.55);
  margin-top: 24px;
  line-height: 1.75;
  font-size: 0.95rem;
  max-width: 400px;
  font-family: var(--font-display);
  font-style: italic;
}
.footer-contact-fe {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-contact-fe .label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 8px;
  display: block;
}
.footer-contact-fe p {
  color: var(--primary-light);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
  margin: 0 0 4px;
  font-style: normal;
  letter-spacing: -0.01em;
}
.footer h4 {
  color: white;
  margin-bottom: 22px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
}
.footer h4 em { color: var(--primary); font-style: italic; font-weight: 400; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer ul a {
  color: rgba(255,255,255,0.6);
  font-size: 0.93rem;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer ul a:hover {
  color: var(--primary-light);
  padding-left: 4px;
}
.footer-bottom-fe {
  padding: 28px 0;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  border-top: 1px solid rgba(255,255,255,0.08);
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
}
.footer-bottom-fe a { color: var(--primary-light); }



/* ========= MOBILE BAR ========= */
.mobile-call-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: white;
  border-top: 1px solid var(--border);
  padding: 12px;
  z-index: 998;
  gap: 10px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.06);
}
.mobile-call-bar a {
  flex: 1;
  padding: 13px;
  text-align: center;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  border-radius: 2px;
}
.mobile-call-bar .wa { background: var(--wa-green); color: white; }
.mobile-call-bar .ph { background: var(--primary); color: white; }

/* ========= RESPONSIVE ========= */
@media (max-width: 1100px) {
  .hero-fe-grid { grid-template-columns: 1fr; gap: 60px; }
  .hero-fe-visual { min-height: 480px; max-width: 500px; margin: 0 auto; }
  .about-fe { grid-template-columns: 1fr; gap: 50px; }
  .about-fe-visual { max-width: 500px; margin: 0 auto; }
  .section-header.split { grid-template-columns: 1fr; gap: 30px; }
  .features-fe { grid-template-columns: repeat(2, 1fr); }
  .cta-fe-inner { grid-template-columns: 1fr; gap: 50px; }
  .contact-fe { grid-template-columns: 1fr; gap: 50px; }
  .content-fe { grid-template-columns: 1fr; gap: 60px; }
  .sidebar-fe { position: static; }
  .service-fe { grid-template-columns: 80px 1fr auto; gap: 30px; }
  .service-fe-tags { display: none; }
  .testimonial-fe { grid-template-columns: 1fr; gap: 24px; text-align: left; }
  .testimonial-fe-rating { display: flex; gap: 20px; align-items: center; }
  .testimonial-fe-stars { margin: 0; }
  .testimonial-fe-score { font-size: 2rem; }
  .stats-fe { grid-template-columns: repeat(2, 1fr); }
  .stat-fe { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); }
  .stat-fe:nth-child(2n) { border-right: none; }
  .stat-fe:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.15); }
}

@media (max-width: 900px) {
  .container, .wide, .narrow { padding: 0 20px; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: white;
    padding: 16px 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-med);
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; gap: 0; align-items: stretch; }
  .main-nav a {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid var(--border);
  }
  .main-nav a::after { display: none; }
  .mobile-toggle { display: block; }
  .header-inner { grid-template-columns: auto 1fr auto; gap: 16px; }
  .header-cta { justify-content: flex-end; }
  .header-cta .btn-primary { display: none; }
  .topbar-left { display: none; }
  .mobile-call-bar { display: flex; }
  section { padding: 80px 0; }
  .hero-fe { padding: 40px 0 80px; }
  .hero-issue { flex-direction: column; align-items: flex-start; gap: 10px; }
  .services-fe { grid-template-columns: 1fr; }
  .service-fe { grid-template-columns: 70px 1fr; gap: 20px; padding: 30px 0; }
  .service-fe-arrow { display: none; }
  .service-fe:hover { padding-left: 0; }
  .process-fe::before { left: 30px; }
  .process-step-fe {
    grid-template-columns: 60px 1fr;
    grid-template-rows: auto auto;
    gap: 8px 20px;
  }
  .process-step-fe:nth-child(even) .process-step-fe-visual,
  .process-step-fe:nth-child(odd) .process-step-fe-visual {
    grid-column: 2 !important;
    grid-row: 1 !important;
    text-align: left !important;
    padding-top: 4px !important;
    padding-bottom: 4px !important;
    font-size: 0.68rem !important;
  }
  .process-step-fe:nth-child(even) .process-step-fe-text,
  .process-step-fe:nth-child(odd) .process-step-fe-text {
    grid-column: 2 !important;
    grid-row: 2 !important;
    text-align: left !important;
  }
  .process-step-fe-dot {
    grid-column: 1 !important;
    grid-row: 1 / span 2 !important;
    margin: 0 !important;
    width: 48px !important;
    height: 48px !important;
    font-size: 1.1rem !important;
    align-self: start !important;
  }
  .footer-grid-fe { grid-template-columns: 1fr 1fr; gap: 40px; }
  .regions-fe { grid-template-columns: repeat(2, 1fr); }
  .hero-fe-meta { grid-template-columns: 1fr 1fr; }

  /* TABLET HERO VISUAL - 600-900 arası için kartları alt alta düzgün yap */
  .hero-fe-visual {
    min-height: auto !important;
    max-width: 100% !important;
    padding: 20px 0 !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  .hero-fe-card {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;
    margin: 0 auto !important;
  }
  .hero-fe-card-1 {
    width: 100% !important;
    max-width: 420px !important;
    height: auto !important;
    min-height: 280px !important;
  }
  .hero-fe-card-2 {
    width: calc(100% - 60px) !important;
    max-width: 360px !important;
    height: auto !important;
    min-height: 200px !important;
    margin-top: -30px !important;
  }
  .hero-fe-card-3 {
    width: 160px !important;
    height: 160px !important;
    margin-top: -30px !important;
  }
}

@media (max-width: 600px) {
  .hero-fe-title-block h1 { font-size: clamp(2.2rem, 9vw, 3rem); }
  .features-fe { grid-template-columns: 1fr; }
  .footer-grid-fe { grid-template-columns: 1fr; }
  .quote-form-fe { padding: 30px 24px; }

  /* HERO VISUAL MOBILE FIX - Kartları düzgün yerleştir */
  .hero-fe-visual {
    min-height: auto !important;
    max-width: 100% !important;
    padding: 20px 0 !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  .hero-fe-card {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;
    margin: 0 auto !important;
  }
  .hero-fe-card-1 {
    width: calc(100% - 32px) !important;
    max-width: 360px !important;
    height: auto !important;
    min-height: 260px !important;
    padding: 28px 24px !important;
  }
  .hero-fe-card-1 .big-label { font-size: 2.4rem !important; }
  .hero-fe-card-1 .description { font-size: 0.9rem !important; }

  .hero-fe-card-2 {
    width: calc(100% - 60px) !important;
    max-width: 320px !important;
    height: auto !important;
    min-height: 180px !important;
    margin-top: -24px !important;
    padding: 22px !important;
  }
  .hero-fe-card-2 .quote-mark { font-size: 3rem !important; }
  .hero-fe-card-2 .quote-text { font-size: 0.95rem !important; }

  .hero-fe-card-3 {
    width: 140px !important;
    height: 140px !important;
    margin-top: -30px !important;
    padding: 20px !important;
  }
  .hero-fe-card-3 .seal-num { font-size: 2.2rem !important; }

  .hero-fe-meta { grid-template-columns: 1fr; gap: 16px; }
  .regions-fe { grid-template-columns: 1fr; }
  .contact-card-fe { grid-template-columns: 48px 1fr; gap: 16px; padding: 20px; }
  .contact-card-fe .info a { font-size: 1.05rem; }
  .stats-fe { grid-template-columns: 1fr; }
  .stat-fe { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.15); }
}


/* ========= MOBILE UX FIX v2 ========= */
.header { position: sticky; }

/* Close button default GİZLİ - sadece menü açıldığında göster */
.mobile-nav-close {
  display: none !important;
}

.mobile-toggle {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.mobile-toggle.open-state { background: var(--text, #1F1917) !important; }

@media (max-width: 900px) {
  body.nav-open { overflow: hidden; }
  .header { position: relative; z-index: 999; }
  .main-nav {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: white;
    padding: 90px 24px 40px !important;
    z-index: 9998;
    overflow-y: auto;
    box-shadow: none !important;
    border-bottom: none !important;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    display: block !important;
    visibility: hidden;
  }
  .main-nav.open {
    transform: translateY(0);
    visibility: visible;
  }
  .main-nav ul {
    flex-direction: column !important;
    gap: 4px !important;
    align-items: stretch !important;
    padding: 0 !important;
    list-style: none !important;
  }
  .main-nav a {
    padding: 16px 20px !important;
    text-align: left !important;
    border-bottom: 1px solid rgba(0,0,0,0.08) !important;
    font-size: 1.05rem !important;
    display: block !important;
  }
  .main-nav a::after,
  .main-nav a::before { display: none !important; }
  .mobile-nav-close {
    position: fixed !important;
    top: 16px !important;
    right: 16px !important;
    width: 48px !important;
    height: 48px !important;
    background: #DC2626 !important;
    color: white !important;
    border: none !important;
    border-radius: 50% !important;
    font-size: 1.6rem !important;
    cursor: pointer !important;
    display: none !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
    z-index: 10000 !important;
    font-weight: 700 !important;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25) !important;
    padding: 0 !important;
    text-align: center !important;
  }
  .main-nav.open .mobile-nav-close,
  body.nav-open .mobile-nav-close {
    display: inline-flex !important;
  }

  /* Mobile nav brand at top of menu */
  .mobile-nav-brand {
    display: block;
    padding: 0 20px 20px;
    margin-bottom: 10px;
    border-bottom: 2px solid var(--primary, #DC2626);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted, #666);
    font-weight: 600;
  }

  /* Header CTA inside icons hizalama */
  .header-cta {
    display: flex !important;
    justify-content: flex-end !important;
    align-items: center !important;
    gap: 8px !important;
  }
  /* Mobilde header'daki telefon butonu KESİN gizli — topbar'daki kalıyor */
  .header-cta .btn-primary,
  .header-cta a[href^="tel:"],
  .header-cta .btn.btn-sm {
    display: none !important;
  }
  .mobile-toggle {
    width: 44px;
    height: 44px;
    padding: 0 !important;
    font-size: 1.4rem !important;
    border-radius: 6px !important;
  }

  /* Mobile call bar - ikon+metin ortalama */
  .mobile-call-bar {
    display: flex !important;
    align-items: center !important;
  }
  .mobile-call-bar a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    line-height: 1.2 !important;
    min-height: 48px;
  }

  /* Contact card icons ortalama */
  .contact-card-icon,
  .contact-card-icon-fe,
  .contact-card__icon {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
  }

  /* Genel emoji ikon ortalama (btn içindeki) */
  .btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    line-height: 1.2 !important;
  }

  /* Topbar right ikon ortalama */
  .topbar-right a {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
  }

  /* Feature/service card ikon ortalama */
  .service-card__icon,
  .feature-icon,
  .value-icon,
  .step-icon {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
}

@media (max-width: 480px) {
  .mobile-call-bar {
    padding: 10px 8px !important;
    gap: 8px !important;
  }
  .mobile-call-bar a {
    font-size: 0.85rem !important;
    padding: 11px 8px !important;
    min-height: 46px;
  }
}
/* ========= /MOBILE UX FIX v2 ========= */

/* ============================================================
   FETHIYE MOBILE TUTARLILIK & ABOUT FIX v3
   ============================================================ */

@media (max-width: 900px) {
  /* ABOUT VISUAL - mobilde kartlar alt alta */
  .about-fe-visual {
    min-height: auto !important;
    max-width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
    padding: 10px 0 !important;
  }
  .about-fe-img-1,
  .about-fe-img-2 {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: 100% !important;
    margin: 0 auto !important;
  }
  .about-fe-img-1 {
    height: 260px !important;
    padding: 30px !important;
  }
  .about-fe-img-1 .big-year {
    font-size: 4rem !important;
  }
  .about-fe-img-2 {
    height: auto !important;
    min-height: 200px !important;
    padding: 32px 28px !important;
  }
  .about-fe-img-2 .quote {
    font-size: 1.15rem !important;
    text-align: center !important;
  }

  /* ICON ORTALAMA - Tüm iconlar */
  .btn,
  .hero-fe-cta .btn,
  .mobile-call-bar a,
  .contact-card-fe,
  .contact-card-icon-fe,
  .service-fe-num,
  .process-step-fe-dot,
  .feature-fe .fe-num,
  .stat-fe,
  .hero-fe-meta-item,
  .region-fe,
  .topbar-right a,
  .header-cta a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
  }

  /* Contact kartı - 2 kolonlu tek satır düzenli görünsün */
  .contact-card-fe {
    display: grid !important;
    grid-template-columns: 52px 1fr !important;
    gap: 16px !important;
    align-items: center !important;
    text-align: left !important;
  }
  .contact-card-icon-fe {
    width: 52px !important;
    height: 52px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    font-size: 1.35rem !important;
  }
  .contact-card-fe .info {
    text-align: left !important;
  }

  /* Service listesi kutu merkezi */
  .service-fe {
    align-items: center !important;
  }
  .service-fe-num {
    width: 60px !important;
    height: 60px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.3rem !important;
  }

  /* Stats bloğu - sayıları ortala */
  .stat-fe {
    padding: 28px 20px !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
  }

  /* Hero meta items - tutarlı */
  .hero-fe-meta-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    text-align: left !important;
    justify-content: flex-start !important;
  }

  /* Process step dot */
  .process-step-fe-dot {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
  }

  /* Region cells - ortalanmış */
  .region-fe {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
  }

  /* Feature bloğu */
  .feature-fe {
    padding: 28px 24px !important;
  }
  .feature-fe .fe-num {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  /* Hero cta butonları ortalanmış */
  .hero-fe-cta {
    justify-content: center !important;
  }
  .hero-fe-cta .btn {
    flex: 1 1 auto;
    min-width: 140px;
    max-width: 100%;
  }

  /* Section header mobilde center */
  .section-header,
  .section-header.split,
  .section-header.center {
    text-align: center !important;
  }

  /* CTA section butonları */
  .cta-fe-inner > div[style*="display:flex"],
  .cta-fe-inner div[style*="flex"] {
    justify-content: center !important;
    flex-wrap: wrap !important;
  }

  /* SSS içerik ortalama */
  .faq-q-fe {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 12px !important;
  }
  .faq-toggle-fe {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
  }
}

@media (max-width: 600px) {
  /* Çok küçük ekranlarda about kartları daha kompakt */
  .about-fe-img-1 { height: 220px !important; padding: 24px !important; }
  .about-fe-img-1 .big-year { font-size: 3.4rem !important; }
  .about-fe-img-1 .since-lbl { font-size: 0.68rem !important; }
  .about-fe-img-2 { padding: 26px 22px !important; min-height: 160px !important; }
  .about-fe-img-2 .quote { font-size: 1.05rem !important; }
}
/* ============================================================
   /FETHIYE MOBILE TUTARLILIK v3
   ============================================================ */


/* ============================================================
   FETHIYE MOBILE HOTFIX v4
   - Body alt padding (mobile call bar gölgelemesin)
   - Topbar right taşma kontrolü
   - Çok küçük ekran (380px altı) son rötüşleri
   ============================================================ */

@media (max-width: 900px) {
  /* Mobile call bar footer'ı kapatmasın diye body'ye padding */
  body { padding-bottom: 76px; }

  /* Topbar right - telefon + WhatsApp yan yana sığmadığında akıllı yerleşim */
  .topbar-right {
    gap: 10px !important;
    flex-wrap: wrap !important;
    justify-content: flex-end !important;
  }
  .topbar-right a {
    font-size: 0.78rem !important;
    white-space: nowrap;
  }

  /* Header scrolled state mobilde daha kompakt */
  .header.scrolled {
    padding: 10px 0 !important;
  }

  /* H1 mobilde uzun kelime taşmasını engelle */
  h1, h2, h3 {
    word-break: break-word;
    hyphens: auto;
    overflow-wrap: break-word;
  }

  /* Nav açıkken kapatma butonunun görünürlüğünü garantile */
  body.nav-open .mobile-nav-close {
    display: inline-flex !important;
  }

  /* Sayfa içeriği mobil bar ile çakışmasın */
  footer { margin-bottom: 0; }
}

/* Çok küçük ekranlar (iPhone SE, eski Android, 380px altı) */
@media (max-width: 380px) {
  .mobile-call-bar {
    padding: 9px 6px !important;
    gap: 6px !important;
  }
  .mobile-call-bar a {
    font-size: 0.78rem !important;
    padding: 11px 4px !important;
    letter-spacing: 0 !important;
  }

  /* Hero CTA butonları 380px altında alt alta ve tam genişlik */
  .hero-fe-cta {
    flex-direction: column !important;
    width: 100% !important;
    gap: 10px !important;
  }
  .hero-fe-cta .btn {
    width: 100% !important;
    min-width: 0 !important;
  }

  /* Logo daralt */
  .logo-mark { width: 40px !important; height: 40px !important; }
  .logo-text strong { font-size: 1rem !important; }
  .logo-text small { font-size: 0.58rem !important; }

  /* Mobile toggle küçült */
  .mobile-toggle {
    width: 40px !important;
    height: 40px !important;
    font-size: 1.2rem !important;
  }

  /* Container padding azalt */
  .container, .wide, .narrow { padding: 0 14px !important; }

  /* Hero card-1 big label küçült */
  .hero-fe-card-1 .big-label { font-size: 2rem !important; }
  .hero-fe-card-2 { width: calc(100% - 40px) !important; }
  .hero-fe-card-3 { width: 120px !important; height: 120px !important; }
  .hero-fe-card-3 .seal-num { font-size: 1.8rem !important; }

  /* Stats - tek kolon */
  .stat-fe .num { font-size: 2.2rem !important; }

  /* FAQ soru - daha kompakt */
  .faq-q-fe { padding: 16px 12px !important; font-size: 0.95rem !important; }
}
/* ============================================================
   /FETHIYE MOBILE HOTFIX v4
   ============================================================ */
