:root {
  --bg: #fdfbf6;
  --bg-warm: #faf5ec;
  --surface: #fffdf8;
  --surface-soft: #fbf7ef;
  --sand: #eadfce;
  --line: rgba(84, 71, 50, 0.14);
  --line-strong: rgba(84, 71, 50, 0.28);
  --charcoal: #24221f;
  --muted: #6f675c;
  --olive: #7c7f55;
  --olive-dark: #5f6544;
  --terracotta: #bb6840;
  --terracotta-dark: #9e5535;
  --white: #ffffff;
  --shadow-nav: 0 15px 36px rgba(48, 39, 27, 0.13);
  --shadow-card: 0 14px 34px rgba(58, 45, 29, 0.08);
  --shadow-media: 0 18px 46px rgba(44, 35, 25, 0.16);
  --radius-xl: 22px;
  --radius-lg: 18px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --container: 1240px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--charcoal);
  background:
    radial-gradient(circle at 5% 4%, rgba(232, 222, 207, 0.46), transparent 26rem),
    radial-gradient(circle at 96% 32%, rgba(238, 226, 206, 0.38), transparent 22rem),
    var(--bg);
  font-family: Inter, "SF Pro Display", "SF Pro Text", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

.icon-sprite {
  display: none;
}

.container {
  width: min(100% - 72px, var(--container));
  margin-inline: auto;
}

main section[id] {
  scroll-margin-top: 112px;
}

.section-pad {
  padding: 70px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 18px 0 10px;
}

.nav-shell {
  width: min(100% - 72px, var(--container));
  min-height: 64px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
  padding: 10px 16px 10px 30px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 16px;
  background: rgba(255, 253, 248, 0.76);
  box-shadow: var(--shadow-nav);
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--charcoal);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-weight: 760;
  letter-spacing: 0;
  white-space: nowrap;
}

.nav-links {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(30px, 5.1vw, 64px);
  color: rgba(36, 34, 31, 0.74);
  font-size: 0.72rem;
  font-weight: 650;
}

.nav-links a {
  position: relative;
  padding: 8px 0;
  transition: color 180ms ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 1px;
  background: var(--terracotta);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 220ms var(--ease);
}

.nav-links a:hover {
  color: var(--charcoal);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
}

.nav-actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.language-switcher {
  display: inline-grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
  padding: 3px;
  border: 1px solid rgba(84, 71, 50, 0.14);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.5);
}

.mobile-language-switcher {
  display: none;
}

.lang-option {
  width: 36px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border: 0;
  border-radius: 8px;
  color: var(--olive-dark);
  background: transparent;
  font-size: 0.72rem;
  font-weight: 800;
  cursor: pointer;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.lang-option:hover {
  background: rgba(233, 223, 201, 0.6);
}

.lang-option.is-active {
  color: var(--white);
  background: linear-gradient(135deg, var(--olive), var(--olive-dark));
  box-shadow: 0 8px 18px rgba(95, 101, 68, 0.16);
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: 9px;
  padding: 0 22px;
  color: var(--charcoal);
  background: var(--surface);
  font-size: 0.8rem;
  font-weight: 760;
  letter-spacing: 0;
  cursor: pointer;
  transition:
    transform 220ms var(--ease),
    box-shadow 220ms var(--ease),
    background-color 220ms ease,
    border-color 220ms ease,
    color 220ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button .icon {
  width: 17px;
  height: 17px;
}

.button-primary,
.nav-cta {
  color: var(--white);
  background: linear-gradient(135deg, var(--terracotta), var(--terracotta-dark));
  box-shadow: 0 14px 28px rgba(187, 104, 64, 0.23);
}

.nav-cta {
  min-width: 120px;
}

.button-secondary {
  border-color: rgba(95, 101, 68, 0.52);
  color: var(--olive-dark);
  background: rgba(255, 253, 248, 0.68);
}

.button-secondary:hover {
  border-color: rgba(95, 101, 68, 0.72);
  background: var(--surface);
  box-shadow: var(--shadow-card);
}

.button-light {
  color: var(--terracotta);
  background: var(--surface);
}

.button-ghost-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.06);
}

