/* ─── GOOGLE FONTS ─────────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Inter:wght@400;500;600;700&display=swap');

/* ─── CSS VARIABLES ─────────────────────────────────────────────────────────── */
:root {
  --bg-dark:      #1A1F2E;
  --bg-mid:       #232A3D;
  --bg-light:     #F5F2EC;
  --bg-white:     #ffffff;
  --accent:       #C9922A;
  --accent-dark:  #A87420;
  --accent-light: rgba(201, 146, 42, 0.12);
  --text-dark:    #1A1F2E;
  --text-light:   #F5F2EC;
  --text-muted:   #8A8FA3;
  --text-muted-lt:#6B6760;
  --border-dark:  rgba(201, 146, 42, 0.2);
  --border-light: #E5E1DB;
  --shadow-sm:    0 1px 4px rgba(0,0,0,0.08);
  --shadow-md:    0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg:    0 8px 32px rgba(0,0,0,0.14);
  --font-serif:   'Playfair Display', Georgia, serif;
  --font-sans:    'Inter', system-ui, -apple-system, sans-serif;
  --nav-h:        72px;
  --radius:       12px;
  --radius-lg:    20px;
}

/* ─── RESET ─────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  background: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

/* ─── TYPOGRAPHY ─────────────────────────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-serif); line-height: 1.15; font-weight: 700; }
h1 { font-size: clamp(2.8rem, 6vw, 5.2rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.1rem; font-family: var(--font-sans); font-weight: 700; }
p  { font-size: 1rem; line-height: 1.7; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

/* ─── LAYOUT ─────────────────────────────────────────────────────────────────── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 28px; }
.container--narrow { max-width: 820px; margin: 0 auto; padding: 0 28px; }
section { position: relative; }

/* ─── BUTTONS ─────────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn--primary {
  background: var(--accent);
  color: white;
}
.btn--primary:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(196, 122, 68, 0.35);
}
.btn--outline {
  background: transparent;
  color: var(--text-light);
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn--outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-1px);
}
.btn--outline-dark {
  background: transparent;
  color: var(--text-dark);
  border: 1.5px solid var(--border-light);
}
.btn--outline-dark:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-1px);
}

/* ─── NAV ─────────────────────────────────────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  background: rgba(26, 31, 46, 0.85);
  transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}
#nav.scrolled {
  background: rgba(26, 31, 46, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(196, 122, 68, 0.15);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 28px;
}
.nav-logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  line-height: 1;
}
.nav-logo-img {
  height: 54px;
  width: auto;
  display: none;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.nav-logo-primary {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: white;
  letter-spacing: 0.02em;
}
.nav-logo-secondary {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: white;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--accent); }
.nav-links a.active { color: var(--text-light); }
.nav-cta { margin-left: 12px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 24px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--text-light);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--bg-dark);
  border-top: 1px solid var(--border-dark);
  padding: 24px 28px 32px;
  z-index: 99;
  flex-direction: column;
  gap: 20px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1.1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  padding: 8px 0;
  border-bottom: 1px solid var(--border-dark);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu .btn { width: fit-content; margin-top: 8px; }

/* ─── HERO (FULL PAGE) ─────────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, #1e2535 0%, #2a3350 40%, #1a1f2e 100%);
  animation: kenburns 20s ease-in-out infinite alternate;
}
@keyframes kenburns {
  0%   { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.06) translate(-1%, -1%); }
}
.hero-arch-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 60px,
      rgba(196,122,68,0.6) 60px,
      rgba(196,122,68,0.6) 61px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 60px,
      rgba(196,122,68,0.6) 60px,
      rgba(196,122,68,0.6) 61px
    );
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26,31,46,0.92) 0%,
    rgba(26,31,46,0.4) 50%,
    rgba(26,31,46,0.2) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 0 28px;
  margin: 0 auto;
  margin-top: var(--nav-h);
  text-align: center;
}
.hero-content h1 {
  color: var(--text-light);
  margin-bottom: 1.2rem;
}
.hero-content h1 em {
  font-style: italic;
  color: var(--accent);
}
.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(245,242,236,0.8);
  max-width: 580px;
  margin: 0 auto 2.4rem;
  line-height: 1.7;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.hero-scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollpulse 2s ease-in-out infinite;
}
@keyframes scrollpulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.8); }
  50%       { opacity: 1;   transform: scaleY(1); }
}
.hero-scroll-label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ─── PAGE HERO (INNER PAGES) ─────────────────────────────────────────────── */
.page-hero {
  padding: calc(var(--nav-h) + 80px) 28px 80px;
  background: var(--bg-dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(196,122,68,0.06) 0%, transparent 70%);
}
.page-hero h1 { color: var(--text-light); position: relative; }
.page-hero .accent-word { color: var(--accent); }
.page-hero p {
  color: rgba(245,242,236,0.7);
  max-width: 540px;
  margin: 1rem auto 0;
  font-size: 1.1rem;
}

