/* MM Galleri, Option C. One stylesheet for every redesigned page.
   Colours: warm stone-white ground, near-black bands, brand orange only as a fill with dark text or on dark.
   Type: Bodoni Moda (headings), Atkinson Hyperlegible Next (reading), Jost letterspaced caps (labels). */

:root {
  --ground: #F5F2EC;
  --stone: #ECE7DF;
  --paper: #FBF9F5;
  --ink: #1A1917;
  --ink-2: #4F4A43;
  --dark: #141312;
  --on-dark: #F2EDE4;
  --on-dark-2: #D9D3C9;
  --on-dark-3: #BDB6AB;
  --accent: #FE7600;       /* fill only, with --dark text (6.5:1), or text on --dark */
  --accent-text: #9A4600;  /* orange for text on light grounds (5.6:1) */
  --accent-hover: #6E3200;
  --accent-line: #D95F00;  /* orange for lines and underlines on light grounds (3.4:1) */
  --line: #D6CFC4;
  --line-2: #C9C1B4;
  --chip: #CFC7BB;
  --dark-line: #332F2B;
  --focus: #1A1917;

  --serif: 'Bodoni Moda', Didot, 'Bodoni 72', Georgia, serif;
  --sans: 'Atkinson Hyperlegible Next', 'Atkinson Hyperlegible', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --caps: 'Jost', 'Futura', system-ui, sans-serif;

  --gutter: clamp(16px, 4.4vw, 64px);
  --band: clamp(56px, 7vw, 104px);
  --max: 1440px;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { transition: none !important; animation: none !important; } }
body.mmg { margin: 0; background: var(--ground); color: var(--ink); font-family: var(--sans); font-size: 17px; line-height: 1.55; overflow-x: hidden; }
.mmg img { max-width: 100%; height: auto; display: block; }
.mmg a { color: var(--accent-text); text-underline-offset: 0.18em; }
.mmg a:hover { color: var(--accent-hover); }
.mmg :focus-visible { outline: 3px solid var(--focus); outline-offset: 3px; }
.mmg .band--dark :focus-visible, .mmg .site-footer__top :focus-visible, .mmg .site-footer__bottom :focus-visible, .mmg .hero :focus-visible, .mmg .feature :focus-visible { outline-color: var(--on-dark); }
.mmg h1, .mmg h2, .mmg h3 { margin: 0; font-weight: 500; }
.mmg p { margin: 0; }
.mmg ul, .mmg ol { margin: 0; padding: 0; list-style: none; }
.mmg button, .mmg input, .mmg select, .mmg textarea { font: inherit; color: inherit; }
.mmg .icon { flex-shrink: 0; }

.skip-link { position: absolute; left: 16px; top: -100px; z-index: 100; padding: 12px 18px; background: var(--accent); color: var(--dark) !important; font-weight: 700; text-decoration: none; }
.skip-link:focus { top: 16px; }

.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }

/* ---------- Type ---------- */
.h-display { font-family: var(--serif); font-size: clamp(40px, 5.6vw, 82px); line-height: 1.03; letter-spacing: -0.01em; color: var(--on-dark); text-wrap: balance; }
.h-page { font-family: var(--serif); font-size: clamp(38px, 5vw, 72px); line-height: 1.05; letter-spacing: -0.01em; text-wrap: balance; overflow-wrap: anywhere; }
.h-section { font-family: var(--serif); font-size: clamp(34px, 4.4vw, 64px); line-height: 1.05; letter-spacing: -0.01em; text-wrap: balance; }
.h-sub { font-family: var(--serif); font-size: clamp(28px, 3vw, 44px); line-height: 1.1; }
.h-card { font-family: var(--serif); font-size: clamp(26px, 2.2vw, 32px); line-height: 1.1; }
.kicker { display: block; font-family: var(--caps); font-size: 14px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent-text); margin-bottom: 14px; }
.kicker--accent { color: var(--accent); }
.lead { font-size: clamp(18px, 1.5vw, 20px); line-height: 1.55; color: var(--on-dark-2); text-wrap: pretty; }
.lead--dark { color: var(--ink); }
.link-caps { display: inline-flex; align-items: center; gap: 10px; font-family: var(--caps); font-size: 15px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink) !important; text-decoration: none; min-height: 44px; }
.link-caps:hover { text-decoration: underline; }
.link-caps--light { color: var(--on-dark) !important; }
.link-strong { font-weight: 700; color: var(--accent-text); display: inline-flex; align-items: center; min-height: 44px; }
.link-accent { font-size: 18px; font-weight: 700; color: var(--accent) !important; display: inline-flex; align-items: center; gap: 10px; min-height: 44px; }
.link-light { color: var(--on-dark) !important; font-weight: 700; display: inline-flex; align-items: center; min-height: 44px; }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 48px; padding: 0 22px; border: 1.5px solid transparent; font-size: 16px; font-weight: 700; line-height: 1.2; text-decoration: none; cursor: pointer; text-align: center; }
.btn--large { min-height: 56px; padding: 0 28px; font-size: 17px; }
.btn--small { min-height: 44px; padding: 0 16px; font-size: 15px; }
.btn--block { display: flex; width: 100%; min-height: 56px; font-size: 17px; }
.mmg .btn--accent { background: var(--accent); color: var(--dark); }
.mmg .btn--accent:hover { background: #FF8A26; color: var(--dark); }
.mmg .btn--dark { background: var(--ink); color: var(--ground); }
.mmg .btn--dark:hover { background: #000; color: #fff; }
.mmg .btn--outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.mmg .btn--outline:hover { background: var(--ink); color: var(--ground); }
.mmg .btn--ghost { background: transparent; color: var(--on-dark); border-color: var(--on-dark); }
.mmg .btn--ghost:hover { background: var(--on-dark); color: var(--dark); }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Header ---------- */
.site-header { position: relative; z-index: 20; background: var(--ground); color: var(--ink); border-bottom: 1px solid var(--line); }
.site-header--over { position: absolute; left: 0; right: 0; top: 0; background: rgba(245, 242, 236, 0.93); border-bottom-color: transparent; }
.site-header__bar { max-width: var(--max); margin: 0 auto; min-height: 88px; padding: 0 var(--gutter); display: flex; align-items: center; gap: 40px; }
.brand { display: flex; flex-shrink: 0; }
.brand img { width: 92px; height: auto; }
.main-nav { flex-grow: 1; }
.main-nav ul { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 36px); }
.main-nav a { display: inline-flex; align-items: center; min-height: 44px; color: var(--ink) !important; text-decoration: none; font-family: var(--caps); font-size: 15px; letter-spacing: 0.16em; text-transform: uppercase; white-space: nowrap; border-bottom: 2px solid transparent; }
.main-nav a:hover, .main-nav a[aria-current="page"] { border-bottom-color: var(--accent-line); }
.header-tools { display: flex; align-items: center; gap: 12px; }
.icon-btn { width: 48px; height: 48px; display: inline-flex; align-items: center; justify-content: center; background: transparent; border: 1px solid rgba(20, 19, 18, 0.5); color: var(--ink); cursor: pointer; }
.icon-btn:hover, .icon-btn[aria-expanded="true"] { background: rgba(20, 19, 18, 0.07); }
.picker { position: relative; }
.picker__button { list-style: none; min-height: 48px; padding: 0 14px; display: inline-flex; align-items: center; gap: 8px; border: 1px solid rgba(20, 19, 18, 0.5); cursor: pointer; font-size: 16px; }
.picker__button::-webkit-details-marker { display: none; }
.picker[open] .picker__button { background: rgba(20, 19, 18, 0.07); }
.picker__panel { position: absolute; right: 0; top: calc(100% + 8px); min-width: 240px; background: var(--paper); color: var(--ink); padding: 16px; box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25); z-index: 30; }
.picker__title { font-family: var(--caps); font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-2); margin-bottom: 8px; }
.picker__panel a { display: flex; align-items: center; min-height: 44px; padding: 0 10px; color: var(--ink) !important; text-decoration: none; font-size: 17px; }
.picker__panel a:hover { background: var(--stone); }
.picker__panel a[aria-current="true"] { font-weight: 700; box-shadow: inset 3px 0 0 var(--accent); }
.lang-switch { display: flex; }
.lang-switch--menu { display: none; }
.lang-switch--bar a { min-width: 44px; min-height: 48px; display: inline-flex; align-items: center; justify-content: center; color: var(--ink) !important; text-decoration: none; font-family: var(--caps); font-size: 14px; letter-spacing: 0.12em; border: 1px solid rgba(20, 19, 18, 0.5); }
.lang-switch--bar a + a { border-left: none; }
.lang-switch--bar a[aria-current="true"] { background: var(--dark); color: var(--on-dark) !important; border-color: var(--dark); }
.menu-btn { display: none; min-height: 48px; padding: 0 12px; align-items: center; gap: 8px; background: transparent; border: none; color: var(--ink); font-family: var(--caps); font-size: 15px; letter-spacing: 0.16em; text-transform: uppercase; cursor: pointer; }
.site-search { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter) 24px; }
.site-search[hidden] { display: none; }
.site-search label { display: block; font-weight: 700; margin-bottom: 8px; }
.field-row { display: flex; }
.field-row input { flex-grow: 1; min-width: 0; height: 56px; padding: 0 18px; border: 1.5px solid var(--ink); border-right: none; background: var(--paper); color: var(--ink); font-size: 17px; }
.field-row .btn { min-height: 56px; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: min(880px, 100svh); background: var(--dark); color: var(--on-dark); display: flex; align-items: flex-end; overflow: hidden; }
.hero--short { min-height: min(700px, 88svh); }
.hero__img, .hero__img img { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__img img { object-fit: cover; }
.hero__panel { position: relative; margin: 0 0 clamp(24px, 6vw, 96px) var(--gutter); width: min(760px, calc(100% - 2 * var(--gutter))); padding: clamp(28px, 3.4vw, 52px); background: rgba(20, 19, 18, 0.88); display: flex; flex-direction: column; gap: 20px; }
.hero__panel .kicker { margin-bottom: 0; }
.hero__panel .btn-row { padding-top: 8px; }
.hero__caption { position: absolute; right: var(--gutter); bottom: clamp(24px, 6vw, 96px); max-width: 320px; padding: 12px 18px; background: rgba(20, 19, 18, 0.88); color: var(--on-dark) !important; font-family: var(--caps); font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; text-decoration: none; }
.hero__caption:hover { text-decoration: underline; }

/* ---------- Bands ---------- */
.band { padding: var(--band) 0; }
.band--ground { background: var(--ground); }
.band--stone { background: var(--stone); }
.band--dark { background: var(--dark); color: var(--on-dark); }
.band__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px 64px; flex-wrap: wrap; margin-bottom: clamp(28px, 3.4vw, 48px); }
.band__sub { font-size: 18px; color: var(--ink-2); }
.band--dark .band__sub { color: var(--on-dark-3); }