.card-icon,
.icon,
.trust-icon {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero {
  padding: 12px 0 22px;
}

.hero-grid {
  --hero-frame-height: clamp(390px, 39vw, 462px);
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(500px, 1.06fr);
  align-items: start;
  gap: clamp(42px, 5vw, 62px);
}

.hero-copy {
  min-height: var(--hero-frame-height);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 560px;
  padding-block: 2px 4px;
  padding-left: clamp(18px, 3vw, 54px);
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.72rem, 3.75vw, 3.42rem);
  line-height: 1.08;
  font-weight: 790;
  letter-spacing: 0;
}

.hero p {
  max-width: 500px;
  margin: 0;
  color: var(--charcoal);
  font-size: clamp(0.94rem, 1.2vw, 1.02rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin: 0;
}

.hero-actions .button-primary {
  min-width: 220px;
}

.hero-actions .button-secondary {
  min-width: 138px;
}

.hero-media {
  width: 100%;
}

.hero-media img {
  width: 100%;
  height: var(--hero-frame-height);
  object-fit: cover;
  object-position: center 62%;
  border-radius: 18px;
  box-shadow: var(--shadow-media);
}

.hero-trust {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 16px;
  margin-top: 0;
}

.trust-icons {
  display: flex;
  gap: 14px;
  color: var(--olive-dark);
}

.trust-icon {
  width: 27px;
  height: 27px;
}

.hero-trust p {
  margin: 0;
  color: var(--charcoal);
  font-size: 0.82rem;
  line-height: 1.55;
}

.hero-trust span {
  width: 4px;
  height: 4px;
  display: inline-block;
  margin: 0 7px 2px;
  border-radius: 50%;
  background: var(--terracotta);
}

.section-heading {
  max-width: 640px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2.35rem, 3.25vw, 3.1rem);
  line-height: 1.08;
  font-weight: 760;
  letter-spacing: 0;
}

.services {
  padding-top: 52px;
}

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

.service-card {
  min-height: 228px;
  padding: 32px 30px 30px;
  border: 1px solid rgba(84, 71, 50, 0.08);
  border-radius: 20px;
  text-align: left;
  background: rgba(255, 253, 248, 0.82);
  box-shadow: var(--shadow-card);
  transition:
    transform 260ms var(--ease),
    box-shadow 260ms var(--ease),
    background-color 260ms ease;
}

.service-card:hover {
  transform: translateY(-5px);
  background: var(--surface);
  box-shadow: 0 20px 46px rgba(58, 45, 29, 0.13);
}

.card-icon {
  width: 46px;
  height: 46px;
  color: var(--olive);
}

.service-card h3 {
  margin: 24px 0 10px;
  font-size: 1.15rem;
  line-height: 1.24;
  font-weight: 760;
}

.service-card p {
  margin: 0;
  color: var(--charcoal);
  font-size: 0.96rem;
  line-height: 1.58;
}

.about {
  padding-top: 18px;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(520px, 1.07fr);
  align-items: center;
  gap: clamp(34px, 5vw, 62px);
  padding: 52px 58px;
  border: 1px solid rgba(84, 71, 50, 0.08);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255, 253, 248, 0.86), rgba(250, 245, 236, 0.64));
  box-shadow: 0 12px 32px rgba(58, 45, 29, 0.05);
}

.about-copy h2,
.contact-info h2 {
  margin: 0;
  font-size: clamp(2.35rem, 3.6vw, 3.45rem);
  line-height: 1.05;
  font-weight: 770;
  letter-spacing: 0;
}

.about-copy p,
.contact-info p {
  margin: 22px 0 0;
  color: var(--charcoal);
  font-size: 1.02rem;
  line-height: 1.68;
}

.about-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 38px;
}

.about-points div {
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
  color: var(--olive-dark);
  font-size: 0.78rem;
  font-weight: 650;
}

.about-points .card-icon {
  width: 30px;
  height: 30px;
}

.about-button {
  min-width: 180px;
  margin-top: 36px;
}

.about-media img {
  width: 100%;
  height: 390px;
  object-fit: cover;
  object-position: center;
  border-radius: 18px;
  box-shadow: var(--shadow-media);
}

.materials {
  padding-top: 54px;
  padding-bottom: 38px;
}

