/* ==========================================================================
   Black Oak Decor — Shared Styles
   Palette: Black (#17150F), Bone (#F4F0E6), Oak/Bronze accent (#A98E63)
   ========================================================================== */

:root {
  --black: #17150f;
  --charcoal: #221f18;
  --ink: #2b2823;
  --bone: #f4f0e6;
  --bone-dark: #e9e2d2;
  --bone-deep: #ddd4bf;
  --oak: #a98e63;
  --oak-dark: #8d7450;
  --white: #ffffff;
  --text: #3a372f;
  --text-muted: #6d6a60;
  --text-on-dark: #cfc9ba;

  --font-heading: "Playfair Display", Georgia, serif;
  --font-body: "Jost", "Helvetica Neue", Arial, sans-serif;

  --radius: 16px;
  --radius-lg: 28px;
  --shadow: 0 20px 50px rgba(23, 21, 15, 0.12);
  --container: 1200px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

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

ul { list-style: none; }

.container {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

/* ---------- Typography ---------- */

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.15;
  color: var(--ink);
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.75rem); }
h3 { font-size: 1.4rem; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--oak-dark);
  margin-bottom: 16px;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--oak);
}

.eyebrow.centered { justify-content: center; }
.eyebrow.centered::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--oak);
}

.section-intro { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.section-intro p { color: var(--text-muted); margin-top: 14px; }

.lead { font-size: 1.1rem; color: var(--text-muted); }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--black);
  color: var(--bone);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 8px 8px 8px 24px;
  border: 1px solid var(--black);
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.btn .arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--oak);
  color: var(--black);
  transition: transform 0.25s ease;
}

.btn:hover { background: var(--charcoal); transform: translateY(-2px); }
.btn:hover .arrow { transform: translateX(3px); }

.btn.btn-light {
  background: var(--bone);
  color: var(--black);
  border-color: var(--bone);
}
.btn.btn-light:hover { background: var(--white); }

.btn.btn-outline {
  background: transparent;
  color: var(--bone);
  border-color: rgba(244, 240, 230, 0.4);
}
.btn.btn-outline:hover { border-color: var(--bone); background: rgba(244, 240, 230, 0.08); }

.btn.btn-block { width: 100%; justify-content: center; padding: 16px 24px; }

/* ---------- Header / Navigation ---------- */

.site-header {
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1240px, calc(100% - 32px));
  z-index: 100;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(23, 21, 15, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(244, 240, 230, 0.12);
  border-radius: 20px;
  padding: 14px 22px;
}

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

.brand-mark {
  width: 44px;
  height: 44px;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(244, 240, 230, 0.35);
  border-radius: 50%;
  color: var(--bone);
}

.brand-text { line-height: 1.1; }

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bone);
  white-space: nowrap;
}

.brand-tag {
  font-size: 0.6rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--oak);
}

.nav-menu { display: flex; align-items: center; gap: 6px; }

.nav-menu > li { position: relative; }

.nav-menu a {
  display: block;
  padding: 10px 16px;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--bone);
  border-radius: 10px;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active { color: var(--oak); }

.has-dropdown > a::after {
  content: "";
  display: inline-block;
  margin-left: 8px;
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-3px);
}

.dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 8px;
  min-width: 230px;
  background: var(--black);
  border: 1px solid rgba(244, 240, 230, 0.12);
  border-radius: 14px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
}

.has-dropdown:hover .dropdown,
.has-dropdown.open .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a { padding: 11px 14px; border-radius: 9px; font-size: 0.92rem; }
.dropdown a:hover { background: rgba(244, 240, 230, 0.08); color: var(--oak); }

.nav-phone {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(169, 142, 99, 0.14);
  border: 1px solid rgba(169, 142, 99, 0.35);
  border-radius: 14px;
  padding: 8px 18px 8px 8px;
  color: var(--bone);
  transition: background 0.25s ease;
}

.nav-phone:hover { background: rgba(169, 142, 99, 0.26); }

