/* Dobsan İnşaat — site stylesheet
   Palette: black #0B0C0C · Nardo grey #686C6E · white. Display type: Adventor (logo typeface), body: Poppins. */

@font-face { font-family: 'Adventor'; src: url('../fonts/adventor-bold.woff') format('woff'); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: 'Adventor'; src: url('../fonts/adventor-regular.woff') format('woff'); font-weight: 400; font-style: normal; font-display: swap; }

:root {
  --black: #0B0C0C;
  --ink: #0B0C0C;
  --nardo: #686C6E;
  --nardo-d: #4A4E50;
  --nardo-l: #A9ACAE;
  --pale: #D9DBDC;
  --off: #F2F3F3;
  --line: #E1E3E4;
  --white: #FFFFFF;
  --text-2: #3A3D3F;
  --font-display: 'Adventor', 'Poppins', 'Segoe UI', Helvetica, Arial, sans-serif;
  --font-body: 'Poppins', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --maxw: 1200px;
  --gutter: 24px;
  --radius: 4px;
  --header-h: 76px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body { margin: 0; font-family: var(--font-body); font-size: 16px; line-height: 1.6; color: var(--ink); background: var(--white); -webkit-font-smoothing: antialiased; }
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--nardo); }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.08; margin: 0; letter-spacing: -0.01em; text-wrap: balance; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; }
:focus-visible { outline: 2px solid var(--black); outline-offset: 3px; }

.container { width: min(var(--maxw), 100% - 2 * var(--gutter)); margin-inline: auto; }
.skip-link { position: absolute; left: -999px; top: 8px; background: var(--black); color: #fff; padding: 8px 12px; z-index: 100; }
.skip-link:focus { left: 8px; }

/* ---------- type helpers ---------- */
.eyebrow { font-size: 12px; font-weight: 600; letter-spacing: 0.18em; color: var(--nardo); display: flex; align-items: center; gap: 12px; }
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--nardo); flex: none; }
.eyebrow.center { justify-content: center; }
.eyebrow.on-dark { color: var(--nardo-l); } .eyebrow.on-dark::before { background: var(--nardo-l); }
.h-xl { font-size: clamp(38px, 5vw, 62px); }
.h-l { font-size: clamp(30px, 3.6vw, 44px); }
.h-m { font-size: clamp(22px, 2.4vw, 28px); }
.lead { font-size: 18px; line-height: 1.65; color: var(--text-2); }
.muted { color: var(--nardo); }
.section-head { display: flex; flex-direction: column; gap: 14px; max-width: 720px; }
.section-head.row { flex-direction: row; justify-content: space-between; align-items: flex-end; max-width: none; gap: 32px; }
.section-head .lead { font-size: 17px; }

/* ---------- buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; font-weight: 600; font-size: 15px; line-height: 1; padding: 16px 26px; border-radius: var(--radius); border: 1.5px solid transparent; cursor: pointer; transition: background .18s, color .18s, border-color .18s; min-height: 48px; white-space: nowrap; }
.btn-primary { background: var(--black); color: #fff; border-color: var(--black); }
.btn-primary:hover { background: var(--nardo-d); border-color: var(--nardo-d); color: #fff; }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--black); color: #fff; }
.btn-light { background: #fff; color: var(--ink); border-color: #fff; }
.btn-light:hover { background: var(--pale); border-color: var(--pale); color: var(--ink); }
.btn-ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.45); }
.btn-ghost-light:hover { border-color: #fff; color: #fff; }
.btn .ico { width: 18px; height: 18px; }
.link-arrow { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 14px; color: var(--ink); border-bottom: 1.5px solid var(--nardo); padding-bottom: 2px; }
.link-arrow:hover { color: var(--nardo); }
.link-arrow .ico { width: 16px; height: 16px; }

/* ---------- header ---------- */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.96); backdrop-filter: saturate(140%) blur(8px); border-bottom: 1px solid var(--line); transition: box-shadow .2s; }
.site-header.is-scrolled { box-shadow: 0 6px 24px rgba(11,12,12,.06); }
.header-inner { height: var(--header-h); display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo img { height: 44px; width: auto; }
.nav { display: flex; align-items: center; gap: 30px; }
.nav a { font-size: 14px; font-weight: 500; color: var(--text-2); padding: 6px 0; border-bottom: 2px solid transparent; }
.nav a:hover { color: var(--ink); }
.nav a.is-active { color: var(--ink); border-bottom-color: var(--ink); }
.header-actions { display: flex; align-items: center; gap: 18px; }
.lang-switch { display: flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; letter-spacing: .06em; }
.lang-switch span { color: var(--ink); } .lang-switch i { color: var(--pale); font-style: normal; } .lang-switch a { color: var(--nardo); }
.lang-switch a:hover { color: var(--ink); }
.header-actions .btn { padding: 12px 20px; min-height: 42px; font-size: 14px; }
.nav-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; cursor: pointer; align-items: center; justify-content: center; border-radius: var(--radius); color: var(--ink); }
.nav-toggle .ico { width: 26px; height: 26px; }
.nav-toggle .ico-close { display: none; }
body.nav-open .nav-toggle .ico-menu { display: none; }
body.nav-open .nav-toggle .ico-close { display: block; }

