/* ══════════════════════════════════════════════════════════════
   POPPINS — self-hosted (sem dependência de CDN externo)
══════════════════════════════════════════════════════════════ */
@font-face {
  font-family: "Poppins";
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url("fonts/poppins-300-italic.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/poppins-400-italic.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("fonts/poppins-300.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/poppins-400.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("fonts/poppins-500.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("fonts/poppins-600.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("fonts/poppins-700.woff2") format("woff2");
}

/* ══════════════════════════════════════════════════════════════
   DESIGN TOKENS
══════════════════════════════════════════════════════════════ */
:root {
  --bg: #fefaef;
  --surface: #ffffff;
  --accent: #b8935a;
  --accent-hover: #a07a45;
  --dark: #4a3f35;
  --dark-surface: #3d342b;
  --text: #1c1a16;
  --muted: #7a7167;
  --line: #e8e2d9;
  --radius: 12px;
  --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 16px 48px rgba(0, 0, 0, 0.1);
  --font-serif: "Poppins", sans-serif;
  --font-sans: "Poppins", sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --t: 0.35s var(--ease);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button {
  font-family: var(--font-sans);
  cursor: pointer;
}

.container {
  width: min(1160px, 92vw);
  margin: 0 auto;
}

/* ══════════════════════════════════════════════════════════════
   TYPOGRAPHY
══════════════════════════════════════════════════════════════ */
h1,
h2,
h3 {
  font-family: var(--font-sans);
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 300;
  letter-spacing: -1px;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 300;
  letter-spacing: -0.5px;
}

h3 {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0;
}

.eyebrow {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent);
}

.section-sub {
  color: var(--muted);
  font-size: 1rem;
  margin-top: 8px;
}

.section-header {
  margin-bottom: 56px;
}

.section-header h2 {
  margin-top: 12px;
}

/* ══════════════════════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: var(--t);
  white-space: nowrap;
}

.btn-accent {
  background: var(--accent);
  color: #fff;
}

.btn-accent:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184, 147, 90, 0.35);
}

.btn-ghost-light {
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
  background: transparent;
}

.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-ghost-dark {
  border-color: var(--accent);
  color: var(--text);
  background: transparent;
}

.btn-ghost-dark:hover {
  background: var(--accent);
  color: #fff;
}

.btn-outline-white {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
  background: transparent;
  font-size: 12px;
  padding: 10px 22px;
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 12px;
}

.btn-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  transition: var(--t);
}

.btn-icon:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* ══════════════════════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  /* gradient so text is readable before scroll */
  background: linear-gradient(to bottom, rgba(74, 63, 53, 0.75) 0%, transparent 100%);
  transition: background var(--t), box-shadow var(--t);
}

.site-header.scrolled {
  background: rgba(74, 63, 53, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
  padding: 20px 0;
}

.logo {
  display: flex;
  align-items: center;
  line-height: 1;
}

.logo-img {
  height: 40px;
  width: auto;
  display: block;
}

.nav {
  display: flex;
  gap: 28px;
  justify-content: center;
}

.nav a {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
  position: relative;
  transition: color var(--t);
}

.nav a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t);
}

.nav a:hover {
  color: #fff;
}

.nav a:hover::after {
  transform: scaleX(1);
}

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: #fff;
  transition: var(--t);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: -1;
}

/* ══════════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════════ */
.hero {
  min-height: 100dvh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--dark);
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 130px 7vw 90px;
  position: relative;
}

.hero-content::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.1) 30%, rgba(255, 255, 255, 0.1) 70%, transparent);
}

.hero-content .eyebrow {
  color: var(--accent);
  margin-bottom: 22px;
}

.hero-content h1 {
  color: #fff;
  font-weight: 300;
  letter-spacing: -0.5px;
  margin-bottom: 26px;
}

.hero-content h1 em {
  font-style: italic;
  color: var(--accent);
}

.hero-content .lead {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.95rem;
  line-height: 1.9;
  margin-bottom: 38px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-meta > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-meta strong {
  font-size: 1.7rem;
  font-weight: 300;
  color: #fff;
  line-height: 1;
  letter-spacing: -1px;
}

.hero-meta span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.4);
}

.meta-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
}

