/* =========================================================
   Ureshii Consult Inc. — General Contracting site
   Palette: Navy / Rust / Cream
   Display: Barlow Condensed | Body: Inter | Icons: Tabler
========================================================= */

:root{
  --navy:        #16273f;
  --navy-2:      #1f3a5c;
  --steel:       #5c7184;
  --rust:        #c1502e;
  --rust-2:      #a8431f;
  --cream:       #f5f1e8;
  --paper:       #fbf9f4;
  --ink:         #1c252f;
  --ink-muted:   #5f6b76;
  --border:      #e4ddcd;
  --white:       #ffffff;

  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'Inter', sans-serif;

  --container: 1180px;
}

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

html{ scroll-behavior:smooth; }

body{
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img{ max-width:100%; display:block; }
a{ text-decoration:none; color:inherit; }
ul{ list-style:none; }

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

.container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-family: var(--font-display);
  font-weight:700;
  font-size:14px;
  letter-spacing:.12em;
  text-transform:uppercase;
  padding: 14px 30px;
  border-radius: 2px;
  transition: all .2s ease;
  border: 1.5px solid transparent;
  cursor:pointer;
}
.btn-rust{
  background: var(--rust);
  color: var(--white);
}
.btn-rust:hover{ background: var(--rust-2); }

.btn-outline{
  border-color: rgba(255,255,255,.35);
  color: var(--white);
}
.btn-outline:hover{
  border-color: var(--white);
  background: rgba(255,255,255,.08);
}

