@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --bg-primary: #111111;
  --bg-secondary: #1A1A1A;
  --bg-card: #222222;
  --bg-elevated: #2A2A2A;
  --timber: #C8963E;
  --timber-light: #DAB06A;
  --timber-dark: #A07830;
  --amber-glow: rgba(200, 150, 62, 0.12);
  --text-primary: #F2EDE4;
  --text-secondary: #A8A39C;
  --text-muted: #6B6660;
  --border-subtle: #333333;
  --border-hover: #444444;
  --success: #5B8A4D;
  --font-display: 'Archivo Black', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--timber-dark) var(--bg-primary);
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--timber-dark); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--timber); }

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--timber-light); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--timber); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  overflow-wrap: break-word;
  word-break: break-word;
}

h1 { font-size: clamp(2rem, 6vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.75rem); }
h4 { font-size: clamp(1rem, 2.5vw, 1.25rem); }

p { color: var(--text-secondary); max-width: 65ch; }

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

/* ========== HEADER / NAV ========== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  background: rgba(17, 17, 17, 0.95);
  backdrop-filter: blur(12px);
  padding: 10px 0;
  box-shadow: 0 1px 0 var(--border-subtle);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
}

.brand-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
  transition: opacity var(--transition);
}

.scrolled .brand-logo {
  height: 40px;
}

@media (max-width: 768px) {
  .brand-logo {
    height: 40px;
  }
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--timber);
  letter-spacing: 0.08em;
  line-height: 1;
}

.brand-sub {
  font-family: var(--font-body);
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 2px;
}

.nav-links {
  display: none;
  list-style: none;
  gap: 20px;
  align-items: center;
}

.nav-links a {
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--timber);
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  display: none;
}

.nav-cta .btn-primary {
  padding: 10px 24px;
  font-size: 0.8rem;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav overlay */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: var(--bg-primary);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  transition: right 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}

.mobile-nav.open {
  right: 0;
}

.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text-secondary);
  transition: color var(--transition);
}

.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--timber);
}

.mobile-nav .btn-primary {
  margin-top: 16px;
}

/* ========== BUTTONS ========== */

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--timber);
  color: var(--bg-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--timber-light);
  color: var(--bg-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 150, 62, 0.3);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: transparent;
  color: var(--timber);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 2px solid var(--timber);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-secondary:hover {
  background: var(--timber);
  color: var(--bg-primary);
  transform: translateY(-2px);
}

/* ========== HERO ========== */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

.hero-image {
  width: 100%;
  height: 50vh;
  height: 50dvh;
  position: relative;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #000;
}

.hero-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, var(--bg-primary), transparent);
  z-index: 1;
}

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px 20px 48px;
  position: relative;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--timber);
  margin-bottom: 16px;
}

.hero-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--timber);
}

.hero h1 {
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 48ch;
}

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

.hero-stat-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 40px;
  margin-top: auto;
  border-top: 1px solid var(--border-subtle);
}

.hero-stat {
  text-align: left;
}

.hero-stat-value {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  color: var(--timber);
  line-height: 1.2;
}

.hero-stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

/* ========== SECTIONS ========== */

section {
  padding: 80px 0;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--timber);
  margin-bottom: 12px;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--timber);
}

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

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.05rem;
}

/* ========== SERVICE CARDS ========== */

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

.service-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  border-color: var(--timber-dark);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.service-card-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card:hover .service-card-image img {
  transform: scale(1.05);
}

.service-card-body {
  padding: 28px 24px;
}

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

.service-card p {
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--timber);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.service-card-link svg {
  transition: transform var(--transition);
}

.service-card:hover .service-card-link svg {
  transform: translateX(4px);
}

/* ========== CREDENTIALS / STATS ========== */

.credentials-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

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

.credential-item {
  text-align: center;
  padding: 32px 20px;
}

.credential-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  background: var(--amber-glow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.credential-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--timber);
  fill: none;
  stroke-width: 1.5;
}