.nav-phone .icon {
  width: 38px;
  height: 38px;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--oak);
  color: var(--black);
  border-radius: 10px;
}

.nav-phone .label { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--oak); line-height: 1.2; }
.nav-phone .number { font-size: 0.95rem; font-weight: 500; line-height: 1.2; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(244, 240, 230, 0.25);
  border-radius: 10px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--bone);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero (homepage) ---------- */

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  padding: 160px 0 90px;
  background-size: cover;
  background-position: center;
  color: var(--bone);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23, 21, 15, 0.72) 0%, rgba(23, 21, 15, 0.45) 45%, rgba(23, 21, 15, 0.82) 100%);
}

.hero .container { position: relative; z-index: 2; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 48px;
  align-items: end;
}

.hero h1 { color: var(--white); }

.hero-clients { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }

.avatar-stack { display: flex; }

.avatar-stack img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--bone);
  object-fit: cover;
  margin-left: -12px;
}

.avatar-stack img:first-child { margin-left: 0; }

.hero-clients span { font-weight: 500; letter-spacing: 0.04em; }

.hero-side p { color: var(--text-on-dark); margin-bottom: 26px; }

/* ---------- Page hero (interior pages) ---------- */

.page-hero {
  position: relative;
  padding: 200px 0 110px;
  background-size: cover;
  background-position: center;
  color: var(--bone);
  text-align: center;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23, 21, 15, 0.8), rgba(23, 21, 15, 0.62));
}

.page-hero .container { position: relative; z-index: 2; max-width: 780px; }

.page-hero h1 { color: var(--white); margin-bottom: 18px; }

.page-hero p { color: var(--text-on-dark); font-size: 1.08rem; max-width: 620px; margin: 0 auto; }

.page-hero .eyebrow { color: var(--oak); justify-content: center; }
.page-hero .eyebrow::after { content: ""; width: 28px; height: 1px; background: var(--oak); }

/* ---------- Audience split cards ---------- */

.audience {
  position: relative;
  z-index: 5;
  margin-top: -70px;
  padding-bottom: 100px;
}

.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.audience-card {
  display: flex;
  flex-direction: column;
  background: var(--bone);
  border: 1px solid var(--bone-deep);
  border-radius: var(--radius-lg);
  padding: 44px 42px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.audience-card:hover { transform: translateY(-6px); box-shadow: 0 28px 60px rgba(23, 21, 15, 0.18); }

.audience-card.dark {
  background: var(--black);
  border-color: var(--charcoal);
}

.audience-card.dark h3 { color: var(--white); }
.audience-card.dark p { color: var(--text-on-dark); }

.audience-icon {
  width: 62px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  color: var(--oak);
  border-radius: 50%;
  margin-bottom: 24px;
}

.audience-card.dark .audience-icon { background: var(--oak); color: var(--black); }

.audience-card .tag {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--oak-dark);
  margin-bottom: 10px;
}

.audience-card.dark .tag { color: var(--oak); }

.audience-card h3 { font-size: 1.7rem; margin-bottom: 14px; }

.audience-card p { color: var(--text-muted); margin-bottom: 28px; }

.audience-card .btn { margin-top: auto; align-self: flex-start; }

/* ---------- Stats strip ---------- */

.stats-strip { padding: 70px 0; border-bottom: 1px solid var(--bone-dark); }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat h3 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  color: var(--black);
}

.stat h3 span { color: var(--oak); }

.stat p {
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 6px;
}

/* ---------- Split sections (about-style) ---------- */

.split { padding: 110px 0; }

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.split-grid.reverse { direction: rtl; }
.split-grid.reverse > * { direction: ltr; }

.split-images { position: relative; }

