/* ============================================================================
   JAG CONSTRUCTION LONDON  ·  SITE STYLESHEET  ·  v1.0
   ============================================================================ */

:root {
  --charcoal: #545454;
  --ink: #2A2A2A;
  --cream: #F7F4EE;
  --paper: #EDEAE3;
  --stone: #D4CFC4;
  --mist: #C2BEB4;
  --muted: #8A8578;
  --brass: #9A7B4F;
  --brass-dark: #7A5F3D;
  --forest: #2D4E3A;
  --claret: #7A2E2E;

  --font-display: 'Cinzel', 'Trajan Pro', Georgia, serif;
  --font-editorial: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --max-width: 1280px;
  --header-h: 78px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { background: none; border: none; cursor: pointer; font: inherit; color: inherit; }

/* ============================================================================
   HEADER
   ============================================================================ */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 244, 238, 0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(212, 207, 196, 0.4);
}
.header__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 22px 48px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  height: var(--header-h);
}
.header__brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.header__brand-name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.18em;
  color: var(--ink);
  text-transform: uppercase;
  line-height: 1;
}
.header__brand-place {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 9px;
  letter-spacing: 0.32em;
  color: var(--muted);
  text-transform: uppercase;
  line-height: 1;
}
.nav {
  display: flex;
  gap: 36px;
  justify-content: center;
}
.nav__link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--ink);
  text-transform: uppercase;
  transition: color 240ms ease;
  position: relative;
}
.nav__link:hover { color: var(--brass); }
.nav__link--active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--brass);
}
.header__cta { justify-self: end; }
.header__cta-link {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.05em;
  color: var(--ink);
  padding: 12px 24px;
  border: 1px solid var(--ink);
  transition: all 240ms ease;
  text-transform: uppercase;
}
.header__cta-link:hover {
  background: var(--ink);
  color: var(--cream);
}

.menu-toggle {
  display: none;
  width: 36px;
  height: 36px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.menu-toggle span {
  width: 22px;
  height: 1px;
  background: var(--ink);
  transition: all 240ms ease;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--cream);
  border-top: 1px solid var(--stone);
  padding: 12px 24px 24px;
}
.nav-mobile.is-open { display: flex; }
.nav-mobile__link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--ink);
  text-transform: uppercase;
  padding: 16px 0;
  border-bottom: 1px solid var(--stone);
}
.nav-mobile__link--cta {
  border-bottom: none;
  border-top: 1px solid var(--ink);
  margin-top: 8px;
  padding-top: 20px;
}

/* ============================================================================
   HERO  /  HOMEPAGE
   ============================================================================ */

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  min-height: calc(100vh - var(--header-h));
  background: var(--cream);
}
.hero__image-side {
  position: relative;
  overflow: hidden;
  background: var(--paper);
}
.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}
.hero__content-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 84px 72px 72px;
  background: var(--cream);
  position: relative;
}
.hero__content-side::before {
  content: '';
  position: absolute;
  top: 84px;
  left: 0;
  width: 1px;
  height: 64px;
  background: var(--brass);
}
.hero__label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--brass);
  text-transform: uppercase;
  margin-bottom: 36px;
}
.hero__headline {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(36px, 4.4vw, 60px);
  line-height: 1.05;
  color: var(--ink);
  letter-spacing: -0.005em;
  max-width: 13ch;
  margin-bottom: 32px;
}
.hero__subline {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(18px, 1.5vw, 22px);
  color: var(--muted);
  max-width: 38ch;
  margin-bottom: 48px;
  line-height: 1.5;
}

/* ============================================================================
   PAGE HERO  /  internal pages
   ============================================================================ */

.page-hero {
  background: var(--cream);
  padding: 96px 48px 64px;
}
.page-hero__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.page-hero__label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--brass);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  margin-bottom: 28px;
}
.page-hero__label::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--brass);
  margin-right: 14px;
}
.page-hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.005em;
  color: var(--ink);
  max-width: 18ch;
  margin-bottom: 24px;
}
.page-hero__lead {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 1.8vw, 26px);
  color: var(--muted);
  max-width: 48ch;
  line-height: 1.5;
}

/* ============================================================================
   SECTIONS  /  general
   ============================================================================ */

.section {
  padding: 96px 48px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.section--narrow { max-width: 880px; }
.section--medium { max-width: 1080px; }
.section--paper {
  background: var(--paper);
  max-width: none;
  padding: 96px 48px;
}
.section--paper-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.section--charcoal {
  background: var(--ink);
  color: var(--cream);
  max-width: none;
  padding: 96px 48px;
}
.section--charcoal-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--brass);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  margin-bottom: 28px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--brass);
  margin-right: 14px;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(32px, 3.4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin-bottom: 32px;
}

