/* ==========================================================================
   Sensilchem — light industrial design system
   Built on the pattern shared by Wacker / Grace / Cabot:
   white base + 2–3 grey steps for module separation + brand colour under 5%.
   ========================================================================== */

:root {
  /* --- Surfaces: three steps, exactly like Wacker's module-background tokens --- */
  --white:      #ffffff;
  --surface-1:  #F7F7F5;   /* section alt */
  --surface-2:  #EDEDE9;   /* cards, wells */
  --line:       #DCDCD6;   /* hairline */
  --line-soft:  #EBEBE6;

  /* --- Ink: never pure black --- */
  --ink:        #1B1D1C;
  --ink-2:      #4A4E4C;
  --ink-3:      #7C817E;

  /* --- Brand: iron oxide. Used on <5% of the surface area --- */
  --brand:      #A93B2A;
  --brand-600:  #8E2F20;
  --brand-700:  #6E241A;
  --brand-tint: #FAEFEC;

  /* --- Secondary accent: brass. Micro-accents only --- */
  --brass:      #A8802F;
  --brass-tint: #FBF3E2;

  /* --- Type --- */
  --font-display: "Roboto Slab", Georgia, serif;   /* Grace-style serif headings */
  --font-body: "Inter", "Helvetica Neue", Arial, system-ui, sans-serif;

  /* --- Metrics --- */
  --wrap: 1220px;
  --pad: clamp(1rem, 4vw, 2rem);
  --r: 3px;
  --r-lg: 8px;
  --head-h: 72px;
  --shadow: 0 1px 2px rgba(27,29,28,.05), 0 6px 20px rgba(27,29,28,.05);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0; background: var(--white); color: var(--ink-2);
  font-family: var(--font-body); font-size: 16px; line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--brand); }
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--ink); line-height: 1.18; margin: 0 0 .7rem; font-weight: 600; }
.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: var(--pad); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem; justify-content: center;
  padding: .72rem 1.35rem; border-radius: var(--r); font-size: .93rem; font-weight: 600;
  text-decoration: none; border: 1px solid transparent; cursor: pointer;
  transition: background .18s, color .18s, border-color .18s;
}
.btn--primary { background: var(--brand); color: #fff; }
.btn--primary:hover { background: var(--brand-600); }
.btn--outline { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--outline:hover { border-color: var(--ink); }
.btn--text { padding: 0; color: var(--brand); font-weight: 600; text-decoration: none; }
.btn--text:hover { text-decoration: underline; }
.btn--sm { padding: .5rem 1rem; font-size: .85rem; }

/* ---------- Header: single light row, no dark topbar ---------- */
.hdr { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.96); backdrop-filter: blur(8px); border-bottom: 1px solid var(--line); }
.hdr__bar { display: flex; align-items: center; gap: 1.5rem; height: var(--head-h); }
.logo { display: flex; align-items: center; gap: .6rem; text-decoration: none; margin-right: auto; }
.logo__mark { width: 30px; height: 30px; flex: none; }
.logo__txt { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--ink); letter-spacing: -.01em; line-height: 1; }
.logo__txt em { font-style: normal; color: var(--brand); }
.logo__sub { display: block; font-family: var(--font-body); font-size: .58rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3); margin-top: .22rem; }
.mainnav { display: flex; align-items: center; gap: 1.6rem; list-style: none; margin: 0; padding: 0; }
.mainnav > li { position: relative; }
.mainnav a { color: var(--ink); text-decoration: none; font-size: .93rem; font-weight: 500; padding: .4rem 0; display: inline-block; border-bottom: 2px solid transparent; }
.mainnav a:hover, .mainnav a[aria-current] { color: var(--brand); border-bottom-color: var(--brand); }
.hdr__cta { display: flex; gap: .6rem; }
.burger { display: none; background: none; border: 0; padding: .4rem; color: var(--ink); cursor: pointer; }

/* dropdown */
.drop { position: absolute; top: 100%; left: -1rem; min-width: 320px; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow); padding: .6rem; opacity: 0; visibility: hidden; transform: translateY(6px); transition: .18s; }
.mainnav li:hover .drop, .mainnav li:focus-within .drop { opacity: 1; visibility: visible; transform: none; }
.drop a { display: flex; gap: .7rem; padding: .55rem .7rem; border-radius: var(--r); border: 0; font-weight: 500; }
.drop a:hover { background: var(--surface-1); border: 0; }
.drop b { color: var(--brand); font-variant-numeric: tabular-nums; font-size: .8rem; padding-top: .15rem; }
.drop span { display: block; font-size: .74rem; color: var(--ink-3); line-height: 1.5; }

