:root {
  --ink: #111111;
  --muted: #6f746f;
  --paper: #ffffff;
  --soft: #f3f5f1;
  --cream: #faf8f1;
  --dark: #050505;
  --charcoal: #1b1b1b;
  --line: #deded6;
  --accent: #d69a35;
  --sage: #7d886e;
  --red: #8f332b;
  --max: 1220px;
  --header: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.55;
}

body.nav-open,
body.modal-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

section,
footer {
  scroll-margin-top: calc(var(--header) + 30px);
}

.skip-link {
  position: fixed;
  left: 12px;
  top: 12px;
  z-index: 100;
  transform: translateY(-160%);
  padding: 10px 14px;
  background: #fff;
  color: #111;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.top-bar {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 max(18px, calc((100vw - var(--max)) / 2));
  background: #5f625c;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 760;
}

.top-bar p,
.top-actions {
  margin: 0;
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  white-space: nowrap;
}

.language-button,
.menu-button,
.search-button,
.hero-actions button,
.hero-actions a,
.outline-link,
.inline-actions button,
.inline-actions a,
.service-tabs button,
.quote-form button,
.site-footer button,
.floating-contact button,
.cookie-panel button,
.modal-close,
.modal-form button,
.team-copy button {
  border: 0;
  background: transparent;
  color: inherit;
}

.language-button {
  font-weight: 900;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(0, 0, 0, 0.94);
  color: #fff;
  backdrop-filter: blur(14px);
}

.nav-shell {
  width: min(var(--max), calc(100% - 32px));
  height: var(--header);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 210px;
}

.brand-mark {
  width: 58px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 3px solid #fff;
  border-radius: 8px 2px 8px 2px;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 900;
  transform: skewX(-8deg);
}

.brand-text strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.24rem;
  font-style: italic;
  line-height: 1;
}

.brand-text small {
  display: block;
  margin-top: 4px;
  font-size: 0.72rem;
  font-weight: 800;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(13px, 1.45vw, 25px);
}

.nav-links a,
.nav-item > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: var(--header);
  font-size: 0.9rem;
  font-weight: 850;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-item:hover > a {
  color: var(--accent);
}

.nav-item {
  position: relative;
}

.dropdown {
  position: absolute;
  left: 50%;
  top: calc(100% - 1px);
  width: 210px;
  display: grid;
  padding: 12px 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(10, 10, 10, 0.98);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 10px);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.wide-dropdown {
  width: 280px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dropdown a {
  min-height: auto;
  padding: 10px 16px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.85rem;
}

.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-tools {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 12px;
}

.design-link {
  min-height: 42px;
  display: inline-grid;
  place-items: center;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 4px;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 900;
  white-space: nowrap;
}

.design-link:hover {
  border-color: var(--accent);
  background: var(--accent);
  color: #111;
}

.search-button {
  position: relative;
  width: 40px;
  height: 40px;
}

.search-button span {
  position: absolute;
  left: 10px;
  top: 9px;
  width: 16px;
  height: 16px;
  border: 3px solid #fff;
  border-radius: 50%;
}

.search-button span::after {
  content: "";
  position: absolute;
  right: -8px;
  bottom: -7px;
  width: 10px;
  height: 3px;
  transform: rotate(45deg);
  border-radius: 999px;
  background: #fff;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
}

.menu-button span {
  display: block;
  height: 2px;
  margin: 6px 0;
  border-radius: 999px;
  background: #fff;
}

.mobile-drawer {
  display: none;
}

.hero {
  position: relative;
  min-height: clamp(620px, 78vw, 820px);
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #111;
  color: #fff;
}

.hero > img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  object-position: center 44%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.64)),
    radial-gradient(circle at 50% 45%, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.42));
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(880px, calc(100% - 36px));
  display: grid;
  justify-items: center;
  gap: 18px;
  text-align: center;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.6);
}

