@font-face {
  font-family: "Manrope";
  src: url("../../assets/source/devyapcyprus/fonts/manrope-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("../../assets/source/devyapcyprus/fonts/manrope-500.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("../../assets/source/devyapcyprus/fonts/manrope-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("../../assets/source/devyapcyprus/fonts/manrope-700.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --teal: #005663;
  --teal-dark: #003d46;
  --green: #75c043;
  --green-ink: #3f741e;
  --green-on-dark: #a5d86b;
  --green-fill: #75c043;
  --ink: #1f2a2b;
  --muted: #42545a;
  --line: #e1e8e5;
  --sand: #f7f6f2;
  --soft: #edf3f0;
  --white: #fff;
  --container: 1200px;
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-pill: 999px;
  --shadow: 0 16px 40px rgba(0, 61, 70, .1);
  --font: "Manrope", Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--white); font-family: var(--font); font-size: 1rem; line-height: 1.65; }
body, button, input, select, textarea { -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
img, video { display: block; max-width: 100%; }
button { font: inherit; }
:focus-visible { outline: 3px solid var(--green-ink); outline-offset: 4px; }

.container { width: min(var(--container), calc(100% - 3rem)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 40; top: 1rem; left: 1rem; padding: .7rem 1rem; color: var(--white); background: var(--teal-dark); border-radius: var(--radius-sm); transform: translateY(-180%); }
.skip-link:focus { transform: translateY(0); }

.site-header { position: sticky; z-index: 20; top: 0; background: rgba(255, 255, 255, .96); border-bottom: 1px solid var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 5rem; }
.brand { display: inline-flex; align-items: center; }
.brand img { width: 9.1rem; height: auto; }
.primary-nav { display: flex; align-items: center; gap: clamp(1rem, 2vw, 2rem); color: var(--teal); font-size: .78rem; font-weight: 600; }
.primary-nav > a:not(.nav-cta) { opacity: .88; transition: color .2s ease, opacity .2s ease; }
.primary-nav > a:not(.nav-cta):hover, .primary-nav > a[aria-current="page"] { color: var(--green-ink); opacity: 1; }
.language-link { padding-left: 1.25rem; border-left: 1px solid var(--line); }
.nav-cta, .button { display: inline-flex; gap: .8rem; align-items: center; justify-content: space-between; }
.nav-cta { padding: .75rem 1rem; color: var(--white); background: var(--teal); border-radius: var(--radius-sm); box-shadow: 0 6px 16px rgba(0, 86, 99, .12); transition: background .2s ease, transform .2s ease; }
.nav-cta:hover { background: var(--teal-dark); transform: translateY(-1px); }
.nav-cta span, .button span { font-size: 1.1rem; line-height: 1; }
.menu-toggle { display: none; width: 2.75rem; height: 2.75rem; padding: .65rem; color: var(--teal); background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); }
.menu-toggle > span:not(.sr-only) { display: block; height: 2px; margin: .32rem 0; background: currentColor; }

.hero { position: relative; overflow: hidden; padding-top: clamp(3rem, 8vw, 6.75rem); background: var(--sand); }
.hero-slides { width: min(1140px, calc(100% - 8rem)); aspect-ratio: 3 / 1; margin-inline: auto; overflow: hidden; border-radius: var(--radius-md); box-shadow: var(--shadow); }
.hero-slide { position: absolute; inset: 0; height: 100%; opacity: 0; visibility: hidden; transition: opacity .35s ease, visibility .35s ease; }
.hero-slide.is-active { position: relative; opacity: 1; visibility: visible; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; object-position: left center; }
.hero-footer { display: flex; align-items: center; justify-content: center; min-height: 6.5rem; color: var(--teal); }
.hero-footer p { display: none; }
.hero-controls > span { display: none; }
.hero-controls { display: flex; align-items: center; gap: .7rem; }
.hero-control { width: .65rem; height: .65rem; padding: 0; color: transparent; background: rgba(0, 86, 99, .2); border: 0; border-radius: 50%; cursor: pointer; font-size: 0; transition: background-color .2s ease; }
.hero-control.is-active { background: var(--green); }
.hero-arrow { position: absolute; top: 50%; z-index: 2; display: grid; width: 2.75rem; height: 2.75rem; place-items: center; color: var(--white); background: rgba(0, 61, 70, .62); border: 1px solid rgba(255,255,255,.35); border-radius: 50%; cursor: pointer; transform: translateY(-50%); transition: background-color .2s ease, border-color .2s ease; }
.hero-arrow:hover { background: var(--teal-dark); }
.hero-arrow-prev { left: max(1rem, calc((100% - 1200px) / 2)); }
.hero-arrow-next { right: max(1rem, calc((100% - 1200px) / 2)); }

.direction-strip { background: var(--white); border-bottom: 1px solid var(--line); scrollbar-width: none; }
.direction-strip::-webkit-scrollbar { display: none; }
.direction-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.direction-card { position: relative; display: grid; gap: .3rem; min-height: 8rem; padding: 1.5rem 2.25rem 1.5rem 0; border-right: 1px solid var(--line); transition: background-color .2s ease; }
.direction-card:first-child { padding-left: 0; }
.direction-card + .direction-card { padding-left: 1.5rem; }
.direction-card:last-child { border-right: 0; }
.direction-card:hover { background: var(--sand); }
.direction-index { color: var(--green-ink); font-size: .72rem; font-weight: 700; letter-spacing: .08em; }
.direction-card strong { color: var(--teal); font-size: 1.05rem; font-weight: 700; }
.direction-card > span:last-child { color: var(--muted); font-size: .78rem; }
.direction-card b { display: inline-block; margin-left: .3rem; color: var(--teal); font-weight: 500; transition: color .2s ease; }
.direction-card:hover b { color: var(--green-ink); }

.section { padding: clamp(4.5rem, 8vw, 7.5rem) 0; }
.eyebrow { margin: 0 0 1rem; color: var(--teal); font-size: .72rem; font-weight: 700; letter-spacing: .14em; line-height: 1.35; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { text-wrap: balance; }
h1, h2 { margin-bottom: 1.4rem; color: var(--ink); font-weight: 700; letter-spacing: -.055em; line-height: 1.1; }
h1 { max-width: 11ch; font-size: clamp(2.7rem, 5vw, 4.8rem); }
h2 { font-size: clamp(2.15rem, 4vw, 3.75rem); }
h3 { line-height: 1.25; }
h1 strong, h2 strong { color: var(--teal); font-weight: 700; }
.text-link { display: inline-flex; gap: .65rem; align-items: center; width: fit-content; padding-bottom: .3rem; color: var(--teal); border-bottom: 1px solid currentColor; font-size: .78rem; font-weight: 700; }
.text-link span { color: var(--green-ink); transition: color .2s ease; }
.text-link:hover span { color: currentColor; }

.about { background: var(--sand); }
.about-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2.5rem, 8vw, 7rem); align-items: start; }
.about h1 { max-width: 14ch; font-size: clamp(2.2rem, 4vw, 3.4rem); }
.about-copy p:not(.eyebrow) { max-width: 38rem; color: var(--muted); font-size: .96rem; }
.about-image { margin: 0; padding: 0 0 2rem 2rem; background: #e8e7e3; border-radius: var(--radius-md); }
.about-image img { width: 100%; aspect-ratio: 2.46; object-fit: cover; object-position: center 48%; border-radius: 0 var(--radius-md) 0 0; }
.about-image figcaption { padding: .8rem 1rem 0; color: var(--muted); font-size: .72rem; }
.about-features { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.25rem; max-width: 34rem; margin-top: 2rem; }
.about-features article { display: flex; gap: .9rem; align-items: center; min-height: 4rem; padding-top: .9rem; border-top: 1px solid var(--teal); }
.about-features span { color: var(--green-ink); font-size: 1.4rem; font-weight: 700; }
.about-features h3 { margin: 0; color: var(--ink); font-size: 1rem; font-weight: 600; }
.evidence-section { background: var(--soft); }
.evidence-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.evidence-item { min-width: 0; background: var(--white); border-top: 3px solid var(--teal); }
.evidence-item figure { margin: 0; }
.evidence-item img { width: 100%; aspect-ratio: 1.45; object-fit: cover; }
.evidence-item > div { padding: 1.15rem 1.2rem 1.35rem; }
.evidence-item span { color: var(--green-ink); font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.evidence-item h3 { margin: .65rem 0 .45rem; color: var(--teal); font-size: 1.05rem; }
.evidence-item p { margin: 0; color: var(--muted); font-size: .84rem; }
.action-row { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 2rem; }

.section-teal { color: var(--white); background: var(--teal); }
.light-heading .eyebrow, .light-heading h2 strong, .section-teal .eyebrow { color: var(--green-on-dark); }
.light-heading h2 { color: var(--white); }
.light-heading .text-link { color: var(--white); }
.section-teal .text-link span { color: var(--green-on-dark); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 2rem; margin-bottom: 3rem; }
.section-heading h2 { max-width: 14ch; margin-bottom: 0; }
.heading-note { max-width: 23rem; margin-bottom: .25rem; color: var(--muted); font-size: .92rem; }
.project-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
.project-card { min-width: 0; color: var(--white); }
.project-card figure { position: relative; overflow: hidden; margin: 0; background: var(--teal-dark); border: 1px solid transparent; border-radius: var(--radius-md); transition: border-color .2s ease; }
.project-card figure, .project-card-large figure, .project-card:not(.project-card-large) figure { aspect-ratio: 1 / 1.08; }
.project-card img { width: 100%; height: 100%; object-fit: cover; }
.project-card:hover figure { border-color: var(--green); }
.project-card-copy { padding: 1rem .15rem 0; }
.project-card-copy span { display: block; color: var(--green-on-dark); font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.project-card-copy h3 { margin: .35rem 0 0; font-size: 1.12rem; font-weight: 600; }
.project-card-copy b { display: block; margin-top: .35rem; color: rgba(255,255,255,.72); font-size: 1rem; font-weight: 400; }
.project-directory { display: grid; grid-template-columns: .8fr repeat(3, 1fr); margin-top: 3.5rem; border-top: 1px solid rgba(255,255,255,.28); }
.project-directory > div, .project-directory > a { min-height: 4.5rem; padding: 1.1rem 1rem 1rem 0; border-bottom: 1px solid rgba(255,255,255,.28); }
.project-directory > div { display: grid; align-content: center; gap: .25rem; }
.project-directory > div span { color: var(--green-on-dark); font-size: .68rem; font-weight: 700; letter-spacing: .1em; }
.project-directory > div strong { font-size: .92rem; font-weight: 500; }
.project-directory > a { position: relative; padding-right: 2rem; color: rgba(255,255,255,.8); font-size: .86rem; }
.project-directory > a:hover { color: var(--green-on-dark); }
.project-directory > a b { position: absolute; right: 1rem; color: var(--green-on-dark); font-size: 1rem; font-weight: 400; }

.values { background: var(--white); }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.value-grid article { min-height: 12rem; padding: 1.25rem 1rem 1.75rem 0; background: transparent; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); border-radius: 0; }
.value-grid article + article { padding-left: 1.25rem; border-left: 1px solid var(--line); }
.value-grid span { display: block; margin-bottom: 3rem; color: var(--green-ink); font-size: .76rem; font-weight: 700; letter-spacing: .1em; }
.value-grid h3 { margin-bottom: .6rem; color: var(--teal); font-size: 1.15rem; font-weight: 700; }
.value-grid p { max-width: 20rem; margin-bottom: 0; color: var(--muted); font-size: .9rem; }

.section-sand { background: var(--sand); }
.field-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(2rem, 8vw, 7rem); align-items: center; }
.field-grid h2 { max-width: 9ch; color: var(--teal); }
.field-grid p:not(.eyebrow) { max-width: 28rem; color: var(--muted); }
.field-grid video { width: 100%; aspect-ratio: 16 / 8; object-fit: cover; background: var(--teal-dark); border-radius: var(--radius-md); box-shadow: var(--shadow); }
.button { min-height: 3.2rem; padding: .8rem 1.1rem; border: 0; border-radius: var(--radius-sm); cursor: pointer; font-size: .78rem; font-weight: 700; transition: color .2s ease, background-color .2s ease, border-color .2s ease; }
.button-teal { color: var(--white); background: var(--teal); }
.button-teal:hover { background: var(--teal-dark); }
.button-light { color: var(--teal); background: var(--white); }
.button-outline { color: var(--teal); background: transparent; border: 1px solid var(--teal); }
.button-outline:hover { color: var(--white); background: var(--teal); }

.blog { background: var(--white); }
.blog-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.article-card { min-width: 0; padding: 1rem 0 0; background: var(--white); border: 0; border-top: 1px solid var(--line); border-radius: 0; transition: border-color .2s ease; }
.article-card:hover { border-color: var(--teal); }
.article-card > img { width: 100%; aspect-ratio: 1.45; object-fit: cover; border-radius: 0; }
.article-card > div { padding: 1rem 0 .35rem; }
.article-card time, .article-index time { color: var(--green-ink); font-size: .7rem; font-weight: 700; letter-spacing: .08em; }
.article-card h3 { min-height: 4.2rem; margin: .55rem 0 .9rem; color: var(--teal); font-size: 1rem; font-weight: 700; }
.article-card span { color: var(--muted); font-size: .74rem; font-weight: 700; }
.article-index { margin-top: 3.5rem; border-top: 1px solid var(--line); }
.article-index a { display: grid; grid-template-columns: 7.5rem 1fr 1.5rem; gap: 1rem; align-items: center; padding: 1.1rem 0; border-bottom: 1px solid var(--line); }
.article-index span { color: var(--teal); font-size: .88rem; }
.article-index b { color: var(--teal); font-size: 1rem; font-weight: 400; }
.article-index a:hover span, .article-index a:hover b { color: var(--green-ink); }

.section-soft { background: var(--soft); }
.download-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(2rem, 8vw, 7rem); align-items: start; }
.download-grid h2 { max-width: 10ch; color: var(--teal); }
.download-list { border-top: 1px solid var(--line); }
.download-list a { display: flex; justify-content: space-between; gap: 1rem; padding: 1.25rem 0; border-bottom: 1px solid var(--line); color: var(--teal); font-size: .92rem; font-weight: 700; }
.download-list a:hover { color: var(--green-ink); }
.download-list span { color: var(--muted); font-size: .7rem; letter-spacing: .08em; }

.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(3rem, 10vw, 9rem); }
.contact h2 { max-width: 10ch; color: var(--white); }
.contact h2 strong { color: var(--green-on-dark); }
.contact-lede { max-width: 27rem; color: rgba(255,255,255,.72); }
.contact-details { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem 2rem; }
.contact-details > a { padding-top: .9rem; border-top: 1px solid rgba(255,255,255,.3); }
.contact-details small { display: block; margin-bottom: .35rem; color: var(--green-on-dark); font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.contact-details strong { color: var(--white); font-size: 1rem; font-weight: 500; line-height: 1.45; }
.contact-actions { display: flex; grid-column: 1 / -1; gap: 1rem; align-items: center; padding-top: .5rem; }
.whatsapp-link { color: var(--white); font-size: .8rem; font-weight: 700; }
.floating-whatsapp { position: fixed; z-index: 30; right: 1.25rem; bottom: 1.25rem; display: inline-flex; gap: .65rem; align-items: center; padding: .85rem 1rem; color: var(--teal-dark); background: var(--green); border: 1px solid var(--teal-dark); border-radius: var(--radius-pill); font-size: .7rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; box-shadow: var(--shadow); }
.floating-whatsapp:hover { color: var(--white); background: var(--teal-dark); }

.site-footer { color: var(--white); background: var(--teal-dark); }
.footer-lead { display: flex; align-items: end; justify-content: space-between; gap: 2rem; padding: clamp(3rem, 6vw, 5rem) 0; border-bottom: 1px solid rgba(255,255,255,.2); }
.footer-lead .eyebrow { margin-bottom: .8rem; color: var(--green-on-dark); }
.footer-lead h2 { max-width: 13ch; margin-bottom: 0; color: var(--white); font-size: clamp(2rem, 4vw, 3.5rem); }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 2rem; padding: 3rem 0; }
.footer-brand img { width: 8.5rem; filter: brightness(0) invert(1); }
.footer-brand p { max-width: 18rem; margin: 1.1rem 0 0; color: rgba(255,255,255,.68); font-size: .82rem; }
.footer-label { margin: 0 0 1rem; color: var(--green-on-dark); font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.footer-links { display: grid; gap: .55rem; }
.footer-links a { width: fit-content; color: rgba(255,255,255,.78); font-size: .82rem; transition: color .2s ease; }
.footer-links a:hover { color: var(--green-on-dark); }
.footer-bottom { display: flex; justify-content: space-between; gap: 2rem; padding: 1rem 0 1.4rem; border-top: 1px solid rgba(255,255,255,.18); color: rgba(255,255,255,.54); font-size: .7rem; }

.page-hero { padding: clamp(4.5rem, 9vw, 7.5rem) 0 3.5rem; background: var(--sand); }
.page-hero .container { position: relative; }
.page-hero.hero-editorial,
.page-hero.hero-journal { background: #f4f2ec; }
.page-hero.hero-directory { color: var(--white); background: var(--teal); }
.page-hero.hero-contact { background: var(--white); border-bottom: 1px solid var(--line); }
.page-hero.hero-project { color: var(--white); background: var(--teal-dark); }
.page-hero.hero-article { background: var(--sand); border-left: .4rem solid var(--green); }
.page-hero.hero-directory h1,
.page-hero.hero-project h1 { color: var(--white); }
.page-hero.hero-directory .breadcrumbs,
.page-hero.hero-project .breadcrumbs,
.page-hero.hero-directory .page-hero-lede,
.page-hero.hero-project .page-hero-lede { color: rgba(255,255,255,.72); }
.page-hero.hero-directory .eyebrow,
.page-hero.hero-project .eyebrow { color: var(--green-on-dark); }
.hero-editorial .container,
.hero-directory .container,
.hero-journal .container,
.hero-project .container,
.hero-contact .container { display: grid; grid-template-columns: minmax(0, 1fr) minmax(16rem, .72fr); gap: clamp(2rem, 8vw, 7rem); align-items: end; }
.hero-editorial .breadcrumbs,
.hero-directory .breadcrumbs,
.hero-journal .breadcrumbs,
.hero-project .breadcrumbs,
.hero-contact .breadcrumbs,
.hero-editorial .eyebrow,
.hero-directory .eyebrow,
.hero-journal .eyebrow,
.hero-project .eyebrow,
.hero-contact .eyebrow,
.hero-editorial h1,
.hero-directory h1,
.hero-journal h1,
.hero-project h1,
.hero-contact h1,
.hero-editorial .page-hero-lede,
.hero-directory .page-hero-lede,
.hero-journal .page-hero-lede,
.hero-project .page-hero-lede,
.hero-contact .page-hero-lede { grid-column: 1; }
.hero-editorial .breadcrumbs,
.hero-directory .breadcrumbs,
.hero-journal .breadcrumbs,
.hero-project .breadcrumbs,
.hero-contact .breadcrumbs { grid-row: 1; }
.hero-editorial .eyebrow,
.hero-directory .eyebrow,
.hero-journal .eyebrow,
.hero-project .eyebrow,
.hero-contact .eyebrow { grid-row: 2; }
.hero-editorial h1,
.hero-directory h1,
.hero-journal h1,
.hero-project h1,
.hero-contact h1 { grid-row: 3; }
.hero-editorial .page-hero-lede,
.hero-directory .page-hero-lede,
.hero-journal .page-hero-lede,
.hero-project .page-hero-lede,
.hero-contact .page-hero-lede { grid-row: 4; }
.hero-side { grid-column: 2; grid-row: 1 / span 4; align-self: stretch; display: flex; flex-direction: column; justify-content: end; gap: .8rem; }
.hero-side img { width: 100%; aspect-ratio: 1.35; object-fit: cover; border-radius: var(--radius-md); box-shadow: 0 1.5rem 3rem rgba(0,61,70,.16); }
.hero-side-note { display: flex; justify-content: space-between; gap: 1rem; color: var(--muted); font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.hero-project .hero-side-note { color: rgba(255,255,255,.68); }
.hero-callout { grid-column: 2; grid-row: 1 / span 4; align-self: stretch; display: flex; flex-direction: column; justify-content: space-between; min-height: 15rem; padding: 1.4rem; background: var(--soft); border: 1px solid var(--line); border-radius: var(--radius-md); }
.hero-callout strong { max-width: 12ch; color: var(--teal); font-size: clamp(1.4rem, 3vw, 2.3rem); line-height: 1.1; }
.hero-callout p { max-width: 19rem; margin: 0; color: var(--muted); font-size: .84rem; }
.hero-reading { grid-column: 2; grid-row: 1 / span 4; align-self: stretch; display: flex; flex-direction: column; justify-content: end; min-height: 12rem; padding: 1.4rem 0 0 1.4rem; border-left: 1px solid var(--teal); }
.hero-reading span { color: var(--green-ink); font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.hero-reading strong { margin: .8rem 0; color: var(--teal); font-size: 1.2rem; }
.hero-reading p { margin: 0; color: var(--muted); font-size: .84rem; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.5rem; color: var(--muted); font-size: .75rem; }
.breadcrumbs a:hover { color: var(--green-ink); }
.page-hero h1 { max-width: 12ch; margin-bottom: 1rem; }
.page-hero-lede { max-width: 42rem; margin-bottom: 0; color: var(--muted); font-size: 1.05rem; }
.page-content { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.page-intro { max-width: 46rem; }
.page-intro h2 { max-width: 14ch; color: var(--teal); }
.page-intro p { color: var(--muted); }
.policy-section { background: var(--white); }
.policy-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.policy-card { min-height: 15rem; padding: 1.5rem; background: var(--soft); border-top: 3px solid var(--green); }
.policy-card-dark { color: var(--white); background: var(--teal); border-top-color: var(--green); }
.policy-card span { color: var(--green-ink); font-size: .68rem; font-weight: 700; letter-spacing: .1em; }
.policy-card-dark span { color: var(--green-on-dark); }
.policy-card h3 { margin: 3.2rem 0 .75rem; color: var(--teal); font-size: 1.15rem; }
.policy-card-dark h3 { color: var(--white); }
.policy-card p { max-width: 24rem; margin-bottom: 0; color: var(--muted); font-size: .88rem; }
.policy-card-dark p { color: rgba(255,255,255,.72); }
.page-section-heading { display: flex; align-items: end; justify-content: space-between; gap: 2rem; margin-bottom: 2rem; }
.page-section-heading h2 { margin-bottom: 0; }
.filter-row { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 2rem; }
.portfolio-guide { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(2rem, 8vw, 7rem); align-items: end; margin-bottom: 3rem; padding-bottom: 2rem; border-bottom: 1px solid var(--line); }
.portfolio-guide h2 { max-width: 13ch; margin-bottom: 0; color: var(--teal); font-size: clamp(1.8rem, 3vw, 2.7rem); }
.portfolio-guide > p { max-width: 30rem; margin-bottom: .2rem; color: var(--muted); }
.filter-pill { padding: .55rem .85rem; color: var(--teal); background: var(--soft); border: 1px solid transparent; border-radius: var(--radius-pill); font-size: .75rem; font-weight: 700; transition: color .2s ease, background-color .2s ease, border-color .2s ease; }
.filter-pill.is-active, .filter-pill:hover { color: var(--white); background: var(--teal); }
.directory-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.directory-card { padding: 1rem 0 0; background: var(--white); border: 0; border-top: 1px solid var(--line); border-radius: 0; transition: border-color .2s ease; }
.directory-card:hover { border-color: var(--teal); }
.directory-card > img { width: 100%; aspect-ratio: 1.45; object-fit: cover; margin-bottom: 1.1rem; border-radius: 0; }
.directory-card h3 { margin: .5rem 0 .35rem; color: var(--teal); font-size: 1.1rem; }
.directory-card p { margin-bottom: 1rem; color: var(--muted); font-size: .86rem; }
.directory-card .project-card-copy { padding: 0; }
.directory-card .project-card-copy b { margin-top: 1rem; color: var(--green-ink); }

.project-detail { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.project-detail-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2rem, 8vw, 7rem); align-items: start; }
.project-detail-media { margin: 0; }
.project-detail-media img { width: 100%; aspect-ratio: 1.5; object-fit: cover; border-radius: var(--radius-md); box-shadow: var(--shadow); }
.project-detail-copy h2 { max-width: 12ch; color: var(--teal); }
.project-detail-copy p { color: var(--muted); }
.meta-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: .75rem; margin: 2rem 0; }
.meta-list div { padding: .9rem; background: var(--soft); border-radius: var(--radius-sm); }
.meta-list dt, .meta-list small { display: block; color: var(--muted); font-size: .68rem; font-weight: 700; letter-spacing: .08em; line-height: 1.3; text-transform: uppercase; }
.meta-list dd, .meta-list strong { display: block; margin: .3rem 0 0; color: var(--teal); font-size: .9rem; font-weight: 700; line-height: 1.35; overflow-wrap: anywhere; }
.button-row { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.5rem; }
.detail-note { padding: 1rem 1.1rem; color: var(--muted); background: var(--sand); border-left: 3px solid var(--green); font-size: .84rem; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 3rem; }
.gallery-grid img { width: 100%; aspect-ratio: 1.2; object-fit: cover; border-radius: var(--radius-sm); }

.article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 18rem; gap: clamp(2rem, 8vw, 7rem); align-items: start; }
.article-body { max-width: 48rem; }
.article-body > img { width: 100%; max-height: 32rem; object-fit: cover; border-radius: var(--radius-md); margin-bottom: 2rem; }
.article-body h2 { max-width: 20ch; margin-top: 2.5rem; color: var(--teal); font-size: 2rem; }
.article-body h3 { margin-top: 2rem; color: var(--teal); font-size: 1.35rem; }
.article-body h4 { margin: 1.45rem 0 .5rem; color: var(--teal); font-size: 1.05rem; line-height: 1.35; }
.article-body p { color: var(--muted); }
.article-body ul { margin: 1rem 0 1.5rem; padding-left: 1.2rem; color: var(--muted); }
.article-body li { margin: .7rem 0; padding-left: .3rem; }
.article-source-note { margin-top: 2.5rem; padding: 1rem 1.1rem; color: var(--muted); background: var(--soft); border-left: 3px solid var(--green); font-size: .8rem; }
.article-source-note a { color: var(--teal); font-weight: 700; }
.article-aside { position: sticky; top: 7rem; padding: 1.25rem; background: var(--soft); border-radius: var(--radius-md); }
.article-aside h3 { margin-bottom: .8rem; color: var(--teal); font-size: 1rem; }
.article-aside a { display: block; padding: .65rem 0; border-bottom: 1px solid var(--line); color: var(--muted); font-size: .82rem; }
.article-aside a:hover { color: var(--teal); }

.contact-panel { display: grid; grid-template-columns: .8fr 1.2fr; gap: 1rem; }
.contact-panel > a { display: block; padding: 1.5rem; background: var(--soft); border: 1px solid transparent; border-radius: var(--radius-md); transition: background-color .2s ease, border-color .2s ease; }
.contact-panel > a:hover { background: #e3efea; border-color: var(--teal); }
.contact-panel small { display: block; margin-bottom: .4rem; color: var(--teal); font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.contact-panel strong { color: var(--ink); font-size: 1rem; font-weight: 600; }
.contact-panel > a:last-child { grid-column: 1 / -1; }
.map-note { padding: 1.5rem; color: var(--muted); background: var(--sand); border-radius: var(--radius-md); }
.contact-path-section { background: var(--sand); }
.contact-path-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.contact-path { display: grid; grid-template-columns: 2rem 1fr 1.25rem; gap: 1rem; align-items: start; min-height: 11rem; padding: 1.35rem 1.2rem 1.2rem 0; border-bottom: 1px solid var(--line); border-right: 1px solid var(--line); }
.contact-path + .contact-path { padding-left: 1.2rem; }
.contact-path:last-child { border-right: 0; }
.contact-path > span { color: var(--green-ink); font-size: .75rem; font-weight: 700; }
.contact-path h3 { margin: 0 0 .55rem; color: var(--teal); font-size: 1rem; }
.contact-path p { margin: 0; color: var(--muted); font-size: .82rem; }
.contact-path b { color: var(--teal); font-size: 1.05rem; font-weight: 400; }
.contact-path:hover h3, .contact-path:hover b { color: var(--green-ink); }

.contact-form-section { background: var(--white); }
.contact-form-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(2rem, 8vw, 7rem); align-items: start; }
.contact-form-intro h2 { max-width: 10ch; color: var(--teal); }
.contact-form-intro h2 strong { color: var(--green-ink); }
.contact-form-intro > p:not(.eyebrow) { max-width: 25rem; color: var(--muted); }
.contact-expectations { margin: 2rem 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.contact-expectations li { display: grid; grid-template-columns: 2rem 1fr; gap: .75rem; padding: .85rem 0; border-bottom: 1px solid var(--line); }
.contact-expectations span { color: var(--green-ink); font-size: .72rem; font-weight: 700; }
.contact-expectations p { margin: 0; color: var(--teal); font-size: .84rem; }
.contact-form { padding: clamp(1.25rem, 3vw, 2rem); background: var(--soft); border-radius: var(--radius-md); }
.contact-form .field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; align-items: stretch; }
.form-field { display: grid; gap: .35rem; }
.form-field-full { grid-column: 1 / -1; }
.form-field label { color: var(--teal); font-size: .72rem; font-weight: 700; letter-spacing: .04em; }
.form-field input, .form-field select, .form-field textarea { width: 100%; padding: .8rem .85rem; color: var(--ink); background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); font: inherit; font-size: .88rem; }
.form-field textarea { min-height: 8rem; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--teal); outline: 3px solid rgba(117, 192, 67, .25); outline-offset: 1px; }
.form-check { display: flex; gap: .65rem; align-items: start; margin: 1rem 0; color: var(--muted); font-size: .75rem; }
.form-check input { margin-top: .25rem; accent-color: var(--teal); }
.form-check a { color: var(--teal); text-decoration: underline; }
.form-actions { display: flex; flex-wrap: wrap; gap: .9rem; align-items: center; }
.form-help, .form-status { margin: .8rem 0 0; color: var(--muted); font-size: .74rem; }
.form-status { min-height: 1.2em; color: var(--teal); font-weight: 700; }

.blog-topics { background: var(--sand); }
.blog-topic-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.blog-topic { min-height: 13rem; padding: 1.4rem; background: var(--white); border-top: 3px solid var(--green); }
.blog-topic span { color: var(--green-ink); font-size: .7rem; font-weight: 700; letter-spacing: .1em; }
.blog-topic h3 { margin: 2.7rem 0 .55rem; color: var(--teal); font-size: 1.15rem; }
.blog-topic p { margin-bottom: 1rem; color: var(--muted); font-size: .84rem; }
.blog-topic b { color: var(--teal); font-size: .78rem; }
.blog-topic:hover h3, .blog-topic:hover b { color: var(--green-ink); }

.project-questions { background: var(--sand); }
.project-question-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.project-question { min-height: 12rem; padding: 1.35rem; background: var(--white); border-top: 3px solid var(--green); }
.project-question span { color: var(--green-ink); font-size: .7rem; font-weight: 700; letter-spacing: .1em; }
.project-question h3 { margin: 2.25rem 0 .55rem; color: var(--teal); font-size: 1.05rem; }
.project-question p { margin: 0; color: var(--muted); font-size: .83rem; }

.place-notes { background: var(--white); }
.place-note-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; }
.place-note { display: grid; grid-template-rows: auto 1fr; min-width: 0; padding-top: 1rem; border-top: 1px solid var(--line); }
.place-note img { width: 100%; aspect-ratio: 1.45; object-fit: cover; }
.place-note > div { display: flex; flex-direction: column; align-items: start; padding-top: 1rem; }
.place-note > div > span, .decision-item summary span { color: var(--green-ink); font-size: .68rem; font-weight: 700; letter-spacing: .1em; }
.place-note h3 { margin: .7rem 0 .55rem; color: var(--teal); font-size: 1.2rem; }
.place-note p { margin-bottom: 1rem; color: var(--muted); font-size: .86rem; }
.place-note b { margin-top: auto; color: var(--teal); font-size: .76rem; }
.place-note:hover h3, .place-note:hover b { color: var(--green-ink); }