/* Find your stone */
.find__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px 80px; flex-wrap: wrap; margin-bottom: 48px; }
.find__search { width: min(520px, 100%); }
.find__search label { display: block; font-weight: 700; margin-bottom: 10px; }
.type-tiles { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 20px; }
.type-tile { display: flex; flex-direction: column; gap: 16px; color: var(--ink) !important; text-decoration: none; }
.type-tile__img { display: block; aspect-ratio: 3 / 4; background: var(--stone); overflow: hidden; }
.type-tile__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.type-tile:hover img { transform: scale(1.03); }
.type-tile__name { display: flex; justify-content: space-between; align-items: center; font-family: var(--serif); font-size: clamp(24px, 2vw, 30px); }
.type-tile__sub { font-size: 14px; color: var(--ink-2); margin-top: -8px; }
.colour-row { display: flex; align-items: center; flex-wrap: wrap; gap: 16px 24px; border-top: 1px solid var(--line); padding-top: 32px; margin-top: 40px; }
.colour-row__label { font-family: var(--sans); font-size: 19px; font-weight: 700; width: 160px; }
.colour-row .chips { flex: 1 1 480px; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { min-height: 44px; padding: 0 18px 0 14px; display: inline-flex; align-items: center; gap: 10px; border: 1.5px solid var(--chip); border-radius: 999px; background: var(--paper); color: var(--ink) !important; font-size: 16px; text-decoration: none; }
.chip:hover { border-color: var(--ink); }
.chip--filter[aria-current="true"] { background: var(--ink); border-color: var(--ink); color: var(--ground) !important; }
.swatch { width: 20px; height: 20px; border-radius: 50%; border: 1px solid #8C857A; flex-shrink: 0; }

/* Projects */
.projects { padding-bottom: var(--band); }
.project { display: flex; flex-direction: column; gap: 16px; color: var(--on-dark) !important; text-decoration: none; }
.project__img { display: block; overflow: hidden; background: #221F1C; }
.project__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.project:hover .project__img img { transform: scale(1.02); }
.project--lead .project__img { aspect-ratio: 2 / 1; }
.project--lead .project__text { display: flex; justify-content: space-between; align-items: baseline; flex-wrap: wrap; gap: 8px 40px; padding-top: 12px; padding-bottom: 56px; }
.projects__pair { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px; }
.projects__pair .project__img { aspect-ratio: 4 / 3; }
.project__name { font-family: var(--caps); font-size: clamp(18px, 1.6vw, 24px); letter-spacing: 0.12em; text-transform: uppercase; line-height: 1.3; }
.project__meta { font-family: var(--caps); font-size: 14px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--on-dark-3); }

/* Feature (Bended) */
.feature { position: relative; min-height: 780px; display: flex; align-items: flex-start; justify-content: flex-end; background: var(--dark); overflow: hidden; }
.feature__img, .feature__img img { position: absolute; inset: 0; width: 100%; height: 100%; }
.feature__img img { object-fit: cover; object-position: center 45%; }
.feature__panel { position: relative; margin: clamp(32px, 6vw, 96px) var(--gutter); width: min(560px, calc(100% - 2 * var(--gutter))); padding: clamp(28px, 3vw, 48px); background: rgba(20, 19, 18, 0.9); color: var(--on-dark); display: flex; flex-direction: column; gap: 20px; }
.feature__panel .kicker { margin-bottom: 0; }
.feature__panel p { font-size: 18px; line-height: 1.6; color: var(--on-dark-2); }
.feature__links { display: flex; flex-wrap: wrap; gap: 8px 28px; }

/* How we can help / What we do */
.help .h-sub, .help__grid { margin-bottom: 0; }
.help .h-sub { margin-bottom: 40px; }
.band .h-section + .help__grid { margin-top: 40px; }
.help__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 40px; }
.help__item { display: flex; flex-direction: column; gap: 10px; border-top: 2px solid var(--ink); padding-top: 20px; }
.help__item h3 { font-family: var(--sans); font-size: 21px; font-weight: 700; }
.help__item p { color: var(--ink-2); }

/* Showrooms */
.showrooms__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }
.showroom { border-top: 1px solid var(--ink); padding-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.showroom--current { border-top: 3px solid var(--accent); }
.showroom__address { color: var(--ink-2); font-size: 16px; min-height: 5em; }
.showroom__hours { font-size: 15px; color: var(--ink-2); }
.showroom__phone a { color: var(--ink) !important; font-size: 17px; }
.showroom__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 16px; }
.showroom__actions .link-caps { font-size: 14px; color: var(--accent-text) !important; }
.showroom__more summary { cursor: pointer; font-weight: 700; min-height: 44px; display: flex; align-items: center; }
.showroom__extra { display: flex; flex-direction: column; gap: 4px; font-size: 15px; color: var(--ink-2); padding: 10px 0; border-top: 1px solid var(--line); }
.showroom__extra strong { color: var(--ink); }
/* Showroom pictures on the Showrooms & Contact page; each opens the showroom's own page */
.showroom__pic { display: block; aspect-ratio: 4 / 3; overflow: hidden; background: var(--stone); }
.showroom__pic img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
a.showroom__pic:hover img, a.showroom__pic:focus-visible img { transform: scale(1.03); }
.showroom__pic--empty { display: flex; align-items: center; justify-content: center; border: 1px dashed var(--line-2); color: var(--ink-2); font-family: var(--caps); font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; }
.showroom-about .btn-row { margin-top: 24px; }
.showroom-about .showroom__more { margin-top: 24px; }

/* Journal */
.journal__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 32px; }
.article-card { display: flex; flex-direction: column; gap: 12px; color: var(--ink) !important; text-decoration: none; }
.article-card__img { display: block; aspect-ratio: 16 / 10; overflow: hidden; background: var(--line); }
.article-card__img img { width: 100%; height: 100%; object-fit: cover; }
.article-card__date { font-family: var(--caps); font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent-text); }
.article-card__title { font-family: var(--serif); font-size: 24px; line-height: 1.2; text-wrap: pretty; }
.article-card:hover .article-card__title { text-decoration: underline; text-decoration-thickness: 1px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--dark); color: var(--on-dark-2); padding: 0 0 32px; }
.site-footer__mark { background: var(--ground); color: var(--ink-2); border-top: 1px solid var(--line); margin-bottom: 56px; }
.site-footer__top, .site-footer__bottom, .site-footer__brand { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.site-footer__top { display: flex; justify-content: space-between; gap: 40px 80px; flex-wrap: wrap; padding-bottom: 40px; }
.site-footer__brand { display: flex; align-items: center; justify-content: space-between; gap: 16px 40px; flex-wrap: wrap; padding-top: 28px; padding-bottom: 28px; font-size: 16px; }
.site-footer__brand img { width: 104px; }
.site-footer__nav, .site-footer__social { display: flex; flex-wrap: wrap; gap: 8px 40px; font-family: var(--caps); font-size: 15px; letter-spacing: 0.16em; text-transform: uppercase; align-content: flex-start; }
.site-footer__social { gap: 8px 28px; font-size: 14px; }
.site-footer a { color: var(--on-dark) !important; text-decoration: none; display: inline-flex; align-items: center; min-height: 44px; }
.site-footer a:hover { text-decoration: underline; }
.site-footer__bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px 32px; flex-wrap: wrap; border-top: 1px solid var(--dark-line); padding-top: 20px; font-size: 15px; }
.lang-switch--footer { gap: 20px; }
.lang-switch--footer a[aria-current="true"] { text-decoration: underline; text-decoration-color: var(--accent); text-decoration-thickness: 2px; }