.hero-copy p,
.section-title p,
.customize-copy > p,
.team-copy > p,
.promise-copy > p,
.sustainability-copy > p,
.contact-copy > p,
.modal-card p {
  margin: 0;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(3.15rem, 7.3vw, 7.3rem);
  line-height: 0.92;
}

.hero-copy h2 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(1.1rem, 2.25vw, 2rem);
  line-height: 1.2;
  font-weight: 760;
}

.hero-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 10px;
}

.hero-actions button,
.hero-actions a,
.outline-link,
.inline-actions button,
.inline-actions a,
.team-copy button {
  min-width: 168px;
  min-height: 48px;
  display: inline-grid;
  place-items: center;
  padding: 0 24px;
  border: 1px solid currentColor;
  border-radius: 4px;
  color: #fff;
  font-weight: 890;
}

.hero-actions button,
.inline-actions button,
.team-copy button {
  border-color: var(--accent);
  background: var(--accent);
  color: #111;
}

.hero-actions a:hover,
.outline-link:hover,
.inline-actions a:hover {
  border-color: var(--accent);
  background: var(--accent);
  color: #111;
}

.section-title {
  display: grid;
  gap: 12px;
  max-width: 790px;
  margin-bottom: 34px;
}

.section-title.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
  justify-items: center;
}

.section-title.dark {
  color: #fff;
}

.section-title h2,
.customize-copy h2,
.team-copy h2,
.promise-copy h2,
.sustainability-copy h2,
.contact-copy h2,
.modal-card h2 {
  margin: 0;
  font-size: clamp(2.05rem, 4.1vw, 4.45rem);
  line-height: 1.02;
}

.section-title span,
.customize-copy p,
.team-copy li,
.promise-copy > span,
.sustainability-copy > span,
.contact-copy > span,
.site-footer p,
.site-footer a,
.site-footer span {
  color: var(--muted);
}

.intro-section,
.customize-section,
.services-section,
.team-section,
.audience-section,
.promise-section,
.faq-section {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.intro-section,
.services-section,
.audience-section,
.faq-section {
  padding: clamp(72px, 8vw, 112px) 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.intro-grid article {
  display: grid;
  align-content: start;
  gap: 12px;
  min-width: 0;
}

.intro-grid img {
  aspect-ratio: 4 / 3.25;
  border-radius: 8px;
  object-fit: cover;
}

.intro-grid h3,
.intro-grid p,
.product-grid h3,
.service-list h3,
.service-list p,
.team-copy ul,
.faq-list p {
  margin: 0;
}

.intro-grid h3 {
  font-size: 1.1rem;
}

.intro-grid p {
  color: var(--muted);
  font-weight: 640;
}

.product-showcase {
  padding: clamp(72px, 8vw, 112px) max(16px, calc((100vw - var(--max)) / 2));
  background: #1c1c1c;
  color: #fff;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.product-grid article {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #333;
}

.product-grid img {
  aspect-ratio: 4 / 4.7;
  height: 100%;
  object-fit: cover;
  transition: transform 360ms ease;
}

.product-grid article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.7));
}

.product-grid article:hover img {
  transform: scale(1.04);
}

.product-grid h3 {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  color: #fff;
  font-size: 1.14rem;
}

.center-action {
  display: grid;
  place-items: center;
  margin-top: 42px;
}

.outline-link {
  color: #fff;
}

.customize-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1fr);
  gap: clamp(34px, 7vw, 86px);
  align-items: center;
  padding: clamp(72px, 8vw, 112px) 0;
}

.visual-stack {
  position: relative;
  min-height: 620px;
}

.visual-stack img {
  position: absolute;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.18);
}

.visual-stack img:first-child {
  left: 0;
  top: 0;
  width: 76%;
  aspect-ratio: 4 / 5.35;
}

.visual-stack img:last-child {
  right: 0;
  bottom: 24px;
  width: 52%;
  aspect-ratio: 4 / 4.3;
  border: 10px solid #fff;
}