/* Hero visual — right column */
.hero-visual {
  position: relative;
  overflow: hidden;
}

.hero-visual .slider {
  position: absolute;
  inset: 0;
}

.hero-visual .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.1s ease;
  pointer-events: none;
}

.hero-visual .slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 80px 32px 32px;
  background: linear-gradient(to top, rgba(74, 63, 53, 0.85) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.slide-caption span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--accent);
}

.slide-caption strong {
  font-size: 1.1rem;
  font-weight: 500;
  color: #fff;
}

/* Slider controls */
.slider-dots {
  position: absolute;
  bottom: 32px;
  right: 32px;
  display: flex;
  gap: 8px;
  z-index: 2;
}

.slider-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: var(--t);
}

.slider-dot.active {
  background: var(--accent);
  width: 22px;
}

.slider-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 2;
  opacity: 0;
  transition: opacity var(--t);
}

.hero-visual:hover .slider-nav {
  opacity: 1;
}

/* ══════════════════════════════════════════════════════════════
   SECTIONS — COMMON
══════════════════════════════════════════════════════════════ */
section {
  padding: 100px 0;
}

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

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--surface);
  padding: 34px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  transition: var(--t);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(184, 147, 90, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 22px;
}

.service-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.service-card p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 0.875rem;
}

/* ══════════════════════════════════════════════════════════════
   PORTFOLIO
══════════════════════════════════════════════════════════════ */
.portfolio {
  background: var(--dark);
  padding-bottom: 0;
}

.portfolio .section-header h2 {
  color: #fff;
}

.portfolio .section-header .eyebrow {
  color: var(--accent);
}

.portfolio .section-header .section-sub {
  color: rgba(255, 255, 255, 0.45);
}

/* Portfolio filters */
.portfolio-filters {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-btn {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.6);
  padding: 10px 24px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--t);
}

.filter-btn:hover {
  border-color: var(--accent);
  color: #fff;
}

.filter-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.portfolio-card.hidden {
  display: none;
}

.portfolio-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  cursor: pointer;
}

.portfolio-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.portfolio-card:hover .portfolio-img {
  transform: scale(1.07);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(74, 63, 53, 0.92) 0%,
    rgba(74, 63, 53, 0.3) 50%,
    transparent 100%
  );
  display: flex;
  align-items: flex-end;
  padding: 28px;
  opacity: 0;
  transition: opacity var(--t);
}

.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-overlay span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--accent);
  display: block;
  margin-bottom: 6px;
}

.portfolio-overlay strong {
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  display: block;
  margin-bottom: 4px;
}

.portfolio-overlay p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
}

/* ══════════════════════════════════════════════════════════════
   STATS
══════════════════════════════════════════════════════════════ */
.stats {
  background: var(--accent);
  padding: 64px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.stat-item {
  text-align: center;
  padding: 24px 20px;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: rgba(255, 255, 255, 0.28);
}

.stat-item strong {
  font-size: 3.4rem;
  font-weight: 300;
  color: #fff;
  display: block;
  line-height: 1;
  letter-spacing: -2px;
}

.stat-item span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 10px;
  display: block;
}

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

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

.about-text .eyebrow {
  margin-bottom: 12px;
}

.about-text h2 {
  margin-bottom: 16px;
}

.about-text > p {
  color: var(--muted);
  line-height: 1.85;
  margin-top: 18px;
  font-size: 0.925rem;
}

.about-list {
  list-style: none;
  margin-top: 24px;
  display: grid;
  gap: 12px;
}

.about-list li {
  padding-left: 20px;
  position: relative;
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.75;
}

.about-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 1px;
  background: var(--accent);
}

.about-steps {
  display: grid;
  gap: 0;
}

.step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}

.step:first-child {
  padding-top: 0;
}

.step:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.step-num {
  font-size: 2rem;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
  opacity: 0.6;
  letter-spacing: -1px;
}

.step strong {
  font-size: 0.9rem;
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}

.step p {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.75;
}

/* ══════════════════════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════════════════════ */
.testimonials {
  background: var(--surface);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  padding: 36px 32px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  transition: var(--t);
}

.testimonial-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}

.quote-mark {
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 0.5;
  color: var(--accent);
  opacity: 0.25;
  margin-bottom: 24px;
}