/* Contact hero gets light bg */
.page-hero--light {
  background: var(--bg-light);
}
.page-hero--light::before {
  background: radial-gradient(ellipse at 50% 0%, rgba(196,122,68,0.08) 0%, transparent 70%);
}
.page-hero--light h1 { color: var(--text-dark); }
.page-hero--light p  { color: var(--text-muted-lt); }

/* ─── TRUST BAR ─────────────────────────────────────────────────────────────── */
.trust-bar {
  background: var(--bg-mid);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  padding: 20px 0;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 36px;
  border-right: 1px solid var(--border-dark);
}
.trust-item:last-child { border-right: none; }
.trust-value {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.trust-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ─── SECTION WRAPPERS ─────────────────────────────────────────────────────── */
.section--dark  { background: var(--bg-dark);  padding: 100px 0; }
.section--mid   { background: var(--bg-mid);   padding: 100px 0; }
.section--light { background: var(--bg-light); padding: 100px 0; }
.section--white { background: var(--bg-white); padding: 100px 0; }

.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 { color: var(--text-light); margin-bottom: 1rem; }
.section-header h2.dark { color: var(--text-dark); }
.section-header p { color: var(--text-muted); max-width: 500px; margin: 0 auto; }
.section-header p.dark-muted { color: var(--text-muted-lt); }
.section-header .accent-rule {
  width: 40px;
  height: 2px;
  background: var(--accent);
  margin: 14px auto 0;
  border-radius: 2px;
}

/* ─── PROJECT CARDS ─────────────────────────────────────────────────────────── */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.project-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-mid);
  border: 1px solid var(--border-dark);
  transition: all 0.25s ease;
  cursor: pointer;
}
.project-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 12px 36px rgba(196,122,68,0.15);
}
.project-card-img {
  height: 220px;
  background: linear-gradient(135deg, #232A3D 0%, #2D3552 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.project-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
  transition: transform 0.4s ease;
}
.project-card:hover .project-card-img img { transform: scale(1.04); }
.project-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  border-bottom: 2px solid var(--accent);
  opacity: 0;
  transition: opacity 0.25s;
  z-index: 1;
}
.project-card:hover .project-card-img::after { opacity: 1; }
.project-card-img-inner {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1e2535 0%, #2d3a52 50%, #1a2030 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.project-card-img-icon {
  width: 52px;
  height: 52px;
  border: 1.5px solid var(--border-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.project-card-img-icon svg { width: 22px; height: 22px; opacity: 0.35; }
.project-card-img-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.project-card-body { padding: 20px 22px 22px; }
.project-card-badge {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-light);
  border-radius: 100px;
  padding: 3px 10px;
  margin-bottom: 8px;
}
.project-card h4 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 4px;
}
.project-card-location {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.projects-link {
  text-align: center;
  margin-top: 44px;
}
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
  transition: gap 0.2s;
}
.arrow-link:hover { gap: 14px; }