/* ---------- Collection ---------- */
.page-head { background: var(--ground); padding: clamp(40px, 5vw, 72px) 0 32px; }
.page-head__inner { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px 80px; flex-wrap: wrap; }
.page-head__intro { max-width: 560px; font-size: 18px; color: var(--ink-2); }
.crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 4px 10px; font-size: 15px; color: var(--ink-2); margin-bottom: 14px; }
/* Natural stone / engineered surfaces: two equal doors under the collection page head. */
.coll-switch { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin-top: 32px; }
.coll-switch__item { display: grid; grid-template-columns: minmax(0, 1fr) auto; grid-template-rows: auto auto; column-gap: 20px; row-gap: 6px; align-items: center; min-height: 96px; padding: 20px 24px; border: 1.5px solid var(--ink); background: var(--paper); color: var(--ink) !important; text-decoration: none; }
.coll-switch__item[aria-current="page"] { background: var(--dark); border-color: var(--dark); color: var(--on-dark) !important; }
.coll-switch__name { grid-column: 1; grid-row: 1; display: flex; align-items: center; gap: 12px; font-family: var(--serif); font-size: clamp(24px, 2.2vw, 32px); line-height: 1.1; }
.coll-switch__sub { grid-column: 1; grid-row: 2; font-size: 15px; color: var(--ink-2); }
.coll-switch__count { grid-column: 2; grid-row: 1 / span 2; font-family: var(--caps); font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; white-space: nowrap; color: var(--ink-2); }
.coll-switch__item[aria-current="page"] .coll-switch__sub { color: var(--on-dark-3); }
.coll-switch__item[aria-current="page"] .coll-switch__count { color: var(--on-dark-2); }
.coll-switch__item:not([aria-current="page"]):hover { background: var(--stone); }
.coll-switch__item:not([aria-current="page"]):hover .coll-switch__name { text-decoration: underline; text-decoration-thickness: 1px; }
.crumbs a { color: var(--ink-2) !important; min-height: 44px; display: inline-flex; align-items: center; }
.filters { background: var(--stone); padding: 24px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.filters .wrap { display: flex; flex-direction: column; gap: 16px; }
.filters__row { display: flex; align-items: center; gap: 12px 20px; flex-wrap: wrap; }
.filters__label { font-weight: 700; width: 80px; flex-shrink: 0; }
.filters__row .chips { flex: 1 1 400px; }
.filters__search { display: flex; align-items: center; gap: 12px 20px; flex-wrap: wrap; }
.filters__search .field-row { flex: 1 1 320px; max-width: 560px; }
.filters__clear { margin-left: auto; }
.results { padding: 40px 0 var(--band); }
.results__head { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px 24px; margin-bottom: 28px; }
.results__count { font-family: var(--serif); font-size: 28px; }
.results__where { display: inline-flex; align-items: center; gap: 8px; color: var(--ink-2); }
.stone-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 40px 28px; }
.stone-card { display: flex; flex-direction: column; gap: 10px; color: var(--ink) !important; text-decoration: none; }
.stone-card__img { display: block; aspect-ratio: 4 / 5; background: var(--stone); overflow: hidden; }
.stone-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.stone-card:hover img { transform: scale(1.03); }
.stone-card__name { font-family: var(--caps); font-size: 17px; letter-spacing: 0.1em; text-transform: uppercase; line-height: 1.3; }
.stone-card:hover .stone-card__name { text-decoration: underline; }
.stone-card__meta { font-size: 15px; color: var(--ink-2); }
.pager { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 12px; margin-top: 56px; }
.pager__list { display: flex; flex-wrap: wrap; gap: 6px; }
.pager__list a { min-width: 44px; min-height: 44px; display: inline-flex; align-items: center; justify-content: center; color: var(--ink) !important; text-decoration: none; border: 1px solid transparent; }
.pager__list a:hover { border-color: var(--ink); }
.pager__list a[aria-current="page"] { background: var(--ink); color: var(--ground) !important; }
.pager__list li[aria-hidden] { min-width: 24px; display: inline-flex; align-items: center; justify-content: center; }
.empty { max-width: 560px; display: flex; flex-direction: column; gap: 14px; align-items: flex-start; padding: 40px 0; }
.empty__title { font-family: var(--serif); font-size: 30px; }
.ask__inner { display: flex; justify-content: space-between; align-items: center; gap: 24px 64px; flex-wrap: wrap; }
.ask__inner > div:first-child { max-width: 640px; display: flex; flex-direction: column; gap: 12px; }
.ask p { color: var(--on-dark-2); font-size: 18px; }

