/* ============================================================
   CplusE Eco Tech Limited — "Assemble" style
   Minimal, refined, gallery/portfolio aesthetic.
   Thin sans-serif · wide tracking · warm muted neutrals ·
   generous negative space · asymmetric but balanced · no hard shadows.
   ============================================================ */

/* ---- Font: Jost (self-hosted variable woff2, 300–500) ---- */
@font-face {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 300 500;
  font-display: swap;
  src: url(../fonts/jost-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 300 500;
  font-display: swap;
  src: url(../fonts/jost-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308,
    U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ---- Tokens ---- */
:root {
  /* warm muted neutrals — beige · powder rose · terracotta · taupe · anthracite */
  --beige:      #ded2c1;
  --powder:     #e7d7ce;
  --terracotta: #b98c74;
  --taupe:      #97897a;
  --anthracite: #262523;

  --ink:        #2c2a27;
  --ink-500:    #6c655e;
  --paper:      #fdfcfa;
  --shell:      #f4f1eb;
  --surface:    #ffffff;
  --line:       #e4dfd6;
  --line-strong:#d3ccc0;

  --container:  1200px;
  --measure:    64ch;
  --gutter:     clamp(1.4rem, 5vw, 3.25rem);
  --section-y:  clamp(5rem, 11vw, 9.5rem);

  --step--1: 0.78rem;
  --step-0:  1.0rem;
  --step-1:  1.16rem;
  --step-2:  clamp(1.35rem, 1.1rem + 1vw, 1.7rem);
  --step-3:  clamp(1.7rem, 1.3rem + 1.6vw, 2.3rem);
  --step-4:  clamp(2rem, 1.4rem + 2.4vw, 3rem);
  --step-5:  clamp(2.3rem, 1.5rem + 2.6vw, 3.55rem);

  --font: 'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial,
    'Helvetica Neue', 'PingFang HK', 'Microsoft JhengHei', sans-serif;

  --header-h: 84px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: hidden; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  font-family: var(--font);
  font-size: var(--step-0);
  font-weight: 400;
  line-height: 1.8;
  color: var(--ink-500);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
strong { font-weight: 500; color: var(--ink); }

h1, h2, h3, h4 {
  font-family: var(--font);
  font-weight: 300;
  line-height: 1.1;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  overflow-wrap: break-word;
}
h1 { font-size: var(--step-5); font-weight: 300; letter-spacing: 0.03em; line-height: 1.12; }
h2 { font-size: var(--step-4); font-weight: 400; letter-spacing: 0.07em; }
h3 { font-size: var(--step-2); font-weight: 400; letter-spacing: 0.1em; }
h4 { font-size: var(--step-1); font-weight: 400; letter-spacing: 0.12em; }
p { max-width: var(--measure); }

:focus-visible { outline: 2px solid var(--anthracite); outline-offset: 3px; }

/* ---- Layout helpers ---- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); }
.section--tint { background: var(--shell); }
.section--center { text-align: center; }
.section--center .container { max-width: 720px; }
.section--center :is(p, .lead) { margin-inline: auto; }
.section--center .eyebrow { justify-content: center; }

/* the "feature" band — a quiet framed statement, sharp corners */
.section--ink > .container {
  max-width: 820px;
  border: 1px solid var(--line-strong);
  padding: clamp(2.75rem, 7vw, 5rem) clamp(1.75rem, 6vw, 4rem);
  text-align: center;
}

.stack > * + * { margin-top: 1.1rem; }
.stack-lg > * + * { margin-top: 1.9rem; }
.center { text-align: center; margin-inline: auto; }
.measure { max-width: 60ch; }

.eyebrow {
  display: flex; align-items: center;
  font-size: var(--step--1);
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 1.5rem;
}
.eyebrow::after {
  content: ""; flex: 0 0 auto; width: 2.25rem; height: 1px;
  background: currentColor; margin-left: 1rem; opacity: .6;
}
.section--center .eyebrow::before {
  content: ""; flex: 0 0 auto; width: 2.25rem; height: 1px;
  background: currentColor; margin-right: 1rem; opacity: .6;
}

.lead {
  font-size: var(--step-1); font-weight: 400; line-height: 1.75;
  color: var(--ink-500);
  letter-spacing: 0.01em;
}

.mission-statement {
  font-size: var(--step-3); font-weight: 300; line-height: 1.5;
  color: var(--ink); letter-spacing: 0.01em;
  max-width: 30ch;
}
.section--center .mission-statement { margin-inline: auto; }

/* ---- Buttons — minimalist box ---- */
.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font);
  font-size: 0.72rem; font-weight: 400;
  letter-spacing: 0.22em; text-transform: uppercase;
  padding: 1.15rem 2.4rem;
  border: 1px solid var(--anthracite);
  background: var(--anthracite); color: #fff;
  border-radius: 0;
  transition: background .25s ease, color .25s ease;
}
.btn:hover { background: transparent; color: var(--anthracite); }
.btn--ghost { background: transparent; color: var(--anthracite); border-color: currentColor; }
.btn--ghost:hover { background: var(--anthracite); color: #fff; border-color: var(--anthracite); }
.btn-row { display: flex; flex-wrap: wrap; align-items: center; gap: 1.25rem 2rem; }

.textlink {
  font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink); border-bottom: 1px solid var(--line-strong); padding-bottom: 4px;
  transition: border-color .2s ease;
}
.textlink:hover { border-color: var(--anthracite); }

/* ---- Header / nav ---- */
.site-header {
  position: sticky; top: 0; z-index: 120;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex; align-items: center; gap: 1.5rem;
  min-height: var(--header-h);
}
.brand { display: flex; align-items: center; gap: .85rem; flex-shrink: 0; margin-right: auto; }
.brand img { height: 26px; width: auto; }
.brand__name {
  font-size: 0.72rem; font-weight: 300;
  letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--ink); white-space: nowrap;
}
@media (max-width: 560px) { .brand__name { letter-spacing: 0.2em; font-size: 0.64rem; white-space: normal; } }

.site-nav ul { list-style: none; padding: 0; display: flex; align-items: center; gap: 2.25rem; }
.site-nav a {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: 0.72rem; font-weight: 400;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink);
  padding-block: .35rem;
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, opacity .2s ease;
}
.site-nav a:hover { border-color: currentColor; }
.site-nav a[aria-current="page"] { border-color: currentColor; }
.site-nav .chev { font-size: .5em; opacity: .55; transform: translateY(1px); }