.credential-value {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--timber);
  line-height: 1.2;
  margin-bottom: 4px;
}

.credential-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.credential-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ========== PROJECT GALLERY ========== */

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17, 17, 17, 0.85) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--text-primary);
}

/* ========== CTA BAND ========== */

.cta-band {
  background: linear-gradient(135deg, var(--timber-dark), var(--timber));
  padding: 64px 0;
  text-align: center;
}

.cta-band h2 {
  color: var(--bg-primary);
  margin-bottom: 12px;
}

.cta-band p {
  color: rgba(17, 17, 17, 0.7);
  margin: 0 auto 28px;
  max-width: 50ch;
}

.cta-band .btn-primary {
  background: var(--bg-primary);
  color: var(--timber);
}

.cta-band .btn-primary:hover {
  background: var(--bg-secondary);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

/* ========== PAGE HERO (interior pages) ========== */

.page-hero {
  position: relative;
  padding: 140px 0 80px;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(17, 17, 17, 0.75), rgba(17, 17, 17, 0.9));
}

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

.page-hero h1 {
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 1.1rem;
  max-width: 55ch;
}

/* ========== CONTENT BLOCKS ========== */

.content-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

.content-block-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.content-block-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.content-block-text h3 {
  margin-bottom: 12px;
  color: var(--timber);
}

.content-block-text p {
  margin-bottom: 16px;
}

.content-block-text ul {
  list-style: none;
  margin-bottom: 24px;
}

.content-block-text li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.content-block-text li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 2px;
  background: var(--timber);
}

/* ========== PROCESS / TIMELINE ========== */

.process-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  counter-reset: process;
}

.process-item {
  counter-increment: process;
  position: relative;
  padding: 28px 24px 28px 72px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  transition: border-color var(--transition);
}

.process-item:hover {
  border-color: var(--timber-dark);
}

.process-item::before {
  content: counter(process, decimal-leading-zero);
  position: absolute;
  left: 24px;
  top: 28px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--timber);
}

.process-item h4 {
  margin-bottom: 8px;
}

.process-item p {
  font-size: 0.9rem;
}

/* ========== TEAM / ABOUT ========== */

.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 32px;
  text-align: center;
}

.team-card h3 {
  margin-bottom: 4px;
}

.team-card .role {
  color: var(--timber);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.team-card p {
  margin: 0 auto;
  font-size: 0.95rem;
}

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

.value-item {
  padding: 28px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  transition: border-color var(--transition);
}

.value-item:hover {
  border-color: var(--timber-dark);
}

.value-item h4 {
  color: var(--timber);
  margin-bottom: 8px;
}

.value-item p {
  font-size: 0.9rem;
}

/* ========== CONTACT ========== */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 32px 24px;
}

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-primary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--timber);
  box-shadow: 0 0 0 3px var(--amber-glow);
}

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

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23A8A39C' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-submit .btn-primary {
  width: 100%;
  justify-content: center;
  padding: 16px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

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

.form-success svg {
  width: 48px;
  height: 48px;
  stroke: var(--success);
  fill: none;
  margin: 0 auto 16px;
}

.form-success h3 {
  margin-bottom: 8px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--amber-glow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--timber);
  fill: none;
  stroke-width: 1.5;
}

.contact-info-item h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.contact-info-item p {
  font-size: 0.9rem;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 12px;
}

.hours-table td {
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-subtle);
}

.hours-table td:last-child {
  text-align: right;
  font-weight: 500;
}

.hours-table tr:last-child td {
  border-bottom: none;
}

/* ========== FOOTER ========== */

.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  padding: 64px 0 32px;
}

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

.footer-brand .brand-name {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.9rem;
  max-width: 35ch;
}

.footer-links h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--timber);
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 50%;
  transition: border-color var(--transition), background var(--transition);
}