/* ---------- Stone page ---------- */
.stone__top { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0 24px; padding-top: 20px; padding-bottom: 8px; }
.stone__top .crumbs { margin-bottom: 0; }
.stone__main { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr); gap: clamp(28px, 4vw, 64px); padding-bottom: var(--band); align-items: start; }
.gallery__stage { background: var(--stone); }
.gallery__photo { margin: 0; }
.js .gallery__photo:not(.is-active) { display: none; }
.gallery__photo img { width: 100%; max-height: 78vh; object-fit: contain; }
.gallery__caption { font-size: 14px; line-height: 1.45; color: var(--ink-2); padding: 10px 0 0; }
.gallery__views { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.view-btn { min-height: 48px; padding: 0 18px; border: 1.5px solid #B5AC9F; background: #fff; color: var(--ink); font-family: var(--caps); font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; cursor: pointer; }
.view-btn[aria-pressed="true"] { background: var(--ink); color: var(--ground); border-color: var(--ink); }
.no-js .gallery__views { display: none; }
.gallery__full { margin-top: 8px; }
.gallery__full a { display: inline-flex; align-items: center; gap: 8px; min-height: 44px; font-weight: 700; }
.stone__info { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 24px; }
.stone__info .kicker { margin-bottom: -6px; }
.held { background: var(--dark); color: var(--on-dark); padding: 18px 20px; display: flex; flex-direction: column; gap: 6px; }
.held__where { display: flex; align-items: center; gap: 10px; font-size: 18px; font-weight: 700; }
.held__ref { color: var(--on-dark-3); font-size: 16px; }
.stone__actions { display: flex; flex-direction: column; gap: 12px; }
.stone__actions-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.stone__actions-row .btn { padding: 0 12px; }
.stone__others { font-size: 15px; color: var(--ink-2); }
.stone__others a { display: inline-block; padding: 10px 2px; }
.specs__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr); gap: clamp(32px, 5vw, 80px); }
.spec-list { display: grid; grid-template-columns: minmax(120px, 0.8fr) minmax(0, 1.4fr); margin: 24px 0 0; font-size: 17px; }
.spec-list dt, .spec-list dd { margin: 0; padding: 14px 0; border-top: 1px solid var(--line-2); }
.spec-list dt { color: var(--ink-2); padding-right: 16px; }
.spec-list dt:last-of-type, .spec-list dd:last-of-type { border-bottom: 1px solid var(--line-2); }
.prose { font-size: 17px; line-height: 1.65; color: var(--ink-2); }
.mmg .prose > * + * { margin-top: 14px; }
.prose .h-sub { color: var(--ink); margin-bottom: 20px; }
.prose ul { list-style: disc; padding-left: 1.3em; }
.prose ol { list-style: decimal; padding-left: 1.3em; }
.prose h2:not(.h-sub), .prose h3 { font-family: var(--sans); font-weight: 700; font-size: 19px; color: var(--ink); margin-top: 24px; }
.prose img { margin: 16px 0; }
.enquire__grid { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.2fr); gap: clamp(32px, 5vw, 80px); }
.enquire__intro { display: flex; flex-direction: column; gap: 16px; }
.enquire__intro > p { color: var(--ink-2); font-size: 18px; }
.enquire__contact a { color: var(--ink) !important; font-size: 18px; }
.enquire__contact { color: var(--ink-2); }
.enquire__stone { display: flex; align-items: center; gap: 14px; padding: 14px; background: var(--stone); margin-top: 8px; }
.enquire__stone img { width: 72px; height: 72px; object-fit: cover; }
.form { display: flex; flex-direction: column; gap: 18px; }
.form__row--2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-weight: 700; }
.field input, .field select, .field textarea { width: 100%; min-height: 52px; padding: 12px 14px; border: 1.5px solid #8C857A; background: var(--paper); font-size: 17px; border-radius: 0; }
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--ink); }
.field__hint { font-size: 15px; color: var(--ink-2); }
.form .btn { align-self: flex-start; }
.form__trap { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.notice { padding: 16px 18px; font-weight: 700; border-left: 4px solid; }
.notice--ok { background: #E6EFE3; border-color: #2F6B3A; color: #1D4424; }
.notice--error { background: #F6E3DF; border-color: #A33A26; color: #6E2213; }
.stone-grid--four { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* ---------- About ---------- */
.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(32px, 5vw, 80px); align-items: center; }
.split__text { display: flex; flex-direction: column; gap: 20px; }
.split__text .kicker { margin-bottom: -6px; }
.split__text p { color: var(--ink-2); font-size: 18px; }
.split__img img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.timeline .h-section { margin-bottom: 40px; }
.timeline__grid { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); gap: clamp(32px, 5vw, 80px); align-items: start; }
.timeline__list li { display: grid; grid-template-columns: 96px minmax(0, 1fr); gap: 20px; padding: 16px 0; border-top: 1px solid var(--line-2); }
.timeline__list li:last-child { border-bottom: 1px solid var(--line-2); }
.timeline__year { font-family: var(--serif); font-size: 28px; line-height: 1; }
.timeline__pics { display: grid; gap: 20px; }
.timeline__pics figure { margin: 0; }
.timeline__pics img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.timeline__pics figcaption { font-family: var(--caps); font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-2); margin-top: 8px; }
.team__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 32px; }
.person { display: flex; flex-direction: column; gap: 8px; }
.person__img { display: block; aspect-ratio: 4 / 5; overflow: hidden; background: #2A2724; margin-bottom: 8px; }
.person__img img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.15); }
.person__img--none { display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 56px; color: var(--on-dark-3); }
.person__name { font-family: var(--serif); font-size: 26px; color: var(--on-dark); }
.person__job { font-family: var(--caps); font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); }
.person__bio { font-size: 15px; color: var(--on-dark-2); }
.awards .h-section { margin-bottom: 40px; }
.award-feature { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(28px, 4vw, 64px); align-items: center; margin-bottom: 48px; }
.award-feature__img img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.award-feature__text { display: flex; flex-direction: column; gap: 16px; }
.award-feature__text .kicker { margin-bottom: -4px; }
.award-feature__text > p { color: var(--ink-2); }
.quote { margin: 8px 0 0; padding-left: 20px; border-left: 3px solid var(--accent); }
.quote p { font-family: var(--serif); font-size: 26px; line-height: 1.3; color: var(--ink); }
.quote footer { margin-top: 8px; font-family: var(--caps); font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-2); }
.awards__list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.awards__list li { display: flex; flex-direction: column; gap: 6px; border-top: 1px solid var(--ink); padding-top: 16px; }
.awards__name { font-weight: 700; font-size: 18px; }
.awards__what { color: var(--ink-2); }