.decision-desk { background: var(--soft); }
.decision-list { border-top: 1px solid var(--line); }
.decision-item { border-bottom: 1px solid var(--line); }
.decision-item summary { display: grid; grid-template-columns: 8rem 1fr 2rem; gap: 1rem; align-items: center; padding: 1.15rem 0; color: var(--teal); cursor: pointer; list-style: none; }
.decision-item summary::-webkit-details-marker { display: none; }
.decision-item summary strong { font-size: 1.15rem; font-weight: 700; }
.decision-item summary b, .faq-item summary b { justify-self: end; color: var(--green-ink); font-size: 1.35rem; font-weight: 400; transition: transform .2s ease; }
.decision-item[open] summary b, .faq-item[open] summary b { transform: rotate(45deg); }
.decision-item p { max-width: 42rem; margin: 0 3rem 1.4rem 9rem; color: var(--muted); font-size: .9rem; }

.faq-section { background: var(--sand); }
.faq-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(2rem, 8vw, 7rem); align-items: start; }
.faq-grid h2 { max-width: 10ch; color: var(--teal); }
.faq-grid .heading-note { margin-top: 1rem; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { display: flex; justify-content: space-between; gap: 1rem; align-items: center; padding: 1.15rem 0; color: var(--teal); font-size: .95rem; font-weight: 700; cursor: pointer; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p { max-width: 39rem; margin: 0 2rem 1.35rem 0; color: var(--muted); font-size: .86rem; }

@media (max-width: 62rem) {
  .project-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .directory-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .about-grid, .project-detail-grid, .article-layout, .contact-panel { gap: 2rem; }
}

@media (max-width: 52rem) {
  .menu-toggle { display: block; }
  .primary-nav { position: absolute; top: 100%; right: 1rem; left: 1rem; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: .5rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); box-shadow: var(--shadow); }
  .primary-nav.is-open { display: flex; }
  .primary-nav > a { padding: .85rem; }
  .language-link { padding-left: .85rem; border-left: 0; border-top: 1px solid var(--line); }
  .nav-cta { justify-content: space-between; margin-top: .3rem; }
  .about-grid, .field-grid, .download-grid, .contact-grid, .project-detail-grid, .article-layout, .contact-panel, .contact-form-grid { grid-template-columns: 1fr; }
  .hero-editorial .container, .hero-directory .container, .hero-journal .container, .hero-project .container, .hero-contact .container { display: block; }
  .hero-side, .hero-callout, .hero-reading { margin-top: 2.25rem; }
  .hero-side img { aspect-ratio: 1.6; }
  .policy-grid, .contact-path-grid { grid-template-columns: 1fr; }
  .evidence-grid { grid-template-columns: 1fr; }
  .project-question-grid, .blog-topic-grid { grid-template-columns: 1fr; }
  .place-note-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; gap: 2rem; }
  .decision-item summary { grid-template-columns: 6rem 1fr 1.5rem; }
  .decision-item p { margin-left: 7rem; }
  .portfolio-guide { grid-template-columns: 1fr; gap: 1.5rem; }
  .contact-path, .contact-path + .contact-path { padding-left: 0; border-right: 0; }
  .about-copy { grid-column: auto; }
  .value-grid { grid-template-columns: 1fr; }
  .value-grid article, .value-grid article + article { min-height: auto; padding-left: 0; border-left: 0; }
  .blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .direction-card { padding-right: 1rem; }
  .direction-card + .direction-card { padding-left: 1rem; }
  .article-card:last-child { grid-column: 1 / -1; max-width: calc(50% - .5rem); }
  .article-layout { display: block; }
  .article-aside { position: static; margin-top: 2rem; }
}