.nav-toggle {
  flex-shrink: 0;
  width: 34px; height: 34px; padding: 0;
  display: inline-flex; flex-direction: column; justify-content: center; gap: 6px;
  background: none; border: 0; cursor: pointer;
}
.nav-toggle span {
  display: block; height: 1px; width: 100%; background: var(--ink);
  transition: transform .3s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* full-screen overlay menu (opened by the burger, any width) */
.site-nav.is-open {
  position: fixed; inset: 0; z-index: 115;
  background: var(--paper);
  display: flex; align-items: center; justify-content: center;
}
.site-nav.is-open ul { flex-direction: column; gap: 2.25rem; text-align: center; }
.site-nav.is-open a { font-size: 1rem; letter-spacing: 0.24em; color: var(--ink); }

@media (max-width: 900px) {
  .site-nav:not(.is-open) { display: none; }
}

/* Overlay variant — transparent over the hero, light text */
.site-header--overlay {
  position: fixed; left: 0; right: 0; top: 0;
  background: transparent; border-bottom-color: transparent;
  transition: background .3s ease, border-color .3s ease;
}
.site-header--overlay:not(.is-solid) .brand img { display: none; }
.site-header--overlay:not(.is-solid) .brand__name,
.site-header--overlay:not(.is-solid) .site-nav > ul a { color: #fff; }
.site-header--overlay:not(.is-solid) .nav-toggle span { background: #fff; }
.site-header--overlay.is-solid { background: var(--paper); border-bottom-color: var(--line); }

/* ---- Hero (home) — full-bleed, art-directed, asymmetric ---- */
.hero { position: relative; overflow: hidden; }
.hero--home {
  min-height: clamp(620px, 92vh, 940px);
  display: flex; align-items: center;
  background:
    linear-gradient(180deg, rgba(38,37,35,.30) 0%, rgba(38,37,35,0) 30%, rgba(38,37,35,.08) 65%, rgba(38,37,35,.45) 100%),
    var(--hero-image, none),
    linear-gradient(155deg, var(--powder) 0%, var(--beige) 55%, #cdbba6 100%);
  background-size: cover, cover, cover;
  background-position: center, center, center;
  color: #fff;
}
/* asymmetric "object" — a soft monolith, muted, feathered (no hard shadow) */
.hero__object {
  position: absolute; left: clamp(1.5rem, 7vw, 8rem); bottom: 0;
  width: clamp(140px, 20vw, 280px); height: clamp(48%, 56vh, 64%);
  background: linear-gradient(105deg, #bd917a 0%, #a97e66 50%, #966f57 100%);
  filter: drop-shadow(50px 30px 80px rgba(40,25,18,.22));
  pointer-events: none;
}
@media (max-width: 700px) { .hero__object { opacity: .5; } }
.hero__object::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(0,0,0,.12));
}

/* ---- Hero background video (option A) — remove this block + the <video>
   element in index.html to revert to the CSS-only hero. ---- */
.hero--video .hero__object { display: none; }          /* skyline replaces the monolith */
.hero__video {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover;
  /* pull the bright glass-and-sky footage toward the muted warm palette (light touch) */
  filter: saturate(0.64) sepia(0.13) brightness(0.88) contrast(1.02);
  pointer-events: none;
}
.hero--video::after {                                   /* warm scrim for text legibility */
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(28,24,21,.40) 0%, rgba(28,24,21,.05) 32%, rgba(28,24,21,.10) 66%, rgba(28,24,21,.46) 100%),
    linear-gradient(90deg, rgba(28,24,21,.28) 0%, rgba(28,24,21,0) 55%),
    linear-gradient(0deg, rgba(122,84,60,.12), rgba(122,84,60,.03));
}
@media (prefers-reduced-motion: reduce) {
  .hero__video { animation: none; }   /* JS also pauses playback; treated first frame stays */
}

.hero--home .container { position: relative; z-index: 2; width: 100%; }
.hero__content { margin-left: auto; max-width: 46rem; padding-block: clamp(7rem, 16vh, 11rem) clamp(5rem, 12vh, 8rem); }
.hero__content .eyebrow { color: rgba(255,255,255,.82); }
.hero__content .eyebrow::after { background: rgba(255,255,255,.7); }
.hero h1 { color: #fff; max-width: 26ch; hyphens: none; }
.hero__sub {
  margin-top: 1.75rem;
  font-size: var(--step-1); font-weight: 500;
  line-height: 1.6; color: #fff; max-width: 42ch;
  letter-spacing: 0.015em;
}
.hero .btn-row { margin-top: 2.75rem; }
.hero .btn { background: var(--anthracite); border-color: var(--anthracite); color: #fff; }
.hero .btn:hover { background: #fff; color: var(--anthracite); border-color: #fff; }
.hero__link {
  font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: #fff; border-bottom: 1px solid rgba(255,255,255,.5); padding-bottom: 4px;
}
.hero__link:hover { border-color: #fff; }

.hero__caption {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  list-style: none; margin: 0; padding: 1.5rem var(--gutter);
  display: flex; flex-wrap: wrap; gap: .4rem 2.5rem;
  font-size: var(--step--1); letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,.8);
  border-top: 1px solid rgba(255,255,255,.25);
}
@media (max-width: 700px) {
  .hero__content { padding-block: 7rem 8rem; }
  .hero__caption { display: none; }
}

/* ---- Experience row (relocated hero panel) ---- */
.hero-panel h2 {
  font-size: var(--step--1); font-weight: 400; letter-spacing: 0.24em;
  color: var(--taupe); text-transform: uppercase; margin-bottom: 2.5rem;
}
.hero-panel dl { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; margin: 0; }
@media (max-width: 760px) { .hero-panel dl { grid-template-columns: 1fr; gap: 0; } }
.hero-panel dl > div { padding-top: 1.5rem; border-top: 1px solid var(--line-strong); }
.hero-panel dt {
  font-size: var(--step-3); font-weight: 300; color: var(--ink);
  text-transform: uppercase; letter-spacing: 0.04em;
}
.hero-panel dd { margin: .6rem 0 0; font-size: .92rem; color: var(--ink-500); line-height: 1.65; }

/* ---- Badge / caption chips ---- */
.badge {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: var(--step--1); letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--taupe);
}
.badge + .badge { margin-left: 1.75rem; }
.badge::before { content: ""; width: 4px; height: 4px; background: var(--terracotta); }

/* ---- Verse ---- */
.verse { text-align: center; max-width: 46ch; margin-inline: auto; }
.verse p {
  font-size: var(--step-3); font-weight: 300; line-height: 1.55;
  color: var(--ink); letter-spacing: 0.01em;
}
.verse cite {
  display: block; margin-top: 1.5rem; font-style: normal;
  font-size: var(--step--1); letter-spacing: 0.24em; text-transform: uppercase; color: var(--taupe);
}

/* ---- Card grid ---- */
.grid { display: grid; gap: clamp(2rem, 4vw, 3.5rem); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 860px) { .grid--3, .grid--2 { grid-template-columns: 1fr; } }

.card { padding-top: 2rem; border-top: 1px solid var(--line-strong); }
.card__icon { color: var(--taupe); margin-bottom: 1.5rem; }
.card__icon svg { width: 26px; height: 26px; stroke-width: 1; }
.card h3 { font-size: var(--step-1); font-weight: 400; letter-spacing: 0.14em; margin-bottom: .9rem; }
.card p { font-size: 0.95rem; color: var(--ink-500); }

/* ---- Numbered list (services) ---- */
.steps { list-style: none; padding: 0; counter-reset: step; display: grid; }
.steps li {
  counter-increment: step;
  display: grid; grid-template-columns: minmax(3rem, auto) 1fr; gap: clamp(1.25rem, 4vw, 3.5rem);
  padding: clamp(1.75rem, 4vw, 2.75rem) 0;
  border-top: 1px solid var(--line);
}
.steps li:last-child { border-bottom: 1px solid var(--line); }
.steps li::before {
  content: counter(step, decimal-leading-zero);
  font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 300; color: var(--taupe);
  letter-spacing: 0.05em; line-height: 1;
}
.steps strong {
  display: block; font-weight: 400; color: var(--ink);
  text-transform: uppercase; letter-spacing: 0.14em; font-size: var(--step-1);
  margin-bottom: .55rem;
}
.steps p { font-size: 0.95rem; color: var(--ink-500); margin: 0; }

/* ---- Partner definition list ---- */
.partners { display: grid; }
.partner {
  display: grid; grid-template-columns: minmax(0, 260px) 1fr; gap: .5rem 2.5rem;
  padding: 1.75rem 0; border-top: 1px solid var(--line);
}
.partner:last-child { border-bottom: 1px solid var(--line); }
.partner dt { color: var(--ink); text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.82rem; }
.partner dd { margin: 0; color: var(--ink-500); font-size: 0.95rem; }
.partner dd a { border-bottom: 1px solid var(--line-strong); }
.partner dd a:hover { border-color: var(--anthracite); }
@media (max-width: 700px) { .partner { grid-template-columns: 1fr; } }

/* ---- Split (image + text), asymmetric ---- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.split--portrait { grid-template-columns: 4fr 6fr; align-items: start; }
@media (max-width: 850px) { .split, .split--portrait { grid-template-columns: 1fr; } }
.split__media img { width: 100%; border-radius: 0; }
.split__media--portrait img { aspect-ratio: 4/5; object-fit: cover; object-position: center 12%; }

/* ---- Facts ---- */
.facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 4vw, 3rem); margin-top: 3rem; }
@media (max-width: 700px) { .facts { grid-template-columns: 1fr; } }
.fact { padding-top: 1.25rem; border-top: 1px solid var(--line-strong); }
.fact b { display: block; font-weight: 300; font-size: var(--step-3); color: var(--ink); text-transform: uppercase; letter-spacing: 0.04em; }
.fact span { font-size: 0.85rem; color: var(--taupe); letter-spacing: 0.06em; }

/* ---- Prose (privacy) ---- */
.prose { max-width: 68ch; }
.prose > * + * { margin-top: 1.3rem; }
.prose h2 { font-size: var(--step-2); margin-top: 3rem; }
.prose h3 { font-size: var(--step-1); margin-top: 2rem; }
.prose ul { padding-left: 1.3rem; }
.prose li + li { margin-top: .5rem; }

/* ---- CTA ---- */
.cta { text-align: center; }
.cta h2 { max-width: 22ch; margin-inline: auto; }
.cta p { margin: 1.5rem auto 2.5rem; }

/* ---- Footer ---- */
.site-footer { background: var(--shell); padding-block: clamp(4rem, 8vw, 6rem) 2.5rem; }
.site-footer a:hover { color: var(--ink); }
.site-footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem; }
@media (max-width: 800px) { .site-footer__grid { grid-template-columns: 1fr; gap: 2.5rem; } }
.site-footer h4 { color: var(--taupe); font-size: var(--step--1); letter-spacing: 0.24em; margin-bottom: 1.4rem; font-weight: 400; }
.site-footer ul { list-style: none; padding: 0; display: grid; gap: .7rem; font-size: 0.9rem; }
.site-footer__brand img { height: 30px; width: auto; margin-bottom: 1.25rem; }
.site-footer__brand p { font-size: 0.9rem; max-width: 32ch; }
.site-footer__bottom {
  margin-top: 3.5rem; padding-top: 1.75rem; border-top: 1px solid var(--line-strong);
  display: flex; flex-wrap: wrap; gap: .5rem 2rem; justify-content: space-between;
  font-size: var(--step--1); letter-spacing: 0.12em; text-transform: uppercase; color: var(--taupe);
}

/* ---- Cookie ---- */
.cookie {
  position: fixed; left: 1.25rem; right: 1.25rem; bottom: 1.25rem; z-index: 200;
  max-width: 600px; margin-inline: auto;
  background: var(--surface); border: 1px solid var(--line-strong);
  padding: 1.4rem 1.5rem;
  display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.5rem;
}
.cookie p { font-size: 0.82rem; color: var(--ink-500); margin: 0; flex: 1 1 240px; line-height: 1.6; }
.cookie .btn-row { flex-shrink: 0; gap: .75rem; }
.cookie .btn { padding: .8rem 1.4rem; font-size: 0.66rem; }
.cookie[hidden] { display: none; }

/* ---- Interior page hero ---- */
.page-hero { padding-top: clamp(3rem, 7vw, 5.5rem); }
.page-hero .container { padding-bottom: clamp(2rem, 5vw, 3.5rem); }
.page-hero h1 { max-width: 22ch; }
.page-hero .lead { margin-top: 1.5rem; max-width: 52ch; }

/* full-bleed ambient image under a page intro — softly out of focus, natural */
.page-figure {
  margin: clamp(2.5rem, 6vw, 4.5rem) 0 0;
  overflow: hidden;
  line-height: 0;
}
.page-figure img {
  width: 100%;
  height: clamp(240px, 42vh, 440px);
  object-fit: cover;
  filter: blur(1.6px) saturate(0.9);
  transform: scale(1.035);   /* hides the blurred edges */
}

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--anthracite); color: #fff; padding: .8rem 1.2rem; z-index: 300;
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
}
.skip-link:focus { left: 0; }