.btn-navy{
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover{ background: var(--navy-2); }

/* ---------- Top bar ---------- */
.topbar{
  background: var(--navy);
  color: rgba(255,255,255,.78);
  font-size: 13px;
}
.topbar .container{
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding-top:10px;
  padding-bottom:10px;
  flex-wrap: wrap;
  gap: 8px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.topbar-info{
  display:flex;
  gap: 24px;
  flex-wrap: wrap;
}
.topbar-info span{
  display:inline-flex;
  align-items:center;
  gap:6px;
}
.topbar-info svg{ width:15px; height:15px; stroke: var(--rust); flex-shrink:0; }

/* ---------- Header / Nav ---------- */
header.site-header{
  background: var(--navy);
  position: sticky;
  top:0;
  z-index: 100;
  border-bottom: 3px solid var(--rust);
}
.nav-wrap{
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding: 18px 0;
}
.logo{
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 28px;
  letter-spacing: .04em;
  color: var(--white);
  text-transform: uppercase;
  display:flex;
  align-items:baseline;
  gap:8px;
}
.logo span{
  color: var(--rust);
}
.logo small{
  display:block;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: .32em;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 2px;
}
.logo-block{ line-height:1.1; }

nav.main-nav{
  display:flex;
  align-items:center;
  gap: 30px;
}
nav.main-nav > ul{
  display:flex;
  gap: 28px;
}
nav.main-nav > ul > li{
  position: relative;
}
nav.main-nav > ul > li > a{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  padding: 10px 2px;
  display:flex;
  align-items:center;
  gap:6px;
  transition: color .15s ease;
}
nav.main-nav > ul > li > a:hover,
nav.main-nav > ul > li.active > a{
  color: var(--rust);
}
nav.main-nav > ul > li > a svg{ width:14px; height:14px; }

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown{
  opacity:1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown{
  position:absolute;
  top: 100%;
  left:0;
  min-width: 280px;
  background: var(--white);
  box-shadow: 0 18px 40px rgba(22,39,63,.18);
  border-top: 3px solid var(--rust);
  padding: 8px 0;
  opacity:0;
  visibility:hidden;
  transform: translateY(6px);
  transition: all .18s ease;
  z-index: 50;
}
.dropdown li a{
  display:flex;
  align-items:center;
  gap:10px;
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  border-bottom: 1px solid var(--border);
}
.dropdown li:last-child a{ border-bottom:none; }
.dropdown li a svg{ width:16px; height:16px; stroke:var(--rust); flex-shrink:0; }
.dropdown li a:hover{ background: var(--cream); color: var(--rust); }

.nav-cta{ flex-shrink:0; }

.nav-toggle{ display:none; }

/* ---------- Hero (home) ---------- */
.hero{
  position: relative;
  min-height: 640px;
  display:flex;
  align-items:center;
  background: var(--navy);
  overflow:hidden;
}
.hero-bg{
  position:absolute; inset:0;
  background-size: cover;
  background-position: center;
}
.hero-bg::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(115deg, rgba(22,39,63,.94) 30%, rgba(22,39,63,.55) 70%, rgba(22,39,63,.3) 100%);
}
.hero-content{
  position:relative;
  z-index:2;
  color: var(--white);
  max-width: 680px;
  padding: 120px 0 90px;
}
.hero-eyebrow{
  display:inline-flex;
  align-items:center;
  gap:12px;
  font-family: var(--font-display);
  font-weight:700;
  letter-spacing: .35em;
  font-size: 12px;
  text-transform:uppercase;
  color: var(--rust);
  margin-bottom: 22px;
}
.hero-eyebrow::before{
  content:"";
  width: 38px; height:2px;
  background: var(--rust);
}
.hero h1{
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 6.4vw, 76px);
  line-height: 1.04;
  text-transform: uppercase;
  letter-spacing: .01em;
  margin-bottom: 22px;
}
.hero h1 em{
  font-style:normal;
  color: var(--rust);
  display:block;
}
.hero p{
  font-size: 18px;
  color: rgba(255,255,255,.82);
  max-width: 520px;
  margin-bottom: 36px;
}
.hero-actions{
  display:flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* corner survey marks - signature motif */
.corner-marks{
  position:absolute;
  inset: 28px;
  z-index:3;
  pointer-events:none;
}
.corner-marks span{
  position:absolute;
  width: 26px; height: 26px;
  border: 2px solid rgba(255,255,255,.35);
}
.corner-marks span:nth-child(1){ top:0; left:0; border-right:none; border-bottom:none; }
.corner-marks span:nth-child(2){ top:0; right:0; border-left:none; border-bottom:none; }
.corner-marks span:nth-child(3){ bottom:0; left:0; border-right:none; border-top:none; }
.corner-marks span:nth-child(4){ bottom:0; right:0; border-left:none; border-top:none; }

/* ---------- Page header (inner pages) ---------- */
.page-header{
  position: relative;
  background: var(--navy);
  min-height: 280px;
  display:flex;
  align-items:center;
  overflow:hidden;
}
.page-header-bg{
  position:absolute; inset:0;
  background-size:cover;
  background-position:center;
  opacity:.28;
}
.page-header-bg::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(100deg, var(--navy) 35%, rgba(22,39,63,.4) 100%);
}
.page-header .inner{
  position:relative;
  z-index:2;
  padding: 70px 0;
  color: var(--white);
}
.breadcrumb{
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-bottom: 14px;
  font-weight:600;
}
.breadcrumb a{ color: var(--rust); }
.page-header h1{
  font-family: var(--font-display);
  font-weight:800;
  font-size: clamp(34px, 5.2vw, 54px);
  text-transform: uppercase;
  letter-spacing:.02em;
}

/* ---------- Generic section ---------- */
section{ }
.section{ padding: 90px 0; }
.section-tight{ padding: 64px 0; }
.bg-navy{ background: var(--navy); color: var(--white); }
.bg-cream{ background: var(--cream); }
.bg-white{ background: var(--white); }

.section-eyebrow{
  font-family: var(--font-display);
  font-weight:700;
  letter-spacing:.32em;
  font-size: 12px;
  text-transform:uppercase;
  color: var(--rust);
  margin-bottom: 14px;
  display:flex;
  align-items:center;
  gap:12px;
}
.section-eyebrow::before{
  content:"";
  width:30px; height:2px;
  background: var(--rust);
}
.section-title{
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 42px);
  text-transform: uppercase;
  line-height:1.15;
  letter-spacing:.01em;
  margin-bottom: 18px;
}
.section-lead{
  color: var(--ink-muted);
  font-size: 16px;
  max-width: 640px;
  margin-bottom: 10px;
}
.bg-navy .section-lead{ color: rgba(255,255,255,.72); }
.section-head{ margin-bottom: 50px; }
.section-head.center{ text-align:center; }
.section-head.center .section-eyebrow{ justify-content:center; }
.section-head.center .section-eyebrow::before{ display:none; }
.section-head.center .section-lead{ margin: 0 auto; }