.materials .section-heading {
  margin-bottom: 22px;
}

.materials-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
}

.material-card {
  display: grid;
  justify-items: center;
  gap: 13px;
  text-align: center;
}

.fabric-swatch {
  width: clamp(104px, 9.2vw, 132px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(77, 65, 45, 0.14);
  box-shadow: 0 14px 26px rgba(58, 45, 29, 0.12);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(0, 0, 0, 0.04)),
    repeating-linear-gradient(38deg, rgba(255, 255, 255, 0.2) 0 2px, rgba(44, 35, 24, 0.07) 2px 4px);
}

.linen {
  background-color: #d0bfa6;
}

.sunbrella {
  background-color: #858565;
}

.acrylic {
  background-color: #d8cab5;
}

.olefin {
  background-color: #be6f45;
}

.canvas {
  background-color: #e7d7bd;
}

.recycled {
  background-color: #7c7b5e;
}

.material-card h3 {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.25;
  font-weight: 720;
}

.materials-note {
  margin: 24px 0 0;
  color: var(--charcoal);
  text-align: center;
  font-size: 1rem;
  line-height: 1.55;
}

.materials-note a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--olive-dark);
  font-size: 0.88rem;
  font-weight: 760;
}

.materials-note .icon {
  width: 16px;
  height: 16px;
}

.portfolio {
  padding-top: 48px;
}

.portfolio .section-heading {
  margin-bottom: 30px;
}

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

.gallery-card {
  display: grid;
  gap: 14px;
  color: var(--charcoal);
  font-size: 1.02rem;
  font-weight: 720;
  text-align: left;
}

.gallery-card img {
  width: 100%;
  height: clamp(230px, 20vw, 285px);
  object-fit: cover;
  object-position: center;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(58, 45, 29, 0.12);
  transition: transform 500ms var(--ease);
}

.gallery-card:hover img {
  transform: scale(1.035);
}

.portfolio-button {
  width: fit-content;
  min-width: 180px;
  margin: 34px auto 0;
  display: flex;
}

.process {
  padding-top: 58px;
  padding-bottom: 54px;
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 30px;
}

.process-grid::before {
  content: "";
  position: absolute;
  left: 4.8%;
  right: 4.8%;
  top: 18px;
  border-top: 1px dashed rgba(95, 101, 68, 0.34);
  z-index: 0;
}

.process-step {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  align-content: start;
  min-height: 190px;
  padding: 0 8px;
  text-align: center;
}

.process-step span {
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: var(--charcoal);
  background: #e9dfc9;
  box-shadow: 0 0 0 10px var(--bg);
  font-size: 1rem;
  font-weight: 760;
}

.process-step .card-icon {
  width: 34px;
  height: 34px;
  margin-top: 24px;
}

.process-step h3 {
  margin: 14px 0 7px;
  font-size: 1rem;
  font-weight: 760;
  line-height: 1.2;
}

.process-step p {
  max-width: 168px;
  margin: 0;
  color: var(--charcoal);
  font-size: 0.82rem;
  line-height: 1.42;
}

.cta-section {
  padding: 16px 0 62px;
}

.cta-panel {
  min-height: 218px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 32px;
  padding: 46px 58px;
  border-radius: 24px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(181, 96, 52, 0.96) 0%, rgba(181, 96, 52, 0.9) 45%, rgba(181, 96, 52, 0.54) 68%, rgba(181, 96, 52, 0.1) 100%),
    url("assets/optimized/cta-cushions.webp") right center / cover;
  box-shadow: var(--shadow-card);
}

.cta-panel h2 {
  max-width: 600px;
  margin: 0;
  color: var(--white);
  font-size: clamp(2rem, 3vw, 2.85rem);
  line-height: 1.08;
  font-weight: 770;
}