@media (max-width: 1040px) {
  .burger { display: block; order: 3; }
  .hdr__cta { display: none; }
  .mainnav { display: none; order: 4; width: 100%; flex-direction: column; align-items: stretch; gap: 0; padding-bottom: .8rem; }
  .mainnav.open { display: flex; }
  .hdr__bar { flex-wrap: wrap; height: auto; padding-block: .8rem; }
  .mainnav a { padding: .7rem 0; border-bottom: 1px solid var(--line-soft); width: 100%; }
  .drop { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; padding: 0 0 .4rem 1rem; min-width: 0; display: none; }
  .mainnav li.open .drop { display: block; }
}

/* ---------- Hero: split, light, photo on the right ---------- */
.hero { background: var(--surface-1); border-bottom: 1px solid var(--line); }
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center; padding-block: clamp(2.5rem, 6vw, 4.5rem); }
.kicker { display: inline-flex; align-items: center; gap: .6rem; font-size: .74rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--brand); margin-bottom: 1rem; }
.kicker::before { content: ""; width: 26px; height: 2px; background: var(--brand); }
.hero h1 { font-size: clamp(1.95rem, 4vw, 3.15rem); letter-spacing: -.02em; margin-bottom: 1rem; }
.hero__lead { font-size: 1.05rem; color: var(--ink-2); max-width: 54ch; margin: 0 0 1.6rem; }
.hero__cta { display: flex; gap: .8rem; flex-wrap: wrap; }
.hero__fig { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); }
@media (max-width: 900px) { .hero__grid { grid-template-columns: 1fr; } }