.footer-social a:hover {
  border-color: var(--timber);
  background: var(--amber-glow);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: var(--text-secondary);
  transition: fill var(--transition);
}

.footer-social a:hover svg {
  fill: var(--timber);
}

/* ========== SCROLL REVEAL ========== */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.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; }

/* ========== LEGAL PAGE ========== */

.legal-content {
  max-width: 720px;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin: 40px 0 16px;
}

.legal-content h3 {
  font-size: 1.15rem;
  margin: 28px 0 12px;
}

.legal-content p,
.legal-content li {
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.legal-content ul {
  padding-left: 24px;
  margin-bottom: 16px;
}

/* ========== CERTIFICATIONS LIST ========== */

.cert-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cert-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  transition: border-color var(--transition);
}

.cert-item:hover {
  border-color: var(--timber-dark);
}

.cert-badge {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: var(--amber-glow);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cert-badge svg {
  width: 24px;
  height: 24px;
  stroke: var(--timber);
  fill: none;
  stroke-width: 1.5;
}

.cert-item h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.cert-item p {
  font-size: 0.85rem;
}

/* ========== RESPONSIVE ========== */

@media (min-width: 480px) {
  .credentials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .container {
    padding: 0 40px;
  }

  section {
    padding: 100px 0;
  }

  .hero-content {
    padding: 40px 40px 60px;
  }

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

  .content-block {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }

  .content-block.reverse .content-block-image {
    order: 2;
  }

  .content-block.reverse .content-block-text {
    order: 1;
  }

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

  .gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
  }

  .contact-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }

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

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }

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

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

  .nav-links {
    display: flex;
  }

  .nav-cta {
    display: block;
  }

  .nav-toggle {
    display: none;
  }

  .mobile-nav {
    display: none;
  }
}

@media (min-width: 1024px) {
  .credentials-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .hero {
    flex-direction: row;
    align-items: stretch;
  }

  .hero-image {
    width: 50%;
    height: auto;
    min-height: 100vh;
    min-height: 100dvh;
    order: 2;
  }

  .hero-image::after {
    height: 100%;
    width: 55%;
    left: -1px;
    right: auto;
    top: 0;
    background: linear-gradient(to right, var(--bg-primary) 10%, rgba(26,24,22,0.7) 50%, transparent 100%);
    z-index: 1;
  }

  .hero-content {
    width: 50%;
    padding: 160px 60px 80px 60px;
    order: 1;
  }

  .container {
    padding: 0 60px;
  }

  section {
    padding: 120px 0;
  }

  .services-grid {
    gap: 28px;
  }

  .gallery-grid {
    gap: 20px;
  }
}

@media (min-width: 1280px) {
  .container {
    padding: 0 40px;
  }
}

/* ========== SERVICE PAGE SPECIFIC ========== */

.service-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.feature-card {
  padding: 28px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  transition: border-color var(--transition);
}

.feature-card:hover {
  border-color: var(--timber-dark);
}

.feature-card h4 {
  color: var(--timber);
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.feature-card p {
  font-size: 0.9rem;
}

@media (min-width: 768px) {
  .service-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .service-features {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ========== DROPDOWN NAV ========== */

.nav-dropdown {
  position: relative;
}

.nav-dropdown > a {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-dropdown > a svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  transition: transform var(--transition);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  padding: 24px 0 12px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
  margin-top: 0;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
  z-index: 1001;
}

/* Invisible bridge so hover doesn't break crossing the gap */
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.nav-dropdown:hover > a svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 0.85rem;
  text-transform: none;
  letter-spacing: 0;
}

.nav-dropdown-menu a::after {
  display: none;
}

.nav-dropdown-menu a:hover {
  background: var(--amber-glow);
}

/* ========== 404 ========== */

.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
}

.error-page h1 {
  font-size: clamp(4rem, 15vw, 10rem);
  color: var(--timber);
  line-height: 1;
  margin-bottom: 8px;
}

.error-page p {
  margin: 0 auto 24px;
}