/* ─── ABOUT TEASER ─────────────────────────────────────────────────────────── */
.about-teaser-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-teaser-copy { }
.about-teaser-copy p {
  color: var(--text-muted);
  margin-top: 1.2rem;
  line-height: 1.75;
}
.about-teaser-copy .arrow-link { margin-top: 2rem; }
.about-teaser-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(145deg, #232A3D 0%, #2D3552 100%);
  aspect-ratio: 4/3;
  border: 1px solid var(--border-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}
.placeholder-img-block {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 32px;
  text-align: center;
}
.placeholder-img-block svg { width: 48px; height: 48px; opacity: 0.25; }
.placeholder-img-block span {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* ─── SERVICES CARDS ─────────────────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: all 0.25s ease;
}
.service-card:hover {
  background: rgba(201,146,42,0.06);
  border-color: var(--accent);
  transform: translateY(-3px);
}
.service-icon {
  width: calc(100% + 64px);
  margin: -36px -32px 24px -32px;
  height: 180px;
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
}
.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.service-card h3 {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 10px;
}
.service-card p { color: var(--text-muted); font-size: 0.9rem; }
.service-card .arrow-link { margin-top: 20px; font-size: 0.85rem; }

/* ─── PROCESS STEPS ─────────────────────────────────────────────────────────── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: var(--border-dark);
  z-index: 0;
}
.process-step {
  padding: 0 20px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.process-number {
  width: 56px;
  height: 56px;
  background: var(--bg-dark);
  border: 1px solid var(--border-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent);
}
.process-step h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 8px;
}
.process-step p { font-size: 0.85rem; color: var(--text-muted); }

/* Process detail (services page) */
.process-detail-list { display: flex; flex-direction: column; gap: 32px; }
.process-detail-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  align-items: start;
}
.process-detail-num {
  width: 56px;
  height: 56px;
  background: var(--accent-light);
  border: 1px solid var(--border-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
}
.process-detail-copy h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.process-detail-copy p { font-size: 0.9rem; color: var(--text-muted-lt); }

/* ─── TESTIMONIALS ─────────────────────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
}
.testimonial-quote-mark {
  font-family: var(--font-serif);
  font-size: 4rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.35;
  margin-bottom: 8px;
}
.testimonial-card blockquote {
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-light);
  border: 1.5px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--accent);
  flex-shrink: 0;
}
.testimonial-name { font-size: 0.85rem; font-weight: 700; color: var(--text-dark); }
.testimonial-type { font-size: 0.75rem; color: var(--text-muted-lt); }

/* ─── CTA BANNER ─────────────────────────────────────────────────────────────── */
.cta-banner {
  background: var(--bg-mid);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  padding: 80px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(196,122,68,0.07) 0%, transparent 65%);
}
.cta-banner h2 {
  color: var(--text-light);
  margin-bottom: 1rem;
  position: relative;
}
.cta-banner p {
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto 2rem;
  position: relative;
}
.cta-banner .btn { position: relative; }

/* ─── FOOTER ─────────────────────────────────────────────────────────────────── */
footer {
  background: #111520;
  border-top: 1px solid var(--border-dark);
  padding: 60px 0 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo-wrap {
  display: inline-block;
  background: #ffffff;
  padding: 10px 14px;
  border-radius: 6px;
  margin-bottom: 14px;
}
.footer-logo {
  max-width: 190px;
  width: 100%;
  display: block;
}
.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 240px;
}
.footer-accent-line {
  width: 36px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  margin-bottom: 14px;
}
.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--accent); }
.footer-col address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-col address a {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-col address a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--border-dark);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.78rem; color: var(--text-muted); }
.footer-bottom a { color: var(--accent); }
.social-icons {
  display: flex;
  gap: 12px;
}
.social-icon {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border-dark);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.2s;
}
.social-icon:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.social-icon svg { width: 16px; height: 16px; }

/* ─── SERVICE SECTION (full-bleed alternating) ─────────────────────────────── */
.service-section {
  padding: 80px 0;
  background: var(--bg-light);
}
.service-section + .service-section {
  border-top: 1px solid var(--border-light);
}
.service-section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 28px;
}
.service-section-inner.reverse { direction: rtl; }
.service-section-inner.reverse > * { direction: ltr; }
.service-section-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(145deg, #e8e3db 0%, #d5cfc6 100%);
  aspect-ratio: 5/4;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-light);
}
.service-section-img .placeholder-img-block svg { opacity: 0.2; }
.service-section-img .placeholder-img-block span { color: var(--text-muted-lt); }
.service-section-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.service-section-copy { }
.service-section-copy h2 { color: var(--text-dark); margin-bottom: 1rem; }
.service-section-copy p { color: var(--text-muted-lt); margin-bottom: 1rem; }
.service-feature-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 1.5rem 0;
}
.service-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-dark);
}
.service-feature-item::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 7px;
}

/* ─── FAQ ACCORDION ─────────────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  background: var(--bg-white);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  transition: color 0.2s;
  background: none;
}
.faq-question:hover { color: var(--accent); }
.faq-question.open { color: var(--accent); }
.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.faq-question.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
}
.faq-answer.open {
  max-height: 300px;
  padding: 0 24px 20px;
}
.faq-answer p { font-size: 0.9rem; color: var(--text-muted-lt); line-height: 1.7; }

/* ─── PORTFOLIO FILTER ─────────────────────────────────────────────────────── */
.filter-bar {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  border: 1px solid var(--border-dark);
  background: transparent;
  transition: all 0.2s;
  cursor: pointer;
}
.filter-btn:hover { border-color: var(--accent); color: var(--accent); }
.filter-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}

