:root {
  --font-heading: 'GT Alpina Standard', 'Times New Roman', serif;
  --font-body: 'Lexend', sans-serif;
  --pine:    #2a3c33;
  --lichen:  #a7be9c;
  --mindaro: #cde691;
  --cream:   #f7f3f0;
  --woody:   #717d6c;
}

@font-face {
  font-family: 'GT Alpina Standard';
  src: url('../assets/fonts/GT-Alpina-Standard-Regular.woff2') format('woff2'),
       url('../assets/fonts/GT-Alpina-Standard-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--pine);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 3rem;
  background: rgba(30, 51, 38, 0.96);
  backdrop-filter: blur(8px);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
   }

.nav-logo-icon {
  width: 28px;
  height: 28px;
}

.nav-logo-text {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  color: var(--mindaro);
  letter-spacing: 0.05em;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  color: var(--cream);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.85;
  transition: opacity 0.2s, color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { opacity: 1; color: var(--mindaro); }

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(245,240,232,0.35);
  border-radius: 10px;
  background: transparent;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--mindaro);
  outline-offset: 2px;
}

.nav-toggle[aria-expanded="true"] {
  background: rgba(245,240,232,0.12);
}

.nav-toggle-lines {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle-line {
  width: 18px;
  height: 1.5px;
  background: var(--cream);
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--pine);
  padding: 10rem 3rem 5rem;
  max-width: 100%;
}

.page-hero-headline {
  font-family: var(--font-heading);
  font-size: 60px;
  font-weight: 400;
  color: var(--mindaro);
  max-width: 1000px;
  line-height: 1;
  margin-top: 1rem;
}

.page-hero-centered {
  text-align: center;
}

.page-hero-centered .page-hero-headline {
  margin-left: auto;
  margin-right: auto;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: var(--pine);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 8rem 8rem 5rem;
  gap: 4rem;
}

.hero-text { animation: fadeUp 0.9s ease both; }

.hero-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mindaro);
  font-weight: 400;
  margin-bottom: 1.5rem;
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: 80px;
  font-weight: 400;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 1.8rem;
}

.hero-headline em {
  font-style: normal;
  color: var(--mindaro);
}

.hero-body {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  color: rgba(245, 240, 232, 0.7);
  line-height: 1.4;
  max-width: 800px;
  margin-bottom: 2.5rem;
}

.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  min-height: 55px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.25s, color 0.25s, transform 0.2s;
  cursor: pointer;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary {
  background: var(--mindaro);
  color: var(--pine);
}

.btn-primary:hover {
  background: #d8ea7a;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(245,240,232,0.4);
  margin-left: 1rem;
}

.btn-outline:hover {
  border-color: var(--mindaro);
  color: var(--mindaro);
  transform: translateY(-2px);
}

.hero-image-wrap {
  position: relative;
  animation: fadeUp 0.9s 0.2s ease both;
}

.hero-image-frame {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--lichen);
  border-radius: 40px;
  overflow: hidden;
  position: relative;
}

.hero-image-frame svg {
  width: 100%;
  height: 100%;
  opacity: 0.55;
}

.hero-image-tag {
  position: absolute;
  bottom: -1.5rem;
  left: -2rem;
  background: var(--mindaro);
  color: var(--pine);
  padding: 1.2rem 1.5rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.4;
  max-width: 200px;
}

.hero-image-tag strong {
  display: block;
  font-size: 1.4rem;
  font-family: var(--font-heading);
  font-weight: 400;
  margin-bottom: 0.2rem;
}

/* ── WHAT WE OFFER ── */
.what-we-offer {
  background: var(--woody);
  padding: 5rem 3rem;
}

.what-we-offer-inner {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.what-we-offer-title {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 400;
  color: var(--mindaro);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.what-we-offer-body {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  color: rgba(247,243,240,0.9);
  line-height: 1.5;
  max-width: 900px;
  margin: 0 auto 1.2rem;
}

.what-we-offer-body:last-child {
  margin-bottom: 0;
}

/* ── VALUES ── */
.values {
  background: var(--cream);
  padding: 6.25rem 3rem;
  text-align: center;
}

.values-headline {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 400;
  color: var(--pine);
  margin-bottom: 1rem;
  line-height: 1.1;
}

.values-sub {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--lichen);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 960px;
  margin: 0 auto;
  background: rgba(122,140,110,0.15);
  border-radius: 4px;
  overflow: hidden;
}

.value-item {
  background: var(--cream);
  padding: 3rem 2.5rem;
  text-align: center;
  transition: background 0.3s;
}

.value-item:hover { background: var(--pine); }
.value-item:hover .value-title { color: var(--mindaro); }
.value-item:hover .value-desc  { color: rgba(245,240,232,0.7); }

.value-num {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mindaro);
  margin-bottom: 1rem;
  display: block;
  font-weight: 400;
}