/* ---- Form — minimal underline fields ---- */
.form { border: 1px solid var(--line-strong); padding: clamp(1.75rem, 5vw, 3rem); display: grid; gap: 1.75rem; }
.form__hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.field { display: grid; gap: .5rem; }
.field label { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--taupe); }
.field label span { color: var(--terracotta); }
.field input, .field textarea {
  font: inherit; font-size: 0.95rem; color: var(--ink);
  padding: .55rem 0;
  background: transparent;
  border: 0; border-bottom: 1px solid var(--line-strong); border-radius: 0;
  transition: border-color .2s ease;
}
.field input:focus, .field textarea:focus { outline: none; border-bottom-color: var(--anthracite); }
.field textarea { resize: vertical; min-height: 110px; }
.form .btn { justify-self: start; margin-top: .5rem; }
.form__note { font-size: 0.78rem; color: var(--taupe); margin: 0; letter-spacing: 0.04em; }

.contact-list { display: grid; }
.contact-list p {
  display: grid; grid-template-columns: 190px 1fr; gap: .3rem 1.5rem;
  padding: 1.15rem 0; border-top: 1px solid var(--line); margin: 0; max-width: none;
}
.contact-list p:last-child { border-bottom: 1px solid var(--line); }
.contact-list span { color: var(--ink); text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.78rem; }
.contact-list a { border-bottom: 1px solid var(--line-strong); }
.contact-list a:hover { border-color: var(--anthracite); }
@media (max-width: 560px) { .contact-list p { grid-template-columns: 1fr; } }
