:root {
  --ink: #111714;
  --ink-soft: #2c342f;
  --paper: #f7f5ef;
  --warm: #eee9df;
  --sand: #d7c7ad;
  --line: rgba(17, 23, 20, 0.14);
  --muted: #6d746f;
  --white: #ffffff;
  --header-h: 96px;
  --shell: min(1320px, calc(100vw - 80px));
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--paper); }
body { margin: 0; min-width: 320px; background: var(--paper); color: var(--ink); font-family: var(--sans); -webkit-font-smoothing: antialiased; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
a { color: inherit; }
img { display: block; max-width: 100%; }
::selection { background: #233f34; color: #fff; }

.shell { width: var(--shell); margin-inline: auto; }
.app-shell { min-height: 100vh; overflow: clip; }
.section { padding: 128px 0; scroll-margin-top: var(--header-h); }
.section--warm { background: var(--warm); }
.eyebrow { margin: 0 0 18px; font-size: 11px; line-height: 1; font-weight: 750; letter-spacing: .19em; text-transform: uppercase; color: #6b756f; }
.eyebrow--light { color: rgba(255,255,255,.72); }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: var(--serif); font-weight: 400; letter-spacing: -.045em; }
h2 { margin-bottom: 0; font-size: clamp(42px, 5vw, 74px); line-height: .99; }
h2 em { font-weight: 400; color: #66716b; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .85s cubic-bezier(.2,.7,.2,1), transform .85s cubic-bezier(.2,.7,.2,1); transition-delay: var(--reveal-delay, 0ms); }
.reveal.is-visible { opacity: 1; transform: none; }
.page-enter { animation: pageIn .55s cubic-bezier(.2,.7,.2,1) both; }
@keyframes pageIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* Header */
.site-header { position: fixed; inset: 0 0 auto; z-index: 100; height: var(--header-h); background: rgba(247,245,239,.94); border-bottom: 1px solid transparent; backdrop-filter: blur(16px); transition: height .3s ease, border-color .3s ease, box-shadow .3s ease; }
.site-header--scrolled { height: 82px; border-bottom-color: var(--line); box-shadow: 0 12px 36px rgba(14,21,17,.06); }
.site-header__inner { position: relative; height: 100%; display: grid; grid-template-columns: auto 1fr auto; align-items: center; column-gap: 24px; }
.brand-button { position: relative; z-index: 2; padding: 0; border: 0; background: transparent; cursor: pointer; display: inline-flex; align-items: center; }
.brand-logo { width: 176px; height: auto; }
.brand-logo--compact { width: 122px; max-height: 78px; }
.header-company-name { position: absolute; z-index: 1; left: 50%; top: 50%; transform: translate(-50%, -50%); white-space: nowrap; text-align: center; font-family: var(--serif); font-size: clamp(20px, 1.75vw, 29px); font-weight: 400; letter-spacing: .075em; text-transform: uppercase; color: var(--ink); transition: font-size .3s ease, letter-spacing .3s ease; }
.site-header--scrolled .header-company-name { font-size: clamp(18px, 1.45vw, 24px); letter-spacing: .09em; }
.desktop-nav { position: relative; z-index: 2; justify-self: end; display: flex; align-items: center; gap: clamp(18px, 1.55vw, 24px); transform: translateX(16px); }
.desktop-nav button { position: relative; padding: 10px 0; border: 0; background: none; cursor: pointer; font-size: 13px; font-weight: 650; }
.desktop-nav button::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 4px; height: 1px; background: var(--ink); transition: right .3s ease; }
.desktop-nav button:hover::after, .desktop-nav button:focus-visible::after { right: 0; }
.menu-button { display: none; justify-self: end; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 50%; background: transparent; align-items: center; justify-content: center; cursor: pointer; }
.mobile-nav { display: none; }

/* Buttons */
.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 18px; padding: 0 24px; border-radius: 100px; border: 1px solid transparent; font-size: 13px; font-weight: 750; cursor: pointer; transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease; }
.button:hover { transform: translateY(-2px); }
.button--light { background: #fff; color: var(--ink); }
.button--light:hover { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }
.button--dark { background: var(--ink); color: #fff; }
.button--dark:hover { background: #2b3831; }
.text-button { display: inline-flex; align-items: center; gap: 9px; padding: 10px 0; border: 0; background: transparent; font-size: 13px; font-weight: 750; cursor: pointer; }
.text-button--light { color: #fff; }

/* Hero */
.hero { position: relative; height: min(880px, 100svh); min-height: 700px; margin-top: var(--header-h); background: #0d1310; overflow: hidden; }
.hero-slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity 1.05s ease, visibility 1.05s ease; }
.hero-slide.is-active { opacity: 1; visibility: visible; z-index: 1; }
.hero-slide > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transform: scale(1.055); transition: transform 5.6s cubic-bezier(.2,.7,.2,1); }
.hero-slide.is-active > img { transform: scale(1.005); }
.hero-slide:nth-child(1) > img { object-position: center center; }
.hero-slide:nth-child(2) > img { object-position: center center; }
.hero-slide:nth-child(3) > img { object-position: center center; }
.hero-slide:nth-child(4) > img { object-position: center center; }
.hero-slide__veil { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(6,10,8,.78) 0%, rgba(6,10,8,.58) 38%, rgba(6,10,8,.22) 68%, rgba(6,10,8,.08) 100%), linear-gradient(0deg, rgba(5,8,6,.48), transparent 58%); }
.hero-slide__content { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding-top: 28px; color: #fff; pointer-events: none; }
.hero-copy-panel { width: min(720px, 58vw); pointer-events: auto; }
.hero-copy-panel > * { opacity: 0; transform: translateY(24px); }
.hero-slide.is-active .hero-copy-panel > * { animation: heroText .8s cubic-bezier(.2,.7,.2,1) both; }
.hero-slide.is-active .hero-copy-panel .eyebrow { animation-delay: .17s; }
.hero-slide.is-active .hero-copy-panel h1 { animation-delay: .25s; }
.hero-slide.is-active .hero-slide__copy { animation-delay: .34s; }
.hero-slide.is-active .hero-actions { animation-delay: .42s; }
@keyframes heroText { to { opacity: 1; transform: none; } }
.hero h1 { max-width: 760px; margin: 0 0 28px; font-size: clamp(58px, 6.25vw, 104px); line-height: .92; color: #fff; text-wrap: balance; }
.hero-slide__copy { max-width: 570px; margin-bottom: 36px; font-size: clamp(16px, 1.35vw, 20px); line-height: 1.55; color: rgba(255,255,255,.82); }
.hero-actions { display: flex; align-items: center; gap: 24px; }
.hero-controls { position: absolute; z-index: 10; left: 50%; bottom: 36px; transform: translateX(-50%); display: flex; align-items: center; justify-content: space-between; color: #fff; }
.hero-dots { display: flex; align-items: center; gap: 9px; }
.hero-dots button { position: relative; width: 34px; height: 3px; padding: 0; border: 0; overflow: hidden; background: rgba(255,255,255,.32); cursor: pointer; transition: background .3s ease, width .3s ease; }
.hero-dots button.is-active { width: 62px; background: rgba(255,255,255,.34); }
.hero-dots button.is-active::after { content: ""; position: absolute; inset: 0; background: #fff; transform-origin: left center; animation: heroProgress 5.2s linear forwards; }
@keyframes heroProgress { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.hero-arrows { display: flex; align-items: center; gap: 15px; }
.hero-arrows button { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.4); border-radius: 50%; background: rgba(0,0,0,.1); color: #fff; cursor: pointer; transition: background .25s ease, border-color .25s ease; }
.hero-arrows button:hover { background: #fff; color: var(--ink); border-color: #fff; }
.hero-arrows span { min-width: 58px; text-align: center; font-size: 11px; letter-spacing: .14em; }

/* Shared headings */
.section-heading { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(260px, .55fr); align-items: end; gap: 80px; margin-bottom: 60px; }
.section-heading h2 { max-width: 920px; }
.section-heading > p { margin: 0 0 4px; max-width: 430px; color: var(--muted); font-size: 15px; line-height: 1.65; }
.section-heading--dark h2 { color: #fff; }
.section-heading--dark h2 em { color: #aeb8b2; }
.section-heading--dark > p { color: rgba(255,255,255,.62); }

/* Quiet textile texture for selected light surfaces.
   Deliberately kept below 2% opacity so it reads as atmosphere, not decoration. */
.intro-section,
.process-section,
.contact-section,
.product-catalogue {
  background-color: var(--paper);
  background-image:
    linear-gradient(rgba(17,23,20,.014) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17,23,20,.011) 1px, transparent 1px);
  background-size: 64px 64px;
}

/* Intro */
.intro-grid { display: grid; grid-template-columns: 220px minmax(0,1fr); gap: 70px; }
.intro-copy h2 { max-width: 1010px; }
.intro-copy__lower { display: grid; grid-template-columns: minmax(280px,.75fr) minmax(520px,1.3fr); gap: 90px; margin-top: 62px; padding-top: 36px; border-top: 1px solid var(--line); }
.intro-copy__lower > p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.75; }
.micro-points { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; }
.micro-points span { color: var(--muted); font-size: 12px; line-height: 1.55; }
.micro-points b { display: block; margin-bottom: 9px; color: var(--ink); font-size: 13px; }

/* Collections */
.collection-grid { display: grid; grid-template-columns: 1.12fr .88fr .88fr; grid-template-rows: 390px 390px; gap: 14px; }
.collection-card { position: relative; overflow: hidden; padding: 0; border: 0; background: #d8d4cc; text-align: left; cursor: pointer; }
.collection-card:first-child { grid-row: span 2; }
.collection-card:last-child { grid-column: 2 / span 2; }
.collection-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.7,.2,1), filter .8s ease; }
.collection-card:nth-child(1) img { object-position: 50% 45%; }
.collection-card:nth-child(2) img { object-position: 50% 50%; }
.collection-card:nth-child(3) img { object-position: 50% 52%; }
.collection-card:nth-child(4) img { object-position: 50% 37%; }
.collection-card__overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(5,8,6,.72), rgba(5,8,6,.02) 65%); transition: background .4s ease; }
.collection-card__content { position: absolute; inset: auto 28px 26px; color: #fff; display: grid; gap: 6px; }
.collection-card__content small { font-size: 9px; font-weight: 750; letter-spacing: .17em; text-transform: uppercase; color: rgba(255,255,255,.7); }
.collection-card__content strong { font-family: var(--serif); font-size: clamp(32px,3.1vw,52px); font-weight: 400; letter-spacing: -.04em; }
.collection-card__content > span { display: flex; align-items: center; gap: 8px; max-height: 0; opacity: 0; overflow: hidden; font-size: 12px; font-weight: 700; transition: max-height .35s ease, opacity .35s ease, margin .35s ease; }
.collection-card:hover img { transform: scale(1.045); filter: saturate(.92); }
.collection-card:hover .collection-card__overlay { background: linear-gradient(0deg, rgba(5,8,6,.8), rgba(5,8,6,.08) 70%); }
.collection-card:hover .collection-card__content > span { max-height: 28px; opacity: 1; margin-top: 8px; }

/* Services */
.services-section { background: #111714; color: #fff; }
.services-grid { border-top: 1px solid rgba(255,255,255,.18); }
.service-card { display: grid; grid-template-columns: 80px 1fr auto; align-items: start; gap: 26px; padding: 28px 4px; border-bottom: 1px solid rgba(255,255,255,.18); }
.service-card > span { color: rgba(255,255,255,.42); font-size: 12px; letter-spacing: .15em; }
.service-card h3 { margin: 0 0 8px; font-family: var(--serif); font-size: 27px; font-weight: 400; }
.service-card p { margin: 0; max-width: 620px; color: rgba(255,255,255,.58); font-size: 14px; line-height: 1.6; }
.service-card > svg { color: rgba(255,255,255,.55); transition: transform .3s ease, color .3s ease; }
.service-card:hover > svg { transform: translate(3px,-3px); color: #fff; }

/* Process */
.process-section { background-color: var(--paper); }
.process-line { display: grid; grid-template-columns: repeat(6,1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.process-step { position: relative; min-height: 270px; padding: 31px 24px 30px 0; border-right: 1px solid var(--line); }
.process-step:last-child { border-right: 0; }
.process-step > span { display: inline-grid; place-items: center; width: 43px; height: 43px; margin-bottom: 70px; border: 1px solid var(--ink); border-radius: 50%; font-size: 10px; }
.process-step h3 { margin-bottom: 9px; font-family: var(--serif); font-size: 27px; font-weight: 400; }
.process-step p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.6; }

/* Responsibility */
.responsibility-section { background: #e1ddd3; }
.responsibility-grid { display: grid; grid-template-columns: 1.03fr .97fr; min-height: 620px; }
.responsibility-image { overflow: hidden; }
.responsibility-image img { width: 100%; height: 100%; min-height: 620px; object-fit: cover; object-position: center; }
.responsibility-copy { padding: 74px 0 70px 82px; align-self: center; }
.responsibility-copy h2 { max-width: 690px; font-size: clamp(42px,4.2vw,67px); }
.responsibility-copy > p:not(.eyebrow) { margin: 34px 0; max-width: 650px; color: #5d665f; font-size: 15px; line-height: 1.75; }
.responsibility-list { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px 28px; padding-top: 24px; border-top: 1px solid rgba(17,23,20,.2); }
.responsibility-list span { font-size: 12px; font-weight: 700; }

/* Contact */
.contact-section { background-color: #faf9f5; }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 100px; align-items: start; }
.contact-copy h2 { max-width: 610px; }
.contact-copy > p:not(.eyebrow) { max-width: 530px; margin: 34px 0; color: var(--muted); font-size: 15px; line-height: 1.7; }
.contact-meta { display: grid; gap: 15px; padding-top: 28px; border-top: 1px solid var(--line); }
.contact-meta span { display: flex; align-items: flex-start; gap: 13px; color: #4f5952; font-size: 13px; line-height: 1.5; }
.contact-meta svg { flex: 0 0 auto; }
.contact-form { display: grid; grid-template-columns: repeat(2,1fr); gap: 23px 18px; padding: 38px; background: #ede9df; }
.contact-form label { display: grid; gap: 10px; }
.contact-form label.full { grid-column: 1 / -1; }
.contact-form label > span { font-size: 10px; font-weight: 750; letter-spacing: .14em; text-transform: uppercase; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 0; border-bottom: 1px solid rgba(17,23,20,.28); border-radius: 0; outline: 0; background: transparent; padding: 12px 0; color: var(--ink); font-size: 14px; transition: border-color .25s ease; }
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-bottom-color: var(--ink); }
.form-footer { grid-column: 1 / -1; display: flex; align-items: center; gap: 24px; padding-top: 6px; }
.form-footer p { margin: 0; max-width: 340px; color: var(--muted); font-size: 11px; line-height: 1.5; }

/* Footer */
.site-footer { background: #0d1210; color: #fff; padding: 72px 0 22px; }
.footer-grid { display: grid; grid-template-columns: 1.08fr .55fr .95fr 1.1fr; gap: 58px; padding-bottom: 54px; }
.footer-brand__logo { display: inline-flex; padding: 12px 18px; margin-bottom: 24px; background: #f3f0e8; }
.footer-brand__logo .brand-logo { width: 132px; }
.footer-brand > p { max-width: 330px; margin: 0; color: rgba(255,255,255,.62); font-size: 13px; line-height: 1.75; }
.site-footer h3 { margin: 0 0 24px; font-family: var(--sans); font-size: 12px; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.8); }
.footer-column { display: flex; flex-direction: column; align-items: flex-start; }
.footer-column button { margin: 0 0 13px; padding: 0; border: 0; background: none; color: rgba(255,255,255,.68); font-size: 13px; cursor: pointer; transition: color .25s ease, transform .25s ease; }
.footer-column button:hover { color: #fff; transform: translateX(3px); }
.footer-office p { margin: 0 0 11px; color: rgba(255,255,255,.62); font-size: 12px; line-height: 1.55; }
.footer-office b { color: rgba(255,255,255,.9); }
.footer-map iframe { width: 100%; height: 210px; border: 0; filter: grayscale(.2) contrast(.95); }
.footer-map__bottom { display: flex; align-items: center; justify-content: space-between; gap: 15px; margin-top: 15px; }
.footer-map__bottom > a { display: inline-flex; align-items: center; gap: 7px; color: rgba(255,255,255,.72); text-decoration: none; font-size: 11px; }
.social-links { display: flex; gap: 8px; }
.social-links a { width: 29px; height: 29px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.25); text-decoration: none; font-size: 10px; font-weight: 800; transition: background .25s ease, color .25s ease; }
.social-links a:hover { background: #fff; color: var(--ink); }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.15); color: rgba(255,255,255,.42); font-size: 9px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }

/* Collection pages */
.collection-page { padding-top: var(--header-h); }
.collection-hero { position: relative; min-height: 660px; display: grid; align-items: end; overflow: hidden; background: #111714; }
.collection-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.collection-hero__overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(6,10,8,.88), rgba(6,10,8,.52) 48%, rgba(6,10,8,.12)), linear-gradient(0deg, rgba(6,10,8,.5), transparent 55%); }
.collection-hero__content { position: relative; z-index: 2; padding-bottom: 70px; color: #fff; }
.collection-hero__content h1 { max-width: 930px; margin: 0 0 24px; font-size: clamp(58px,6.6vw,108px); line-height: .91; }
.collection-hero__content > p:last-child { max-width: 660px; margin: 0; color: rgba(255,255,255,.75); font-size: 16px; line-height: 1.65; }
.back-link { display: inline-flex; align-items: center; gap: 8px; margin: 0 0 70px; padding: 0; border: 0; background: transparent; color: rgba(255,255,255,.7); font-size: 12px; cursor: pointer; }
.catalogue-heading { display: grid; grid-template-columns: 1.2fr .7fr; gap: 80px; align-items: end; margin-bottom: 55px; }
.catalogue-heading h2 { max-width: 760px; }
.catalogue-heading > p { margin: 0; max-width: 480px; color: var(--muted); font-size: 14px; line-height: 1.7; }
.catalogue-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.catalogue-grid--three { grid-template-columns: repeat(3,1fr); }
.catalogue-card { background: #ebe7de; overflow: hidden; }
.catalogue-card__image { height: 340px; overflow: hidden; background: #ddd8ce; }
.catalogue-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.catalogue-card:hover .catalogue-card__image img { transform: scale(1.045); }
.catalogue-card__body { padding: 24px; }
.catalogue-card__body > span { color: #7b827e; font-size: 9px; letter-spacing: .15em; }
.catalogue-card h3 { margin: 18px 0 9px; font-family: var(--serif); font-size: 28px; font-weight: 400; }
.catalogue-card p { min-height: 66px; margin: 0 0 22px; color: var(--muted); font-size: 12px; line-height: 1.55; }
.catalogue-card button { display: inline-flex; align-items: center; gap: 7px; padding: 0 0 5px; border: 0; border-bottom: 1px solid rgba(17,23,20,.4); background: transparent; font-size: 11px; font-weight: 750; cursor: pointer; }
.collection-cta { padding: 100px 0; background: #1c2923; color: #fff; }
.collection-cta h2 { max-width: 760px; margin-bottom: 24px; }
.collection-cta p:not(.eyebrow) { max-width: 620px; margin-bottom: 30px; color: rgba(255,255,255,.68); line-height: 1.7; }
.not-found { min-height: 74vh; padding: 170px 30px 100px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.not-found .brand-logo { width: 160px; margin-bottom: 42px; }
.not-found h1 { max-width: 700px; font-size: clamp(48px,6vw,88px); }

@media (max-width: 1180px) {
  :root { --shell: min(100% - 48px, 1120px); }
  .section { padding: 105px 0; }
  .section-heading { gap: 45px; }
  .collection-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 470px 330px 330px; }
  .collection-card:first-child { grid-row: auto; }
  .collection-card:last-child { grid-column: 1 / -1; }
  .process-line { grid-template-columns: repeat(3,1fr); }
  .process-step:nth-child(3) { border-right: 0; }
  .process-step:nth-child(-n+3) { border-bottom: 1px solid var(--line); }
  .footer-grid { grid-template-columns: 1fr .6fr 1fr; }
  .footer-map { grid-column: 1 / -1; max-width: 680px; }
  .catalogue-grid { grid-template-columns: repeat(3,1fr); }
}

@media (max-width: 1120px) and (min-width: 901px) {
  .header-company-name { font-size: clamp(18px, 2.15vw, 23px); letter-spacing: .06em; }
  .site-header--scrolled .header-company-name { font-size: clamp(17px, 1.9vw, 21px); }
  .desktop-nav { gap: 16px; transform: translateX(8px); }
  .desktop-nav button { font-size: 12px; }
}

@media (max-width: 900px) {
  :root { --header-h: 82px; --shell: calc(100% - 36px); }
  .site-header--scrolled { height: 74px; }
  .brand-logo--compact { width: 100px; max-height: 70px; }
  .site-header__inner { grid-template-columns: auto 1fr auto; column-gap: 14px; }
  .header-company-name { font-size: clamp(14px, 3.2vw, 20px); letter-spacing: .08em; }
  .site-header--scrolled .header-company-name { font-size: clamp(13px, 3vw, 18px); }
  .desktop-nav { display: none; }
  .menu-button { display: inline-flex; }
  .mobile-nav { position: absolute; left: 0; right: 0; top: 100%; display: grid; padding: 8px 18px 22px; background: rgba(247,245,239,.98); border-bottom: 1px solid var(--line); transform: translateY(-10px); opacity: 0; visibility: hidden; transition: opacity .25s ease, transform .25s ease, visibility .25s ease; }
  .mobile-nav--open { opacity: 1; transform: none; visibility: visible; }
  .mobile-nav button { display: flex; align-items: center; justify-content: space-between; padding: 15px 4px; border: 0; border-bottom: 1px solid var(--line); background: transparent; font-weight: 650; }
  .hero { min-height: 700px; height: calc(100svh - var(--header-h)); }
  .hero h1 { font-size: clamp(58px,12vw,92px); max-width: 680px; }
  .hero-slide__veil { background: linear-gradient(90deg, rgba(6,10,8,.78), rgba(6,10,8,.46) 72%, rgba(6,10,8,.2)), linear-gradient(0deg, rgba(5,8,6,.42), transparent 58%); }
  .section-heading, .catalogue-heading { grid-template-columns: 1fr; gap: 28px; }
  .intro-grid { grid-template-columns: 1fr; gap: 20px; }
  .intro-copy__lower { grid-template-columns: 1fr; gap: 38px; }
  .responsibility-grid { grid-template-columns: 1fr; }
  .responsibility-image img { min-height: 520px; }
  .responsibility-copy { padding: 65px 0 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 60px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-map { grid-column: 1 / -1; }
  .catalogue-grid, .catalogue-grid--three { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 640px) {
  :root { --shell: calc(100% - 28px); }
  .site-header__inner { column-gap: 8px; }
  .brand-logo--compact { width: 82px; max-height: 62px; }
  .header-company-name { font-size: clamp(11px, 3.6vw, 16px); letter-spacing: .055em; }
  .site-header--scrolled .header-company-name { font-size: clamp(10px, 3.4vw, 15px); }
  .section { padding: 82px 0; }
  h2 { font-size: clamp(38px,12vw,55px); }
  .hero { min-height: 650px; }
  .hero-slide__content { justify-content: flex-end; padding-bottom: 145px; }
  .hero-copy-panel { width: 100%; }
  .hero h1 { font-size: clamp(52px,16vw,72px); line-height: .9; }
  .hero-slide__copy { font-size: 15px; margin-bottom: 26px; }
  .hero-actions { flex-wrap: wrap; gap: 12px 18px; }
  .hero-controls { bottom: 22px; }
  .hero-arrows span { display: none; }
  .hero-dots button { width: 22px; }
  .hero-dots button.is-active { width: 38px; }
  .micro-points { grid-template-columns: 1fr; gap: 18px; }
  .collection-grid { display: grid; grid-template-columns: 1fr; grid-template-rows: repeat(4, 380px); }
  .collection-card:last-child { grid-column: auto; }
  .collection-card__content strong { font-size: 40px; }
  .service-card { grid-template-columns: 46px 1fr auto; gap: 12px; }
  .service-card h3 { font-size: 23px; }
  .process-line { grid-template-columns: 1fr; }
  .process-step { min-height: auto; padding: 26px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .process-step:nth-child(-n+3) { border-bottom: 1px solid var(--line); }
  .process-step > span { margin-bottom: 28px; }
  .responsibility-image img { min-height: 390px; }
  .responsibility-list { grid-template-columns: 1fr; }
  .contact-form { grid-template-columns: 1fr; padding: 25px 20px; }
  .contact-form label.full, .form-footer { grid-column: auto; }
  .form-footer { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: 45px; }
  .footer-map { grid-column: auto; }
  .footer-bottom { flex-direction: column; gap: 10px; }
  .collection-hero { min-height: 590px; }
  .collection-hero__content { padding-bottom: 50px; }
  .collection-hero__content h1 { font-size: clamp(52px,15vw,74px); }
  .back-link { margin-bottom: 52px; }
  .catalogue-grid, .catalogue-grid--three { grid-template-columns: 1fr; }
  .catalogue-card__image { height: 390px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Live contact details and social profiles */
.contact-meta a {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  color: #4f5952;
  font-size: 13px;
  line-height: 1.5;
  text-decoration: none;
  transition: color .25s ease, transform .25s ease;
}
.contact-meta a:hover,
.contact-meta a:focus-visible { color: var(--ink); transform: translateX(3px); }
.contact-meta a > svg { flex: 0 0 auto; margin-top: 2px; }
.contact-meta a span { display: grid; gap: 2px; }
.contact-meta a small { color: #7a827d; font-size: 9px; font-weight: 750; letter-spacing: .13em; text-transform: uppercase; }
.contact-socials { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.contact-socials a {
  min-height: 43px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255,255,255,.56);
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.contact-socials a:hover,
.contact-socials a:focus-visible { transform: translateY(-2px); border-color: rgba(17,23,20,.32); background: #fff; }
.contact-socials a > svg:last-child { color: #6d746f; }
.contact-form button:disabled { cursor: wait; opacity: .72; transform: none; }
.form-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; pointer-events: none !important; }
.form-status--success { color: #245b3d !important; font-weight: 650; }
.form-reset { padding: 5px 0; border: 0; border-bottom: 1px solid currentColor; background: transparent; color: var(--ink); font-size: 11px; cursor: pointer; }
.contact-form [role="alert"] { grid-column: 1 / -1; color: #a12a2a; font-size: 11px; line-height: 1.45; }
.footer-office a { color: inherit; text-decoration: none; border-bottom: 1px solid transparent; transition: color .25s ease, border-color .25s ease; }
.footer-office a:hover,
.footer-office a:focus-visible { color: #fff; border-bottom-color: rgba(255,255,255,.45); }
.social-links a {
  border-color: rgba(255,255,255,.18);
  border-radius: 7px;
  background: #fff;
  color: var(--ink);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.social-links a:hover,
.social-links a:focus-visible { transform: translateY(-2px); border-color: rgba(255,255,255,.65); background: #fff; }
.form-status--error { color: #9b2f2f !important; font-weight: 650; }

.instagram-brand-icon {
  display: block;
  width: auto;
  max-width: none;
  object-fit: contain;
  border-radius: 22%;
}