/* ============================================================================
   POSITIONING / EDITORIAL  /  used on home
   ============================================================================ */

.positioning {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.positioning__text {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.55;
  color: var(--ink);
  letter-spacing: 0.005em;
}

/* ============================================================================
   BUTTONS
   ============================================================================ */

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 18px 36px;
  background: var(--ink);
  color: var(--cream);
  border: 1px solid var(--ink);
  transition: all 280ms ease;
  cursor: pointer;
}
.btn:hover {
  background: transparent;
  color: var(--ink);
}
.btn--cream {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
}
.btn--cream:hover {
  background: transparent;
  color: var(--cream);
  border-color: var(--cream);
}
.btn--outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--outline:hover {
  background: var(--ink);
  color: var(--cream);
}

/* ============================================================================
   FEATURED PROJECT CARDS
   ============================================================================ */

.featured {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.featured--reverse {
  grid-template-columns: 1fr 1.1fr;
}
.featured--reverse .featured__image-wrap { order: 2; }
.featured--reverse .featured__content { order: 1; }
.featured__image-wrap {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--paper);
  max-height: 720px;
}
.featured__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1200ms cubic-bezier(0.16, 1, 0.3, 1);
}
.featured__image-wrap:hover .featured__image {
  transform: scale(1.04);
}
.featured__content { padding: 0 12px; }
.featured__name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(34px, 3.6vw, 52px);
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 18px;
  letter-spacing: -0.005em;
}
.featured__tagline {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.4;
  color: var(--muted);
  margin-bottom: 32px;
}
.featured__meta {
  display: flex;
  gap: 36px;
  margin-bottom: 36px;
  padding: 20px 0;
  border-top: 1px solid var(--stone);
  border-bottom: 1px solid var(--stone);
  flex-wrap: wrap;
}
.featured__meta-item { font-family: var(--font-body); font-size: 13px; }
.featured__meta-label {
  display: block;
  color: var(--muted);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.featured__meta-value { color: var(--ink); font-weight: 500; }
.featured__link {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--ink);
  text-transform: uppercase;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
  transition: all 240ms ease;
}
.featured__link:hover { color: var(--brass); border-color: var(--brass); }
.featured__link::after { content: '  →'; }

/* ============================================================================
   HOW WE WORK  /  three-step
   ============================================================================ */

.how {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
  margin-top: 64px;
}
.how__step-num {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 28px;
  color: var(--brass);
  margin-bottom: 16px;
  display: block;
}
.how__step-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 26px;
  color: var(--ink);
  margin-bottom: 16px;
  letter-spacing: -0.005em;
}
.how__step-text {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
}

/* ============================================================================
   SERVICES LIST  (homepage and hub)
   ============================================================================ */

.services-intro {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  margin-bottom: 56px;
}
.services-intro__text {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
}
.services {
  border-top: 1px solid var(--stone);
}
.service-row {
  display: grid;
  grid-template-columns: 1fr 2fr auto;
  gap: 32px;
  align-items: baseline;
  padding: 28px 0;
  border-bottom: 1px solid var(--stone);
  transition: padding 320ms ease;
}
.service-row:hover { padding-left: 12px; }
.service-row__name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 26px;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.service-row__desc {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}
.service-row__arrow {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--brass);
  font-weight: 500;
  letter-spacing: 0.05em;
  opacity: 0;
  transform: translateX(-8px);
  transition: all 280ms ease;
}
.service-row:hover .service-row__arrow {
  opacity: 1;
  transform: translateX(0);
}
.services-link {
  display: inline-block;
  margin-top: 48px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--ink);
  text-transform: uppercase;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
}
.services-link::after { content: '  →'; }

/* ============================================================================
   ABOUT SNIPPET  (homepage) and full ABOUT page
   ============================================================================ */

.about-snippet {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: center;
}
.about-snippet__image-wrap {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--paper);
  position: relative;
}
.about-snippet__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--paper);
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-align: center;
  text-transform: uppercase;
  padding: 40px;
}
.about-snippet__placeholder-icon {
  width: 56px;
  height: 56px;
  border: 1px solid var(--mist);
  border-radius: 50%;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.about-snippet__name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(32px, 3.4vw, 48px);
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 24px;
  letter-spacing: -0.005em;
}
.about-snippet__text {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink);
  margin-bottom: 28px;
  max-width: 50ch;
}
.about-snippet__sig {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 32px;
}

