@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;1,500&family=DM+Sans:wght@400;500;600&display=swap");

:root {
  --paper: #f5f1e8;
  --paper-deep: #e9e2d4;
  --cream: #fbf8f1;
  --pine: #17352f;
  --pine-mid: #285248;
  --heather: #73566f;
  --clay: #b86f4d;
  --brass: #bd9259;
  --ink: #18221f;
  --muted: #69746f;
  --line: rgba(23, 53, 47, 0.16);
  --white: #fffdf8;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shadow: 0 20px 60px rgba(23, 53, 47, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; }
img { max-width: 100%; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
:focus-visible { outline: 3px solid rgba(184, 111, 77, 0.55); outline-offset: 3px; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 1000;
  background: var(--white);
  padding: 10px 14px;
}
.skip-link:focus { top: 16px; }
.shell { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.shell.narrow { width: min(820px, calc(100% - 40px)); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  color: var(--clay);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: currentColor; }
.display {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(46px, 7vw, 88px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.88;
}
.display em, .section-title em { color: var(--heather); font-weight: 500; }
.section-title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.96;
}
.section-copy { max-width: 620px; color: var(--muted); font-size: 16px; }
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 34px;
}
.section-head > div:first-child { max-width: 700px; }
.section-head .eyebrow { margin-bottom: 14px; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
  color: var(--pine);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}
.text-link:hover { color: var(--clay); }

.announcement {
  background: var(--pine);
  color: rgba(255, 253, 248, 0.88);
  font-size: 10px;
  letter-spacing: 0.17em;
  padding: 8px 20px;
  text-align: center;
  text-transform: uppercase;
}
.site-header {
  position: relative;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(245, 241, 232, 0.96);
}
.nav {
  width: min(1240px, calc(100% - 40px));
  min-height: 82px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}
.nav-group { display: flex; align-items: center; gap: 24px; }
.nav-group.right { justify-content: flex-end; }
.nav a { text-decoration: none; }
.nav-link {
  color: var(--pine);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.nav-link:hover { color: var(--clay); }
.mobile-extra { display: none; }
.brand {
  display: block;
  color: var(--pine);
  font-family: var(--serif);
  text-align: center;
}
.brand strong {
  display: block;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.9;
}
.brand span {
  display: block;
  margin-top: 4px;
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}
.nav-cta {
  border: 1px solid var(--pine);
  padding: 10px 15px;
}
.nav-cta:hover { background: var(--pine); color: var(--white); }
.menu-button { display: none; border: 0; background: none; font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 99px;
  padding: 13px 22px;
  background: var(--pine);
  color: var(--white);
  cursor: pointer;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .2s, background .2s, color .2s;
}
.button:hover { background: var(--clay); transform: translateY(-1px); }
.button.light { background: var(--white); color: var(--pine); }
.button.light:hover { background: var(--paper-deep); }
.button.outline { border-color: currentColor; background: transparent; color: var(--pine); }
.button.outline:hover { background: var(--pine); color: var(--white); }
.button.wide { width: 100%; }

.home-hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background: var(--pine);
  color: var(--white);
}
.home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(9, 31, 26, .9) 0%, rgba(9, 31, 26, .66) 47%, rgba(9, 31, 26, .12) 100%);
}
.home-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 86px;
}
.hero-content .eyebrow { color: #efb18d; }
.hero-content .display { max-width: 760px; }
.hero-content .display em { color: #efb18d; }
.hero-lede {
  max-width: 540px;
  margin: 28px 0 0;
  color: rgba(255, 253, 248, .82);
  font-size: 17px;
}
.search-panel {
  display: grid;
  grid-template-columns: 1.3fr 1fr auto;
  width: min(820px, 100%);
  margin-top: 38px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 99px;
  background: rgba(255, 253, 248, .94);
  box-shadow: var(--shadow);
}
.search-field { position: relative; padding: 4px 18px; }
.search-field + .search-field { border-left: 1px solid var(--line); }
.search-field label {
  display: block;
  color: var(--clay);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.search-field select, .search-field input {
  width: 100%;
  border: 0;
  outline: 0;
  appearance: none;
  padding: 4px 22px 2px 0;
  background: transparent;
  color: var(--pine);
  font-size: 14px;
}
.search-panel .button { min-width: 152px; }
.hero-note {
  margin-top: 18px;
  color: rgba(255, 253, 248, .68);
  font-size: 12px;
}

.trust-strip { border-bottom: 1px solid var(--line); background: var(--cream); }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 112px;
}
.trust-item {
  padding: 26px 30px;
  border-left: 1px solid var(--line);
}
.trust-item:last-child { border-right: 1px solid var(--line); }
.trust-item strong { display: block; color: var(--pine); font-family: var(--serif); font-size: 28px; font-weight: 600; line-height: 1; }
.trust-item span { display: block; margin-top: 7px; color: var(--muted); font-size: 10px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }

.section { padding: 100px 0; }
.section.cream { background: var(--cream); }
.section.pine { background: var(--pine); color: var(--white); }
.section.pine .section-copy { color: rgba(255, 253, 248, .7); }
.section.pine .eyebrow { color: #efb18d; }
.section.pine .section-title em { color: #efb18d; }

.category-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.category-tile {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border-radius: 2px;
  background: var(--pine);
  color: var(--white);
  text-decoration: none;
}
.category-tile:nth-child(1), .category-tile:nth-child(4) { grid-column: span 5; }
.category-tile:nth-child(2), .category-tile:nth-child(3) { grid-column: span 3.5; }
.category-tile:nth-child(2), .category-tile:nth-child(5) { grid-column: span 4; }
.category-tile:nth-child(3), .category-tile:nth-child(6) { grid-column: span 3; }
.category-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.category-tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(10, 30, 25, .82), transparent 65%); }
.category-tile:hover img { transform: scale(1.04); }
.category-caption { position: absolute; z-index: 2; left: 24px; right: 24px; bottom: 22px; }
.category-caption small { display: block; margin-bottom: 4px; color: rgba(255,255,255,.72); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; }
.category-caption strong { font-family: var(--serif); font-size: 31px; font-weight: 500; line-height: 1; }

.story-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: center; }
.story-art { position: relative; min-height: 590px; }
.story-art .large { position: absolute; inset: 0 14% 10% 0; width: 86%; height: 90%; object-fit: cover; }
.story-art .small { position: absolute; right: 0; bottom: 0; width: 46%; height: 48%; object-fit: cover; border: 10px solid var(--cream); }
.story-copy p { color: var(--muted); font-size: 16px; }
.story-copy .section-title { margin: 15px 0 24px; }
.story-list { display: grid; gap: 16px; margin: 30px 0 34px; padding: 0; list-style: none; }
.story-list li { display: flex; gap: 14px; align-items: flex-start; }
.story-list b { display: grid; width: 26px; height: 26px; flex: 0 0 26px; place-items: center; border: 1px solid var(--clay); border-radius: 50%; color: var(--clay); font-family: var(--serif); }

.vendor-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px 18px; }
.vendor-card { position: relative; display: flex; min-width: 0; flex-direction: column; text-decoration: none; }
.vendor-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--paper-deep); }
.vendor-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.vendor-card:hover .vendor-media img { transform: scale(1.035); }
.vendor-placeholder { display: grid; width: 100%; height: 100%; place-items: center; background: linear-gradient(135deg, var(--paper-deep), #d2c5b1); color: var(--heather); font-family: var(--serif); font-size: 54px; }
.card-save {
  position: absolute;
  z-index: 3;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,253,248,.92);
  color: var(--pine);
  cursor: pointer;
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1;
}
.card-save.saved { background: var(--heather); color: var(--white); }
.card-badge {
  position: absolute;
  z-index: 2;
  top: 12px;
  left: 12px;
  padding: 6px 10px;
  background: var(--pine);
  color: var(--white);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.vendor-body { padding: 15px 2px 0; }
.vendor-kicker { color: var(--clay); font-size: 9px; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; }
.vendor-name { margin: 5px 0 0; color: var(--pine); font-family: var(--serif); font-size: 28px; font-weight: 600; line-height: 1.02; }
.vendor-card:hover .vendor-name { color: var(--clay); }
.vendor-tagline { min-height: 42px; margin: 8px 0 0; color: var(--muted); font-size: 13px; line-height: 1.55; }
.vendor-rating { margin-top: 10px; color: var(--muted); font-size: 12px; }
.vendor-rating .star { color: var(--brass); }
.vendor-tier-spotlight, .vendor-tier-signature { padding: 10px; border: 1px solid rgba(189,146,89,.5); background: rgba(251,248,241,.7); }

.region-list { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid rgba(255,255,255,.18); }
.region-link {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 4px;
  border-bottom: 1px solid rgba(255,255,255,.18);
  color: var(--white);
  text-decoration: none;
}
.region-link:nth-child(odd) { padding-right: 34px; border-right: 1px solid rgba(255,255,255,.18); }
.region-link:nth-child(even) { padding-left: 34px; }
.region-link strong { font-family: var(--serif); font-size: 24px; font-weight: 500; }
.region-link span { color: rgba(255,255,255,.55); font-size: 11px; }
.region-link:hover strong { color: #efb18d; }

.planning-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 470px;
  background: var(--heather);
  color: var(--white);
}
.planning-banner img { width: 100%; height: 100%; object-fit: cover; }
.planning-copy { display: flex; flex-direction: column; justify-content: center; padding: 70px; }
.planning-copy .eyebrow { color: #f4c6a8; }
.planning-copy h2 { margin: 18px 0; font-family: var(--serif); font-size: clamp(42px, 5vw, 66px); font-weight: 500; line-height: .95; }
.planning-copy p { max-width: 500px; color: rgba(255,255,255,.76); }
.planning-copy .button { align-self: flex-start; margin-top: 18px; }

.site-footer { background: #102722; color: rgba(255,253,248,.74); }
.footer-grid { display: grid; grid-template-columns: 1.5fr .7fr .7fr 1fr; gap: 50px; padding: 72px 0 56px; }
.footer-brand strong { color: var(--white); font-family: var(--serif); font-size: 36px; font-weight: 600; }
.footer-brand p { max-width: 330px; margin-top: 14px; color: rgba(255,255,255,.6); }
.footer-col h3 { margin: 0 0 16px; color: #efb18d; font-size: 10px; letter-spacing: .16em; text-transform: uppercase; }
.footer-col a { display: block; margin: 10px 0; text-decoration: none; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding: 20px 0 28px; border-top: 1px solid rgba(255,255,255,.13); font-size: 11px; }

.page-hero { padding: 80px 0 70px; background: var(--cream); }
.page-hero .display { max-width: 900px; color: var(--pine); }
.page-hero .page-lede { max-width: 650px; margin: 25px 0 0; color: var(--muted); font-size: 17px; }
.directory-toolbar {
  position: sticky;
  z-index: 20;
  top: 0;
  border-block: 1px solid var(--line);
  background: rgba(245,241,232,.96);
  backdrop-filter: blur(12px);
}
.filter-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr auto;
  gap: 12px;
  padding: 18px 0;
}
.field {
  display: flex;
  min-height: 48px;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  background: var(--cream);
  padding: 0 15px;
}
.field input, .field select {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  appearance: none;
  background: transparent;
  color: var(--ink);
}
.field-icon { color: var(--clay); }
.results-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 42px 0 24px; }
.results-head h1, .results-head h2 { margin: 0; color: var(--pine); font-family: var(--serif); font-size: 42px; font-weight: 600; }
.results-count { color: var(--muted); font-size: 12px; }
.sort-select { border: 0; background: transparent; color: var(--pine); font-size: 12px; font-weight: 600; }
.load-more { display: flex; justify-content: center; padding: 40px 0 80px; }
.empty-state { grid-column: 1 / -1; padding: 70px 20px; border: 1px solid var(--line); background: var(--cream); text-align: center; }
.empty-state h3 { margin: 0; font-family: var(--serif); font-size: 34px; }
.empty-state p { color: var(--muted); }

.vendor-hero { position: relative; min-height: 640px; overflow: hidden; background: var(--pine); color: var(--white); }
.vendor-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.vendor-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(7,27,22,.94), rgba(7,27,22,.04) 72%); }
.vendor-hero-content { position: absolute; z-index: 2; right: 0; bottom: 0; left: 0; padding: 50px 0; }
.vendor-hero h1 { max-width: 800px; margin: 12px 0 0; font-family: var(--serif); font-size: clamp(48px, 7vw, 80px); font-weight: 500; letter-spacing: -.04em; line-height: .9; }
.vendor-hero p { max-width: 680px; margin: 14px 0 0; color: rgba(255,255,255,.75); font-size: 17px; }
.vendor-page-grid { display: grid; grid-template-columns: minmax(0, 1fr) 350px; gap: 70px; padding: 70px 0 100px; }
.vendor-article .standfirst { color: var(--pine); font-family: var(--serif); font-size: 30px; font-weight: 500; line-height: 1.2; }
.vendor-article p { font-size: 16px; line-height: 1.8; }
.content-section { margin-top: 48px; }
.content-section h2 { margin: 0 0 20px; padding-bottom: 12px; border-bottom: 1px solid var(--line); color: var(--clay); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; }
.gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.gallery img { width: 100%; height: 220px; object-fit: cover; }
.award-list { display: flex; flex-wrap: wrap; gap: 8px; }
.award-pill { border: 1px solid var(--brass); padding: 8px 11px; color: var(--pine); font-size: 11px; }
.vendor-side { position: relative; }
.side-card { position: sticky; top: 24px; border: 1px solid var(--line); background: var(--cream); padding: 26px; box-shadow: 8px 8px 0 var(--paper-deep); }
.side-rating { color: var(--pine); font-family: var(--serif); font-size: 24px; }
.side-rating .star { color: var(--brass); }
.side-meta { margin: 6px 0 18px; color: var(--muted); font-size: 13px; }
.side-links { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 22px; }
.side-links a { border-bottom: 1px solid currentColor; color: var(--pine); font-size: 10px; font-weight: 600; letter-spacing: .1em; text-decoration: none; text-transform: uppercase; }
.enquiry-box { padding-top: 22px; border-top: 1px solid var(--line); }
.enquiry-box h2 { margin: 0; color: var(--pine); font-family: var(--serif); font-size: 28px; font-weight: 600; line-height: 1; }
.enquiry-box > p { margin: 8px 0 16px; color: var(--muted); font-size: 12px; }
.form-stack { display: grid; gap: 10px; }
.form-stack input, .form-stack select, .form-stack textarea, .business-form input, .business-form select, .business-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--white);
  padding: 12px 13px;
}
.form-stack textarea, .business-form textarea { min-height: 90px; resize: vertical; }
.form-note { color: var(--muted); font-size: 10px; }
.success-message { padding: 16px; border: 1px solid #83a499; background: #edf4ef; color: var(--pine); }
.claim-link { display: block; margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line); color: var(--muted); font-size: 11px; text-align: center; }