/* ─── LIGHTBOX ─────────────────────────────────────────────────────────────── */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 12, 18, 0.94);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  backdrop-filter: blur(6px);
}
.lightbox-overlay.open { display: flex; }
.lightbox-box {
  background: var(--bg-mid);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  max-width: 720px;
  width: 100%;
  overflow: hidden;
}
.lightbox-img-area {
  height: 340px;
  background: linear-gradient(145deg, #232A3D 0%, #2D3552 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.lightbox-img-area img { width: 100%; height: 100%; object-fit: cover; }
.lb-prev, .lb-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px;
  background: rgba(26,31,46,0.75);
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: #fff; z-index: 2;
  transition: background 0.2s;
}
.lb-prev:hover, .lb-next:hover { background: rgba(201,146,42,0.85); }
.lb-prev { left: 12px; }
.lb-next { right: 12px; }
.lb-prev svg, .lb-next svg { width: 18px; height: 18px; }
.lb-counter {
  position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%);
  background: rgba(26,31,46,0.7); color: #fff;
  font-size: 0.75rem; padding: 3px 10px; border-radius: 20px;
  letter-spacing: 0.05em; z-index: 2;
}
.lightbox-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  background: rgba(26,31,46,0.8);
  border-radius: 50%;
  border: 1px solid var(--border-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-light);
  transition: background 0.2s;
}
.lightbox-close:hover { background: var(--accent); }
.lightbox-close svg { width: 16px; height: 16px; }
.lightbox-content { padding: 28px 32px 32px; }
.lightbox-badge {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-light);
  border-radius: 100px;
  padding: 3px 10px;
  margin-bottom: 10px;
}
.lightbox-content h3 { color: var(--text-light); margin-bottom: 10px; }
.lightbox-content p  { color: var(--text-muted); font-size: 0.9rem; line-height: 1.65; }
.lightbox-meta {
  display: flex;
  gap: 20px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border-dark);
}
.lightbox-meta-item { font-size: 0.8rem; color: var(--text-muted); }
.lightbox-meta-item strong { color: var(--text-light); display: block; margin-bottom: 2px; }