/* ============================================================================
   PROSE  /  longform copy on About, Service detail, Journal, Project story
   ============================================================================ */

.prose {
  max-width: 68ch;
  margin: 0 auto;
}
.prose p {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink);
  margin-bottom: 1.4em;
}
.prose p:last-child { margin-bottom: 0; }
.prose h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin: 2.4em 0 0.8em;
}
.prose h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.3;
  color: var(--ink);
  margin: 1.8em 0 0.5em;
}
.prose ul, .prose ol {
  margin: 1em 0 1.4em 1.5em;
  padding-left: 0;
}
.prose ul { list-style: none; }
.prose ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 0.5em;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
}
.prose ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 12px;
  height: 1px;
  background: var(--brass);
}
.prose blockquote {
  margin: 2em 0;
  padding-left: 32px;
  border-left: 1px solid var(--brass);
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.5;
  color: var(--ink);
}
.prose a {
  color: var(--ink);
  border-bottom: 1px solid var(--brass);
  transition: color 200ms ease;
}
.prose a:hover { color: var(--brass); }

/* ============================================================================
   PRINCIPLES  (About page method blocks; service "How we approach it")
   ============================================================================ */

.principles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 48px 56px;
  margin-top: 32px;
}
.principle__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 24px;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin-bottom: 12px;
}
.principle__text {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
}

/* ============================================================================
   CONTACT  /  form
   ============================================================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field__label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--brass);
  text-transform: uppercase;
}
.field__input,
.field__textarea,
.field__select {
  font-family: var(--font-body);
  font-size: 16px;
  padding: 14px 16px;
  border: 1px solid var(--stone);
  background: var(--cream);
  color: var(--ink);
  transition: border-color 200ms ease;
  max-width: 100%;
}
.field__input:focus,
.field__textarea:focus,
.field__select:focus {
  outline: none;
  border-color: var(--brass);
}
.field__textarea {
  resize: vertical;
  min-height: 140px;
  font-family: var(--font-body);
}
.field__hint {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
}
.contact-side {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.contact-side__phone {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -0.005em;
  color: var(--ink);
  display: block;
  margin-bottom: 16px;
}
.contact-side__heading {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--brass);
  text-transform: uppercase;
  margin: 32px 0 12px;
}
.contact-side__heading:first-child { margin-top: 0; }

/* ============================================================================
   PROJECTS / GALLERY
   ============================================================================ */

.project-hero {
  position: relative;
  aspect-ratio: 16 / 9;
  max-height: calc(100vh - var(--header-h));
  overflow: hidden;
  background: var(--paper);
}
.project-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.project-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
  padding: 32px 0;
  border-top: 1px solid var(--stone);
  border-bottom: 1px solid var(--stone);
  margin-bottom: 56px;
}
.fact__label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--brass);
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}
.fact__value {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  line-height: 1.5;
}

.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 56px;
}
.gallery__item {
  background: var(--paper);
  overflow: hidden;
}
.gallery__item--full { grid-column: 1 / -1; }
.gallery__image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 1200ms cubic-bezier(0.16, 1, 0.3, 1);
}
.gallery__item:hover .gallery__image {
  transform: scale(1.03);
}
.gallery__caption {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 16px;
  color: var(--muted);
  line-height: 1.5;
  padding: 16px 4px 0;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 48px;
  margin-top: 48px;
}
.project-card { display: block; transition: transform 280ms ease; }
.project-card:hover { transform: translateY(-4px); }
.project-card__image-wrap {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--paper);
  margin-bottom: 24px;
}
.project-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1200ms cubic-bezier(0.16, 1, 0.3, 1);
}
.project-card:hover .project-card__image { transform: scale(1.05); }
.project-card__name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 28px;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.005em;
}
.project-card__line {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 18px;
  color: var(--muted);
  line-height: 1.4;
}

/* ============================================================================
   TESTIMONIAL
   ============================================================================ */

.testimonial {
  max-width: 760px;
  margin: 0 auto;
  text-align: left;
}
.testimonial__quote {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 24px;
}
.testimonial__attribution {
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.05em;
  color: var(--muted);
}

/* ============================================================================
   FAQ
   ============================================================================ */

.faq { max-width: 760px; margin: 48px auto 0; }
.faq__item {
  border-bottom: 1px solid var(--stone);
  padding: 28px 0;
}
.faq__item:first-child { border-top: 1px solid var(--stone); }
.faq__q {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.3;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin-bottom: 16px;
}
.faq__a {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  max-width: 64ch;
}