/* ---------- hero ---------- */
.hero { background: var(--white); border-bottom: 1px solid var(--line); }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; min-height: 620px; }
.hero-copy { padding: 88px 56px 80px 0; display: flex; flex-direction: column; justify-content: center; gap: 26px; }
.hero-copy .lead { max-width: 560px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-media { position: relative; background: var(--black); overflow: hidden; min-height: 420px; }
.hero-media svg.beams { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-media .media-note { position: absolute; left: 32px; bottom: 28px; font-size: 12px; font-weight: 500; letter-spacing: .08em; color: rgba(255,255,255,.85); border: 1px dashed rgba(255,255,255,.5); padding: 9px 12px; border-radius: var(--radius); }
.hero-media .media-mark { position: absolute; right: -8%; top: 8%; width: 78%; opacity: .95; }
.hero-strip { border-top: 1px solid var(--line); }
.hero-strip ul { display: grid; grid-template-columns: repeat(3, 1fr); }
.hero-strip li { padding: 22px 0; display: flex; align-items: center; gap: 14px; font-size: 14px; color: var(--text-2); border-right: 1px solid var(--line); padding-right: 24px; }
.hero-strip li:last-child { border-right: 0; }
.hero-strip li + li { padding-left: 24px; }
.hero-strip .ico { width: 22px; height: 22px; color: var(--nardo); flex: none; }

/* ---------- sections ---------- */
.section { padding: 96px 0; }
.section.tight { padding: 72px 0; }
.section.off { background: var(--off); }
.section.dark { background: var(--black); color: #fff; }
.section.nardo { background: var(--nardo); color: #fff; }
.grid { display: grid; gap: 20px; }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.mt-40 { margin-top: 40px; } .mt-56 { margin-top: 56px; } .mt-24 { margin-top: 24px; } .mt-16 { margin-top: 16px; }

/* cards */
.card { background: #fff; border: 1px solid var(--line); border-radius: 6px; padding: 28px 26px; display: flex; flex-direction: column; gap: 14px; position: relative; overflow: hidden; }
.card::before { content: ""; position: absolute; left: 26px; top: 0; width: 40px; height: 3px; background: var(--nardo); }
.card.no-beam::before { display: none; }
.card .ico-box { width: 46px; height: 46px; border-radius: 6px; background: var(--black); color: #fff; display: flex; align-items: center; justify-content: center; }
.card .ico-box .ico { width: 24px; height: 24px; }
.card h3 { font-size: 20px; }
.card p { font-size: 14.5px; color: var(--text-2); line-height: 1.6; }
.card .link-arrow { margin-top: auto; align-self: flex-start; }
.service-card { min-height: 280px; }

/* supply band */
.band-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.section.nardo .lead { color: rgba(255,255,255,.86); }
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { font-size: 14px; font-weight: 500; padding: 10px 16px; border-radius: 999px; border: 1px solid rgba(255,255,255,.45); color: #fff; }
.supply-visual { position: relative; aspect-ratio: 4 / 3; border-radius: 6px; background: var(--nardo-d); overflow: hidden; }
.supply-visual svg { position: absolute; inset: 0; width: 100%; height: 100%; }

/* process */
.steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 32px; position: relative; }
.steps::before { content: ""; position: absolute; left: 0; right: 0; top: 30px; height: 2px; background: var(--pale); }
.step { position: relative; padding-top: 68px; }
.step .num { position: absolute; top: 0; left: 0; font-family: var(--font-display); font-weight: 700; font-size: 22px; color: var(--ink); background: var(--white); padding-right: 14px; line-height: 60px; height: 60px; }
.section.off .step .num { background: var(--off); }
.step h3 { font-size: 20px; margin-bottom: 8px; }
.step p { font-size: 14.5px; color: var(--text-2); }

/* why */
.why-item { padding-top: 22px; border-top: 2px solid var(--black); }
.why-item h3 { font-size: 22px; margin-bottom: 10px; }
.why-item p { color: var(--text-2); font-size: 15px; }

/* projects */
.project-card { padding: 0; gap: 0; }
.project-card::before { display: none; }
.project-media { aspect-ratio: 4 / 3; background: var(--off) repeating-linear-gradient(135deg, transparent 0 14px, rgba(104,108,110,.10) 14px 15px); display: flex; align-items: center; justify-content: center; color: var(--nardo); font-size: 12px; font-weight: 500; letter-spacing: .08em; border-bottom: 1px solid var(--line); }
.project-body { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 6px; }
.project-body .tag { font-size: 11.5px; font-weight: 600; letter-spacing: .12em; color: var(--nardo); }
.project-body h3 { font-size: 19px; }
.project-body .loc { font-size: 14px; color: var(--text-2); }

/* CTA band */
.cta-band { background: var(--black); color: #fff; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; padding: 72px 0; }
.cta-inner h2 { font-size: clamp(30px, 3.4vw, 42px); }
.cta-inner p { color: var(--nardo-l); font-size: 17px; margin-top: 12px; max-width: 560px; }
.cta-actions { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.cta-phone { display: flex; flex-direction: column; gap: 2px; font-size: 14px; color: var(--nardo-l); }
.cta-phone strong { color: #fff; font-size: 17px; font-weight: 600; }

/* ---------- footer ---------- */
.site-footer { background: var(--black); color: var(--nardo-l); border-top: 1px solid #1E2021; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 40px; padding: 64px 0 48px; }
.footer-brand img { height: 40px; width: auto; }
.footer-brand p { margin-top: 20px; font-size: 14px; line-height: 1.65; max-width: 340px; }
.footer-col h4 { font-family: var(--font-body); font-size: 12px; font-weight: 600; letter-spacing: .16em; color: #fff; margin-bottom: 18px; }
.footer-col li { margin-bottom: 10px; font-size: 14px; }
.footer-col a:hover { color: #fff; }
.footer-col .contact-line { display: flex; gap: 10px; align-items: flex-start; }
.footer-col .contact-line .ico { width: 18px; height: 18px; flex: none; margin-top: 3px; color: var(--nardo); }
.footer-bottom { border-top: 1px solid #1E2021; padding: 22px 0; display: flex; justify-content: space-between; align-items: center; gap: 20px; font-size: 13px; }
.footer-bottom a:hover { color: #fff; }
.footer-bottom .links { display: flex; gap: 22px; }

/* ---------- inner pages ---------- */
.page-hero { background: var(--off); border-bottom: 1px solid var(--line); padding: 72px 0 64px; }
.page-hero .inner { display: grid; grid-template-columns: 1.2fr .8fr; gap: 48px; align-items: end; }
.page-hero h1 { font-size: clamp(34px, 4.2vw, 54px); margin-top: 14px; }
.page-hero .lead { margin-top: 18px; max-width: 640px; }
.page-hero .beam-art { justify-self: end; width: 100%; max-width: 360px; }

/* services page */
.service-block { padding: 72px 0; border-bottom: 1px solid var(--line); scroll-margin-top: calc(var(--header-h) + 16px); }
.service-block:nth-child(even) { background: var(--off); }
.service-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: start; }
.service-grid .ico-box { width: 52px; height: 52px; border-radius: 6px; background: var(--black); color: #fff; display: flex; align-items: center; justify-content: center; margin-bottom: 22px; }
.service-grid .ico-box .ico { width: 26px; height: 26px; }
.service-grid h2 { font-size: clamp(26px, 3vw, 36px); }
.service-grid .summary { margin-top: 16px; font-size: 16.5px; color: var(--text-2); max-width: 520px; }
.service-grid .link-arrow { margin-top: 26px; }
.scope { background: #fff; border: 1px solid var(--line); border-radius: 6px; padding: 26px 28px; }
.section.off .scope, .service-block:nth-child(even) .scope { background: #fff; }
.scope h3 { font-family: var(--font-body); font-size: 12px; font-weight: 600; letter-spacing: .16em; color: var(--nardo); margin-bottom: 16px; }
.scope li { display: flex; gap: 12px; align-items: flex-start; padding: 10px 0; border-top: 1px solid var(--line); font-size: 15px; }
.scope li:first-of-type { border-top: 0; }
.scope .ico { width: 18px; height: 18px; color: var(--nardo); flex: none; margin-top: 4px; }

/* supply page */
.cat-card .ico-box { background: var(--nardo); }
.who-list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.who-list li { background: #fff; border: 1px solid var(--line); border-radius: 6px; padding: 18px 20px; font-weight: 500; display: flex; gap: 12px; align-items: center; }
.who-list .ico { width: 20px; height: 20px; color: var(--nardo); flex: none; }

/* about */
.about-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 56px; align-items: start; }
.about-grid .paras p + p { margin-top: 18px; }
.about-grid .paras p { font-size: 17px; line-height: 1.7; color: var(--text-2); }
.facts { background: var(--black); color: #fff; border-radius: 6px; padding: 28px; }
.facts h3 { font-family: var(--font-body); font-size: 12px; font-weight: 600; letter-spacing: .16em; color: var(--nardo-l); margin-bottom: 14px; }
.facts dl { margin: 0; display: grid; grid-template-columns: auto 1fr; gap: 10px 18px; font-size: 14.5px; }
.facts dt { color: var(--nardo-l); } .facts dd { margin: 0; color: #fff; }

/* contact */
.contact-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 40px; align-items: start; }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: 6px; padding: 32px; }
.form-card h2 { font-size: 24px; margin-bottom: 22px; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 13px; font-weight: 600; }
.field label small { color: var(--nardo); font-weight: 400; }
.field input, .field select, .field textarea { font: inherit; font-size: 15px; padding: 12px 14px; border: 1px solid var(--pale); border-radius: var(--radius); background: #fff; color: var(--ink); min-height: 48px; width: 100%; }
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--black); box-shadow: 0 0 0 3px rgba(11,12,12,.08); }
.consent { display: flex; gap: 12px; align-items: flex-start; font-size: 13.5px; color: var(--text-2); grid-column: 1 / -1; }
.consent input { width: 18px; height: 18px; margin-top: 3px; flex: none; accent-color: var(--black); }
.form-actions { grid-column: 1 / -1; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.form-status { font-size: 14px; font-weight: 500; display: none; }
.form-status.ok { display: block; color: #1F6B3A; }
.form-status.err { display: block; color: #B3261E; }
.hp { position: absolute; left: -9999px; }
.info-card { background: var(--black); color: #fff; border-radius: 6px; padding: 30px; }
.info-card h2 { font-size: 22px; margin-bottom: 20px; }
.info-card li { display: flex; gap: 14px; align-items: flex-start; padding: 12px 0; border-top: 1px solid #1E2021; font-size: 14.5px; }
.info-card li:first-of-type { border-top: 0; }
.info-card .ico { width: 20px; height: 20px; color: var(--nardo-l); flex: none; margin-top: 2px; }
.info-card .lbl { display: block; font-size: 12px; letter-spacing: .12em; color: var(--nardo-l); margin-bottom: 2px; }
.map-box { margin-top: 20px; aspect-ratio: 4 / 3; border-radius: 6px; border: 1px dashed var(--pale); background: var(--off) repeating-linear-gradient(135deg, transparent 0 14px, rgba(104,108,110,.08) 14px 15px); display: flex; align-items: center; justify-content: center; text-align: center; padding: 24px; font-size: 13px; color: var(--nardo); }

/* note box */
.note { background: var(--off); border-left: 3px solid var(--nardo); padding: 14px 18px; font-size: 14px; color: var(--text-2); border-radius: 0 var(--radius) var(--radius) 0; }

/* ---------- mobile nav ---------- */
.nav-panel { display: none; }
@media (max-width: 1023px) {
  :root { --header-h: 68px; }
  .nav, .header-actions .btn, .header-actions .lang-switch { display: none; }
  .nav-toggle { display: inline-flex; }
  .logo img { height: 38px; }
  .nav-panel { display: block; position: fixed; inset: var(--header-h) 0 0 0; background: var(--black); color: #fff; z-index: 40; opacity: 0; visibility: hidden; transform: translateY(-10px); transition: opacity .22s ease, transform .22s ease, visibility 0s linear .22s; overflow-y: auto; padding: 32px var(--gutter) 48px; }
  body.nav-open .nav-panel { opacity: 1; visibility: visible; transform: none; transition: opacity .22s ease, transform .22s ease; }
  body.nav-open { overflow: hidden; }
  .nav-panel a.item { display: block; font-family: var(--font-display); font-weight: 700; font-size: 30px; padding: 14px 0; border-bottom: 1px solid #1E2021; color: #fff; }
  .nav-panel a.item.is-active { color: var(--nardo-l); }
  .nav-panel .panel-bottom { margin-top: 28px; display: flex; flex-direction: column; gap: 18px; }
  .nav-panel .lang-switch { display: flex; font-size: 15px; } .nav-panel .lang-switch span { color: #fff; } .nav-panel .lang-switch a { color: var(--nardo-l); } .nav-panel .lang-switch i { color: var(--nardo-d); }
  .hero-grid { grid-template-columns: 1fr; min-height: 0; }
  .hero-copy { padding: 56px 0 48px; }
  .hero-media { min-height: 0; aspect-ratio: 640 / 560; }
  .band-grid, .service-grid, .about-grid, .contact-grid, .page-hero .inner { grid-template-columns: 1fr; gap: 32px; }
  .page-hero .beam-art { display: none; }
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .who-list { grid-template-columns: 1fr; }
  .hero-strip ul { grid-template-columns: 1fr; }
  .hero-strip li { border-right: 0; padding: 14px 0 !important; border-bottom: 1px solid var(--line); }
  .hero-strip li:last-child { border-bottom: 0; }
}
@media (max-width: 719px) {
  .section { padding: 64px 0; }
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; padding: 48px 0 36px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .section-head.row { flex-direction: column; align-items: flex-start; gap: 16px; }
  .hero-actions .btn { width: 100%; }
  .hero-media .media-mark { width: 90%; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } .nav-panel { transition: none; } }

/* ---------- fields of activity (umbrella structure) ---------- */
.nav-item { position: relative; display: flex; align-items: center; }
.nav-sub-toggle { display: inline-flex; align-items: center; gap: 6px; background: none; border: 0; cursor: pointer; font-size: 14px; font-weight: 500; color: var(--text-2); padding: 6px 0; border-bottom: 2px solid transparent; }
.nav-sub-toggle .ico { width: 14px; height: 14px; transition: transform .15s; }
.nav-sub-toggle:hover, .nav-sub-toggle.is-active { color: var(--ink); }
.nav-sub-toggle.is-active { border-bottom-color: var(--ink); }
.has-sub.is-open .nav-sub-toggle .ico { transform: rotate(180deg); }
.nav-sub { position: absolute; top: calc(100% + 14px); left: -18px; min-width: 300px; background: #fff; border: 1px solid var(--line); border-radius: 6px; box-shadow: 0 18px 40px rgba(11,12,12,.10); padding: 8px; display: none; z-index: 60; }
.nav-sub::before { content: ""; position: absolute; left: 0; right: 0; top: -16px; height: 16px; }
.has-sub:hover .nav-sub, .has-sub.is-open .nav-sub, .has-sub:focus-within .nav-sub { display: block; }
.nav-sub a { display: flex; flex-direction: column; gap: 2px; padding: 12px 14px; border-radius: 4px; border-bottom: 0; }
.nav-sub a:hover, .nav-sub a.is-active { background: var(--off); color: var(--ink); }
.nav-sub .sub-title { font-size: 14px; font-weight: 600; color: var(--ink); }
.nav-sub .sub-brand { font-size: 12px; color: var(--nardo); }
.nav-sub a + a { margin-top: 2px; }

.fields-grid { gap: 20px; }
.field-card { display: flex; flex-direction: column; gap: 14px; background: #fff; border: 1px solid var(--line); border-radius: 6px; padding: 28px 26px 26px; position: relative; overflow: hidden; color: var(--ink); transition: border-color .18s, box-shadow .18s; }
.field-card::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3px; background: var(--black); }
.field-card:hover { border-color: var(--nardo-l); box-shadow: 0 14px 34px rgba(11,12,12,.08); color: var(--ink); }
.field-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; min-height: 46px; }
.field-head .ico-box { width: 46px; height: 46px; border-radius: 6px; background: var(--black); color: #fff; display: flex; align-items: center; justify-content: center; flex: none; }
.field-head .ico-box .ico { width: 24px; height: 24px; }
.field-brand { font-size: 11.5px; font-weight: 600; letter-spacing: .12em; color: var(--nardo); text-align: right; }
.field-card h3 { font-size: 24px; }
.field-card p { font-size: 14.5px; color: var(--text-2); line-height: 1.6; }
.mini-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.mini-chips li { font-size: 12px; font-weight: 500; color: var(--text-2); background: var(--off); border-radius: 999px; padding: 5px 10px; }
.field-card .link-arrow { margin-top: auto; align-self: flex-start; }

.ed-slot { display: inline-flex; align-items: center; justify-content: center; text-align: center; font-size: 11px; font-weight: 600; letter-spacing: .08em; color: var(--nardo); border: 1px dashed var(--nardo-l); border-radius: 4px; padding: 8px 12px; min-height: 40px; max-width: 170px; line-height: 1.35; background: rgba(255,255,255,.6); }
.ed-slot.dark { color: var(--nardo-l); border-color: var(--nardo-d); background: transparent; }
.ed-logo { height: 44px; width: auto; }
.endorse { font-size: 12px; letter-spacing: .06em; color: var(--nardo); margin-top: 10px; }

.field-hero .field-brand-box { justify-self: end; display: flex; flex-direction: column; align-items: flex-start; gap: 4px; background: #fff; border: 1px solid var(--line); border-radius: 6px; padding: 22px 26px; min-width: 260px; }
.field-hero .field-brand-box img { height: 50px; width: auto; }

.brand-card { display: grid; grid-template-columns: 220px 1fr; gap: 28px; align-items: start; background: #fff; border: 1px solid var(--line); border-radius: 6px; padding: 28px; }
.brand-card .brand-logo { display: flex; align-items: center; min-height: 60px; }
.brand-card .brand-logo img { height: 50px; width: auto; }
.brand-card h3 { font-size: 22px; margin-bottom: 8px; }
.brand-card p { font-size: 14.5px; color: var(--text-2); }

.footer-brands { border-top: 1px solid #1E2021; padding: 26px 0; display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.brands-label { font-size: 11px; font-weight: 600; letter-spacing: .16em; color: var(--nardo); }
.brands-row { display: flex; align-items: center; gap: 36px; flex-wrap: wrap; }
.brands-row img { height: 34px; width: auto; }
.ed-slot-link:hover { color: inherit; }

@media (max-width: 1023px) {
  .nav-panel .panel-group { padding: 14px 0 6px; border-bottom: 1px solid #1E2021; }
  .nav-panel .panel-label { font-size: 11px; font-weight: 600; letter-spacing: .16em; color: var(--nardo-l); margin-bottom: 4px; }
  .nav-panel a.item.sub { font-size: 24px; border-bottom: 0; padding: 10px 0 10px 14px; display: flex; flex-direction: column; gap: 2px; }
  .nav-panel a.item.sub small { font-family: var(--font-body); font-size: 12px; font-weight: 500; color: var(--nardo-l); letter-spacing: .04em; }
  .field-hero .field-brand-box { justify-self: start; }
  .brand-card { grid-template-columns: 1fr; gap: 16px; }
}
@media (max-width: 719px) {
  .field-card h3 { font-size: 22px; }
}

/* ---------- brand logos (three brands) ---------- */
.ed-logo, .loj-logo, .dob-logo { height: 44px; width: auto; display: block; }
.field-head .ed-logo, .field-head .loj-logo, .field-head .dob-logo { height: 30px; }
.field-hero .field-brand-box .ed-logo, .field-hero .field-brand-box .loj-logo { height: 58px; }
.brand-card { grid-template-columns: 1fr; gap: 18px; }
.brand-card .brand-logo { min-height: 56px; }
.brand-card .brand-logo .ed-logo, .brand-card .brand-logo .loj-logo, .brand-card .brand-logo .dob-logo { height: 48px; }
.brands-row .ed-logo, .brands-row .loj-logo, .brands-row .dob-logo { height: 32px; }
.field-logistics .eyebrow::before { background: #F2A413; }
.field-card.is-logistics::before { background: linear-gradient(90deg, #0B0C0C 0 70%, #F2A413 70%); }
@media (max-width: 719px) { .field-hero .field-brand-box .ed-logo, .field-hero .field-brand-box .loj-logo { height: 46px; } }

/* ---------- illustrations, references, credit ---------- */
.hero-media .illus { position: absolute; inset: 0; width: 100%; height: 100%; }
.supply-visual .illus { width: 100%; height: 100%; }
.page-hero .hero-art { justify-self: end; width: 100%; max-width: 560px; border-radius: 6px; overflow: hidden; border: 1px solid var(--line); background: #fff; }
.page-hero .hero-art .illus { width: 100%; height: auto; display: block; }
.hero-brand { margin-top: 26px; display: flex; align-items: center; }
.hero-brand .ed-logo, .hero-brand .loj-logo { height: 52px; }
/* references: logo tiles (white cards so logos with white backgrounds blend in) */
.refs-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.ref-tile { --logo-h: 60px; background: #fff; border: 1px solid var(--line); border-radius: 6px; height: 128px; display: flex; align-items: center; justify-content: center; padding: 22px 20px; }
.ref-tile img { --s: 1; max-height: calc(var(--logo-h) * var(--s)); max-width: calc(72% * var(--s)); width: auto; height: auto; object-fit: contain; }
.ref-tile.large { --logo-h: 76px; height: 168px; padding: 28px 24px; }
.cta-phone a, .contact-line a, .info-card a { color: inherit; text-decoration: none; }
.cta-phone a:hover, .contact-line a:hover, .info-card a:hover { text-decoration: underline; text-underline-offset: 3px; }
.refs-legal { margin-top: 22px; font-size: 12px; color: var(--nardo); }
.footer-credit { border-top: 1px solid #1E2021; padding: 16px 0 20px; display: flex; align-items: center; gap: 12px; font-size: 12px; color: var(--nardo); }
.footer-credit a { color: var(--nardo-l); font-weight: 600; }
.footer-credit a:hover { color: #fff; }
.footer-credit .credit-logo { display: inline-flex; align-items: center; background: #fff; border-radius: 4px; padding: 5px 9px; line-height: 0; transition: opacity .15s; }
.footer-credit .credit-logo:hover { opacity: .85; }
.footer-credit img { height: 26px; width: auto; }
.section.tight .who-list li { background: var(--off); border-color: var(--off); }
@media (max-width: 1023px) {
  .page-hero .hero-art { justify-self: start; max-width: none; display: block; }
  .refs-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .section.tight .who-list { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
}
@media (max-width: 719px) {
  .refs-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .ref-tile, .ref-tile.large { --logo-h: 52px; height: 104px; padding: 18px 14px; }
  .ref-tile img { max-width: calc(78% * var(--s)); }
  .refs-grid li:last-child:nth-child(odd) { grid-column: 1 / -1; }
  .refs-grid li:last-child:nth-child(odd) img { max-width: calc(38% * var(--s)); }
  .section.tight .who-list { grid-template-columns: 1fr !important; }
}