/* ---------- Shared pieces for Projects, Journal, Innovation, Contact, Search ---------- */
.visually-hidden { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.h-caps { font-family: var(--caps); font-weight: 500; font-size: clamp(30px, 3.6vw, 52px); line-height: 1.12; letter-spacing: 0.06em; text-transform: uppercase; text-wrap: balance; overflow-wrap: anywhere; }
.h-article { font-family: var(--serif); font-size: clamp(36px, 4.4vw, 60px); line-height: 1.08; letter-spacing: -0.01em; text-wrap: balance; overflow-wrap: anywhere; }
.mmg .band__title { margin-bottom: clamp(28px, 3.4vw, 48px); }
.link-plain { color: var(--ink) !important; text-decoration: none; display: inline-flex; align-items: center; min-height: 44px; }
.link-plain:hover { text-decoration: underline; }
.page-head--dark { background: var(--dark); color: var(--on-dark); }
.page-head--dark .crumbs, .page-head--dark .crumbs a { color: var(--on-dark-3) !important; }
.page-head--dark .page-head__intro { color: var(--on-dark-2); }
.page-head--dark :focus-visible { outline-color: var(--on-dark); }
.mmg .page-head__intro--under { margin-top: 18px; }
.page-head__side { display: flex; flex-direction: column; gap: 20px; max-width: 560px; }
.band--stone.ask p, .band--ground.ask p { color: var(--ink-2); }
.chip__count { font-size: 14px; opacity: 0.78; }
.chips--dark .chip { background: transparent; border-color: #5C564F; color: var(--on-dark) !important; }
.chips--dark .chip:hover { border-color: var(--on-dark); }
.chips--dark .chip--filter[aria-current="true"] { background: var(--on-dark); border-color: var(--on-dark); color: var(--dark) !important; }
.filters__row--dark { padding: 24px 0; border-top: 1px solid var(--dark-line); border-bottom: 1px solid var(--dark-line); margin-bottom: 32px; }
.filters__label--wide { width: auto; }
.mmg .results__count--dark { margin-bottom: 28px; }
.pager--dark .pager__list a { color: var(--on-dark) !important; }
.pager--dark .pager__list a:hover { border-color: var(--on-dark); }
.pager--dark .pager__list a[aria-current="page"] { background: var(--on-dark); color: var(--dark) !important; }
.pager--dark .pager__list li[aria-hidden] { color: var(--on-dark-3); }
.postnav { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; padding: 24px 0; margin-bottom: 56px; border-top: 1px solid var(--line-2); border-bottom: 1px solid var(--line-2); }
.postnav__link { display: flex; flex-direction: column; gap: 6px; color: inherit !important; text-decoration: none; }
.postnav__link--next { text-align: right; align-items: flex-end; }
.postnav__dir { display: inline-flex; align-items: center; gap: 8px; min-height: 32px; font-family: var(--caps); font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent-text); }
.postnav__title { font-family: var(--serif); font-size: 22px; line-height: 1.2; }
.postnav__link:hover .postnav__title { text-decoration: underline; text-decoration-thickness: 1px; }
.band--dark .postnav { border-color: var(--dark-line); }
.band--dark .postnav__dir { color: var(--accent); }
.search-group__n { font-family: var(--sans); font-size: 18px; color: var(--ink-2); margin-left: 8px; vertical-align: middle; }
.band--dark .search-group__n { color: var(--on-dark-3); }
.help__grid--four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.help__item h2 { font-family: var(--sans); font-size: 21px; font-weight: 700; }

/* Projects */
.project-list { padding-top: 8px; }
.project-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 48px 32px; }
.project-grid .project__img { aspect-ratio: 4 / 3; }
.project-grid .project__name { font-size: 18px; }
.hero--project .hero__panel { gap: 16px; }
.hero .h-caps { color: var(--on-dark); }
.page-head--dark .h-caps { margin-top: 4px; }
.crumbs-bar { padding-top: 16px; }
.crumbs-bar .crumbs { margin-bottom: 0; }
.project-about { padding-top: 32px; }
.specs__grid--flip { grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr); align-items: start; }
.prose--lead { font-size: 19px; color: var(--ink); }
.spec-list--row { max-width: 640px; margin-top: 0; }
.photos .h-sub { margin-bottom: 32px; }
.photo-grid { columns: 3 300px; column-gap: 20px; }
.photo-grid li { break-inside: avoid; margin-bottom: 20px; }
.photo-grid__item { position: relative; display: block; background: var(--line); }
.photo-grid__item img { width: 100%; }
.photo-grid__zoom { position: absolute; right: 10px; bottom: 10px; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background: rgba(20, 19, 18, 0.82); color: var(--on-dark); opacity: 0; transition: opacity 0.2s ease; }
.photo-grid__item:hover .photo-grid__zoom, .photo-grid__item:focus-visible .photo-grid__zoom { opacity: 1; }
.videos__grid { display: grid; gap: 24px; }
.video { aspect-ratio: 16 / 9; background: #000; }
.video iframe { width: 100%; height: 100%; border: 0; display: block; }
.more-projects .band__head { margin-top: 8px; }

/* Photo viewer (opens over the page from a photo grid) */
.lightbox { width: 100vw; height: 100vh; height: 100dvh; max-width: none; max-height: none; margin: 0; padding: 0; border: none; background: rgba(12, 11, 10, 0.97); color: var(--on-dark); overflow: hidden; }
.lightbox::backdrop { background: rgba(12, 11, 10, 0.97); }
.lightbox[open] { display: flex; flex-direction: column; }
.lightbox__stage { flex: 1 1 auto; min-height: 0; display: flex; align-items: center; justify-content: center; padding: 72px 80px 8px; }
.mmg .lightbox__img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; }
.lightbox__caption { padding: 12px 24px 24px; text-align: center; font-size: 15px; color: var(--on-dark-2); }
.lightbox__btn { position: absolute; width: 52px; height: 52px; display: inline-flex; align-items: center; justify-content: center; background: rgba(20, 19, 18, 0.7); border: 1px solid rgba(242, 237, 228, 0.5); color: var(--on-dark); cursor: pointer; }
.lightbox__btn:hover { background: rgba(242, 237, 228, 0.15); }
.lightbox__btn:focus-visible { outline: 3px solid var(--on-dark); outline-offset: 2px; }
.lightbox__close { top: 12px; right: 12px; }
.lightbox__prev { left: 12px; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 12px; top: 50%; transform: translateY(-50%); }

/* Journal */
.journal-lead { padding-top: 8px; }
.lead-article { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); gap: clamp(28px, 4vw, 64px); align-items: center; color: var(--ink) !important; text-decoration: none; }
.lead-article__img { display: block; aspect-ratio: 3 / 2; overflow: hidden; background: var(--stone); }
.lead-article__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.lead-article:hover .lead-article__img img { transform: scale(1.02); }
.lead-article__text { display: flex; flex-direction: column; gap: 16px; }
.lead-article__text .kicker { margin-bottom: 0; }
.lead-article__title { display: block; }
.lead-article:hover .lead-article__title { text-decoration: underline; text-decoration-thickness: 1px; }
.lead-article__excerpt { color: var(--ink-2); font-size: 18px; }
.lead-article .link-strong { gap: 10px; }
.mmg .journal__grid--list { row-gap: 56px; margin-top: 28px; }
.article-card__excerpt { color: var(--ink-2); font-size: 16px; }
.article-card__img--none { display: flex; align-items: center; justify-content: center; background: var(--stone); border: 1px solid var(--line); }
.band--stone .article-card__img--none { background: var(--ground); }
.mmg .article-card__img--none img { width: 64px; height: auto; object-fit: contain; opacity: 0.55; }
.postnav--caps .postnav__title { font-family: var(--caps); font-size: 18px; letter-spacing: 0.1em; text-transform: uppercase; line-height: 1.3; }

