/* Thornfield Consulting — site stylesheet */

:root {
  --navy: #253439;
  --navy-dark: #1a2529;
  --gold: #AB9565;
  --gold-lt: #C9B68C;
  --cream: #F6F5F5;
  --cream-warm: #FBFAF8;
  --ink: #253439;
  --muted: #6b6b6b;
  --tile-border: #E5E2DC;
  --serif: 'Playfair Display', 'Times New Roman', Georgia, serif;
  --sans: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--navy); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--gold); }

/* ---- NAV ---- */
.nav {
  background: var(--navy-dark);
  color: var(--cream);
  padding: 16px 0;
  text-align: center;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.nav a {
  color: var(--cream);
  margin: 0 18px;
  display: inline-block;
  position: relative;
}
.nav a:hover, .nav a.active { color: var(--gold); }
.nav a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: -6px;
  height: 1px;
  background: var(--gold);
}

/* ---- LOGO BAND ---- */
/* Top assembly: nav + tall logo band, logo fills it */
.nav { padding: 6px 0; line-height: 1; max-height: 50px; box-sizing: border-box; }
.logo-band {
  background: var(--navy-dark);
  text-align: center;
  padding: 8px 20px;
  margin: 0;
  font-size: 0;
  line-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.logo-band a { display: inline-flex; line-height: 0; padding: 0; margin: 0; align-items: center; }
.logo-band img {
  width: min(560px, 60%);
  height: auto;
  max-height: 90px;
  margin: 0 auto;
  display: block;
  padding: 0;
  object-fit: contain;
}
@media (max-width: 700px) {
  .logo-band { padding: 6px 14px; }
  .logo-band img { width: min(360px, 80%); max-height: 64px; }
  .nav { max-height: 40px; }
}
.logo-band-fallback {
  font-family: var(--serif);
  color: var(--gold-lt);
}
.logo-band-fallback .name {
  font-size: 36px;
  letter-spacing: 12px;
  font-weight: 500;
}
.logo-band-fallback .sub {
  font-size: 12px;
  letter-spacing: 6px;
  color: var(--gold);
  margin-top: 6px;
  font-style: italic;
}

/* ---- HERO ---- */
.hero {
  background: var(--navy);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  min-height: 280px;
}
.hero-img {
  background: var(--navy) center/cover no-repeat;
  background-image: linear-gradient(135deg, #1f5e62 0%, #0a2c2e 100%);
  position: relative;
}
.hero-img::after {
  /* subtle building silhouette pattern */
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 400'><g fill='%23153e41' fill-opacity='0.55'><rect x='40' y='180' width='80' height='220'/><rect x='130' y='80' width='110' height='320'/><rect x='250' y='140' width='70' height='260'/><rect x='330' y='40' width='130' height='360'/><rect x='470' y='160' width='90' height='240'/><rect x='570' y='100' width='110' height='300'/><rect x='690' y='180' width='80' height='220'/></g></svg>");
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
}
.hero-text {
  padding: 60px 60px;
  color: var(--gold-lt);
  align-self: center;
}
.hero-text h1 {
  color: var(--cream);
  margin: 0 0 18px;
  font-family: var(--sans);
  font-size: 42px;
  letter-spacing: 5px;
  font-weight: 700;
}
.hero-text p {
  font-size: 14px;
  line-height: 1.7;
  max-width: 480px;
}

/* full-bleed centred hero (used on most pages) */
.hero-centred {
  background: var(--navy);
  text-align: center;
  padding: 90px 30px;
  color: var(--gold-lt);
  position: relative;
}
.hero-centred::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 400'><g fill='%23153e41' fill-opacity='0.4'><rect x='40' y='180' width='80' height='220'/><rect x='130' y='80' width='110' height='320'/><rect x='250' y='140' width='70' height='260'/><rect x='330' y='40' width='130' height='360'/><rect x='470' y='160' width='90' height='240'/><rect x='570' y='100' width='110' height='300'/><rect x='690' y='180' width='80' height='220'/><rect x='790' y='120' width='100' height='280'/><rect x='900' y='60' width='120' height='340'/><rect x='1030' y='160' width='90' height='240'/></g></svg>");
  background-size: cover;
  background-position: center bottom;
  opacity: 0.6;
}
.hero-centred > * { position: relative; z-index: 1; }
.hero-centred .eyebrow {
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.hero-centred h1 {
  color: var(--cream);
  font-family: var(--serif);
  font-weight: 500;
  font-size: 56px;
  letter-spacing: 1px;
  margin: 0 0 16px;
  line-height: 1.1;
}
.hero-centred .lede {
  color: var(--gold-lt);
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  font-style: italic;
  font-family: var(--serif);
}

/* ---- CONTAINERS ---- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 70px 30px;
}
.container.narrow { max-width: 800px; }

/* ---- SECTION TITLES ---- */
.section-title {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin: 0 0 32px;
}
.section-title h2 {
  color: var(--navy);
  font-family: var(--sans);
  font-size: 22px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gold);
}
.section-title small {
  color: var(--muted);
  font-style: italic;
  font-family: var(--serif);
  font-size: 16px;
}

h2.serif {
  font-family: var(--serif);
  color: var(--navy);
  font-size: 36px;
  font-weight: 500;
  margin: 0 0 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

h3 { color: var(--navy); font-family: var(--sans); font-weight: 700; }

/* Major subheadings, gold Montserrat bold per brand guide */
.major-sub {
  font-family: var(--sans);
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 4px;
  text-transform: uppercase;
}

/* ---- PROJECT TILES (the look from the mockup) ---- */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tile {
  background: #ffffff;
  border: 1px solid var(--tile-border);
  box-shadow: 0 2px 10px rgba(15, 61, 64, 0.06);
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(15, 61, 64, 0.10);
}
.tile-img {
  position: relative;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, #1f5e62 0%, #0F3D40 100%);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.tile-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(0,0,0,0.30));
}
.badge {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--navy);
  color: var(--cream);
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  z-index: 2;
}
.tag {
  position: absolute;
  right: 10px;
  bottom: 10px;
  background: var(--gold);
  color: var(--navy-dark);
  padding: 4px 12px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
  z-index: 2;
  text-transform: uppercase;
}
.tile-body { padding: 20px 22px 24px; flex: 1; }
.tile h3 {
  color: var(--ink);
  margin: 0 0 4px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
}
.tile .loc {
  color: var(--gold);
  font-style: italic;
  font-size: 13px;
  margin: 0 0 12px;
  font-family: var(--serif);
}
.tile p {
  color: #4a4a4a;
  font-size: 13px;
  line-height: 1.55;
  margin: 0;
}

/* ---- SERVICE CARDS ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 30px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--tile-border);
  padding: 32px 28px;
  position: relative;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 50px; height: 3px;
  background: var(--gold);
}
.service-card h3 {
  font-family: var(--serif);
  color: var(--navy);
  font-size: 24px;
  font-weight: 500;
  margin: 0 0 14px;
}
.service-card p {
  color: #4a4a4a;
  font-size: 14px;
  line-height: 1.65;
}

/* ---- CALLOUT / NOTE BOX ---- */
.note {
  background: var(--cream-warm);
  border-left: 4px solid var(--gold);
  padding: 18px 26px;
  margin: 0 0 36px;
  font-size: 14px;
  color: #4a4a4a;
  line-height: 1.65;
}
.note b { color: var(--navy); }

/* ---- TWO-COL TEXT LAYOUT (About) ---- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.two-col p { font-size: 16px; line-height: 1.75; color: #333; margin: 0 0 18px; }

/* ---- TESTIMONIALS ---- */
.testimonials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 8px;
}
.testimonials.testimonials-3 { grid-template-columns: repeat(3, 1fr); }
.testimonials.testimonials-2x2 { grid-template-columns: repeat(2, 1fr); }

