:root {
  /* Palette drawn from the GDA logo */
  --ink: #2b2d2f;        /* charcoal text / footer */
  --charcoal: #3e4042;   /* logo figure grey */
  --rust: #b5541a;       /* primary - burnt orange figure */
  --rust-dark: #94400f;
  --gold: #d9a21b;       /* ochre figures */
  --gold-soft: #f4e3bd;
  --cream: #faf7f2;      /* page background */
  --paper: #ffffff;
  --line: #e7e0d5;
  --muted: #6e6a63;
  --green: #2e7d4f;
  --red: #b03a2e;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: "Source Sans 3", "Segoe UI", -apple-system, Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
}
h1, h2, h3, h4, .brand-name { font-family: "Poppins", "Segoe UI", sans-serif; }

a { color: var(--rust); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 22px; }

/* ===== Top bar ===== */
.topbar { background: var(--ink); color: #cfc9bf; font-size: 0.8rem; padding: 7px 0; }
.topbar .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.topbar a { color: var(--gold); }

/* ===== Header ===== */
header {
  background: var(--paper);
  border-bottom: 3px solid var(--gold);
  position: sticky; top: 0; z-index: 200;
  box-shadow: 0 2px 10px rgba(43,45,47,.08);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; max-width: 1140px; margin: 0 auto; padding: 0 22px; }
.brand { display: flex; align-items: center; gap: 12px; padding: 10px 0; }
.brand:hover { text-decoration: none; }
.brand img { height: 58px; width: auto; }
.brand-name { font-weight: 700; font-size: 1.12rem; color: var(--charcoal); line-height: 1.15; }
.brand-tag { font-size: 0.72rem; color: var(--muted); letter-spacing: .06em; text-transform: uppercase; }

nav ul { list-style: none; display: flex; }
nav > ul > li { position: relative; }
nav > ul > li > a {
  display: block; padding: 28px 13px; color: var(--charcoal);
  font-size: 0.9rem; font-weight: 600;
  border-bottom: 3px solid transparent; margin-bottom: -3px;
}
nav > ul > li > a:hover, nav > ul > li > a.active {
  color: var(--rust); border-bottom-color: var(--rust); text-decoration: none;
}
nav .dropdown {
  display: none; position: absolute; top: 100%; left: 0;
  background: var(--paper); min-width: 252px;
  box-shadow: 0 10px 28px rgba(43,45,47,.18);
  border-top: 3px solid var(--gold); border-radius: 0 0 8px 8px; overflow: hidden;
}
nav li:hover .dropdown { display: block; }
nav .dropdown a { display: block; padding: 11px 18px; color: var(--ink); font-size: 0.87rem; border-bottom: 1px solid var(--line); }
nav .dropdown a:last-child { border-bottom: 0; }
nav .dropdown a:hover { background: var(--cream); color: var(--rust); text-decoration: none; }

.menu-toggle { display: none; background: none; border: 0; color: var(--charcoal); font-size: 1.7rem; cursor: pointer; }

/* ===== Buttons ===== */
.btn { display: inline-block; padding: 13px 28px; border-radius: 6px; font-weight: 700; font-size: 0.93rem; cursor: pointer; border: 0; font-family: "Poppins", sans-serif; }
.btn-rust { background: var(--rust); color: #fff; }
.btn-rust:hover { background: var(--rust-dark); text-decoration: none; }
.btn-gold { background: var(--gold); color: var(--ink); }
.btn-gold:hover { background: #c3910f; text-decoration: none; }
.btn-outline-light { border: 2px solid #ffffffb3; color: #fff; }
.btn-outline-light:hover { background: #ffffff1c; text-decoration: none; }

/* ===== Hero ===== */
.hero {
  background:
    radial-gradient(ellipse 60% 80% at 85% 20%, rgba(217,162,27,.22), transparent 60%),
    radial-gradient(ellipse 50% 70% at 10% 90%, rgba(181,84,26,.30), transparent 55%),
    linear-gradient(150deg, #2b2d2f 0%, #3e4042 60%, #4a3526 100%);
  color: #fff; padding: 88px 0 96px; text-align: center;
}
.hero .kicker { color: var(--gold); font-weight: 700; letter-spacing: .14em; text-transform: uppercase; font-size: .8rem; margin-bottom: 14px; }
.hero h1 { font-size: 2.5rem; line-height: 1.22; margin-bottom: 16px; }
.hero p { max-width: 660px; margin: 0 auto 32px; color: #ddd6cb; font-size: 1.07rem; }
.hero .btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== Sections ===== */
section { padding: 62px 0; }
.section-title { text-align: center; margin-bottom: 42px; }
.section-title .kicker { color: var(--rust); font-weight: 700; letter-spacing: .12em; text-transform: uppercase; font-size: .76rem; }
.section-title h2 { color: var(--charcoal); font-size: 1.85rem; margin-top: 4px; }
.section-title p { color: var(--muted); max-width: 620px; margin: 10px auto 0; }

.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: 12px;
  padding: 30px 26px; box-shadow: 0 3px 10px rgba(43,45,47,.05);
}
.card .icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: linear-gradient(135deg, var(--gold-soft), #f8efdd);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 16px;
}
.card h3 { color: var(--charcoal); margin-bottom: 10px; font-size: 1.12rem; }
.card p { color: var(--muted); font-size: 0.92rem; margin-bottom: 16px; }
.card .meta { font-size: .8rem; color: var(--muted); }

/* steps */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 22px; }
.step { background: var(--paper); border: 1px solid var(--line); border-radius: 12px; padding: 26px; text-align: center; }
.step .n {
  width: 44px; height: 44px; margin: 0 auto 14px; border-radius: 50%;
  background: var(--rust); color: #fff; font-weight: 800; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center; font-family: "Poppins", sans-serif;
}
.step h3 { font-size: 1.02rem; color: var(--charcoal); margin-bottom: 8px; }
.step p { font-size: .88rem; color: var(--muted); }

/* stats band */
.stats { background: linear-gradient(120deg, var(--rust) 0%, var(--rust-dark) 100%); color: #fff; padding: 48px 0; }
.stats .grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 20px; text-align: center; }
.stats .num { font-size: 2.1rem; font-weight: 800; font-family: "Poppins", sans-serif; color: #ffe9bd; }
.stats .lbl { color: #f4ddc8; font-size: 0.88rem; }

/* status checker */
.status-box {
  max-width: 620px; margin: 0 auto; background: var(--paper); border: 1px solid var(--line);
  border-radius: 12px; padding: 30px; text-align: center;
}
.status-box .row { display: flex; gap: 10px; margin-top: 16px; }
.status-box input { flex: 1; padding: 12px 14px; border: 1px solid #cfc6b8; border-radius: 6px; font-size: .95rem; }
#status-result { margin-top: 14px; font-weight: 600; }

/* ===== Page header ===== */
.page-head {
  background: linear-gradient(135deg, var(--charcoal) 0%, #54402c 100%);
  color: #fff; padding: 46px 0; border-bottom: 4px solid var(--gold);
}
.page-head h1 { font-size: 1.9rem; }
.page-head .crumb { font-size: 0.85rem; color: #d9d2c6; margin-top: 6px; }
.page-head .crumb a { color: var(--gold); }

/* ===== Sidebar layout ===== */
.layout { display: grid; grid-template-columns: 280px 1fr; gap: 36px; align-items: start; padding: 52px 0; }
.sidenav { background: var(--paper); border: 1px solid var(--line); border-radius: 12px; overflow: hidden; position: sticky; top: 104px; }
.sidenav h4 { background: var(--charcoal); color: #fff; padding: 14px 18px; font-size: 0.95rem; }
.sidenav a { display: block; padding: 12px 18px; font-size: 0.89rem; color: var(--ink); border-bottom: 1px solid var(--line); }
.sidenav a:last-child { border-bottom: 0; }
.sidenav a:hover { background: var(--cream); text-decoration: none; }
.content-panel { background: var(--paper); border: 1px solid var(--line); border-radius: 12px; padding: 38px; }
.content-panel h2 { color: var(--charcoal); margin-bottom: 14px; scroll-margin-top: 120px; }
.content-panel h3 { color: var(--charcoal); margin: 24px 0 10px; font-size: 1.08rem; }
.content-panel p { margin-bottom: 14px; color: #46443f; }
.content-panel ul, .content-panel ol { margin: 0 0 14px 22px; color: #46443f; }
.content-panel li { margin-bottom: 6px; }
.divider { border: 0; border-top: 1px solid var(--line); margin: 34px 0; }

/* ===== Forms ===== */
.form-wrap {
  max-width: 780px; margin: 52px auto; background: var(--paper);
  border: 1px solid var(--line); border-top: 5px solid var(--rust);
  border-radius: 12px; padding: 42px; box-shadow: 0 6px 22px rgba(43,45,47,.07);
}
.form-wrap h2 { color: var(--charcoal); margin-bottom: 6px; }
.form-wrap .sub { color: var(--muted); font-size: 0.92rem; margin-bottom: 28px; }
fieldset { border: 1px solid var(--line); border-radius: 10px; padding: 22px; margin-bottom: 24px; }
legend { font-weight: 700; color: var(--rust); padding: 0 8px; font-size: 0.95rem; font-family: "Poppins", sans-serif; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 0.85rem; font-weight: 700; margin-bottom: 6px; color: var(--charcoal); }
.field label .req { color: var(--red); }
.field input, .field select, .field textarea {
  width: 100%; padding: 11px 12px; border: 1px solid #cfc6b8; border-radius: 6px;
  font-size: 0.93rem; font-family: inherit; background: #fff;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--gold); border-color: var(--gold); }
.field .hint { font-size: .76rem; color: var(--muted); margin-top: 4px; }
.field input[type="file"] { padding: 9px; background: var(--cream); }
.consent { display: flex; gap: 10px; align-items: flex-start; background: var(--gold-soft); border: 1px solid #e3cd96; border-radius: 8px; padding: 14px 16px; margin-bottom: 22px; font-size: .85rem; }
.consent input { margin-top: 4px; }
.success-box { display: none; background: #e9f4ec; border: 1px solid #bedcc7; color: var(--green); padding: 18px 20px; border-radius: 8px; margin-bottom: 20px; font-weight: 600; }
.error-box { display: none; background: #fbeae8; border: 1px solid #e8c2bc; color: var(--red); padding: 16px 20px; border-radius: 8px; margin-bottom: 20px; font-weight: 600; }

/* ===== Footer ===== */
footer { background: var(--ink); color: #b9b2a6; padding: 54px 0 24px; margin-top: 48px; }
.foot-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 32px; margin-bottom: 34px; }
footer h4 { color: var(--gold); margin-bottom: 14px; font-size: 1rem; }
footer ul { list-style: none; }
footer li { margin-bottom: 8px; font-size: 0.88rem; }
footer a { color: #b9b2a6; }
footer a:hover { color: var(--gold); }
.foot-bottom { border-top: 1px solid #3c3e40; padding-top: 20px; text-align: center; font-size: 0.8rem; }
.foot-bottom a { color: var(--gold); }

/* ===== Cookie banner ===== */
.cookie-banner {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 500;
  background: var(--charcoal); color: #e8e2d8; padding: 16px 0;
  box-shadow: 0 -4px 18px rgba(0,0,0,.25);
}
.cookie-banner .container { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.cookie-banner p { flex: 1; font-size: .84rem; min-width: 260px; }
.cookie-banner a { color: var(--gold); }
.cookie-banner .btn { padding: 9px 20px; font-size: .84rem; }
.btn-ghost { background: transparent; border: 1px solid #8b8579; color: #e8e2d8; }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* ===== Responsive ===== */
@media (max-width: 920px) {
  .nav-wrap { flex-wrap: wrap; }
  .menu-toggle { display: block; }
  nav { display: none; width: 100%; }
  nav.open { display: block; padding-bottom: 12px; }
  nav ul { flex-direction: column; }
  nav > ul > li > a { padding: 13px 4px; border-bottom: 0; border-top: 1px solid var(--line); margin: 0; }
  nav .dropdown { position: static; display: block; box-shadow: none; border-top: 0; background: var(--cream); }
  .layout { grid-template-columns: 1fr; }
  .sidenav { position: static; }
  .field-row { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.75rem; }
  .form-wrap { padding: 28px 20px; margin: 30px 16px; }
}

/* ============================================================
   V2 LANDING — editorial / awwwards-style design
   ============================================================ */

.v2-display {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  font-size: clamp(2.7rem, 7.2vw, 5.4rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.v2-display em { font-style: italic; color: var(--rust); }
.v2-display.sm { font-size: clamp(2.2rem, 5.5vw, 4rem); }

.v2-h2 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  font-size: clamp(1.7rem, 3.6vw, 2.6rem);
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.v2-h2 em { font-style: italic; color: var(--rust); }
.v2-h2.light { color: #f6f1e8; }
.v2-h2.light em { color: var(--gold); }

.v2-kicker {
  font-family: "Poppins", sans-serif;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 22px;
}

.v2-lead { font-size: clamp(1rem, 1.4vw, 1.16rem); color: #54514a; max-width: 560px; margin-top: 24px; }
.v2-lead.center { margin-left: auto; margin-right: auto; text-align: center; }

/* hero */
.v2-hero {
  position: relative;
  background:
    radial-gradient(ellipse 55% 65% at 92% 8%, rgba(217,162,27,.13), transparent 60%),
    radial-gradient(ellipse 45% 55% at 100% 95%, rgba(181,84,26,.10), transparent 55%),
    var(--cream);
  padding: clamp(64px, 10vw, 130px) 0 clamp(48px, 7vw, 96px);
  overflow: hidden;
}
.v2-hero-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 40px; align-items: center; }
.v2-hero-art { display: flex; justify-content: center; }
.v2-hero-art img {
  width: min(360px, 30vw);
  filter: drop-shadow(0 24px 60px rgba(181,84,26,.22));
  animation: float 7s ease-in-out infinite;
}
@keyframes float { 0%,100% { transform: translateY(0) } 50% { transform: translateY(-14px) } }

.v2-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 36px; }
.v2-actions.center { justify-content: center; }

.btn-xl {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 30px; border-radius: 999px;
  font-family: "Poppins", sans-serif; font-weight: 600; font-size: .95rem;
  border: 0; cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn-xl .arr { transition: transform .25s ease; }
.btn-xl:hover { text-decoration: none; transform: translateY(-2px); }
.btn-xl:hover .arr { transform: translateX(5px); }
.btn-xl-rust { background: var(--rust); color: #fff; box-shadow: 0 10px 26px rgba(181,84,26,.30); }
.btn-xl-rust:hover { background: var(--rust-dark); }
.btn-xl-line { background: transparent; color: var(--ink); border: 1.5px solid #c9c2b4; }
.btn-xl-line:hover { border-color: var(--rust); color: var(--rust); }
.btn-xl-gold { background: var(--gold); color: var(--ink); }
.btn-xl-gold:hover { background: #c3910f; }

.v2-hero-meta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 44px; font-size: .82rem; color: var(--muted); font-weight: 600; }
.v2-hero-meta i { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }

/* opening ceremony invitation */
.event-banner { padding: 0; background: linear-gradient(120deg, var(--rust), #d47617 58%, var(--gold)); color: #fff; }
.event-banner-grid { display: grid; grid-template-columns: 1.25fr 1fr auto; align-items: center; gap: 30px; padding-top: 35px; padding-bottom: 35px; }
.event-eyebrow { font-family: "Poppins", sans-serif; font-size: .76rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: #fff2cb; }
.event-banner h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); margin-top: 3px; }
.event-banner p:not(.event-eyebrow) { color: #fff6e8; max-width: 540px; margin-top: 7px; }
.event-details { display: grid; gap: 10px; border-left: 1px solid #ffffff70; padding-left: 26px; }
.event-details div { display: grid; grid-template-columns: minmax(100px, auto) 1fr; gap: 12px; font-size: .93rem; }
.event-details b { color: #fff6d5; font-family: "Poppins", sans-serif; }
.event-details span { color: #fff; }
.event-banner .btn-xl { white-space: nowrap; }

/* marquee */
.marquee { background: var(--ink); overflow: hidden; padding: 16px 0; border-top: 3px solid var(--gold); }
.marquee-track {
  display: flex; align-items: center; gap: 34px; width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee-track span {
  font-family: "Fraunces", serif; font-style: italic; font-size: 1.05rem;
  color: #efe8da; white-space: nowrap;
}
.marquee-track b { color: var(--gold); font-size: .8rem; }
@keyframes marquee { from { transform: translateX(0) } to { transform: translateX(-50%) } }

/* sections */
.v2-section { padding: clamp(64px, 8vw, 110px) 0; }
.v2-head { display: flex; gap: 26px; align-items: flex-start; margin-bottom: clamp(36px, 5vw, 60px); }
.v2-index {
  font-family: "Fraunces", serif; font-style: italic; font-weight: 500;
  font-size: 1rem; color: var(--gold);
  border: 1.5px solid var(--gold); border-radius: 999px;
  padding: 6px 14px; margin-top: 8px; flex-shrink: 0;
}
.v2-sub { color: #54514a; max-width: 560px; margin-top: 12px; }
.v2-sub.light { color: #cfc8ba; }

/* service rows */
.svc-list { border-top: 1px solid #ddd5c6; }
.svc-row {
  display: grid; grid-template-columns: 70px 1fr 60px; align-items: center; gap: 20px;
  padding: clamp(22px, 3vw, 34px) 10px;
  border-bottom: 1px solid #ddd5c6;
  color: var(--ink);
  transition: background .3s ease, padding-left .3s ease;
}
.svc-row:hover { text-decoration: none; background: #f3ecdf; padding-left: 26px; }
.svc-n { font-family: "Fraunces", serif; font-style: italic; color: var(--gold); font-size: 1.1rem; }
.svc-t { display: block; font-family: "Poppins", sans-serif; font-weight: 700; font-size: clamp(1.15rem, 2.3vw, 1.6rem); color: var(--ink); }
.svc-d { display: block; color: var(--muted); font-size: .92rem; margin-top: 6px; max-width: 640px; }
.svc-arr { font-size: 1.5rem; color: var(--rust); transition: transform .3s ease; justify-self: end; }
.svc-row:hover .svc-arr { transform: translateX(8px); }

/* dark band */
.v2-dark {
  background:
    radial-gradient(ellipse 50% 70% at 90% 10%, rgba(217,162,27,.14), transparent 60%),
    linear-gradient(140deg, #26282a 0%, #3e4042 70%, #46362a 100%);
  padding: clamp(64px, 8vw, 110px) 0;
}
.v2-dark-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.v2-steps { list-style: none; margin-top: 28px; }
.v2-steps li { color: #cfc8ba; font-size: .95rem; padding: 12px 0; border-bottom: 1px solid #4a4c4e; }
.v2-steps li:last-child { border-bottom: 0; }
.v2-steps b { color: var(--gold); margin-right: 10px; font-family: "Fraunces", serif; font-style: italic; }

.v2-status {
  background: #ffffff10; border: 1px solid #ffffff24; border-radius: 18px;
  padding: clamp(26px, 4vw, 42px); backdrop-filter: blur(6px);
}
.v2-status h3 { font-family: "Poppins", sans-serif; color: #f6f1e8; margin-bottom: 18px; }
.v2-status form { display: flex; gap: 12px; flex-wrap: wrap; }
.v2-status input {
  flex: 1; min-width: 180px; padding: 15px 18px; border-radius: 999px;
  border: 1px solid #ffffff38; background: #ffffff14; color: #fff; font-size: .95rem;
}
.v2-status input::placeholder { color: #b9b2a6; }
.v2-status input:focus { outline: 2px solid var(--gold); }
.v2-status #status-result { margin-top: 16px; font-weight: 600; font-size: .9rem; }

/* project grid */
.proj-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.proj-tile {
  position: relative; display: flex; flex-direction: column; gap: 8px;
  background: var(--paper); border: 1px solid var(--line); border-radius: 16px;
  padding: 28px 24px; min-height: 190px; color: var(--ink);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.proj-tile:hover { text-decoration: none; transform: translateY(-6px); box-shadow: 0 18px 40px rgba(43,45,47,.12); border-color: var(--gold); }
.proj-tile.big { grid-column: span 2; grid-row: span 2; justify-content: flex-end; background: linear-gradient(150deg, #fff 30%, #f7efe0 100%); }
.pt-n { font-family: "Fraunces", serif; font-style: italic; color: var(--gold); }
.pt-t { font-family: "Poppins", sans-serif; font-weight: 700; font-size: 1.12rem; color: var(--ink); }
.proj-tile.big .pt-t { font-size: clamp(1.4rem, 2.6vw, 1.9rem); }
.pt-d { color: var(--muted); font-size: .88rem; }
.proj-tile .svc-arr { position: absolute; top: 22px; right: 22px; }
.proj-tile:hover .svc-arr { transform: translateX(0) translateY(-4px); }

/* closing CTA */
.v2-cta {
  text-align: center;
  padding: clamp(70px, 9vw, 120px) 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 110%, rgba(217,162,27,.18), transparent 65%),
    var(--cream);
  border-top: 1px solid #e3dccd;
}

/* scroll reveal */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none; }
  .v2-hero-art img { animation: none; }
  .btn-xl, .svc-row, .proj-tile, .svc-arr { transition: none; }
}

/* v2 responsive */
@media (max-width: 920px) {
  .v2-hero-grid { grid-template-columns: 1fr; }
  .v2-hero-art { display: none; }
  .v2-dark-grid { grid-template-columns: 1fr; }
  .proj-grid { grid-template-columns: 1fr 1fr; }
  .proj-tile.big { grid-column: span 2; grid-row: auto; min-height: 200px; }
  .svc-row { grid-template-columns: 44px 1fr 36px; gap: 12px; }
  .v2-head { flex-direction: column; gap: 14px; }
  .btn-xl { width: 100%; justify-content: center; }
  .v2-actions { flex-direction: column; }
  .event-banner-grid { grid-template-columns: 1fr; gap: 20px; }
  .event-details { border-left: 0; border-top: 1px solid #ffffff70; padding: 18px 0 0; }
  .event-banner .btn-xl { width: 100%; justify-content: center; }
}
@media (max-width: 560px) {
  .proj-grid { grid-template-columns: 1fr; }
  .proj-tile.big { grid-column: span 1; }
}

/* sidenav current page */
.sidenav a.active { background: #f3ecdf; color: var(--rust); font-weight: 700; border-left: 4px solid var(--gold); }
