/* ---------- Quick-Steel-Fix Ltd — co.uk site ---------- */

:root {
  /* Brand — Artisan Gold palette (warm cream / warm ink / bronze gold) */
  --noir:        #1A1814;   /* warm noir for dark sections */
  --noir-soft:   #2A2620;
  --char:        #3D372E;
  --slate:       #5A5347;
  --grey:        #807A6D;
  --line:        #DDD7CC;
  --cream-soft:  #F1EDE2;   /* for cards / subtle separation */
  --cream:       #F8F5EE;   /* primary background — warm cream */
  --white:       #FFFFFF;   /* pure white for form inputs */
  --ink:         #0F0F0F;
  --ink-warm:    #1F1C18;

  /* Gold range — taken from the brand logo */
  --gold-deep:   #8B6F3A;
  --gold:        #C9A961;
  --gold-mid:    #D4B86A;
  --gold-light:  #E5C97E;
  --gold-bright: #F4DC93;

  /* Compatibility aliases (HTML still references these var names) */
  --steel-900: var(--noir);
  --steel-800: var(--noir-soft);
  --steel-700: var(--char);
  --steel-500: var(--grey);
  --steel-200: var(--line);
  --steel-100: var(--cream-soft);
  --paper:     var(--cream);
  --rebar:     var(--gold);
  --rebar-dark: var(--gold-deep);

  /* Gradients */
  --gold-grad: linear-gradient(180deg, #B8924A 0%, #E5C97E 18%, #F4DC93 38%, #D4B86A 55%, #B8924A 78%, #8B6F3A 100%);
  --gold-grad-flat: linear-gradient(180deg, #D4B86A 0%, #C9A961 50%, #8B6F3A 100%);

  --shadow-sm: 0 1px 2px rgba(10, 10, 10, 0.10);
  --shadow-md: 0 14px 32px -12px rgba(10, 10, 10, 0.30);
  --shadow-gold: 0 8px 24px -8px rgba(139, 111, 58, 0.45);
  --radius:    6px;
  --max:       1180px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

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

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

/* ---------- Top utility bar ---------- */
.utility-bar {
  background: var(--steel-900);
  color: var(--steel-200);
  font-size: 13px;
  padding: 8px 0;
}
.utility-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.utility-bar a { color: var(--steel-200); }
.utility-bar a:hover { color: var(--white); }
.utility-bar .util-left,
.utility-bar .util-right {
  display: flex;
  gap: 18px;
  align-items: center;
}

/* ---------- Header / nav ---------- */
.site-header {
  background: linear-gradient(180deg, #2C2822 0%, #1F1C17 100%);
  border-bottom: 1px solid var(--gold-deep);
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header::after {
  content: "";
  position: absolute;
  inset: auto 0 -2px 0;
  height: 2px;
  background: var(--gold-grad);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.brand:hover { text-decoration: none; color: var(--ink); }
.brand-logo {
  display: block;
  height: 96px;
  width: auto;
  max-width: 380px;
  image-rendering: -webkit-optimize-contrast;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.45));
}
.brand-tagline {
  display: block;
  font-family: 'Sora', 'Inter', sans-serif;
  font-size: 11px;
  color: var(--gold-deep);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-top: 4px;
}

.nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav a {
  color: var(--cream-soft);
  font-weight: 500;
  font-size: 15px;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.nav a:hover {
  color: var(--gold-bright);
  border-bottom-color: var(--gold);
  text-decoration: none;
}
.nav a.active {
  color: var(--gold-bright);
  border-bottom-color: var(--gold);
}

.nav-cta {
  background: var(--gold-grad);
  color: var(--noir) !important;
  padding: 9px 18px !important;
  border-radius: var(--radius);
  border-bottom: 0 !important;
  font-weight: 700;
  border: 1px solid var(--gold-deep);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.35);
  white-space: nowrap;
  transition: filter 0.15s ease, transform 0.08s ease;
}
.nav-cta:hover {
  background: var(--gold-grad);
  color: var(--noir) !important;
  filter: brightness(1.06);
  text-decoration: none;
  border-bottom: 0 !important;
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  font-size: 26px;
  color: var(--gold-light);
  cursor: pointer;
  padding: 4px 8px;
}

/* ---------- Hero ---------- */
.hero {
  background:
    linear-gradient(180deg, rgba(26,24,20,0.86) 0%, rgba(26,24,20,0.74) 50%, rgba(26,24,20,0.92) 100%),
    url('img/hero-column-rebar.jpeg') center 45% / cover no-repeat,
    var(--noir);
  color: var(--cream);
  padding: 140px 0 130px;
  text-align: center;
  position: relative;
}
.hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--gold-grad);
}
.hero-eyebrow {
  display: inline-block;
  padding: 10px 22px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold-bright);
  margin-bottom: 28px;
  background: rgba(10, 10, 10, 0.85);
}
.hero h1 {
  font-family: 'Sora', 'Inter', sans-serif;
  font-size: clamp(40px, 5.6vw, 64px);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.015em;
  max-width: 900px;
  margin: 0 auto 26px;
  color: #FFFFFF;
  text-shadow: 0 2px 16px rgba(0,0,0,0.7);
}
.hero h1 .accent {
  color: var(--gold-bright);
  font-style: italic;
  font-weight: 600;
  -webkit-text-fill-color: var(--gold-bright);
  background: none;
  text-shadow: 0 2px 16px rgba(0,0,0,0.8);
}
.hero p.lead {
  font-family: 'Inter', sans-serif;
  font-size: 19px;
  max-width: 640px;
  margin: 0 auto 40px;
  color: #F5F5F5;
  font-weight: 400;
  line-height: 1.6;
  text-shadow: 0 1px 10px rgba(0,0,0,0.6);
}
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.04em;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.08s ease, background 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary {
  background: var(--gold-grad);
  color: var(--noir);
  box-shadow: var(--shadow-gold), inset 0 1px 0 rgba(255,255,255,0.4);
  border: 1px solid var(--gold-deep);
}
.btn-primary:hover { color: var(--noir); filter: brightness(1.06); }
.btn-ghost {
  background: rgba(10, 10, 10, 0.6);
  color: var(--gold-bright);
  border: 1px solid var(--gold);
  backdrop-filter: blur(2px);
}
.btn-ghost:hover {
  background: rgba(10, 10, 10, 0.8);
  color: var(--gold-bright);
  border-color: var(--gold-bright);
}
.btn-dark {
  background: var(--noir);
  color: var(--gold-light);
  border: 1px solid var(--gold-deep);
}
.btn-dark:hover {
  background: var(--noir-soft);
  color: var(--gold-bright);
}

/* ---------- Sections ---------- */
section { padding: 84px 0; }

.section-eyebrow {
  display: block;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 700;
  margin-bottom: 14px;
}
.section-title {
  font-family: 'Sora', 'Inter', sans-serif;
  font-size: clamp(30px, 3.6vw, 44px);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 18px;
  max-width: 720px;
}
.section-intro {
  color: var(--steel-700);
  max-width: 680px;
  margin-bottom: 56px;
  font-size: 18px;
}
.section-head-centered {
  text-align: center;
}
.section-head-centered .section-title,
.section-head-centered .section-intro {
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Service cards ---------- */
.services {
  background: var(--white);
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 30px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  position: relative;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: var(--gold-grad);
  border-radius: var(--radius) var(--radius) 0 0;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 52px;
  height: 52px;
  background: var(--noir);
  color: var(--gold-bright);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  font-family: 'Sora', 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 700;
  border: 1px solid var(--gold-deep);
  font-style: italic;
}
.service-card h3 {
  font-family: 'Sora', 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.service-card p { color: var(--slate); }

/* ---------- Feature image blocks ---------- */
.feature-block {
  background: var(--paper);
}
.feature-block .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.feature-block.reverse .container {
  grid-template-columns: 1fr 1fr;
}
.feature-block.reverse .feature-text { order: 2; }
.feature-block.reverse .feature-image { order: 1; }
.feature-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3;
}
.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.feature-text h2 {
  font-family: 'Sora', 'Inter', sans-serif;
  font-size: clamp(28px, 3.2vw, 38px);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 16px;
}
.feature-text p {
  color: var(--slate);
  font-size: 17px;
  margin-bottom: 14px;
  line-height: 1.65;
}
.feature-text ul {
  list-style: none;
  margin-top: 18px;
}
.feature-text ul li {
  padding: 12px 0 12px 28px;
  border-bottom: 1px solid var(--line);
  position: relative;
  color: var(--char);
}
.feature-text ul li:last-child { border-bottom: 0; }
.feature-text ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 14px;
  height: 2px;
  background: var(--rebar);
}

/* ---------- Portfolio gallery ---------- */
.portfolio { background: var(--white); }
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 40px;
}
.portfolio-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  box-shadow: var(--shadow-md);
  margin: 0;
}
.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.portfolio-item:hover img { transform: scale(1.05); }
.portfolio-item figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 28px 26px 22px;
  background: linear-gradient(0deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.55) 70%, transparent 100%);
  color: var(--white);
}
.portfolio-meta {
  display: block;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 700;
  margin-bottom: 6px;
}
.portfolio-title {
  display: block;
  font-family: 'Sora', 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* ---------- Photo banner (under page header) ---------- */
.photo-banner {
  width: 100%;
  height: 360px;
  overflow: hidden;
  position: relative;
}
.photo-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---------- Image gallery (about / team) ---------- */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 36px;
}
.photo-grid figure {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 4 / 3;
  background: var(--steel-100);
}
.photo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.photo-grid figure:hover img { transform: scale(1.04); }