.split-images .img-main {
  width: 82%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.split-images .img-main img {
  border-radius: var(--radius-lg);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  width: 100%;
}

.split-images .img-float {
  position: absolute;
  right: 0;
  bottom: -48px;
  width: 52%;
  border: 8px solid var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.split-images .img-float img { aspect-ratio: 1 / 1; object-fit: cover; width: 100%; }

.split-content h2 { margin-bottom: 24px; }

.quote-box {
  background: var(--bone);
  border-left: 4px solid var(--oak);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 26px 30px;
  margin-bottom: 24px;
  color: var(--text);
}

.split-content > p { color: var(--text-muted); margin-bottom: 20px; }

.split-content .btn { margin-top: 12px; }

.check-list { margin: 6px 0 26px; }

.check-list li {
  position: relative;
  padding: 7px 0 7px 36px;
  color: var(--text);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--black);
}

.check-list li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 17px;
  width: 8px;
  height: 5px;
  border-left: 2px solid var(--oak);
  border-bottom: 2px solid var(--oak);
  transform: rotate(-45deg);
}

/* ---------- Services (arched cards, dark section) ---------- */

.services {
  background: var(--black);
  padding: 110px 0 130px;
  color: var(--bone);
}

.services .section-intro h2 { color: var(--white); }
.services .section-intro .eyebrow { color: var(--oak); }
.services .section-intro .eyebrow::before,
.services .section-intro .eyebrow::after { background: var(--oak); }
.services .section-intro p { color: var(--text-on-dark); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.service-card {
  background: var(--bone);
  border-radius: 999px 999px 24px 24px;
  padding: 70px 28px 44px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
}

.service-card:hover { transform: translateY(-8px); }

.service-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  margin-bottom: 22px;
}

.service-card h3 { font-size: 1.35rem; margin-bottom: 12px; }

.service-card p { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 26px; }

.service-card .btn { margin-top: auto; }

/* ---------- Why choose us / skill bars ---------- */

.why { padding: 110px 0; }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 72px;
  align-items: center;
}

.skills { margin-top: 40px; }

.skill { margin-bottom: 34px; }

.skill-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 10px;
}

.skill-head strong { font-size: 0.98rem; letter-spacing: 0.02em; }

.skill-value {
  background: var(--black);
  color: var(--bone);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 6px;
  position: relative;
}

.skill-value::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 12px;
  border: 5px solid transparent;
  border-top-color: var(--black);
  border-bottom: 0;
}

.skill-track {
  height: 4px;
  background: var(--bone-dark);
  border-radius: 4px;
  overflow: hidden;
}

.skill-fill {
  height: 100%;
  width: 0;
  background: var(--oak);
  border-radius: 4px;
  transition: width 1.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.why-collage {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  grid-template-rows: auto auto;
  gap: 24px;
}

.why-collage .c1 {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  object-fit: cover;
}

.why-collage .c2 {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  object-fit: cover;
  align-self: end;
}

.why-collage .c3 {
  grid-column: 2;
  grid-row: 1 / span 2;
  width: 100%;
  height: 100%;
  min-height: 520px;
  border-radius: var(--radius-lg);
  object-fit: cover;
}

/* ---------- Process / steps ---------- */

.steps { margin-top: 40px; }

.step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  margin-bottom: 36px;
}

.step-num {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  color: var(--bone);
  font-family: var(--font-heading);
  font-size: 1.3rem;
  border-radius: 50%;
}

.step h3 { margin-bottom: 8px; }

.step p { color: var(--text-muted); font-size: 0.98rem; }

/* ---------- Contact section ---------- */

.contact-section { padding: 110px 0; background: var(--bone); }

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

.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow);
}

.form-card .form-label-top {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--oak-dark);
  margin-bottom: 26px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.form-group { margin-bottom: 22px; }

.form-group label {
  display: block;
  font-weight: 500;
  font-size: 0.95rem;
  margin-bottom: 8px;
  color: var(--ink);
}

.form-group label span { color: #b0472f; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--bone-deep);
  border-radius: 12px;
  padding: 14px 18px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group textarea { min-height: 160px; resize: vertical; }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--oak);
  box-shadow: 0 0 0 3px rgba(169, 142, 99, 0.18);
}

.form-note { font-size: 0.85rem; color: var(--text-muted); margin-top: 14px; text-align: center; }