.customize-copy,
.team-copy,
.promise-copy,
.sustainability-copy,
.contact-copy {
  display: grid;
  gap: 18px;
}

.service-list {
  display: grid;
  gap: 12px;
}

.service-list article {
  padding: 18px 20px;
  border-left: 4px solid var(--accent);
  background: var(--soft);
}

.service-list p {
  color: var(--muted);
}

.customize-copy .inline-actions,
.sustainability-copy .inline-actions {
  justify-content: start;
}

.customize-copy .inline-actions a,
.sustainability-copy .inline-actions a {
  color: #111;
}

.service-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
}

.service-tabs button {
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-weight: 850;
}

.service-tabs button.is-active,
.service-tabs button:hover {
  border-color: var(--accent);
  background: var(--accent);
  color: #111;
}

.service-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.58fr) minmax(300px, 0.42fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  padding: clamp(18px, 3vw, 34px);
  border-radius: 8px;
  background: var(--soft);
}

.service-card img {
  aspect-ratio: 16 / 10;
  border-radius: 8px;
  object-fit: cover;
}

.service-card div {
  display: grid;
  gap: 14px;
}

.service-card p,
.service-card h3,
.service-card span {
  margin: 0;
}

.service-card p {
  color: var(--accent);
  font-weight: 900;
  text-transform: uppercase;
}

.service-card h3 {
  font-size: clamp(1.75rem, 3vw, 3.05rem);
  line-height: 1.04;
}

.service-card span {
  color: var(--muted);
}

.team-section {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(320px, 0.82fr);
  gap: clamp(34px, 7vw, 86px);
  align-items: center;
  padding: 0 0 clamp(72px, 8vw, 112px);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 110px;
  gap: 12px;
}

.gallery-grid img {
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.gallery-grid img:nth-child(1) {
  grid-column: span 3;
  grid-row: span 2;
}

.gallery-grid img:nth-child(2) {
  grid-column: span 3;
}

.gallery-grid img:nth-child(3) {
  grid-column: span 3;
}

.gallery-grid img:nth-child(4) {
  grid-column: span 2;
}

.gallery-grid img:nth-child(5) {
  grid-column: span 4;
}

.team-copy ul {
  display: grid;
  gap: 10px;
  padding-left: 20px;
}

.team-copy button {
  justify-self: start;
}

.process-section {
  padding: clamp(72px, 8vw, 112px) max(16px, calc((100vw - var(--max)) / 2));
  background: #111;
  color: #fff;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.process-grid article {
  position: relative;
  min-height: 260px;
  display: grid;
  align-content: end;
  gap: 12px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(214, 154, 53, 0.18), transparent 48%),
    #1d1d1d;
}

.process-grid span {
  position: absolute;
  left: 22px;
  top: 18px;
  color: rgba(255, 255, 255, 0.18);
  font-size: 4.2rem;
  font-weight: 900;
  line-height: 1;
}

.process-grid h3,
.process-grid p {
  position: relative;
  margin: 0;
}

.process-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.audience-grid article {
  min-height: 220px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.audience-grid span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #111;
  color: #fff;
  font-weight: 900;
}

.audience-grid h3,
.audience-grid p {
  margin: 0;
}

.audience-grid p {
  color: var(--muted);
}

.promise-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(320px, 1fr);
  gap: clamp(34px, 7vw, 86px);
  align-items: center;
  padding: clamp(72px, 8vw, 112px) 0;
}

.promise-copy a {
  width: fit-content;
  min-height: 48px;
  display: inline-grid;
  place-items: center;
  padding: 0 24px;
  border-radius: 4px;
  background: #111;
  color: #fff;
  font-weight: 900;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.stats-grid div {
  min-height: 126px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.stats-grid strong {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}

.stats-grid span {
  color: var(--muted);
  font-weight: 800;
}

.sustainability-section {
  position: relative;
  min-height: 590px;
  display: grid;
  align-items: center;
  padding: clamp(72px, 8vw, 112px) max(16px, calc((100vw - var(--max)) / 2));
  overflow: hidden;
  color: #fff;
}

.sustainability-section > img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
}

.sustainability-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.3));
}