.commercial-hero { padding: 90px 0; background: var(--pine); color: var(--white); }
.commercial-hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 70px; align-items: center; }
.commercial-hero .display em { color: #efb18d; }
.commercial-hero p { max-width: 590px; color: rgba(255,255,255,.72); font-size: 17px; }
.commercial-art { position: relative; min-height: 520px; }
.commercial-art img { position: absolute; width: 78%; height: 84%; object-fit: cover; right: 0; top: 0; }
.commercial-art-card { position: absolute; left: 0; bottom: 0; width: 58%; padding: 26px; background: var(--cream); color: var(--pine); box-shadow: var(--shadow); }
.commercial-art-card small { color: var(--clay); font-size: 9px; letter-spacing: .14em; text-transform: uppercase; }
.commercial-art-card strong { display: block; margin-top: 6px; font-family: var(--serif); font-size: 28px; line-height: 1; }
.offer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.offer-card { display: flex; min-height: 330px; flex-direction: column; border: 1px solid var(--line); background: var(--cream); padding: 28px; }
.offer-card.featured { background: var(--heather); color: var(--white); transform: translateY(-14px); }
.offer-label { color: var(--clay); font-size: 9px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.offer-card.featured .offer-label { color: #f4c6a8; }
.offer-card h3 { margin: 10px 0; font-family: var(--serif); font-size: 34px; font-weight: 600; line-height: 1; }
.offer-price { color: var(--pine); font-family: var(--serif); font-size: 26px; }
.offer-card.featured .offer-price { color: var(--white); }
.offer-card p, .offer-card li { color: var(--muted); font-size: 13px; }
.offer-card.featured p, .offer-card.featured li { color: rgba(255,255,255,.72); }
.offer-card ul { margin: 14px 0 25px; padding-left: 18px; }
.offer-card .button { margin-top: auto; }
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.service-card { position: relative; min-height: 300px; overflow: hidden; padding: 34px; background: var(--paper-deep); }
.service-card .number { color: var(--clay); font-family: var(--serif); font-style: italic; font-size: 20px; }
.service-card h3 { max-width: 360px; margin: 26px 0 12px; color: var(--pine); font-family: var(--serif); font-size: 38px; font-weight: 600; line-height: .95; }
.service-card p { max-width: 480px; color: var(--muted); }
.business-form-wrap { display: grid; grid-template-columns: .75fr 1.25fr; gap: 70px; align-items: start; }
.business-form { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.business-form .full { grid-column: 1 / -1; }
.business-form label { display: block; margin-bottom: 5px; color: var(--muted); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }

.budget-grid { display: grid; grid-template-columns: 340px 1fr; gap: 45px; padding: 70px 0 100px; }
.budget-controls { align-self: start; border: 1px solid var(--line); background: var(--cream); padding: 26px; }
.budget-controls h2 { margin: 0 0 18px; color: var(--pine); font-family: var(--serif); font-size: 30px; line-height: 1; }
.budget-summary { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 25px; }
.budget-total { color: var(--pine); font-family: var(--serif); font-size: 54px; line-height: .9; }
.budget-per-head { color: var(--muted); }
.budget-list { border-top: 1px solid var(--line); }
.budget-line { display: grid; grid-template-columns: 1.1fr .55fr 1.5fr; gap: 18px; align-items: center; padding: 20px 0; border-bottom: 1px solid var(--line); }
.budget-line h3 { margin: 0; font-family: var(--serif); font-size: 23px; font-weight: 600; }
.budget-amount { color: var(--pine); font-family: var(--serif); font-size: 22px; }
.budget-amount small { display: block; color: var(--muted); font-family: var(--sans); font-size: 10px; }
.budget-suppliers { display: flex; flex-wrap: wrap; gap: 6px; }
.budget-supplier { padding: 6px 9px; border: 1px solid var(--line); background: var(--cream); color: var(--pine); font-size: 10px; text-decoration: none; }

.modal { width: min(520px, calc(100% - 30px)); border: 0; padding: 0; background: var(--cream); color: var(--ink); box-shadow: var(--shadow); }
.modal::backdrop { background: rgba(10,29,24,.76); backdrop-filter: blur(3px); }
.modal-inner { padding: 30px; }
.modal-close { float: right; border: 0; background: none; cursor: pointer; font-size: 24px; }
.modal h2 { margin: 14px 0 8px; color: var(--pine); font-family: var(--serif); font-size: 38px; line-height: 1; }
.modal p { color: var(--muted); }

@media (max-width: 980px) {
  .nav { grid-template-columns: 1fr auto; }
  .nav > .brand { justify-self: start; text-align: left; }
  .nav-group { display: none; }
  .menu-button { display: block; }
  .nav-group.mobile-open { position: fixed; inset: 113px 0 0; display: flex; flex-direction: column; align-items: flex-start; padding: 35px 24px; background: var(--paper); }
  .nav-group.mobile-open .nav-link { display: block; font-family: var(--serif); font-size: 32px; letter-spacing: -.02em; text-transform: none; }
  .nav-group.right { display: none; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(3) { border-left: 1px solid var(--line); border-top: 1px solid var(--line); }
  .trust-item:nth-child(4) { border-top: 1px solid var(--line); }
  .category-tile { grid-column: span 6 !important; }
  .story-grid { grid-template-columns: 1fr 1fr; gap: 35px; }
  .planning-copy { padding: 45px; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-grid .footer-col:last-child { grid-column: 1 / -1; }
  .filter-row { grid-template-columns: 1fr 1fr; }
  .vendor-page-grid { grid-template-columns: minmax(0,1fr) 310px; gap: 35px; }
  .commercial-hero-grid { gap: 35px; }
  .business-form-wrap { gap: 35px; }
}

@media (max-width: 760px) {
  .shell, .shell.narrow { width: min(100% - 28px, 1180px); }
  .announcement { font-size: 8px; }
  .nav { width: calc(100% - 28px); min-height: 70px; }
  .nav-group.mobile-open { top: 101px; }
  .brand strong { font-size: 24px; }
  .home-hero { min-height: 660px; }
  .home-hero::after { background: linear-gradient(to top, rgba(8,28,23,.95), rgba(8,28,23,.35)); }
  .hero-content { padding: 96px 0 52px; }
  .display { font-size: clamp(46px, 16vw, 68px); }
  .search-panel { grid-template-columns: 1fr; border-radius: 4px; }
  .search-field + .search-field { border-top: 1px solid var(--line); border-left: 0; }
  .search-panel .button { width: 100%; border-radius: 2px; }
  .trust-item { padding: 22px 16px; }
  .trust-item strong { font-size: 24px; }
  .section { padding: 70px 0; }
  .section-head { display: block; }
  .section-head .text-link { margin-top: 20px; }
  .category-grid { gap: 10px; }
  .category-tile { min-height: 300px; grid-column: span 12 !important; }
  .story-grid { grid-template-columns: 1fr; }
  .story-art { min-height: 470px; }
  .vendor-grid { grid-template-columns: 1fr; gap: 34px; }
  .region-list { grid-template-columns: 1fr; }
  .region-link, .region-link:nth-child(odd), .region-link:nth-child(even) { padding: 17px 0; border-right: 0; }
  .planning-banner { grid-template-columns: 1fr; }
  .planning-banner img { height: 330px; }
  .planning-copy { padding: 45px 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 35px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-grid .footer-col:last-child { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
  .page-hero { padding: 60px 0 48px; }
  .directory-toolbar { position: static; }
  .filter-row { grid-template-columns: 1fr; }
  .results-head { align-items: flex-start; flex-direction: column; }
  .vendor-hero { min-height: 540px; }
  .vendor-page-grid { grid-template-columns: 1fr; }
  .side-card { position: static; }
  .gallery { grid-template-columns: 1fr; }
  .commercial-hero-grid { grid-template-columns: 1fr; }
  .commercial-art { min-height: 440px; }
  .offer-grid { grid-template-columns: 1fr; }
  .offer-card.featured { transform: none; }
  .service-grid { grid-template-columns: 1fr; }
  .business-form-wrap { grid-template-columns: 1fr; }
  .business-form { grid-template-columns: 1fr; }
  .business-form .full { grid-column: auto; }
  .budget-grid { grid-template-columns: 1fr; }
  .budget-line { grid-template-columns: 1fr .7fr; }
  .budget-suppliers { grid-column: 1 / -1; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}