.cta-panel p {
  max-width: 540px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.04rem;
  line-height: 1.5;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.contact {
  padding-top: 0;
  padding-bottom: 74px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(350px, 0.7fr) minmax(0, 1fr);
  gap: 70px;
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(2.35rem, 3.8vw, 3.45rem);
}

.contact-info p {
  max-width: 440px;
  margin-top: 11px;
  font-size: 1rem;
  line-height: 1.62;
}

.contact-list {
  display: grid;
  gap: 18px;
  margin-top: 32px;
}

.contact-list a,
.contact-list div {
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: center;
  gap: 14px;
  color: var(--charcoal);
  font-size: 1rem;
}

.contact-list .icon {
  width: 20px;
  height: 20px;
  color: var(--olive-dark);
}

.contact-form {
  padding-left: 58px;
  border-left: 1px solid var(--line-strong);
}

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

label {
  display: grid;
  margin-bottom: 16px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(84, 71, 50, 0.18);
  border-radius: 9px;
  color: var(--charcoal);
  background: rgba(255, 255, 255, 0.6);
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

input,
select {
  height: 52px;
  padding: 0 17px;
  font-size: 0.94rem;
}

textarea {
  min-height: 128px;
  resize: vertical;
  padding: 16px 17px;
  font-size: 0.94rem;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(187, 104, 64, 0.58);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(187, 104, 64, 0.1);
}

.delivery-choice {
  margin: 0 0 18px;
  padding: 0;
  border: 0;
}

.delivery-choice legend {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 680;
}

.channel-options {
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 5px;
  border: 1px solid rgba(84, 71, 50, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.48);
}

.channel-option {
  display: block;
  margin: 0;
  cursor: pointer;
}

.channel-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.channel-option span {
  min-width: 132px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  color: var(--olive-dark);
  font-size: 0.9rem;
  font-weight: 740;
  transition:
    background-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.channel-option input:checked + span {
  color: var(--white);
  background: linear-gradient(135deg, var(--olive), var(--olive-dark));
  box-shadow: 0 10px 22px rgba(95, 101, 68, 0.18);
}

.channel-option input:focus-visible + span {
  box-shadow: 0 0 0 4px rgba(187, 104, 64, 0.12);
}

.contact-submit-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-form .button {
  min-height: 50px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--olive), var(--olive-dark));
  box-shadow: none;
}

.form-note {
  min-height: 20px;
  margin: 0;
  color: var(--olive-dark);
  font-size: 0.78rem;
  font-weight: 650;
}

.site-footer {
  padding: 24px 0 16px;
  border-top: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.55);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 0.75fr 1.25fr 0.95fr;
  gap: 46px;
  align-items: start;
}

.footer-brand {
  font-size: 1rem;
  margin-bottom: 9px;
}

.site-footer p {
  max-width: 220px;
  margin: 0;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.5;
}

.footer-social-circles {
  display: flex;
  gap: 9px;
  margin-top: 16px;
}

.footer-social-circles a {
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: var(--olive-dark);
  background: #e9dfc9;
  font-size: 0.62rem;
  font-weight: 760;
}

.footer-links,
.social-links {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 6px 42px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 600;
}

.footer-links strong,
.social-links strong,
.newsletter-form strong {
  grid-column: 1 / -1;
  margin-bottom: 8px;
  color: var(--charcoal);
  font-size: 0.76rem;
  font-weight: 760;
}

.footer-links a:hover,
.social-links a:hover {
  color: var(--terracotta-dark);
}

.newsletter-form p {
  margin-bottom: 14px;
}

.newsletter-form label {
  position: relative;
  margin: 0;
}

.newsletter-form input {
  height: 34px;
  padding-right: 42px;
}

.newsletter-form button {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 26px;
  height: 26px;
  display: inline-grid;
  place-items: center;
  border: 0;
  border-radius: 7px;
  color: var(--olive-dark);
  background: #e9dfc9;
  cursor: pointer;
}

.newsletter-form .icon {
  width: 14px;
  height: 14px;
}

.copyright {
  margin-top: 16px;
  color: rgba(36, 34, 31, 0.46);
  font-size: 0.72rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 620ms var(--ease),
    transform 620ms var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .container,
  .nav-shell {
    width: min(100% - 40px, var(--container));
  }

  .nav-links {
    gap: 24px;
  }

  .hero-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: auto;
    gap: 24px;
    max-width: 720px;
    padding-left: 0;
  }

  .hero-media {
    max-width: 780px;
    margin-inline: auto;
  }

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

  .process-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 34px 28px;
  }

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

  .process-grid::before {
    display: none;
  }

  .about-grid {
    padding: 34px;
  }

  .contact-form {
    padding-left: 0;
    border-left: 0;
  }

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