/* ---------- Stat / value strip ---------- */
.value-strip{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--white);
  border: 1px solid var(--border);
  margin-top: -64px;
  position: relative;
  z-index: 5;
  box-shadow: 0 22px 50px rgba(22,39,63,.10);
}
.value-item{
  padding: 36px 34px;
  border-right: 1px solid var(--border);
  display:flex;
  gap:18px;
  align-items:flex-start;
}
.value-item:last-child{ border-right:none; }
.value-icon{
  flex-shrink:0;
  width: 50px; height:50px;
  border-radius: 2px;
  background: var(--navy);
  display:flex;
  align-items:center;
  justify-content:center;
}
.value-icon svg{ width:24px; height:24px; stroke: var(--rust); }
.value-item h3{
  font-family: var(--font-display);
  font-weight:700;
  font-size: 17px;
  letter-spacing:.05em;
  text-transform:uppercase;
  margin-bottom: 6px;
  color: var(--navy);
}
.value-item p{ font-size: 14px; color: var(--ink-muted); }

/* ---------- Two column ---------- */
.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items:center;
}
.split-media{ position:relative; }
.split-media img{
  border-radius: 2px;
  width:100%;
  aspect-ratio: 4/3;
  object-fit:cover;
}
.split-media .tag{
  position:absolute;
  bottom: -18px; left: -18px;
  background: var(--rust);
  color:var(--white);
  font-family:var(--font-display);
  font-weight:800;
  letter-spacing:.15em;
  text-transform:uppercase;
  font-size: 13px;
  padding: 14px 22px;
}
.expertise-list{
  margin-top: 26px;
  display:grid;
  gap:12px;
}
.expertise-list li{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:600;
  font-size: 15px;
  color: var(--navy);
  padding: 14px 18px;
  background: var(--cream);
  border-left: 3px solid var(--rust);
}
.expertise-list li svg{ width:18px; height:18px; stroke:var(--rust); flex-shrink:0; }

/* ---------- Service cards ---------- */
.card-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card{
  background: var(--white);
  border: 1px solid var(--border);
  overflow:hidden;
  display:flex;
  flex-direction:column;
  transition: box-shadow .2s ease, transform .2s ease;
}
.service-card:hover{
  box-shadow: 0 18px 40px rgba(22,39,63,.12);
  transform: translateY(-4px);
}
.service-card .media{
  aspect-ratio: 4/3;
  overflow:hidden;
}
.service-card .media img{ width:100%; height:100%; object-fit:cover; }
.service-card .body{
  padding: 26px 24px 28px;
  display:flex;
  flex-direction:column;
  flex:1;
}
.service-card .num{
  font-family: var(--font-display);
  font-weight:800;
  font-size: 13px;
  letter-spacing:.2em;
  color: var(--rust);
  margin-bottom: 10px;
}
.service-card h3{
  font-family: var(--font-display);
  font-weight:700;
  font-size: 20px;
  text-transform:uppercase;
  letter-spacing:.02em;
  color: var(--navy);
  margin-bottom: 10px;
  line-height:1.2;
}
.service-card p{
  font-size: 14px;
  color: var(--ink-muted);
  flex:1;
  margin-bottom: 18px;
}
.service-card .more{
  font-family: var(--font-display);
  font-weight:700;
  font-size: 13px;
  letter-spacing:.15em;
  text-transform:uppercase;
  color: var(--navy);
  display:flex;
  align-items:center;
  gap:8px;
}
.service-card .more svg{ width:15px; height:15px; stroke:var(--rust); transition: transform .2s ease; }
.service-card:hover .more svg{ transform: translateX(4px); }