.form-success {
  display: none;
  background: rgba(169, 142, 99, 0.14);
  border: 1px solid var(--oak);
  border-radius: 12px;
  padding: 16px 20px;
  margin-top: 18px;
  color: var(--oak-dark);
  font-weight: 500;
}

.form-success.visible { display: block; }

/* ---------- Contact info cards ---------- */

.info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: -60px;
  position: relative;
  z-index: 5;
  padding-bottom: 90px;
}

.info-card {
  background: var(--white);
  border: 1px solid var(--bone-dark);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  text-align: center;
  box-shadow: var(--shadow);
}

.info-card .audience-icon { margin: 0 auto 18px; }

.info-card h3 { margin-bottom: 6px; }

.info-card p { color: var(--text-muted); font-size: 0.95rem; }

.info-card a.link { color: var(--oak-dark); font-weight: 500; }
.info-card a.link:hover { text-decoration: underline; }

/* ---------- CTA band ---------- */

.cta-band {
  position: relative;
  padding: 110px 0;
  background-size: cover;
  background-position: center;
  text-align: center;
  color: var(--bone);
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(23, 21, 15, 0.82);
}

.cta-band .container { position: relative; z-index: 2; max-width: 720px; }

.cta-band h2 { color: var(--white); margin-bottom: 18px; }

.cta-band p { color: var(--text-on-dark); margin-bottom: 34px; }

.cta-band .btn-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- Feature / benefit cards (light) ---------- */

.features { padding: 110px 0; }

.features.tinted { background: var(--bone); }

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

.feature-card {
  background: var(--white);
  border: 1px solid var(--bone-dark);
  border-radius: var(--radius-lg);
  padding: 38px 32px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }

.feature-card .audience-icon { width: 56px; height: 56px; margin-bottom: 20px; }

.feature-card h3 { margin-bottom: 10px; font-size: 1.25rem; }

.feature-card p { color: var(--text-muted); font-size: 0.97rem; }

/* ---------- Testimonials ---------- */

.testimonials { padding: 110px 0; background: var(--black); color: var(--bone); }

.testimonials .section-intro h2 { color: var(--white); }
.testimonials .section-intro p { color: var(--text-on-dark); }
.testimonials .section-intro .eyebrow { color: var(--oak); }
.testimonials .section-intro .eyebrow::before,
.testimonials .section-intro .eyebrow::after { background: var(--oak); }

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

.testimonial-card {
  background: var(--charcoal);
  border: 1px solid rgba(244, 240, 230, 0.1);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
}

.testimonial-card .stars { color: var(--oak); letter-spacing: 4px; margin-bottom: 18px; }

.testimonial-card blockquote { color: var(--text-on-dark); font-size: 0.98rem; margin-bottom: 24px; }

.testimonial-card .who strong { display: block; color: var(--white); font-weight: 500; }

.testimonial-card .who span { font-size: 0.85rem; color: var(--oak); letter-spacing: 0.08em; text-transform: uppercase; }

/* ---------- Footer ---------- */

.site-footer { background: var(--black); color: var(--text-on-dark); padding: 90px 0 0; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 60px;
}

.footer-brand .brand { margin-bottom: 20px; }

.footer-brand p { font-size: 0.95rem; margin-bottom: 22px; }

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(244, 240, 230, 0.2);
  border-radius: 50%;
  color: var(--bone);
  transition: background 0.25s ease, color 0.25s ease;
}

.footer-social a:hover { background: var(--oak); color: var(--black); border-color: var(--oak); }

.footer-col h4 {
  color: var(--white);
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}

.footer-col ul li { margin-bottom: 12px; }

.footer-col ul a { font-size: 0.95rem; transition: color 0.2s ease; }

.footer-col ul a:hover { color: var(--oak); }

.footer-contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.95rem;
}

.footer-contact .ico { color: var(--oak); flex: none; margin-top: 3px; }

.footer-bottom {
  border-top: 1px solid rgba(244, 240, 230, 0.1);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.88rem;
}

.footer-bottom a { color: var(--oak); }