/* ---- TESTIMONIAL CAROUSEL ---- */
.testi-carousel {
  position: relative;
  margin-top: 14px;
  padding: 0 60px;
}
.testi-track {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.testi-track::-webkit-scrollbar { display: none; }
.testi-slide {
  flex: 0 0 100%;
  scroll-snap-align: center;
  scroll-snap-stop: always;
  margin: 0;
  padding: 50px 60px 36px;
  background: #fff;
  border: 1px solid var(--tile-border);
  position: relative;
  text-align: center;
}
.testi-slide::before {
  content: '\201C';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--serif);
  font-size: 100px;
  color: var(--gold);
  line-height: 1;
}
.testi-slide blockquote {
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  line-height: 1.55;
  color: var(--ink);
  margin: 0 auto 28px;
  max-width: 720px;
}
.testi-slide figcaption {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.testi-slide .who {
  font-weight: 700;
  color: var(--navy);
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.testi-slide .role {
  color: var(--gold);
  font-size: 13px;
  font-style: italic;
  margin-top: 4px;
  font-family: var(--serif);
}
.testi-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 1px solid var(--tile-border);
  background: #fff;
  color: var(--navy);
  font-size: 28px;
  line-height: 0;
  cursor: pointer;
  font-family: var(--serif);
  z-index: 2;
  transition: all .15s ease;
}
.testi-nav:hover { background: var(--gold); color: var(--navy-dark); border-color: var(--gold); }
.testi-nav.prev { left: 0; }
.testi-nav.next { right: 0; }
.testi-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}
.testi-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: transparent;
  cursor: pointer;
  transition: background .2s ease;
}
.testi-dots button.active { background: var(--gold); }
@media (max-width: 700px) {
  .testi-carousel { padding: 0 50px; }
  .testi-slide { padding: 44px 24px 30px; }
  .testi-slide blockquote { font-size: 17px; }
  .testi-nav { width: 36px; height: 36px; font-size: 22px; }
}
.testimonial {
  background: #ffffff;
  border: 1px solid var(--tile-border);
  padding: 36px 36px 28px;
  margin: 0;
  position: relative;
}
.testimonial::before {
  content: '\201C';
  position: absolute;
  top: -10px;
  left: 22px;
  font-family: var(--serif);
  font-size: 80px;
  color: var(--gold);
  line-height: 1;
}
.testimonial blockquote {
  font-family: var(--serif);
  font-size: 19px;
  font-style: italic;
  line-height: 1.55;
  color: var(--ink);
  margin: 0 0 22px;
}
.testimonial figcaption {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--tile-border);
  padding-top: 16px;
}
.testimonial .who {
  font-weight: 700;
  color: var(--navy);
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.testimonial .role {
  color: var(--gold);
  font-size: 12px;
  font-style: italic;
  margin-top: 4px;
}
@media (max-width: 800px) {
  .testimonials { grid-template-columns: 1fr; }
}

/* ---- LARGE PULL QUOTE ---- */
.pull-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 32px;
  color: var(--navy);
  line-height: 1.35;
  text-align: center;
  max-width: 800px;
  margin: 60px auto;
  position: relative;
  padding: 36px 30px;
}
.pull-quote::before, .pull-quote::after {
  content: '';
  position: absolute;
  left: 50%; transform: translateX(-50%);
  width: 80px; height: 1px;
  background: var(--gold);
}
.pull-quote::before { top: 0; }
.pull-quote::after  { bottom: 0; }