/* ---------- Process steps ---------- */
.process-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}
.process-step{
  position:relative;
  padding: 30px 26px;
  border: 1px solid rgba(255,255,255,.12);
}
.process-step .step-num{
  font-family: var(--font-display);
  font-weight:800;
  font-size: 46px;
  color: var(--rust);
  line-height:1;
  margin-bottom: 16px;
}
.process-step h3{
  font-family: var(--font-display);
  font-weight:700;
  font-size: 17px;
  letter-spacing:.06em;
  text-transform:uppercase;
  margin-bottom: 10px;
}
.process-step p{
  font-size:14px;
  color: rgba(255,255,255,.68);
}

/* ---------- Projects gallery ---------- */
.gallery-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.gallery-item{
  position:relative;
  overflow:hidden;
  border-radius:2px;
  aspect-ratio: 4/3;
}
.gallery-item.wide{ grid-column: span 2; }
.gallery-item img{
  width:100%; height:100%; object-fit:cover;
  transition: transform .4s ease;
}
.gallery-item:hover img{ transform: scale(1.06); }
.gallery-caption{
  position:absolute; left:0; right:0; bottom:0;
  padding: 22px;
  background: linear-gradient(to top, rgba(22,39,63,.92), transparent);
  color: var(--white);
}
.gallery-caption .tagline{
  font-family: var(--font-display);
  font-weight:700;
  letter-spacing:.2em;
  font-size:11px;
  text-transform:uppercase;
  color: var(--rust);
  margin-bottom:4px;
}
.gallery-caption h3{
  font-family: var(--font-display);
  font-weight:700;
  font-size:18px;
  text-transform:uppercase;
  letter-spacing:.02em;
}

/* ---------- CTA band ---------- */
.cta-band{
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow:hidden;
}
.cta-band .container{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 40px;
  padding: 56px 24px;
  flex-wrap: wrap;
}
.cta-band h2{
  font-family: var(--font-display);
  font-weight:800;
  font-size: clamp(24px,3.4vw,36px);
  text-transform:uppercase;
  max-width: 560px;
}
.cta-band h2 span{ color: var(--rust); }
.cta-phone{
  display:flex;
  align-items:center;
  gap:14px;
}
.cta-phone .icon{
  width:54px; height:54px;
  border-radius:2px;
  background: var(--rust);
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0;
}
.cta-phone .icon svg{ width:24px; height:24px; stroke:var(--white); }
.cta-phone .label{
  font-size: 12px;
  letter-spacing:.2em;
  text-transform:uppercase;
  color: rgba(255,255,255,.6);
  margin-bottom:2px;
}
.cta-phone .num{
  font-family: var(--font-display);
  font-weight:800;
  font-size: 24px;
}