.sustainability-copy {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.sustainability-copy > span {
  color: rgba(255, 255, 255, 0.78);
}

.sustainability-copy .inline-actions a {
  color: #fff;
}

.faq-list {
  max-width: 900px;
  display: grid;
  gap: 12px;
  margin: 0 auto;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 900;
}

.faq-list p {
  padding: 0 22px 22px;
  color: var(--muted);
}

.contact-section {
  padding: clamp(72px, 8vw, 112px) max(16px, calc((100vw - var(--max)) / 2));
  display: grid;
  grid-template-columns: minmax(280px, 0.76fr) minmax(320px, 1fr);
  gap: clamp(32px, 7vw, 86px);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.38)),
    url("https://images.unsplash.com/photo-1496747611176-843222e1e57c?auto=format&fit=crop&w=1800&q=82") center / cover;
  color: #fff;
}

.contact-copy > span {
  color: rgba(255, 255, 255, 0.78);
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.quote-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 850;
}

.quote-form .wide,
.quote-form button,
.quote-form .form-message {
  grid-column: 1 / -1;
}

.quote-form input,
.quote-form select,
.quote-form textarea,
.modal-form input,
.modal-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  outline: 0;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.quote-form select {
  background: #fff;
  color: #111;
}

.quote-form textarea,
.modal-form textarea {
  min-height: 120px;
  padding-top: 13px;
  resize: vertical;
}

.quote-form button,
.site-footer button,
.modal-form button {
  justify-self: start;
  min-height: 48px;
  display: inline-grid;
  place-items: center;
  padding: 0 24px;
  border-radius: 4px;
  background: var(--accent);
  color: #111;
  font-weight: 900;
}

.quote-form button:hover,
.site-footer button:hover,
.modal-form button:hover,
.team-copy button:hover,
.inline-actions button:hover {
  background: #efb656;
}

.form-message,
.modal-message {
  min-height: 24px;
  margin: 0;
  color: #ffd17f;
  font-weight: 850;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.45fr repeat(4, 1fr);
  gap: clamp(22px, 4vw, 52px);
  padding: 58px max(16px, calc((100vw - var(--max)) / 2));
  background: #050505;
  color: #fff;
}

.site-footer div {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-brand {
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.35rem;
  font-style: italic;
  font-weight: 900;
}

.site-footer h2 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.socials {
  display: flex !important;
  flex-wrap: wrap;
  gap: 10px 16px !important;
  margin-top: 8px;
}

.floating-contact {
  position: fixed;
  right: 18px;
  bottom: 88px;
  z-index: 36;
  display: grid;
  gap: 10px;
}

.floating-contact button {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(30, 30, 30, 0.78);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

.floating-contact button:first-child {
  background: #56b96c;
}

.cookie-panel {
  position: fixed;
  left: 20px;
  right: auto;
  bottom: 20px;
  z-index: 35;
  width: min(420px, calc(100% - 40px));
  display: grid;
  justify-items: start;
  gap: 10px;
  padding: 18px 20px 20px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.86);
  color: #fff;
  text-align: left;
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.28);
}

.cookie-panel.is-hidden {
  display: none;
}

.cookie-panel h2,
.cookie-panel p {
  margin: 0;
}

.cookie-panel p {
  max-width: 980px;
  color: rgba(255, 255, 255, 0.82);
}

.cookie-panel div {
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  gap: 10px;
}

.cookie-panel button {
  min-height: 34px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 4px;
  color: #fff;
  font-weight: 800;
}

.cookie-panel button:hover {
  border-color: var(--accent);
  background: var(--accent);
  color: #111;
}