/* ---- STATS STRIP ---- */
.stats {
  background: var(--navy);
  color: var(--cream);
  padding: 60px 30px;
}
.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.stat .big {
  font-family: var(--serif);
  font-size: 48px;
  color: var(--gold-lt);
  line-height: 1;
  margin-bottom: 8px;
}
.stat .small {
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
}

/* ---- CLIENT STRIP (auto-scrolling marquee) ---- */
.clients-strip {
  background: var(--cream-warm);
  padding: 36px 0 40px;
  border-top: 1px solid var(--tile-border);
  border-bottom: 1px solid var(--tile-border);
  overflow: hidden;
}
.clients-strip-inner {
  text-align: center;
}
.clients-strip h4 {
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin: 0 0 18px;
}
.marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  /* fade edges so logos slide cleanly into view */
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
          mask-image: linear-gradient(to right, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
}
.marquee-track {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
  will-change: transform;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee-track .client {
  display: inline-flex;
  align-items: center;
  font-family: var(--serif);
  font-size: 19px;
  color: var(--navy);
  letter-spacing: 0.5px;
  padding: 0 28px;
  text-decoration: none;
  white-space: nowrap;
}
.marquee-track .client:hover { color: var(--gold); }
.marquee-track .sep {
  color: var(--gold);
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  padding: 0 4px;
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; transform: none; }
  .marquee { white-space: normal; -webkit-mask-image: none; mask-image: none; }
  .marquee-track { display: flex; flex-wrap: wrap; justify-content: center; }
}