/* ---------- Footer ---------- */
footer.site-footer{
  background: var(--navy);
  color: rgba(255,255,255,.7);
  padding-top: 72px;
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-grid h4{
  font-family: var(--font-display);
  font-weight:700;
  letter-spacing:.18em;
  text-transform:uppercase;
  font-size: 14px;
  color: var(--white);
  margin-bottom: 22px;
}
.footer-logo{
  font-family: var(--font-display);
  font-weight:800;
  font-size: 26px;
  text-transform:uppercase;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-logo span{ color: var(--rust); }
.footer-grid p{ font-size: 14px; line-height:1.8; }
.footer-grid ul{ display:grid; gap: 12px; }
.footer-grid ul a{ font-size: 14px; transition: color .15s ease; }
.footer-grid ul a:hover{ color: var(--rust); }
.footer-contact li{
  display:flex;
  gap:12px;
  font-size: 14px;
  margin-bottom: 14px;
  align-items:flex-start;
}
.footer-contact svg{ width:18px; height:18px; stroke:var(--rust); flex-shrink:0; margin-top:2px; }
.social-row{
  display:flex; gap:10px; margin-top:20px;
}
.social-row a{
  width:38px; height:38px;
  border:1px solid rgba(255,255,255,.18);
  display:flex; align-items:center; justify-content:center;
  border-radius:2px;
  transition: all .15s ease;
}
.social-row a:hover{ background: var(--rust); border-color: var(--rust); }
.social-row svg{ width:16px; height:16px; stroke: var(--white); }

.footer-bottom{
  padding: 22px 0 28px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-size: 13px;
  color: rgba(255,255,255,.45);
  flex-wrap:wrap;
  gap:12px;
}
.footer-bottom a{ color: rgba(255,255,255,.6); }
.footer-bottom a:hover{ color: var(--rust); }

/* ---------- Contact page ---------- */
.contact-grid{
  display:grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 56px;
}
.contact-info-card{
  background: var(--navy);
  color: var(--white);
  padding: 44px 36px;
}
.contact-info-card h3{
  font-family: var(--font-display);
  font-weight:800;
  font-size:22px;
  text-transform:uppercase;
  margin-bottom: 26px;
}
.contact-info-card ul{ display:grid; gap:22px; margin-bottom: 30px; }
.contact-info-card li{ display:flex; gap:14px; align-items:flex-start; font-size:14px; }
.contact-info-card svg{ width:20px; height:20px; stroke:var(--rust); flex-shrink:0; margin-top:2px; }
.contact-info-card .hours-table{
  border-top:1px solid rgba(255,255,255,.15);
  padding-top: 22px;
  display:grid;
  gap:8px;
  font-size:14px;
}
.contact-info-card .hours-table div{ display:flex; justify-content:space-between; }
.contact-info-card .hours-table span:last-child{ color: rgba(255,255,255,.6); }

.form-card{
  background: var(--white);
  border: 1px solid var(--border);
  padding: 44px;
}
.form-row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.field{ display:flex; flex-direction:column; gap:8px; }
.field.full{ grid-column: 1 / -1; }
label{
  font-family: var(--font-display);
  font-weight:700;
  font-size:12px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color: var(--navy);
}
input, select, textarea{
  font-family: var(--font-body);
  font-size: 15px;
  padding: 13px 16px;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: var(--cream);
  color: var(--ink);
}
input:focus, select:focus, textarea:focus{
  outline: 2px solid var(--rust);
  outline-offset:1px;
  background: var(--white);
}
textarea{ resize: vertical; min-height: 140px; }
.form-note{
  font-size:13px;
  color: var(--ink-muted);
  margin-top: 14px;
}
.form-success{
  display:none;
  margin-top:18px;
  padding: 14px 18px;
  background: #eef6ee;
  border-left: 3px solid #4a8c4a;
  font-size: 14px;
  color: #2f5c2f;
}
.form-success.visible{ display:block; }

/* ---------- Map ---------- */
.map-frame{
  border: 1px solid var(--border);
  filter: grayscale(.15);
}
.map-frame iframe{ width:100%; height: 380px; border:0; display:block; }

/* ---------- About / values list ---------- */
.about-grid{
  display:grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items:center;
}
.timeline{
  display:grid;
  gap: 28px;
}
.timeline-item{
  display:flex;
  gap:22px;
}
.timeline-marker{
  flex-shrink:0;
  width:46px; height:46px;
  border-radius:2px;
  background: var(--navy);
  display:flex; align-items:center; justify-content:center;
}
.timeline-marker svg{ width:22px; height:22px; stroke:var(--rust); }
.timeline-item h3{
  font-family: var(--font-display);
  font-weight:700;
  font-size:18px;
  text-transform:uppercase;
  letter-spacing:.03em;
  color: var(--navy);
  margin-bottom:6px;
}
.timeline-item p{ font-size:14px; color: var(--ink-muted); }

/* ---------- Page nav (prev/next service) ---------- */
.service-nav{
  display:grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border);
}
.service-nav a{
  padding: 26px 30px;
  display:flex;
  align-items:center;
  gap:14px;
  transition: background .15s ease;
}
.service-nav a:first-child{ border-right:1px solid var(--border); }
.service-nav a:hover{ background: var(--cream); }
.service-nav .dir{
  font-size:11px;
  letter-spacing:.22em;
  text-transform:uppercase;
  color: var(--rust);
  font-weight:700;
  display:block;
  margin-bottom:4px;
}
.service-nav .name{
  font-family: var(--font-display);
  font-weight:700;
  font-size:16px;
  text-transform:uppercase;
  color:var(--navy);
}
.service-nav a:last-child{ text-align:right; justify-content:flex-end; }
.service-nav svg{ width:18px; height:18px; stroke:var(--rust); flex-shrink:0; }

/* ---------- Responsive ---------- */
@media (max-width: 980px){
  .card-grid{ grid-template-columns: repeat(2,1fr); }
  .process-grid{ grid-template-columns: repeat(2,1fr); }
  .footer-grid{ grid-template-columns: 1fr 1fr; gap:40px 32px; }
  .split, .about-grid, .contact-grid{ grid-template-columns: 1fr; gap:40px; }
  .value-strip{ grid-template-columns: 1fr; margin-top:0; }
  .value-item{ border-right:none; border-bottom:1px solid var(--border); }
  .value-item:last-child{ border-bottom:none; }
  .gallery-grid{ grid-template-columns: repeat(2,1fr); }
  .gallery-item.wide{ grid-column: span 2; }
}

@media (max-width: 760px){
  .logo{ font-size: 22px; }
  .logo small{ font-size: 8px; letter-spacing:.22em; }
  .nav-wrap{ padding: 14px 0; }
  .topbar{ display:none; }
  nav.main-nav{ position: fixed; inset:0; top:74px; background:var(--navy); flex-direction:column; align-items:flex-start; padding:24px; transform: translateX(-100%); transition: transform .25s ease; overflow-y:auto; }
  nav.main-nav.open{ transform: translateX(0); }
  nav.main-nav > ul{ flex-direction:column; gap:6px; width:100%; }
  nav.main-nav > ul > li{ width:100%; }
  nav.main-nav > ul > li > a{ padding: 14px 0; width:100%; justify-content:space-between; border-bottom:1px solid rgba(255,255,255,.08); }
  .dropdown{ position:static; opacity:1; visibility:visible; transform:none; box-shadow:none; border-top:none; display:none; width:100%; background:rgba(255,255,255,.04); }
  .has-dropdown.open .dropdown{ display:block; }
  .nav-cta{ margin-top:16px; width:100%; }
  .nav-cta .btn{ width:100%; justify-content:center; }
  .nav-toggle{
    display:flex;
    width:42px; height:42px;
    align-items:center; justify-content:center;
    border:1px solid rgba(255,255,255,.2);
    border-radius:2px;
    background:transparent;
    color:var(--white);
  }
  .nav-toggle svg{ width:20px; height:20px; }

  .card-grid, .process-grid, .footer-grid, .gallery-grid{ grid-template-columns: 1fr; }
  .gallery-item.wide{ grid-column: span 1; }
  .form-row{ grid-template-columns: 1fr; }
  .cta-band .container{ flex-direction:column; align-items:flex-start; }
  .hero{ min-height: 560px; }
  .hero-content{ padding: 100px 0 70px; }
}

.bg-paper{ background: var(--paper); }
.rotate{ transform: rotate(180deg); }