.value-title {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 400;
  color: var(--lichen);
  margin-bottom: 0.8rem;
  line-height: 1.1;
  transition: color 0.3s;
}

.value-desc {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  color: var(--woody);
  line-height: 1.4;
  transition: color 0.3s;
}

/* ── SERVICES ── */
.services {
  background: var(--pine);
  padding: 6.25rem 3rem;
}

.services-page {
  padding: 5rem 3rem 6.25rem;
}

.services-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.services-intro-block {
  max-width: 1200px;
  margin: 0 auto 2.25rem;
  text-align: center;
}

.services-intro-heading {
  font-family: var(--font-heading);
  font-size: clamp(42px, 6vw, 66px);
  font-weight: 400;
  color: var(--mindaro);
  line-height: 1.05;
  margin-bottom: 2.5rem;
}

.services-intro {
  max-width: 1400px;
  margin: 0 auto 3.25rem;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  color: rgba(245,240,232,0.8);
}

.services-intro-break {
  max-width: 1100px;
  margin: 0 auto 3.75rem;
  padding: 2.25rem 2.5rem;
  border-radius: 14px;
  background: var(--woody);
}

.services-intro-break .services-intro {
  margin: 0;
  max-width: 100%;
  color: rgba(247,243,240,0.92);
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mindaro);
  font-weight: 400;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.services-headline {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 4rem;
  max-width: 520px;
  line-height: 1.1;
}

.services-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(245,240,232,0.08);
  border-top: 1px solid rgba(245,240,232,0.15);
}

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

.service-item {
  padding: 2.5rem 1.5rem;
  border-top: 2px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}

.service-item:hover {
  border-top-color: var(--mindaro);
  background: rgba(245,240,232,0.04);
}