/* ---- ACCESSIBILITY ---- */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--navy);
  color: var(--cream);
  padding: 8px 14px;
  z-index: 100;
}
.skip-link:focus { top: 0; }

/* ---- BUTTONS / CTA ---- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  background: var(--gold);
  color: var(--navy-dark);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  transition: all .2s ease;
}
.btn:hover { background: var(--gold-lt); color: var(--navy-dark); }
.btn.outline { background: transparent; color: var(--cream); border: 1px solid var(--gold); }
.btn.outline:hover { background: var(--gold); color: var(--navy-dark); }

.cta-band {
  background: var(--navy);
  color: var(--cream);
  text-align: center;
  padding: 70px 30px;
}
.cta-band h2 {
  font-family: var(--serif);
  font-size: 36px;
  color: var(--cream);
  margin: 0 0 16px;
  font-weight: 500;
}
.cta-band p { font-size: 17px; color: var(--gold-lt); margin: 0 0 30px; font-style: italic; font-family: var(--serif); }

/* ---- FAQ ---- */
.faq-item {
  border-bottom: 1px solid var(--tile-border);
  padding: 22px 0;
}
.faq-item h3 {
  font-family: var(--serif);
  color: var(--navy);
  font-size: 22px;
  font-weight: 500;
  margin: 0 0 10px;
}
.faq-item p { color: #4a4a4a; line-height: 1.7; margin: 0; }

/* ---- BLOG POST DETAIL ---- */
.post-detail { padding-top: 60px; padding-bottom: 60px; max-width: 760px; }
.post-detail .post-meta {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.post-detail .post-title {
  font-family: var(--serif);
  color: var(--navy);
  font-size: 38px;
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 30px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.post-detail .post-h2 {
  font-family: var(--serif);
  color: var(--navy);
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 36px 0 12px;
  padding-top: 4px;
}
.post-detail p {
  font-size: 16px;
  line-height: 1.8;
  color: #2a2a2a;
  margin: 0 0 18px;
}
.post-lead, .post-inline {
  margin: 28px 0;
}
.post-lead { margin-top: 12px; }
.post-lead img, .post-inline img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid var(--tile-border);
}
.post-lead figcaption, .post-inline figcaption {
  font-size: 12px;
  color: var(--muted);
  font-style: italic;
  text-align: center;
  margin-top: 10px;
  font-family: var(--serif);
}
.other-posts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.other-post {
  background: #fff;
  border: 1px solid var(--tile-border);
  padding: 22px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: all .15s ease;
}
.other-post:hover { border-color: var(--gold); box-shadow: 0 4px 12px rgba(15,61,64,0.08); }
.other-post .meta {
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.other-post .title {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--navy);
  font-weight: 500;
  line-height: 1.3;
}
@media (max-width: 700px) {
  .other-posts { grid-template-columns: 1fr; }
  .post-detail .post-title { font-size: 28px; }
}

/* ---- BLOG ---- */
.post-list { display: grid; gap: 30px; }
.post-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  padding: 24px 0;
  border-bottom: 1px solid var(--tile-border);
}
.post-card .post-img {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #1f5e62 0%, #0F3D40 100%);
}
.post-card .meta { font-size: 12px; color: var(--gold); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 8px; }
.post-card h3 { font-family: var(--serif); font-size: 26px; font-weight: 500; margin: 0 0 10px; color: var(--navy); }
.post-card p { color: #4a4a4a; line-height: 1.65; }

/* ---- CONTACT ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-block { font-size: 15px; line-height: 1.8; }
.contact-block .label {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 18px;
  margin-bottom: 4px;
  font-weight: 700;
}
.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--tile-border);
  background: #fff;
  font-family: inherit;
  font-size: 14px;
  margin-bottom: 14px;
  color: var(--ink);
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.contact-form label {
  display: block;
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 6px;
  font-weight: 700;
}

/* ---- CONTACT CARDS ---- */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 20px;
}
.contact-card {
  background: #fff;
  border: 1px solid var(--tile-border);
  padding: 36px 32px;
  text-align: center;
  position: relative;
}
.contact-card::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 50px; height: 3px;
  background: var(--gold);
}
.contact-card .label {
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px;
  font-weight: 700;
}
.contact-card .contact-big {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--navy);
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  letter-spacing: 0.3px;
  line-height: 1.4;
}
.contact-card .contact-big:hover { color: var(--gold); }
.contact-card .contact-addr {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  line-height: 1.6;
}
@media (max-width: 700px) {
  .contact-cards { grid-template-columns: 1fr; }
}