.quote-modal {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.62);
}

.quote-modal[hidden] {
  display: none;
}

.modal-card {
  position: relative;
  width: min(620px, 100%);
  display: grid;
  gap: 16px;
  padding: clamp(28px, 4vw, 44px);
  border-radius: 8px;
  background: #151515;
  color: #fff;
  box-shadow: 0 28px 88px rgba(0, 0, 0, 0.45);
}

.modal-close {
  position: absolute;
  right: 12px;
  top: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.modal-form {
  display: grid;
  gap: 12px;
}

@media (max-width: 1180px) {
  .nav-links {
    gap: 12px;
  }

  .design-link {
    display: none;
  }
}

@media (max-width: 1080px) {
  .nav-shell {
    grid-template-columns: auto 1fr auto;
  }

  .menu-button {
    display: block;
    justify-self: end;
  }

  .nav-links {
    display: none;
  }

  .mobile-drawer {
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 55;
    width: min(390px, 88vw);
    min-height: calc(100vh - var(--header));
    display: grid;
    align-content: start;
    padding: 24px;
    background: #080808;
    box-shadow: 24px 0 60px rgba(0, 0, 0, 0.32);
    transform: translateX(-105%);
    transition: transform 220ms ease;
  }

  .mobile-drawer a {
    padding: 17px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    color: #fff;
    font-weight: 850;
  }

  body.nav-open .mobile-drawer {
    transform: translateX(0);
  }

  .top-actions a {
    display: none;
  }

  .intro-grid,
  .product-grid,
  .process-grid,
  .site-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .customize-section,
  .service-card,
  .team-section,
  .promise-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .visual-stack {
    min-height: 540px;
  }
}

@media (max-width: 720px) {
  :root {
    --header: 70px;
  }

  .top-bar {
    min-height: 34px;
    padding: 0 12px;
    font-size: 0.72rem;
  }

  .language-button {
    display: none;
  }

  .nav-shell {
    width: calc(100% - 22px);
    gap: 10px;
  }

  .brand {
    min-width: auto;
  }

  .brand-mark {
    width: 44px;
    height: 36px;
    font-size: 0.78rem;
  }

  .brand-text small {
    display: none;
  }

  .search-button {
    display: none;
  }

  .hero {
    min-height: 700px;
  }

  .hero-copy {
    gap: 14px;
  }

  .hero-copy h1 {
    font-size: clamp(2.65rem, 14vw, 4.1rem);
  }

  .hero-copy h2 {
    font-size: 1.05rem;
  }

  .hero-actions,
  .inline-actions {
    width: 100%;
  }

  .hero-actions button,
  .hero-actions a,
  .inline-actions button,
  .inline-actions a {
    width: 100%;
  }

  .product-showcase,
  .contact-section,
  .process-section,
  .sustainability-section {
    padding-right: 12px;
    padding-left: 12px;
  }

  .intro-section,
  .customize-section,
  .services-section,
  .team-section,
  .audience-section,
  .promise-section,
  .faq-section {
    width: calc(100% - 24px);
  }

  .intro-grid,
  .product-grid,
  .process-grid,
  .audience-grid,
  .stats-grid,
  .quote-form,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .visual-stack {
    min-height: auto;
    display: grid;
    gap: 12px;
  }

  .visual-stack img,
  .visual-stack img:first-child,
  .visual-stack img:last-child {
    position: static;
    width: 100%;
    aspect-ratio: 4 / 3.35;
    border: 0;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .gallery-grid img,
  .gallery-grid img:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 4 / 2.8;
  }

  .cookie-panel {
    position: static;
    width: auto;
    margin: 0 12px 12px;
    padding: 16px 12px;
  }

  .floating-contact {
    right: 12px;
    bottom: 12px;
  }

  .floating-contact button {
    width: 46px;
    height: 46px;
  }
}