.service-icon {
  width: 40px;
  height: 40px;
  background: rgba(200,217,106,0.15);
  border-radius: 4px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon svg { width: 20px; height: 20px; }

.service-name {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  color: var(--woody);
  letter-spacing: 0.03em;
  line-height: 1.4;
  margin-bottom: 0.75rem;
}

.service-desc {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  color: rgba(245,240,232,0.6);
  line-height: 1.4;
}

.services-accordion {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.service-panel--full {
  grid-column: 1 / -1;
}

.service-panel {
  background: rgba(167, 190, 156,0.2);
  border: 1px solid rgba(245,240,232,0.16);
  border-radius: 14px;
  overflow: hidden;
  transition: background 0.25s, border-color 0.25s;
}

.service-panel[open] {
  background: rgba(167, 190, 156, 0.5);
  border-color: rgba(200,217,106,0.5);
}

.service-panel-summary {
  list-style: none;
  cursor: pointer;
  padding: 1.5rem 1.5rem 1.25rem;
  position: relative;
}

.service-panel-summary::-webkit-details-marker { display: none; }

.service-panel-summary::after {
  content: '+';
  position: absolute;
  top: 1.5rem;
  right: 1.25rem;
  color: var(--mindaro);
  font-family: var(--font-body);
  font-size: 1.25rem;
  line-height: 1;
}

.service-panel[open] .service-panel-summary::after {
  content: '\2212';
}

.service-panel-name {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.1;
  margin-right: 2rem;
  margin-bottom: 0.8rem;
}

.service-panel-title {
  display: inline-flex;
  align-items: center;
  gap: 1.3rem;
}

.service-panel-icon {
  width: 34px;
  height: 34px;
  object-fit: contain;
  flex: 0 0 auto;
}

.service-panel-desc {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  color: rgba(245,240,232,0.75);
  line-height: 1.4;
}

.service-panel-list {
  margin: 0 1.5rem 1.5rem;
  padding-left: 1.15rem;
  border-top: 1px solid rgba(245,240,232,0.14);
  padding-top: 1rem;
}

.service-panel-list li {
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(247, 243, 240,0.86);
  line-height: 1.5;
  margin-bottom: 0.45rem;
}

/* ── ABOUT ── */
.about-section {
  background: var(--lichen);
}

.about {
  background: var(--lichen);
  padding: 6.25rem 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.about-headline {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 400;
  color: var(--pine);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.about-body {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  color: var(--pine);
  line-height: 1.4;
  opacity: 0.85;
  margin-bottom: 2rem;
}

.about-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 400;
  color: var(--pine);
  line-height: 1.1;
  margin-bottom: 0.3rem;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--pine);
  opacity: 0.7;
  letter-spacing: 0.05em;
  line-height: 1.4;
}

.about-visual {
  position: relative;
}

.about-photo {
  width: 100%;
  border-radius: 4px 40px 4px 4px;
  display: block;
  margin-bottom: 1.5rem;
  object-fit: cover;
}

.about-card {
  background: var(--pine);
  border-radius: 4px 40px 4px 4px;
  padding: 3rem;
  color: var(--cream);
}

.about-card-quote {
  font-family: var(--font-heading);
  font-size: 40px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 2rem;
}

.about-card-name {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  color: var(--mindaro);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.4;
}

.about-card-role {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  color: rgba(245,240,232,0.5);
  margin-top: 0.2rem;
  line-height: 1.4;
}

/* ── CTA / CONTACT ── */
.cta {
  background: var(--cream);
  padding: 6.25rem 3rem;
  text-align: center;
}

.cta-page {
  min-height: calc(100vh - 80px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.cta-headline {
  font-family: var(--font-heading);
  font-size: 66px;
  font-weight: 400;
  color: var(--lichen);
  margin-bottom: 1rem;
  line-height: 1;
}

.cta-sub {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  color: var(--pine);
  margin-bottom: 2.5rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.4;
}

.linkedin-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2.2rem;
  background: var(--pine);
  color: var(--cream);
  border-radius: 100px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  transition: background 0.25s, transform 0.2s;
}

.linkedin-btn:hover {
  background: #162a1e;
  transform: translateY(-2px);
}

.linkedin-btn svg {
  width: 18px;
  height: 18px;
  fill: var(--mindaro);
}

/* ── CONTACT FORM ── */
.contact-form {
  width: 100%;
  max-width: 640px;
  margin: 0 auto 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  text-align: left;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.contact-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.contact-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lichen);
}

.contact-input {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--pine);
  background: var(--cream);
  border: 1px solid rgba(30,51,38,0.2);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}

.contact-input::placeholder {
  color: rgba(30,51,38,0.35);
}

.contact-input:focus {
  border-color: var(--pine);
  box-shadow: 0 0 0 3px rgba(200,217,106,0.25);
}

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

.contact-form .btn {
  align-self: center;
}

.contact-alt {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(30,51,38,0.5);
  margin-top: 0.5rem;
}

.contact-alt-link {
  color: var(--pine);
  text-decoration: underline;
  text-underline-offset: 3px;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.contact-alt-link:hover { opacity: 1; }

@media (max-width: 768px) {
  .contact-form-row { grid-template-columns: 1fr; }
}

/* ── BIOS ── */
.bios {
  background: var(--cream);
  padding: 6.25rem 3rem;
}

.bios-inner {
  max-width: 960px;
  margin: 0 auto;
}

.bios-headline {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 400;
  color: var(--pine);
  margin-bottom: 3rem;
  line-height: 1.1;
}

.bio-card {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 3rem;
  align-items: start;
}

.bio-photo-frame {
  border-radius: 16px;
  overflow: hidden;
}

.bio-photo {
  width: 100%;
  display: block;
  transform: scale(1.04);
  transform-origin: center;
  object-fit: cover;
}

.bio-name {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 400;
  color: var(--pine);
  margin-bottom: 0.3rem;
  line-height: 1.1;
}

.bio-role {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--lichen);
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.bio-body {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  color: var(--pine);
  line-height: 1.4;
  opacity: 0.85;
  margin-bottom: 1.5rem;
}

.bio-linkedin {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--pine);
  letter-spacing: 0.05em;
  text-decoration: underline;
  text-underline-offset: 3px;
  opacity: 0.6;
  transition: opacity 0.2s;
  line-height: 1.4;
}

.bio-linkedin:hover { opacity: 1; }

@media (max-width: 768px) {
  .bio-card {
    grid-template-columns: 1fr;
  }
}

/* ── FOOTER ── */
footer {
  background: var(--pine);
  padding: 2.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-logo-text {
  font-family: var(--font-body);
  font-size: 25px;
  color: var(--mindaro);
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1.4;
}

.footer-legal {
  text-align: right;
}

.footer-copy {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(245,240,232,0.35);
  font-weight: 400;
  line-height: 1.6;
}

/* ── SERVICE ICON TILES ── */
.services-tiles {
  background: var(--cream);
  padding: 6.25rem 3rem;
  text-align: center;
}

.services-tiles-headline {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 400;
  color: var(--pine);
  margin-bottom: 3.75rem;
  line-height: 1.1;
}

.services-tiles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.service-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.service-tile-icon {
  width: 80px;
  height: 80px;
  background: var(--pine);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s;
}

.service-tile:hover .service-tile-icon { background: #2d4d38; }

.service-tile-icon svg {
  width: 36px;
  height: 36px;
  stroke: var(--mindaro);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-tile-name {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--pine);
  text-align: center;
  line-height: 1.4;
  max-width: 120px;
  letter-spacing: 0.03em;
}

/* ── TESTIMONIAL ── */
.testimonial {
  background: var(--pine);
  padding: 2rem 3rem 6.25rem;
  text-align: center;
}

.testimonial-inner {
  max-width: 720px;
  margin: 0 auto;
}

.testimonial-mark {
  width: 40px;
  height: 30px;
  fill: var(--mindaro);
  opacity: 0.6;
  margin-bottom: 2.5rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-quote {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 400;
  font-style: italic;
  color: var(--cream);
  line-height: 1.4;
  margin-bottom: 2.5rem;
}

.testimonial-author {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  color: var(--mindaro);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav { padding: 1rem 1.5rem; }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    display: flex;
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 1.5rem;
    right: 1.5rem;
    flex-direction: column;
    gap: 0;
    background: rgba(30, 51, 38, 0.98);
    border: 1px solid rgba(245,240,232,0.2);
    border-radius: 12px;
    box-shadow: 0 14px 30px rgba(14,22,17,0.3);
    overflow: clip;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    max-height: 0;
    transition: opacity 0.2s ease, transform 0.2s ease, max-height 0.2s ease, visibility 0.2s ease;
  }

  .nav-links.nav-links-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    max-height: 280px;
  }

  .nav-links li {
    border-top: 1px solid rgba(245,240,232,0.14);
  }

  .nav-links li:first-child {
    border-top: none;
  }

  .nav-links a {
    display: flex;
    align-items: center;
    padding: 0.95rem 1rem;
    min-height: 48px;
    font-size: 0.78rem;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 7rem 1.5rem 4rem;
    gap: 2.25rem;
  }

  .hero-headline {
    font-size: clamp(48px, 13vw, 58px);
    line-height: 0.96;
    max-width: 12ch;
  }

  .hero-body {
    font-size: 17px;
    line-height: 1.5;
    margin-bottom: 2rem;
  }

  .hero-image-tag { left: 0; }

  .what-we-offer {
    padding: 4rem 1.5rem;
  }

  .what-we-offer-title {
    font-size: 40px;
  }

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

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

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

  .service-panel-name { font-size: 30px; }

  .service-panel-icon {
    width: 30px;
    height: 30px;
  }

  .service-panel-title {
    align-items: flex-start;
  }

  .services-intro-block { margin-bottom: 2.5rem; }

  .services-intro-heading {
    font-size: clamp(34px, 10vw, 48px);
    margin-bottom: 2rem;
  }

  .services-intro { margin-bottom: 2rem; }

  .services-intro-break {
    padding: 1.5rem;
    margin-bottom: 2.5rem;
  }

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

  .about {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 5rem 1.5rem;
  }

  .page-hero { padding: 7rem 1.5rem 2.5rem; }

  .page-hero-headline {
    font-size: clamp(44px, 12vw, 56px);
  }

  .cta-headline {
    font-size: clamp(42px, 12vw, 56px);
    line-height: 0.98;
  }

  .contact-form .btn {
    width: 100%;
  }

  footer {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    padding: 2rem 1.5rem;
  }
}