@media (max-width: 38rem) {
  .container { width: min(var(--container), calc(100% - 2rem)); }
  .header-inner { min-height: 4.5rem; }
  .brand img { width: 8.5rem; }
  .hero { padding-top: 4.25rem; }
  .hero-slides { width: calc(100% - 2rem); aspect-ratio: 3 / 1; }
  .hero-footer { width: calc(100% - 2rem); min-height: 6rem; margin-inline: auto; }
  .hero-arrow { display: none; }
  .section { padding: 4.5rem 0; }
  .direction-grid { display: flex; width: max-content; min-width: 100%; }
  .direction-card { min-width: 12rem; min-height: 7rem; padding: 1.25rem 1.25rem 1.25rem 0; }
  .direction-card + .direction-card { padding-left: 1.25rem; }
  .direction-strip { overflow-x: auto; }
  .section-heading, .page-section-heading { display: block; margin-bottom: 2.25rem; }
  .section-heading .text-link { margin-top: 1.25rem; }
  .about-features { grid-template-columns: 1fr; }
  .project-grid, .directory-grid, .blog-grid, .gallery-grid { grid-template-columns: 1fr; }
  .article-card:last-child { grid-column: auto; max-width: none; }
  .project-directory { grid-template-columns: 1fr; }
  .project-directory > div { grid-column: auto; }
  .article-index a { grid-template-columns: 5.5rem 1fr 1rem; gap: .75rem; }
  .floating-whatsapp { right: .75rem; bottom: .75rem; }
  .field-grid video { aspect-ratio: 16 / 9; }
  .contact-details { grid-template-columns: 1fr; }
  .contact-actions { display: grid; align-items: start; }
  .footer-lead { display: block; }
  .footer-lead .button { margin-top: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.25rem 1.25rem; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { display: block; }
  .footer-bottom span { display: block; }
  .footer-bottom span + span { margin-top: .6rem; }
  .meta-list { grid-template-columns: 1fr; }
  .contact-form .field-grid { grid-template-columns: 1fr; }
  .form-field-full { grid-column: auto; }
  .decision-item summary { grid-template-columns: 1fr 1.5rem; gap: .35rem; }
  .decision-item summary span { grid-column: 1 / -1; }
  .decision-item summary b { width: 1.5rem; text-align: right; }
  .decision-item[open] summary b { transform: rotate(45deg) scale(.55); }
  .decision-item p { margin-left: 0; }
}

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

/* UI contract: visible feedback, useful spacing, no decorative choreography. */
.icon { display: inline-block; flex: 0 0 auto; width: 1rem; height: 1rem; vertical-align: middle; }
.icon-slot { display: inline-flex; width: 1.1rem; height: 1.1rem; align-items: center; justify-content: center; font-size: 0; line-height: 0; }
.iconized { display: inline-flex; gap: .5rem; align-items: center; }
.project-card-copy b.iconized, .place-note b.iconized, .project-directory b.iconized, .contact-path b.iconized { display: inline-flex; }
.nav-cta .icon, .button .icon { width: 1rem; height: 1rem; }
.nav-cta { transform: none; }
.nav-cta:hover { transform: none; }
.nav-cta:active, .button:active { transform: translateY(1px); }
.nav-dropdown { position: relative; display: inline-flex; align-items: center; }
.nav-dropdown-trigger { display: inline-flex; gap: .45rem; align-items: center; padding: .5rem 0; color: inherit; background: transparent; border: 0; cursor: pointer; font: inherit; opacity: .88; }
.nav-dropdown-trigger:hover, .nav-dropdown-trigger[aria-expanded="true"], .nav-dropdown-trigger[aria-current="page"] { color: var(--green-ink); opacity: 1; }
.nav-dropdown-trigger .icon { width: .85rem; height: .85rem; transition: transform .18s ease; }
.nav-dropdown.is-open .nav-dropdown-trigger .icon { transform: rotate(180deg); }
.nav-dropdown-menu { position: absolute; z-index: 3; top: calc(100% + .75rem); left: -.75rem; display: grid; min-width: 13rem; padding: .4rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); box-shadow: var(--shadow); opacity: 0; pointer-events: none; transform: translateY(-.25rem); transition: opacity .18s ease, transform .18s ease, visibility .18s ease; visibility: hidden; }
.nav-dropdown.is-open .nav-dropdown-menu { opacity: 1; pointer-events: auto; transform: translateY(0); visibility: visible; }
.nav-dropdown-menu a { padding: .7rem .8rem; color: var(--teal); border-radius: .5rem; font-size: .78rem; font-weight: 600; }
.nav-dropdown-menu a:hover, .nav-dropdown-menu a:focus-visible { color: var(--teal-dark); background: var(--soft); }
.hero-arrow .icon { width: 1.15rem; height: 1.15rem; }
.direction-card .icon, .project-directory .icon, .contact-path .icon { width: 1rem; height: 1rem; }
.decision-item summary b, .faq-item summary b { display: inline-flex; width: 1.5rem; height: 1.5rem; align-items: center; justify-content: center; }
.decision-item summary b .icon, .faq-item summary b .icon { width: 1.1rem; height: 1.1rem; }
.filter-row { width: fit-content; max-width: 100%; margin-bottom: .75rem; padding: .3rem; background: var(--soft); border: 1px solid var(--line); border-radius: var(--radius-sm); }
.filter-pill { min-height: 2.5rem; padding: .55rem .85rem; border-radius: .55rem; }
.filter-status { margin: 0 0 1.75rem; color: var(--muted); font-size: .78rem; }
.section { padding-block: clamp(4rem, 7vw, 6.75rem); }
.section-heading { margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.section-heading > div, .page-section-heading > div, .portfolio-guide > div { min-width: 0; }
.page-content, .project-detail { padding-block: clamp(3.25rem, 6vw, 5.75rem); }
.contact-form { padding: clamp(1.25rem, 3vw, 2.25rem); }
.contact-form .field-grid { gap: 1.15rem 1rem; }
.form-field { position: relative; min-width: 0; }
.form-field input, .form-field select, .form-field textarea { min-height: 3.25rem; padding: .85rem .95rem; line-height: 1.4; transition: border-color .18s ease, background-color .18s ease, box-shadow .18s ease; }
.form-field select { padding-right: 3rem; appearance: none; cursor: pointer; }
.form-field textarea { min-height: 9.5rem; }
.form-field input::placeholder, .form-field textarea::placeholder { color: #6b7a7d; opacity: 1; }
.form-field:focus-within label { color: var(--green-ink); }
.select-icon { position: absolute; right: 1rem; bottom: 1.15rem; width: 1rem; height: 1rem; color: var(--teal); pointer-events: none; }
.form-check input { width: 1.1rem; height: 1.1rem; flex: 0 0 auto; }
.form-actions .button { min-width: 12rem; }
.floating-whatsapp { display: inline-flex; gap: .55rem; align-items: center; }
.floating-whatsapp .icon { width: .95rem; height: .95rem; }
.footer-links a.iconized { width: fit-content; }
.contact-panel small.has-icon, .contact-details small.has-icon { display: inline-flex; gap: .5rem; align-items: center; }
.contact-panel small .icon, .contact-details small .icon, .download-list a > .icon { width: .95rem; height: .95rem; }
.contact-panel small .icon, .contact-details small .icon { color: var(--green-ink); }
.contact-details small .icon { color: var(--green-on-dark); }
.download-list a { align-items: center; min-height: 3.5rem; }
.download-list a > .icon { flex: 0 0 auto; color: var(--green-ink); }
.download-list a > span { margin-left: auto; }
:target { scroll-margin-top: 6.5rem; }
.form-field input:user-invalid, .form-field select:user-invalid, .form-field textarea:user-invalid { border-color: #a84936; }
.form-field input:user-invalid:focus, .form-field select:user-invalid:focus, .form-field textarea:user-invalid:focus { outline-color: rgba(168, 73, 54, .28); }
.button:disabled, .filter-pill:disabled { cursor: not-allowed; opacity: .5; }

@media (max-width: 52rem) {
  .nav-dropdown { display: block; }
  .nav-dropdown-trigger { width: 100%; justify-content: space-between; padding: .85rem; }
  .nav-dropdown-menu { position: static; min-width: 0; max-height: 0; margin: 0 .85rem .25rem; padding: 0 0 0 .7rem; border: 0; border-left: 1px solid var(--line); border-radius: 0; box-shadow: none; opacity: 0; transform: none; transition: max-height .18s ease, opacity .18s ease, visibility .18s ease; }
  .nav-dropdown.is-open .nav-dropdown-menu { max-height: 16rem; padding-bottom: .25rem; opacity: 1; visibility: visible; }
  .nav-dropdown-menu a { padding: .65rem .8rem; }
  .section-heading, .page-section-heading { gap: 1.25rem; }
  .contact-form-grid, .project-detail-grid, .article-layout { gap: 3rem; }
  .contact-form .field-grid { gap: 1rem; }
}

@media (max-width: 38rem) {
  .section { padding-block: 3.75rem; }
  .page-content, .project-detail { padding-block: 3.25rem; }
  .page-hero { padding-block: 3.5rem 2.75rem; }
  .section-heading { margin-bottom: 1.9rem; }
  .filter-row { width: 100%; overflow-x: auto; flex-wrap: nowrap; scrollbar-width: none; }
  .filter-row::-webkit-scrollbar { display: none; }
  .filter-pill { flex: 0 0 auto; }
  .filter-status { margin-bottom: 1.5rem; }
  .contact-form { padding: 1rem; }
  .form-actions { display: grid; gap: .65rem; }
  .form-actions .button { width: 100%; min-width: 0; }
  .contact-panel > a { padding: 1.2rem; }
  .meta-list { gap: .6rem; }
  .meta-list div { padding: .85rem; }
  .nav-dropdown-menu { margin-inline: .85rem .5rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