/* Article (and other text pages) */
.article__head, .article__body, .article__foot { max-width: calc(760px + 2 * var(--gutter)); }
.article__head { padding-top: clamp(24px, 3.4vw, 48px); padding-bottom: 32px; display: flex; flex-direction: column; }
.article__head .crumbs { margin-bottom: 8px; }
.article__head .kicker { margin-bottom: 12px; }
.mmg .article__standfirst { margin-top: 20px; font-size: 20px; line-height: 1.5; color: var(--ink-2); }
.article__hero { max-width: calc(1120px + 2 * var(--gutter)); margin-top: 0; margin-bottom: clamp(32px, 4vw, 56px); }
.article__hero img { width: 100%; max-height: 72vh; object-fit: cover; }
.article__hero--narrow { max-width: calc(760px + 2 * var(--gutter)); }
.article__body--last { padding-bottom: var(--band); }
.article__foot .postnav { margin-top: 56px; }
.prose.prose--article { max-width: 760px; font-size: 18px; line-height: 1.7; color: var(--ink); }
.prose.prose--article > * + * { margin-top: 1.1em; }
.prose.prose--article > :first-child { margin-top: 0; }
.prose.prose--article h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(28px, 2.6vw, 36px); line-height: 1.15; margin-top: 1.8em; color: var(--ink); }
.prose.prose--article h3 { font-family: var(--sans); font-weight: 700; font-size: 21px; line-height: 1.3; margin-top: 1.6em; color: var(--ink); }
.prose.prose--article h4 { font-weight: 700; font-size: 18px; margin-top: 1.4em; }
.prose.prose--article li + li { margin-top: 6px; }
.prose.prose--article strong { color: var(--ink); }
.prose.prose--article figure { margin: 1.6em 0; }
.prose.prose--article figure img, .prose.prose--article p > img { width: 100%; }
.prose.prose--article figcaption { font-size: 15px; color: var(--ink-2); margin-top: 8px; }
.prose.prose--article blockquote { margin: 1.6em 0; padding-left: 20px; border-left: 3px solid var(--accent); font-family: var(--serif); font-size: 24px; line-height: 1.35; }
.prose.prose--article blockquote p { margin: 0; }
.prose.prose--article table { width: 100%; border-collapse: collapse; font-size: 16px; line-height: 1.45; }
.prose.prose--article > table { display: block; overflow-x: auto; }
.prose.prose--article figure:has(> table), .prose.prose--article .wp-block-table { overflow-x: auto; }
.prose.prose--article th, .prose.prose--article td { padding: 10px 12px; border-bottom: 1px solid var(--line-2); text-align: left; vertical-align: top; }
.prose.prose--article th { font-weight: 700; background: var(--stone); }
.prose.prose--article iframe { max-width: 100%; }
.prose.prose--article iframe[src*="youtube"], .prose.prose--article iframe[src*="vimeo"] { width: 100%; height: auto; aspect-ratio: 16 / 9; }
.prose.prose--article #ez-toc-container { background: var(--stone); border: none; border-radius: 0; padding: 16px 20px; box-shadow: none; }
.band--stone .prose.prose--article th { background: var(--ground); }

/* Innovation */
.innov-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 64px 40px; }
.innov-grid--three { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 32px; }
.innov-card { display: flex; flex-direction: column; gap: 14px; color: var(--ink) !important; text-decoration: none; }
.innov-card__img { display: block; aspect-ratio: 3 / 2; overflow: hidden; background: var(--stone); }
.innov-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.innov-card:hover .innov-card__img img { transform: scale(1.02); }
.innov-card__img--portrait img { object-position: center 15%; }
.innov-card__img--none { display: flex; align-items: center; justify-content: center; border: 1px solid var(--line); }
.mmg .innov-card__img--none img { width: 96px; height: auto; object-fit: contain; opacity: 0.45; }
.innov-card:hover .innov-card__img--none img { transform: none; }
.innov-card__name { font-family: var(--serif); font-size: clamp(28px, 2.6vw, 40px); line-height: 1.1; }
.innov-grid--three .innov-card__name { font-size: 26px; }
.innov-card:hover .innov-card__name { text-decoration: underline; text-decoration-thickness: 1px; }
.innov-card__text { color: var(--ink-2); font-size: 17px; max-width: 580px; }
.innov-card .link-strong { gap: 10px; min-height: 32px; }
.how__row + .how__row { margin-top: clamp(48px, 6vw, 88px); }
.split--flip .split__img { order: 2; }
.split--solo { grid-template-columns: minmax(0, 1fr); max-width: 760px; } /* text only, when no photo is large enough */
.band--dark .split__text p { color: var(--on-dark-2); }
.how .split__img img { aspect-ratio: 3 / 2; }
.stone__main > .stone__info:only-child { grid-column: 1 / -1; max-width: 760px; position: static; }