/* ---- LOCATIONS ---- */
.location-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 30px;
}
.location-card {
  background: #fff;
  border: 1px solid var(--tile-border);
  padding: 30px;
}
.location-card h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  color: var(--navy);
  margin: 0 0 12px;
}
.location-card .addr { color: #4a4a4a; line-height: 1.65; font-size: 14px; }

/* ---- FOOTER ---- */
.footer {
  background: var(--navy-dark);
  color: var(--gold-lt);
  padding: 60px 30px 30px;
  text-align: center;
}
.footer-grid {
  max-width: 1100px;
  margin: 0 auto 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: left;
}
.footer h5 {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 0 0 14px;
}
.footer a { color: var(--cream); display: block; margin-bottom: 8px; font-size: 13px; }
.footer a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(184, 153, 104, 0.2);
  padding-top: 24px;
  margin-top: 30px;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
}
.footer-bottom .t {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--gold-lt);
  display: block;
  margin-bottom: 10px;
}
.socials {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin: 14px 0 8px;
}
.socials a {
  width: 40px; height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(171,149,101,0.4);
  border-radius: 50%;
  color: var(--gold);
  transition: all .15s ease;
}
.socials a:hover { color: var(--navy-dark); background: var(--gold); border-color: var(--gold); }

/* ---- DECORATIVE FLOURISH ---- */
.flourish {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 30px auto;
}
.flourish::before, .flourish::after {
  content: '';
  width: 60px;
  height: 1px;
  background: var(--gold);
}
.flourish .diamond {
  width: 7px; height: 7px;
  transform: rotate(45deg);
  background: var(--gold);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 960px) {
  .grid, .services-grid { grid-template-columns: repeat(2, 1fr); }
  .two-col, .contact-grid, .location-grid { grid-template-columns: 1fr; gap: 30px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { grid-template-columns: 1fr; }
  .post-card { grid-template-columns: 1fr; }
  .post-card .post-img { aspect-ratio: 16 / 9; }
  .hero-centred h1 { font-size: 38px; }
  .hero-text { padding: 40px 30px; }
}
@media (max-width: 600px) {
  .grid, .services-grid { grid-template-columns: 1fr; }
  .nav { font-size: 11px; }
  .nav a { margin: 0 6px; }
  .container { padding: 50px 22px; }
  .hero-centred { padding: 60px 22px; }
  .hero-centred h1 { font-size: 30px; }
  .pull-quote { font-size: 22px; padding: 24px 16px; }
}
@media (max-width: 480px) {
  .nav { font-size: 10px; padding: 8px 0; max-height: 36px; }
  .nav a { margin: 0 4px; }
}