@media (max-width: 820px) {
  .site-header {
    padding: 10px 0;
  }

  .nav-shell {
    grid-template-columns: auto auto;
    justify-content: space-between;
    min-height: 58px;
    padding: 8px 9px 8px 18px;
  }

  .brand {
    font-size: 1.12rem;
  }

  .nav-toggle {
    position: relative;
    z-index: 72;
    width: 42px;
    height: 42px;
    display: inline-grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--charcoal);
    background: rgba(255, 253, 248, 0.76);
  }

  .nav-toggle .icon {
    width: 21px;
    height: 21px;
  }

  .nav-toggle .icon-close {
    display: none;
  }

  .nav-toggle[aria-expanded="true"] .icon-menu {
    display: none;
  }

  .nav-toggle[aria-expanded="true"] .icon-close {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 70;
    width: 100vw;
    padding: 94px max(28px, 8vw) 32px;
    display: grid;
    align-content: start;
    justify-items: start;
    gap: 4px;
    font-size: 1.16rem;
    background: rgba(255, 253, 248, 0.98);
    box-shadow: 0 28px 70px rgba(53, 40, 25, 0.16);
    backdrop-filter: blur(28px) saturate(150%);
    -webkit-backdrop-filter: blur(28px) saturate(150%);
    transform: translateY(-104%);
    transition: transform 280ms var(--ease);
  }

  .nav-links.is-open {
    transform: translateY(0);
  }

  .nav-links a {
    width: 100%;
    padding: 15px 0;
    border-bottom: 1px solid rgba(84, 71, 50, 0.1);
    color: var(--charcoal);
    font-weight: 760;
  }

  .nav-actions {
    display: none;
  }

  .mobile-language-switcher {
    display: inline-grid;
    margin-top: 22px;
  }

  .mobile-language-switcher .lang-option {
    width: 64px;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    padding-top: 26px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 9.6vw, 4rem);
  }

  .hero-trust {
    margin-top: 32px;
  }

  .cta-panel {
    grid-template-columns: 1fr;
    padding: 34px;
  }

  .gallery-card img {
    height: clamp(220px, 34vw, 280px);
  }
}

@media (max-width: 640px) {
  .container,
  .nav-shell {
    width: min(100% - 24px, var(--container));
  }

  .section-pad {
    padding: 52px 0;
  }

  .hero h1 {
    font-size: clamp(2.36rem, 10.6vw, 3rem);
  }

  .hero p {
    font-size: 0.94rem;
  }

  .hero-actions,
  .cta-actions,
  .contact-submit-row {
    width: 100%;
    flex-direction: column;
  }

  .channel-options {
    width: 100%;
  }

  .channel-option span {
    width: 100%;
    min-width: 0;
  }

  .hero-actions .button,
  .cta-actions .button,
  .contact-form .button {
    width: 100%;
  }

  .hero-media img {
    height: 250px;
    border-radius: 16px;
  }

  .hero-trust {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .service-grid,
  .materials-grid,
  .gallery-grid,
  .process-grid,
  .field-row {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
    padding: 28px;
  }

  .about-grid {
    padding: 28px 22px;
  }

  .about-points {
    grid-template-columns: 1fr;
  }

  .about-media img {
    height: 260px;
  }

  .material-card {
    gap: 10px;
  }

  .fabric-swatch {
    width: 120px;
  }

  .gallery-card img {
    height: 245px;
  }

  .process-step p {
    max-width: none;
  }

  .process-step {
    align-content: start;
    justify-items: start;
    min-height: auto;
    padding: 24px;
    border: 1px solid rgba(84, 71, 50, 0.1);
    border-radius: 18px;
    text-align: left;
    background: rgba(255, 253, 248, 0.72);
    box-shadow: 0 12px 30px rgba(58, 45, 29, 0.06);
  }

  .process-step span {
    box-shadow: none;
  }

  .contact-grid {
    gap: 28px;
  }

  .footer-grid,
  .footer-links,
  .social-links {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