/* ---------- Responsive ---------- */
/* The header: six menu items plus search, showroom, language and Enquire need about 1,300px in one row. */
@media (max-width: 1560px) {
  .main-nav ul { gap: clamp(16px, 1.7vw, 28px); }
  .main-nav a { letter-spacing: 0.12em; }
}
@media (max-width: 1400px) {
  .site-header__bar { gap: 24px; }
  .main-nav ul { gap: 20px; }
  .main-nav a { font-size: 14px; letter-spacing: 0.12em; }
  .header-tools { gap: 8px; }
}
@media (max-width: 1260px) {
  .menu-btn { display: inline-flex; }
  .main-nav { display: none; position: absolute; left: 0; right: 0; top: 100%; background: var(--ground); padding: 16px var(--gutter) 28px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); box-shadow: 0 16px 32px rgba(20, 19, 18, 0.12); }
  .main-nav.is-open { display: block; }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: 0; }
  .main-nav a { font-size: 17px; min-height: 52px; width: 100%; border-bottom: 1px solid var(--line); }
  .main-nav a[aria-current="page"] { border-bottom-color: var(--accent-line); }
  .lang-switch--menu { display: flex; gap: 24px; margin-top: 16px; }
  .lang-switch--menu a { color: var(--ink) !important; min-height: 48px; display: inline-flex; align-items: center; }
  .lang-switch--menu a[aria-current="true"] { text-decoration: underline; text-decoration-color: var(--accent-line); text-decoration-thickness: 2px; }
  .site-header__bar { justify-content: space-between; }
  .header-tools { gap: 8px; }
}
@media (max-width: 1200px) {
  .showrooms__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 40px 32px; }
  .type-tiles { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
  .stone-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .team__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 1060px) {
  .type-tiles { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .stone__main { grid-template-columns: minmax(0, 1fr); }
  .stone__info { position: static; }
  .specs__grid, .enquire__grid, .split, .timeline__grid, .award-feature { grid-template-columns: minmax(0, 1fr); }
  .help__grid, .journal__grid { grid-template-columns: minmax(0, 1fr); gap: 32px; }
  .journal__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .awards__list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .feature { min-height: 640px; }
}
@media (max-width: 720px) {
  body.mmg { font-size: 16px; }
  .site-header__bar { min-height: 64px; padding-right: 8px; }
  .brand img { width: 72px; }
  .picker__button span, .lang-switch--bar, .btn--header { display: none; }
  .picker__button { padding: 0; width: 48px; justify-content: center; border: none; }
  .icon-btn { border: none; }
  .hero { min-height: auto; flex-direction: column; align-items: stretch; }
  .hero__img { position: relative; height: 56svh; }
  .hero__img img { position: absolute; }
  .hero--short .hero__img { height: 40svh; }
  .hero__panel { margin: 0; width: 100%; background: var(--dark); padding: 28px var(--gutter) 36px; }
  .site-header--over { position: relative; background: var(--ground); border-bottom-color: var(--line); }
  .hero__caption { position: static; max-width: none; padding: 0 var(--gutter) 24px; background: var(--dark); }
  .btn-row .btn { width: 100%; }
  .type-tiles { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
  .coll-switch { grid-template-columns: minmax(0, 1fr); gap: 12px; margin-top: 24px; }
  .coll-switch__item { min-height: 0; padding: 16px 18px; }
  .coll-switch__name { font-size: 22px; }
  .type-tile__img { aspect-ratio: 1 / 1; }
  .colour-row__label { width: 100%; }
  .project--lead .project__img { aspect-ratio: 4 / 3; }
  .projects__pair, .showrooms__grid, .journal__grid, .team__grid, .awards__list { grid-template-columns: minmax(0, 1fr); }
  .feature { flex-direction: column; min-height: auto; }
  .feature__img { position: relative; height: 360px; }
  .feature__img img { position: absolute; }
  .feature__panel { margin: 0; width: 100%; background: var(--dark); }
  .stone-grid, .stone-grid--four { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 16px; }
  .stone-card__name { font-size: 15px; }
  .filters__label { width: 100%; }
  .filters__clear { margin-left: 0; }
  .form__row--2, .stone__actions-row { grid-template-columns: minmax(0, 1fr); }
  .form .btn { align-self: stretch; }
  .timeline__list li { grid-template-columns: 72px minmax(0, 1fr); }
  .showroom__address { min-height: 0; }
  .site-footer__brand img { width: 88px; }
}
@media (max-width: 380px) {
  .stone-grid, .stone-grid--four, .type-tiles { grid-template-columns: minmax(0, 1fr); }
}

/* Responsive rules for the Projects, Journal, Innovation, Contact and Search pages */
@media (max-width: 1060px) {
  .project-grid, .innov-grid--three { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .help__grid--four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lead-article, .specs__grid--flip { grid-template-columns: minmax(0, 1fr); }
  .split--flip .split__img { order: 0; }
}
@media (max-width: 720px) {
  .project-grid, .innov-grid, .innov-grid--three, .help__grid--four { grid-template-columns: minmax(0, 1fr); }
  .project-grid { gap: 40px; }
  .postnav { grid-template-columns: minmax(0, 1fr); gap: 16px; }
  .postnav__link--next { text-align: left; align-items: flex-start; }
  .filters__row--dark .filters__label { width: 100%; }
  .lightbox__stage { padding: 64px 8px 8px; }
  .lightbox__prev, .lightbox__next { top: auto; bottom: 12px; transform: none; }
  .lightbox__caption { padding: 12px 72px 24px; }
  .photo-grid { columns: 1; }
  .prose.prose--article { font-size: 17px; }
  .article__standfirst { font-size: 18px; }
}

/* Logged-in team members see WordPress's admin bar at the top; keep the floating header below it. */
.admin-bar .site-header--over { top: 32px; }
@media (max-width: 782px) { .admin-bar .site-header--over { top: 46px; } }
@media (max-width: 720px) { .admin-bar .site-header--over { top: 0; } }

/* House lines (SINISO by MM, SINTERRA by MM): brand blocks on the engineered surfaces page. */
.house { margin-top: 40px; margin-bottom: 8px; }
.house__inner { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 48px; padding: 40px 48px 44px; background: var(--paper); border: 1px solid var(--line); border-top: 3px solid var(--accent); }
.house__logo { display: block; width: 288px; max-width: 100%; height: auto; margin: 6px 0 30px; }
.house__facts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px 24px; margin: 0; }
.house__facts div { border-top: 1px solid var(--line); padding-top: 10px; }
.house__facts dt { font-family: var(--caps); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-2); }
.house__facts dd { margin: 4px 0 0; font-size: 15px; line-height: 1.4; }
.house__text { display: flex; flex-direction: column; gap: 18px; }
.house__text p { margin: 0; color: var(--ink-2); text-wrap: pretty; }
.house__text .btn-row { margin-top: 8px; }
.house--sinterra .house__inner { align-items: center; padding-bottom: 40px; }
.house__logo--wide { width: 360px; margin: 6px 0 0; }
@media (max-width: 1000px) {
  .house__inner { grid-template-columns: minmax(0, 1fr); gap: 32px; padding: 32px; }
}
@media (max-width: 720px) {
  .house { margin-top: 24px; }
  .house__inner { padding: 24px 18px 28px; gap: 24px; }
  .house__logo { width: 220px; margin-bottom: 22px; }
  .house__logo--wide { width: 260px; margin-bottom: 0; }
  .house__facts { grid-template-columns: minmax(0, 1fr); gap: 12px; }
}

/* Innovation pages: the photos after the main one sit in a grid above the text. */
.innov-photos { margin-top: calc(-1 * var(--band) + 16px); padding-bottom: var(--band); }
.photo-grid__caption { font-size: 14px; line-height: 1.45; color: var(--ink-2); padding: 8px 0 0; }
@media (min-width: 721px) {
  .photo-grid--two { columns: auto; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px 20px; align-items: start; }
  .photo-grid--two li { margin-bottom: 0; }
}