/* ─── CONTACT FORM ─────────────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: start;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted-lt);
  letter-spacing: 0.04em;
  margin-bottom: 7px;
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  background: var(--bg-white);
  border: 1.5px solid var(--border-light);
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select { cursor: pointer; appearance: none; }
.form-submit-btn {
  width: 100%;
  padding: 16px;
  background: var(--accent);
  color: white;
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
}
.form-submit-btn:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(196,122,68,0.35);
}
.form-status {
  margin-top: 12px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  display: none;
}
.form-status.success {
  background: rgba(45, 106, 79, 0.12);
  color: #2d6a4f;
  border: 1px solid rgba(45, 106, 79, 0.3);
  display: block;
}
.form-status.error {
  background: rgba(212, 81, 43, 0.1);
  color: #c0451e;
  border: 1px solid rgba(212, 81, 43, 0.25);
  display: block;
}
.contact-info { }
.contact-info-block {
  background: var(--bg-dark);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  margin-bottom: 24px;
}
.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.contact-info-item:last-child { margin-bottom: 0; }
.contact-info-icon {
  width: 40px;
  height: 40px;
  background: var(--accent-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg { width: 18px; height: 18px; color: var(--accent); }
.contact-info-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 3px;
}
.contact-info-value {
  font-size: 0.95rem;
  color: var(--text-light);
  font-weight: 500;
}
.contact-info-value a { color: var(--accent); }
.what-happens-next { }
.what-happens-next h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted-lt);
  margin-bottom: 16px;
}
.next-steps { display: flex; flex-direction: column; gap: 16px; }
.next-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.next-step-num {
  width: 28px;
  height: 28px;
  background: var(--accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 1px;
}
.next-step p { font-size: 0.88rem; color: var(--text-muted-lt); }

/* ─── ABOUT PAGE SPECIFIC ─────────────────────────────────────────────────── */
.origin-grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 60px;
  align-items: start;
}
.origin-year {
  font-family: var(--font-serif);
  font-size: 7rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 0.9;
  opacity: 0.9;
}
.origin-copy h2 { color: var(--text-dark); margin-bottom: 1rem; }
.origin-copy p { color: var(--text-muted-lt); margin-bottom: 1rem; font-size: 1rem; }
.origin-copy p:last-child { margin-bottom: 0; }
.meet-alex-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: center;
}
.meet-alex-photo {
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(145deg, #232A3D 0%, #2D3552 100%);
  aspect-ratio: 3/4;
  border: 1px solid var(--border-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}
.meet-alex-copy h2 { color: var(--text-light); margin-bottom: 1rem; }
.meet-alex-copy p { color: var(--text-muted); margin-bottom: 1rem; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.value-card {
  text-align: center;
  padding: 36px 24px;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.02);
}
.value-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}
.value-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 8px;
  font-family: var(--font-sans);
}
.value-card p { font-size: 0.83rem; color: var(--text-muted); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.team-card {
  background: var(--bg-mid);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  overflow: hidden;
}
.team-card-photo {
  height: 280px;
  background: linear-gradient(145deg, #1e2535 0%, #2d3a52 100%);
  overflow: hidden;
}
.team-card-photo img {
  display: block;
  width: 100%;
  height: 100%;
}
.team-card-photo-inner {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--accent-light);
  border: 2px solid var(--border-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-card-photo-inner svg { width: 36px; height: 36px; opacity: 0.3; }
.team-card-body { padding: 20px 22px; }
.team-card h4 {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 4px;
  font-family: var(--font-sans);
  font-weight: 700;
}
.team-card p { font-size: 0.8rem; color: var(--text-muted); }
.certifications-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.cert-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  padding: 16px 24px;
}
.cert-icon {
  width: 36px;
  height: 36px;
  background: var(--accent-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.cert-badge h5 {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-light);
  font-family: var(--font-sans);
}
.cert-badge p { font-size: 0.72rem; color: var(--text-muted); }

/* ─── FILM GRAIN TEXTURE ────────────────────────────────────────────────────── */
.section--dark::before,
.section--mid::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  z-index: 0;
}
.hero::after,
.cta-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  z-index: 1;
}

/* ─── HERO AMBIENT GLOW ──────────────────────────────────────────────────────── */
.hero-glow {
  position: absolute;
  top: -25%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,122,68,0.09) 0%, transparent 65%);
  animation: hero-breathe 10s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}
.hero-glow-2 {
  position: absolute;
  bottom: -20%;
  left: -8%;
  width: 45vw;
  height: 45vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(50,80,180,0.06) 0%, transparent 65%);
  animation: hero-breathe 14s ease-in-out infinite reverse;
  pointer-events: none;
  z-index: 1;
}
@keyframes hero-breathe {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.2); opacity: 0.5; }
}

/* ─── VIDEO HERO ─────────────────────────────────────────────────────────────── */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero.has-video .hero-video { opacity: 1; }
.hero.has-video .hero-bg    { opacity: 0; transition: opacity 1s ease; }
.hero.has-video .hero-arch-pattern { opacity: 0; }
.hero.has-video .hero-glow,
.hero.has-video .hero-glow-2 { opacity: 0; }

/* ─── HERO Z-PATTERN (LEFT-ALIGNED) ─────────────────────────────────────────── */
.hero-content {
  text-align: left;
  margin-left: max(28px, 8%);
  margin-right: auto;
  max-width: 560px;
}
.hero-sub  { margin-left: 0; margin-right: 0; }
.hero-ctas { justify-content: flex-start; }
@media (max-width: 768px) {
  .hero-content {
    text-align: center;
    margin-left: auto;
    max-width: 820px;
  }
  .hero-sub  { margin: 0 auto 2.4rem; }
  .hero-ctas { justify-content: center; }
}