.testimonial-card p {
  color: var(--muted);
  line-height: 1.85;
  font-size: 0.875rem;
  margin-bottom: 28px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(184, 147, 90, 0.12);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

.testimonial-author strong {
  font-size: 0.875rem;
}

/* ══════════════════════════════════════════════════════════════
   FAQ
══════════════════════════════════════════════════════════════ */
.faq {
  background: var(--bg);
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.faq-intro h2 {
  margin-top: 12px;
  margin-bottom: 18px;
}

.faq-intro p {
  color: var(--muted);
  line-height: 1.85;
  font-size: 0.925rem;
}

.faq-list {
  display: grid;
  gap: 0;
}

.faq-wrap {
  border-bottom: 1px solid var(--line);
}

.faq-item {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 0.95rem;
  font-weight: 400;
  text-align: left;
  color: var(--text);
  transition: color var(--t);
}

.faq-item:hover {
  color: var(--accent);
}

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  transition: transform var(--t);
}

.faq-item[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-panel {
  display: none;
  padding: 0 0 20px;
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.85;
}

.faq-item[aria-expanded="true"] + .faq-panel {
  display: block;
}

/* ══════════════════════════════════════════════════════════════
   CTA
══════════════════════════════════════════════════════════════ */
.cta {
  background: var(--dark);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}

.cta-text .eyebrow {
  color: var(--accent);
  margin-bottom: 14px;
}

.cta-text h2 {
  color: #fff;
  margin-bottom: 16px;
}

.cta-text p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.925rem;
}

.cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--dark-surface);
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.site-footer .logo-img {
  height: 36px;
}

.footer-brand p {
  margin-top: 14px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.4);
  max-width: 220px;
  line-height: 1.75;
}

.site-footer h4 {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 18px;
}

.site-footer p {
  font-size: 0.875rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.45);
}

.site-footer a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  display: block;
  margin-top: 10px;
  transition: color var(--t);
}

.site-footer a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 20px;
  text-align: center;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.28);
}

/* ══════════════════════════════════════════════════════════════
   WHATSAPP FLOAT
══════════════════════════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.38);
  transition: var(--t);
}

.whatsapp-float:hover {
  transform: scale(1.09);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
}

/* ══════════════════════════════════════════════════════════════
   COOKIE BANNER
══════════════════════════════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 90;
  background: var(--dark);
  border-radius: 14px;
  padding: 20px 24px;
  max-width: 320px;
  display: none;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-md);
}

.cookie-banner.show {
  display: grid;
}

.cookie-banner p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.85rem;
  line-height: 1.65;
}

.cookie-banner a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-banner a:hover {
  color: #d4a96a;
}

/* ══════════════════════════════════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — TABLET
══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio-card {
    aspect-ratio: 4 / 3;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item:nth-child(2)::after {
    display: none;
  }
}

@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-content {
    padding: 120px 6vw 60px;
    min-height: 60dvh;
  }

  .hero-content::after {
    display: none;
  }

  .hero-visual {
    height: 55vw;
    min-height: 280px;
  }

  .about-grid,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .header-inner {
    grid-template-columns: auto 1fr auto auto;
  }

  .nav {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(80vw, 300px);
    background: var(--dark);
    flex-direction: column;
    padding: 80px 32px 40px;
    gap: 0;
    z-index: 101;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.3);
  }

  .nav.show {
    display: flex;
  }

  .nav.show ~ .nav-overlay {
    display: block;
  }

  .nav a {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 14px;
  }

  .menu-toggle {
    display: flex;
  }

  .site-header .btn-outline-white {
    display: none;
  }
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE
══════════════════════════════════════════════════════════════ */
@media (max-width: 600px) {
  section {
    padding: 72px 0;
  }

  .service-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .portfolio-card {
    aspect-ratio: 4 / 3;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cta-inner {
    flex-direction: column;
  }

  .cta-actions {
    width: 100%;
    flex-direction: column;
  }

  .cta-actions .btn {
    text-align: center;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-meta {
    gap: 16px;
    flex-wrap: wrap;
  }

  .stat-item strong {
    font-size: 3rem;
  }

  .stat-item:nth-child(2n)::after {
    display: none;
  }
}