/* ---------- Value strip ---------- */
.value-strip {
  background: var(--noir);
  color: var(--white);
  position: relative;
}
.value-strip::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: var(--gold-grad);
}
.value-strip .container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.value-strip .section-title { color: var(--white); }
.value-strip .section-intro { color: var(--cream-soft); opacity: 0.85; }
.value-strip .section-eyebrow { color: var(--gold-light); }
.value-list {
  list-style: none;
}
.value-list li {
  padding: 14px 0 14px 32px;
  border-bottom: 1px solid var(--char);
  position: relative;
  color: var(--cream-soft);
  font-size: 16px;
}
.value-list li:last-child { border-bottom: 0; }
.value-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  width: 18px;
  height: 2px;
  background: var(--gold);
}

/* ---------- CTA panel ---------- */
.cta-panel {
  background:
    linear-gradient(180deg, rgba(10,10,10,0.04) 0%, rgba(10,10,10,0.08) 100%),
    var(--gold-grad);
  color: var(--noir);
  text-align: center;
  padding: 84px 0;
  position: relative;
  border-top: 1px solid var(--gold-deep);
  border-bottom: 1px solid var(--gold-deep);
}
.cta-panel h2 {
  font-family: 'Sora', 'Inter', sans-serif;
  font-size: clamp(30px, 3.6vw, 42px);
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: -0.015em;
  color: var(--noir);
}
.cta-panel p {
  font-size: 18px;
  margin-bottom: 32px;
  color: var(--noir);
  opacity: 0.85;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.cta-panel .btn-dark { background: var(--noir); color: var(--gold-bright); border-color: var(--noir); }
.cta-panel .btn-dark:hover { background: var(--noir-soft); color: var(--gold-bright); }

/* ---------- Page header (non-home) ---------- */
.page-header {
  background: var(--noir);
  color: var(--white);
  padding: 72px 0 60px;
  position: relative;
  border-bottom: 2px solid var(--gold-deep);
}
.page-header::after {
  content: "";
  position: absolute;
  inset: auto 0 -2px 0;
  height: 2px;
  background: var(--gold-grad);
}
.page-header h1 {
  font-family: 'Sora', 'Inter', sans-serif;
  font-size: clamp(36px, 4.4vw, 50px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.page-header p {
  color: var(--cream-soft);
  font-size: 18px;
  max-width: 640px;
  opacity: 0.9;
}

/* ---------- Content grids ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: start;
}
.content-block h2 {
  font-family: 'Sora', 'Inter', sans-serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 16px;
  color: var(--ink);
}
.content-block p { color: var(--slate); margin-bottom: 16px; line-height: 1.65; }
.content-block ul { margin: 12px 0 20px 22px; color: var(--slate); }
.content-block ul li { margin-bottom: 8px; }

.fact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--gold);
}
.fact-card h3 {
  font-family: 'Sora', 'Inter', sans-serif;
  font-size: 20px;
  margin-bottom: 16px;
  color: var(--ink);
}
.fact-card dl { display: grid; gap: 10px; }
.fact-card dt {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 700;
}
.fact-card dd { color: var(--ink); font-weight: 500; margin-bottom: 4px; }

/* ---------- Team ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.team-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.team-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}
.team-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--noir);
  color: var(--gold-bright);
  font-family: 'Sora', 'Inter', sans-serif;
  font-size: 28px;
  font-weight: 700;
  font-style: italic;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  border: 2px solid var(--gold);
  box-shadow: var(--shadow-gold);
}
.team-card h3 {
  font-family: 'Sora', 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
}
.team-role {
  color: var(--gold-deep);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 14px;
}
.team-card p { color: var(--slate); font-size: 15px; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}
.contact-block h2 { margin-bottom: 12px; }
.contact-item {
  display: flex;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.contact-item:last-child { border-bottom: 0; }
.contact-item .label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 700;
  margin-bottom: 4px;
}
.contact-item .value {
  font-size: 17px;
  color: var(--ink);
  font-weight: 500;
}

form { display: grid; gap: 16px; }
.form-row { display: grid; gap: 6px; }
.form-row label {
  font-size: 12px;
  font-weight: 700;
  color: var(--gold-deep);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.form-row input,
.form-row textarea,
.form-row select {
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
  background: var(--white);
  color: var(--ink);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  outline: 0;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.20);
}
.form-row textarea { min-height: 140px; resize: vertical; }

/* ---------- Blog placeholder ---------- */
.blog-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  border-left: 3px solid var(--gold);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.blog-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.blog-card .meta {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 700;
  margin-bottom: 10px;
}
.blog-card h3 {
  font-family: 'Sora', 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.blog-card p { color: var(--slate); font-size: 15px; margin-bottom: 16px; line-height: 1.6; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--noir);
  color: var(--cream-soft);
  padding: 64px 0 28px;
  position: relative;
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: var(--gold-grad);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 40px;
}
.footer-grid h4 {
  font-family: 'Sora', 'Inter', sans-serif;
  font-size: 13px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 18px;
  font-weight: 700;
}
.footer-grid p, .footer-grid li { font-size: 14px; line-height: 1.7; color: var(--cream-soft); opacity: 0.82; }
.footer-grid ul { list-style: none; }
.footer-grid a { color: var(--cream-soft); }
.footer-grid a:hover { color: var(--gold-bright); }
.footer-bottom {
  border-top: 1px solid var(--char);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--grey);
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .service-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .value-strip .container,
  .two-col,
  .contact-grid,
  .feature-block .container { grid-template-columns: 1fr; gap: 36px; }
  .feature-block.reverse .feature-text { order: 1; }
  .feature-block.reverse .feature-image { order: 2; }
  .blog-list { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .photo-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .photo-banner { height: 240px; }
}

@media (max-width: 640px) {
  section { padding: 60px 0; }
  .hero { padding: 80px 0 70px; }
  .photo-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .photo-banner { height: 200px; }
  .nav { display: none; }
  .menu-toggle { display: block; }
  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--noir);
    padding: 16px 24px 24px;
    border-bottom: 1px solid var(--gold-deep);
    gap: 14px;
  }
  .team-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .utility-bar { font-size: 12px; }
  .utility-bar .util-left,
  .utility-bar .util-right { gap: 12px; }
}