/* ---------- Portfolio gallery ---------- */

.portfolio { padding: 110px 0; background: var(--bone); }

.gallery-grid {
  column-count: 4;
  column-gap: 14px;
}

.gallery-item {
  display: block;
  position: relative;
  margin: 0 0 14px;
  break-inside: avoid;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(23, 21, 15, 0.10);
  cursor: zoom-in;
  background: var(--bone-dark);
}

.gallery-item img {
  width: 100%;
  height: auto;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23, 21, 15, 0) 55%, rgba(23, 21, 15, 0.28));
  opacity: 0;
  transition: opacity 0.35s ease;
}

.gallery-item:hover img { transform: scale(1.05); }
.gallery-item:hover::after { opacity: 1; }

/* ---------- Lightbox ---------- */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(23, 21, 15, 0.94);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.open { opacity: 1; visibility: visible; }

.lb-stage {
  margin: 0;
  max-width: min(1100px, 92vw);
  max-height: 86vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lb-img {
  max-width: 100%;
  max-height: 86vh;
  width: auto;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.lb-img.loaded { opacity: 1; }

.lb-btn {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(244, 240, 230, 0.10);
  border: 1px solid rgba(244, 240, 230, 0.25);
  color: var(--bone);
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.2s ease, border-color 0.2s ease;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.lb-btn:hover { background: rgba(169, 142, 99, 0.9); border-color: var(--oak); color: var(--black); }

.lb-close {
  top: 22px;
  right: 24px;
  width: 48px;
  height: 48px;
  font-size: 1.8rem;
  line-height: 1;
}

.lb-prev, .lb-next {
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  font-size: 2rem;
  line-height: 1;
}

.lb-prev { left: 24px; }
.lb-next { right: 24px; }

.lb-counter {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-on-dark);
  font-size: 0.85rem;
  letter-spacing: 0.16em;
}

body.lb-lock { overflow: hidden; }

@media (max-width: 1080px) {
  .gallery-grid { column-count: 3; }
}

@media (max-width: 720px) {
  .gallery-grid { column-count: 2; column-gap: 10px; }
  .gallery-item { margin-bottom: 10px; }
  .lb-prev { left: 12px; }
  .lb-next { right: 12px; }
  .lb-close { top: 12px; right: 12px; }
}

/* ---------- Reveal animations ---------- */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in-view { opacity: 1; transform: translateY(0); }

.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.2s; }
.reveal.d3 { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */

@media (max-width: 1080px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-phone .label { display: none; }
}

@media (max-width: 900px) {
  .nav-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--black);
    border: 1px solid rgba(244, 240, 230, 0.12);
    border-radius: 16px;
    padding: 12px;
    display: none;
  }

  .nav-open .nav-menu { display: flex; }

  .nav-menu a { padding: 14px 16px; }

  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    border: none;
    background: rgba(244, 240, 230, 0.05);
    margin-top: 4px;
  }

  .has-dropdown.open .dropdown { display: block; }

  .nav-toggle { display: flex; }

  .nav-phone { margin-left: auto; }

  .hero-grid,
  .audience-grid,
  .split-grid,
  .why-grid,
  .contact-grid { grid-template-columns: 1fr; }

  .hero { padding-top: 140px; }

  .hero-grid { gap: 28px; align-items: start; }

  .split-grid { gap: 96px; }

  .why-collage .c3 { min-height: 380px; }

  .features-grid,
  .testimonial-grid,
  .info-cards { grid-template-columns: 1fr; }

  .info-cards { margin-top: -40px; }

  .audience { margin-top: -50px; }
}

@media (max-width: 600px) {
  body { font-size: 16px; }

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

  .stats-grid { grid-template-columns: 1fr 1fr; gap: 24px; }

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

  .form-card { padding: 30px 24px; }

  .audience-card { padding: 34px 28px; }

  .nav-phone .number { display: none; }
  .nav-phone { padding: 8px; }

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

  .site-header { top: 14px; }

  .split-images .img-float { bottom: -30px; }
}