/* ============================================================================
   CTA BAND  /  charcoal
   ============================================================================ */

.cta-band {
  text-align: center;
}
.cta-band__quote {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.3;
  color: var(--cream);
  max-width: 22ch;
  margin: 0 auto 40px;
}

/* ============================================================================
   AREA / JOURNAL / SERVICE HUBS
   ============================================================================ */

.hub-intro {
  max-width: 720px;
  margin-bottom: 64px;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink);
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}
.area-card {
  display: block;
  padding: 32px 28px;
  background: var(--paper);
  border: 1px solid var(--stone);
  transition: all 280ms ease;
}
.area-card:hover {
  background: var(--cream);
  border-color: var(--brass);
  transform: translateY(-2px);
}
.area-card__name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 26px;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: -0.005em;
}
.area-card__postcode {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--brass);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.area-card__line {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
}

.journal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 56px;
}
.journal-card {
  display: block;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--stone);
}
.journal-card__category {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--brass);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.journal-card__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 30px;
  line-height: 1.15;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin-bottom: 16px;
  transition: color 200ms ease;
}
.journal-card:hover .journal-card__title { color: var(--brass); }
.journal-card__excerpt {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 16px;
}
.journal-card__meta {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-transform: uppercase;
}

/* ============================================================================
   BREADCRUMBS
   ============================================================================ */

.breadcrumbs {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 32px;
}
.breadcrumbs a {
  color: var(--muted);
  border-bottom: 1px solid transparent;
  transition: all 200ms ease;
}
.breadcrumbs a:hover {
  color: var(--ink);
  border-bottom-color: var(--brass);
}
.breadcrumbs__sep { margin: 0 12px; color: var(--mist); }

/* ============================================================================
   FOOTER
   ============================================================================ */

.footer {
  background: var(--ink);
  color: rgba(247, 244, 238, 0.75);
  padding: 96px 48px 36px;
}
.footer__inner { max-width: var(--max-width); margin: 0 auto; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(247, 244, 238, 0.12);
}
.footer__brand-name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 0.18em;
  color: var(--cream);
  margin-bottom: 8px;
}
.footer__brand-place {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 9px;
  letter-spacing: 0.32em;
  color: rgba(247, 244, 238, 0.5);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.footer__tagline {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 18px;
  color: rgba(247, 244, 238, 0.7);
  line-height: 1.5;
  max-width: 28ch;
  margin-bottom: 28px;
}
.footer__contact {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.85;
  color: rgba(247, 244, 238, 0.7);
}
.footer__contact a:hover { color: var(--brass); }
.footer__heading {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--brass);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer__list li { margin-bottom: 10px; }
.footer__list a {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(247, 244, 238, 0.7);
  transition: color 200ms ease;
}
.footer__list a:hover { color: var(--cream); }
.footer__bottom {
  padding-top: 36px;
  display: flex;
  justify-content: space-between;
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(247, 244, 238, 0.4);
}
.footer__bottom a { transition: color 200ms ease; }
.footer__bottom a:hover { color: rgba(247, 244, 238, 0.8); }

/* ============================================================================
   SCROLL-REVEAL
   ============================================================================ */

@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1000ms ease, transform 1000ms cubic-bezier(0.16, 1, 0.3, 1);
  }
  .reveal.in {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================================
   RESPONSIVE
   ============================================================================ */

@media (max-width: 960px) {
  .header__inner {
    grid-template-columns: 1fr auto;
    gap: 16px;
    padding: 18px 24px;
  }
  .nav { display: none; }
  .menu-toggle { display: flex; }
  .header__cta { display: none; }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero__image-side { aspect-ratio: 4 / 5; }
  .hero__content-side { padding: 56px 24px 64px; }
  .hero__content-side::before { display: none; }

  .page-hero { padding: 56px 24px 48px; }
  .section, .section--paper, .section--charcoal { padding: 64px 24px; }

  .featured, .featured--reverse {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .featured--reverse .featured__image-wrap { order: 0; }
  .featured--reverse .featured__content { order: 1; }

  .how { grid-template-columns: 1fr; gap: 40px; }
  .services-intro { grid-template-columns: 1fr; gap: 24px; }
  .service-row { grid-template-columns: 1fr; gap: 8px; }
  .service-row__arrow { display: none; }

  .about-snippet { grid-template-columns: 1fr; gap: 32px; }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .gallery { grid-template-columns: 1fr; gap: 16px; }

  .footer { padding: 64px 24px 32px; }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer__bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

@media (max-width: 560px) {
  .footer__grid { grid-template-columns: 1fr; }
}