/* ---------- Stat strip ---------- */
.stats { border-bottom: 1px solid var(--line); background: #fff; }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); }
.stat { background: #fff; padding: 1.5rem 1.2rem; text-align: center; }
.stat b { display: block; font-family: var(--font-display); font-size: 1.6rem; color: var(--brand); line-height: 1; margin-bottom: .35rem; }
.stat span { font-size: .78rem; text-transform: uppercase; letter-spacing: .09em; color: var(--ink-3); }
@media (max-width: 720px) { .stats__grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Sections ---------- */
.sec { padding-block: clamp(2.8rem, 6vw, 4.6rem); }
.sec--alt { background: var(--surface-1); }
.sec--line { border-top: 1px solid var(--line); }
.sec__head { max-width: 74ch; margin-bottom: 2rem; }
.sec__head h2 { font-size: clamp(1.45rem, 2.8vw, 2.15rem); letter-spacing: -.015em; }
.sec__head p { margin: 0; color: var(--ink-2); }
.sec__head--row { display: flex; justify-content: space-between; align-items: flex-end; gap: 1.5rem; max-width: none; }

/* ---------- Application cards (the core module) ---------- */
.apps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.app {
  display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-lg); overflow: hidden; text-decoration: none; color: inherit;
  transition: border-color .18s, box-shadow .18s, transform .18s;
}
.app:hover { border-color: var(--brand); box-shadow: var(--shadow); transform: translateY(-2px); }
.app__img { aspect-ratio: 16/10; background: var(--surface-2); overflow: hidden; }
.app__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.app:hover .app__img img { transform: scale(1.04); }
.app__body { padding: 1.15rem 1.25rem 1.3rem; display: flex; flex-direction: column; flex: 1; }
.app__num { font-size: .72rem; font-weight: 700; letter-spacing: .12em; color: var(--brass); margin-bottom: .45rem; }
.app__body h3 { font-size: 1.08rem; margin-bottom: .45rem; }
.app__pain { font-size: .9rem; color: var(--ink-2); margin: 0 0 .9rem; flex: 1; }
.app__go { font-size: .84rem; font-weight: 600; color: var(--brand); }
@media (max-width: 980px) { .apps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .apps { grid-template-columns: 1fr; } }

/* ---------- Product index table (Cabot pattern) ---------- */
.tablewrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r-lg); background: #fff; }
table.idx { width: 100%; border-collapse: collapse; font-size: .89rem; min-width: 760px; }
table.idx th { background: var(--surface-1); text-align: left; padding: .8rem 1rem; font-weight: 600; color: var(--ink); border-bottom: 1px solid var(--line); white-space: nowrap; font-size: .8rem; text-transform: uppercase; letter-spacing: .06em; }
table.idx td { padding: .85rem 1rem; border-bottom: 1px solid var(--line-soft); vertical-align: top; }
table.idx tr:last-child td { border-bottom: 0; }
table.idx tr:hover td { background: var(--surface-1); }
table.idx .g { font-family: var(--font-display); font-weight: 600; color: var(--ink); white-space: nowrap; }
table.idx .t { color: var(--ink-3); font-size: .84rem; }
table.idx a { color: var(--brand); text-decoration: none; font-weight: 600; white-space: nowrap; }
table.idx a:hover { text-decoration: underline; }

/* ---------- Effects / functions row (Evonik axis) ---------- */
.fx { display: grid; grid-template-columns: repeat(5, 1fr); gap: .8rem; }
.fx a {
  display: flex; flex-direction: column; align-items: center; gap: .55rem; text-align: center;
  padding: 1.15rem .7rem; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  text-decoration: none; color: var(--ink); font-size: .85rem; font-weight: 500; transition: .18s;
}
.fx a:hover { border-color: var(--brand); color: var(--brand); }
.fx svg { width: 26px; height: 26px; stroke: var(--brass); fill: none; stroke-width: 1.5; }
@media (max-width: 900px) { .fx { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .fx { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Generic cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.cards--2 { grid-template-columns: repeat(2, 1fr); }
.cards--4 { grid-template-columns: repeat(4, 1fr); }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.4rem 1.35rem; }
.card--link { text-decoration: none; color: inherit; transition: .18s; display: block; }
.card--link:hover { border-color: var(--brand); box-shadow: var(--shadow); }
.card h3 { font-size: 1.02rem; margin-bottom: .5rem; }
.card p { margin: 0; font-size: .91rem; color: var(--ink-2); }
.card__ico { width: 34px; height: 34px; stroke: var(--brand); fill: none; stroke-width: 1.5; margin-bottom: .8rem; }
@media (max-width: 980px) { .cards, .cards--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .cards, .cards--2, .cards--4 { grid-template-columns: 1fr; } }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; counter-reset: s; }
.step { background: #fff; border: 1px solid var(--line); border-top: 3px solid var(--brand); border-radius: var(--r-lg); padding: 1.3rem 1.15rem; }
.step b { display: block; font-family: var(--font-display); color: var(--brass); font-size: .9rem; margin-bottom: .5rem; }
.step h3 { font-size: .98rem; margin-bottom: .4rem; }
.step p { margin: 0; font-size: .86rem; color: var(--ink-2); }
@media (max-width: 1000px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

/* ---------- Quick selector (Grace's text-based product finder) ---------- */
.pick { background: var(--brand-tint); border: 1px solid #F0DBD5; border-left: 3px solid var(--brand); border-radius: var(--r-lg); padding: 1.3rem 1.4rem; }
.pick h3 { font-size: 1rem; margin-bottom: .8rem; }
.pick dl { margin: 0; display: grid; grid-template-columns: auto 1fr; gap: .55rem 1rem; align-items: baseline; }
.pick dt { font-size: .88rem; color: var(--ink-2); }
.pick dt::after { content: " →"; color: var(--brand); }
.pick dd { margin: 0; font-family: var(--font-display); font-weight: 600; color: var(--brand-700); font-size: .92rem; }
@media (max-width: 560px) { .pick dl { grid-template-columns: 1fr; gap: .1rem 0; } .pick dd { margin-bottom: .6rem; } }

/* ---------- Page head (interior) ---------- */
.phead { background: var(--surface-1); border-bottom: 1px solid var(--line); padding-block: clamp(1.8rem, 4vw, 2.9rem); }
.phead h1 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); letter-spacing: -.02em; margin-block: .6rem .7rem; }
.phead p { margin: 0; max-width: 74ch; color: var(--ink-2); }
.crumbs { font-size: .8rem; color: var(--ink-3); display: flex; gap: .45rem; flex-wrap: wrap; }
.crumbs a { color: var(--ink-3); text-decoration: none; }
.crumbs a:hover { color: var(--brand); }

/* ---------- Detail layout ---------- */
.split { display: grid; grid-template-columns: minmax(0, 1fr) 310px; gap: clamp(1.5rem, 4vw, 3rem); align-items: start; }
.split > * { min-width: 0; }
@media (max-width: 980px) { .split { grid-template-columns: 1fr; } }
.aside { background: var(--surface-1); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.35rem 1.3rem; }
.aside h3 { font-size: .95rem; margin-bottom: .8rem; }
.aside dl { margin: 0 0 1.1rem; display: flex; flex-direction: column; gap: .7rem; }
.aside dt { font-size: .72rem; text-transform: uppercase; letter-spacing: .09em; color: var(--ink-3); }
.aside dd { margin: 0; font-size: .89rem; color: var(--ink); }
.aside .btn { width: 100%; margin-bottom: .5rem; }

.prose h2 { font-size: clamp(1.2rem, 2.2vw, 1.55rem); margin: 2.2rem 0 .8rem; }
.prose h2:first-child { margin-top: 0; }
.prose ul { padding-left: 1.1rem; margin: 0 0 1rem; display: flex; flex-direction: column; gap: .45rem; }
.prose li::marker { color: var(--brand); }
.prose p { margin: 0 0 1rem; }

/* ---------- Grade request rows ---------- */
.greq { display: flex; flex-direction: column; gap: .6rem; }
.greq__row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .95rem 1.15rem; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); }
.greq__row:hover { border-color: var(--brand); }
.greq__row b { font-family: var(--font-display); color: var(--ink); font-size: .98rem; display: block; }
.greq__row span { font-size: .82rem; color: var(--ink-3); }
@media (max-width: 640px) { .greq__row { flex-direction: column; align-items: stretch; } .greq__row .btn { width: 100%; } }

/* ---------- Notes ---------- */
.note { padding: 1rem 1.2rem; border-radius: var(--r-lg); font-size: .89rem; line-height: 1.7; }
.note--scope { background: var(--brass-tint); border-left: 3px solid var(--brass); }
.note--ref { background: var(--surface-1); border-left: 3px solid var(--ink-3); color: var(--ink-2); }

/* ---------- Figure ---------- */
figure { margin: 0 0 1.4rem; }
figure img { border-radius: var(--r-lg); border: 1px solid var(--line); width: 100%; }
figcaption { font-size: .82rem; color: var(--ink-3); margin-top: .55rem; line-height: 1.6; }

/* ---------- CTA band ---------- */
.band { background: var(--ink); color: rgba(255,255,255,.82); padding-block: clamp(2.4rem, 5vw, 3.6rem); }
.band h2 { color: #fff; }
.band__grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 2rem; align-items: center; }
.band .btn--outline { color: #fff; border-color: rgba(255,255,255,.4); }
.band .btn--outline:hover { border-color: #fff; }
.person { display: flex; align-items: center; gap: .9rem; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14); border-radius: var(--r-lg); padding: 1rem 1.1rem; }
.person img { width: 54px; height: 54px; border-radius: 50%; flex: none; }
.person b { color: #fff; display: block; font-family: var(--font-display); font-size: .95rem; }
.person span { font-size: .82rem; color: rgba(255,255,255,.62); }
.person a { color: #fff; font-size: .84rem; }
@media (max-width: 820px) { .band__grid { grid-template-columns: 1fr; } }

/* ---------- Footer: light ---------- */
.ftr { background: var(--surface-1); border-top: 1px solid var(--line); padding-top: clamp(2.2rem, 5vw, 3.4rem); }
.ftr__grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr; gap: clamp(1.4rem, 3vw, 2.6rem); padding-bottom: 2.2rem; }
.ftr h4 { font-size: .74rem; text-transform: uppercase; letter-spacing: .12em; color: var(--ink); margin-bottom: .9rem; padding-bottom: .5rem; border-bottom: 1px solid var(--line); }
.ftr ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .45rem; }
.ftr a { color: var(--ink-2); text-decoration: none; font-size: .87rem; }
.ftr a:hover { color: var(--brand); }
.ftr__about p { font-size: .87rem; color: var(--ink-2); margin: .9rem 0 0; }
.ftr__addr { font-size: .78rem; color: var(--ink-3); margin-top: .9rem; line-height: 1.65; }
.ftr__bottom { border-top: 1px solid var(--line); padding-block: 1.2rem; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .78rem; color: var(--ink-3); }
@media (max-width: 900px) { .ftr__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .ftr__grid { grid-template-columns: 1fr; } }

/* ---------- Image placeholder (framework preview only) ---------- */
.ph {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .5rem;
  background: repeating-linear-gradient(135deg, #EDEDE9 0 12px, #E6E6E1 12px 24px);
  color: var(--ink-3); text-align: center; padding: 1.2rem; min-height: 160px; height: 100%;
}
.ph b { font-family: var(--font-display); font-size: .82rem; color: var(--brand); letter-spacing: .04em; text-transform: uppercase; }
.ph span { font-size: .78rem; line-height: 1.5; max-width: 34ch; }
.ph svg { width: 26px; height: 26px; stroke: var(--ink-3); fill: none; stroke-width: 1.4; }

/* ---------- Overflow containment ---------- */
.ph { width: 100%; max-width: 100%; }
@media (max-width: 700px) { .ph { aspect-ratio: 4/3 !important; } }
.tablewrap { max-width: 100%; }
html, body { overflow-x: clip; max-width: 100%; }

/* ---------- Typical-value cells ---------- */
td.kd { min-width: 190px; }
.kv { display: flex; flex-direction: column; margin-bottom: .35rem; }
.kv:last-child { margin-bottom: 0; }
.kv span { font-size: .72rem; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-3); line-height: 1.4; }
.kv b { font-family: var(--font-display); font-size: .86rem; color: var(--ink); font-weight: 600; }
.greq__row span { font-size: .8rem; color: var(--ink-2); }
table.idx { min-width: 900px; }

/* ---------- Hero side panel (stands in for the plant photo) ---------- */
.hero__side { }
.heropanel { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.5rem 1.4rem; }
.heropanel__eyebrow { display: block; font-size: .7rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--ink-3); padding-bottom: .8rem; border-bottom: 1px solid var(--line); }
.heropanel__list { list-style: none; margin: .5rem 0 0; padding: 0; }
.heropanel__list li + li { border-top: 1px solid var(--line-soft); }
.heropanel__list a { display: flex; align-items: baseline; gap: .8rem; padding: .55rem 0;
  text-decoration: none; color: var(--ink); font-size: .93rem; font-weight: 500; }
.heropanel__list a:hover { color: var(--brand); }
.heropanel__list b { color: var(--brass); font-size: .78rem; font-variant-numeric: tabular-nums; min-width: 1.4rem; }
.heropanel__foot { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1rem;
  padding-top: 1rem; border-top: 1px solid var(--line); }
.heropanel__foot b { display: block; font-family: var(--font-display); color: var(--brand); font-size: 1.05rem; }
.heropanel__foot span { font-size: .74rem; color: var(--ink-3); text-transform: uppercase; letter-spacing: .07em; }

/* ---------- Documentation strip ---------- */
.docstrip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line);
  border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.docstrip > div { background: #fff; padding: 1.2rem 1.15rem; }
.docstrip b { display: block; font-family: var(--font-display); color: var(--brand); font-size: 1rem; margin-bottom: .35rem; }
.docstrip span { font-size: .84rem; color: var(--ink-2); line-height: 1.6; }
@media (max-width: 860px) { .docstrip { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .docstrip { grid-template-columns: 1fr; } }

/* ---------- Production stages (text, no photo claim) ---------- */
.stages { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.stage { background: #fff; border: 1px solid var(--line); border-top: 3px solid var(--brass);
  border-radius: var(--r-lg); padding: 1.3rem 1.15rem; }
.stage b { display: block; font-family: var(--font-display); color: var(--brass); font-size: 1.05rem; margin-bottom: .5rem; }
.stage h3 { font-size: .98rem; margin-bottom: .45rem; }
.stage p { margin: 0; font-size: .86rem; color: var(--ink-2); line-height: 1.65; }
@media (max-width: 1000px) { .stages { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .stages { grid-template-columns: 1fr; } }

/* ---------- Contact card (replaces the portrait block) ---------- */
.contactcard { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.16);
  border-left: 3px solid var(--brass); border-radius: var(--r-lg); padding: 1.2rem 1.3rem; }
.contactcard__label { display: block; font-size: .7rem; text-transform: uppercase; letter-spacing: .12em;
  color: rgba(255,255,255,.55); margin-bottom: .5rem; }
.contactcard b { display: block; font-family: var(--font-display); color: #fff; font-size: 1.1rem; margin-bottom: .35rem; }
.contactcard a { display: block; color: var(--brass); text-decoration: none; font-size: .92rem; }
.contactcard a:hover { text-decoration: underline; }
.contactcard__tel { display: block; font-size: .85rem; color: rgba(255,255,255,.6); margin-top: .2rem; }

/* ---------- Real photography ---------- */
.app__img picture, .app__img img { width: 100%; height: 100%; display: block; }
.app__img img { object-fit: cover; transition: transform .4s; }
figure picture img { width: 100%; height: auto; border-radius: var(--r-lg); border: 1px solid var(--line); }
figure picture { display: block; }