/* ─── SCROLL REVEAL ─────────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── RESPONSIVE ─────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .projects-grid,
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .process-grid::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .section--dark, .section--mid, .section--light, .section--white { padding: 72px 0; }
  .about-teaser-grid,
  .service-section-inner,
  .service-section-inner.reverse { grid-template-columns: 1fr; gap: 36px; direction: ltr; }
  .service-section-inner.reverse > * { direction: ltr; }
  .about-teaser-image { max-width: 100%; }
  .services-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .origin-grid { grid-template-columns: 1fr; gap: 20px; }
  .origin-year { font-size: 5rem; }
  .meet-alex-grid { grid-template-columns: 1fr; }
  .meet-alex-photo { max-width: 260px; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .trust-bar-inner { flex-direction: column; gap: 0; }
  .trust-item { border-right: none; border-bottom: 1px solid var(--border-dark); width: 100%; }
  .trust-item:last-child { border-bottom: none; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .certifications-row { flex-direction: column; }
}

@media (max-width: 480px) {
  .values-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .process-grid { grid-template-columns: 1fr; }
}

/* ─── PREVIEW FEEDBACK WIDGET ────────────────────────────────────────────────── */
.preview-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.65rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  box-shadow: 0 -2px 20px rgba(0,0,0,0.3);
}
.preview-banner span { opacity: 0.85; }
.preview-banner-btn {
  background: rgba(255,255,255,0.22);
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 1.2rem;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.preview-banner-btn:hover { background: rgba(255,255,255,0.35); }

.feedback-drawer {
  position: fixed;
  top: 0; right: 0;
  width: 380px;
  max-width: 95vw;
  height: 100%;
  background: var(--bg-dark);
  border-left: 1px solid rgba(196,122,68,0.25);
  z-index: 10000;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 40px rgba(0,0,0,0.4);
}
.feedback-drawer.open { transform: translateX(0); }
.feedback-drawer-header {
  padding: 1.4rem 1.6rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}
.feedback-drawer-header h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--text-light);
  line-height: 1.3;
}
.feedback-drawer-header p {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}
.feedback-drawer-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  flex-shrink: 0;
}
.feedback-drawer-close:hover { color: var(--text-light); }
.feedback-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 1.4rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.feedback-drawer-field label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.4rem;
}
.feedback-drawer-field input,
.feedback-drawer-field textarea,
.feedback-drawer-field select {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  color: var(--text-light);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  padding: 0.65rem 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}
.feedback-drawer-field textarea { min-height: 100px; resize: vertical; line-height: 1.6; }
.feedback-drawer-field input:focus,
.feedback-drawer-field textarea:focus,
.feedback-drawer-field select:focus { border-color: var(--accent); }
.feedback-drawer-field input::placeholder,
.feedback-drawer-field textarea::placeholder { color: var(--text-muted); opacity: 0.6; }
.feedback-drawer-field select option { background: var(--bg-dark); }
.feedback-drawer-footer {
  padding: 1rem 1.6rem 1.4rem;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.feedback-drawer-submit {
  width: 100%;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.85rem;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.2s;
}
.feedback-drawer-submit:hover { background: var(--accent-dk); }
.feedback-drawer-thankyou {
  display: none;
  text-align: center;
  padding: 2rem 1.6rem;
}
.feedback-drawer-thankyou h4 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--accent);
  margin-bottom: 0.4rem;
}
.feedback-drawer-thankyou p { font-size: 0.88rem; color: var(--text-muted); }
.feedback-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.feedback-overlay.open { opacity: 1; pointer-events: all; }

/* ─── INLINE PAGE FEEDBACK ───────────────────────────────────────────────────── */
.page-feedback-section {
  background: var(--bg-mid);
  border-top: 1px solid rgba(196,122,68,0.2);
  padding: 4rem 0 5rem;
}
.page-feedback-inner {
  max-width: 640px;
}
.page-feedback-inner h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--text-light);
  margin: 0.4rem 0 0.6rem;
}
.page-feedback-inner > p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.4rem;
}
.page-fb-text {
  width: 100%;
  min-height: 110px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  color: var(--text-light);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  line-height: 1.65;
  padding: 0.75rem 1rem;
  resize: vertical;
  outline: none;
  transition: border-color 0.2s;
  margin-bottom: 0.75rem;
}
.page-fb-text:focus { border-color: var(--accent); }
.page-fb-text::placeholder { color: var(--text-muted); opacity: 0.6; }
.page-fb-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.page-fb-row input {
  flex: 1;
  min-width: 140px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  color: var(--text-light);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  padding: 0.7rem 1rem;
  outline: none;
  transition: border-color 0.2s;
}
.page-fb-row input:focus { border-color: var(--accent); }
.page-fb-row input::placeholder { color: var(--text-muted); opacity: 0.6; }
.page-fb-submit {
  background: var(--accent);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.7rem 1.8rem;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.page-fb-submit:hover { background: var(--accent-dk); }
.page-fb-thanks {
  margin-top: 1rem;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--accent);
}
