/* Nexus Interior Studio — single stylesheet.
   Dark olive ink (#1c211a) on warm off-white (#f7f5f0), terracotta accent.
   Marcellus for display, Karla for text, JetBrains Mono for small labels. */

:root {
  --ink: #1c211a;
  --paper: #f7f5f0;
  --paper-2: #ece8dd;
  --white: #fff;
  --line: #e3dfd4;
  --line-2: #ddd8cb;
  --muted: #6f7163;
  --muted-2: #7d7f70;
  --body: #3f4237;
  --accent: #a5613a;
  --accent-dark: #8d5030;
  --gold: #e0a86a;
  --on-dark: #d7d3c6;
  --on-dark-2: #a8a99a;
  --radius: 14px;
  --wrap: 1240px;
  --serif: Marcellus, Georgia, serif;
  --sans: Karla, system-ui, -apple-system, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: var(--ink); text-decoration: none; }
a:hover { color: var(--accent); }
img { max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; line-height: 1.12; margin: 0; text-wrap: pretty; }
p { margin: 0; text-wrap: pretty; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.wrap--narrow { max-width: 940px; }
.section { padding: 80px 0; }
.section--tight { padding: 56px 0; }

.eyebrow {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.eyebrow--gold { color: var(--gold); }

.h1 { font-size: clamp(34px, 5vw, 62px); }
.h2 { font-size: clamp(28px, 3.4vw, 42px); }
.h3 { font-size: clamp(22px, 2.6vw, 30px); }
.lede { font-size: 17px; line-height: 1.65; color: var(--muted); max-width: 46em; }

/* ------------------------------------------------------------------ buttons */
.btn {
  display: inline-block;
  padding: 15px 28px;
  border: 0;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  transition: background-color 0.15s, color 0.15s, border-color 0.15s;
}
.btn--primary { background: var(--accent); color: #fff; }
.btn--primary:hover { background: var(--accent-dark); color: #fff; }
.btn--ink { background: var(--ink); color: var(--paper); }
.btn--ink:hover { background: var(--accent); color: #fff; }
.btn--ghost { border: 1px solid var(--line-2); color: var(--ink); background: transparent; }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn--on-dark { border: 1px solid rgba(255,255,255,0.35); color: var(--paper); background: transparent; }
.btn--on-dark:hover { background: #fff; color: var(--ink); }
.btn--block { display: block; width: 100%; }
.btn--sm { padding: 12px 20px; font-size: 14px; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }
.btn-row--center { justify-content: center; }

/* ------------------------------------------------------------- utility bar */
.utility { background: var(--ink); color: var(--on-dark); font-size: 12.5px; }
.utility .wrap {
  display: flex; flex-wrap: wrap; gap: 8px 26px;
  align-items: center; justify-content: space-between; padding: 8px 24px;
}
.utility a { color: var(--on-dark); }
.utility a:hover { color: var(--gold); }
.utility__group { display: flex; flex-wrap: wrap; gap: 22px; align-items: center; }
.utility__phone { color: var(--gold); font-weight: 600; }

/* ---------------------------------------------------------------- header */
.header {
  position: sticky; top: 0; z-index: 60;
  background: var(--paper); border-bottom: 1px solid var(--line);
}
.header__inner {
  display: flex; align-items: center; gap: 28px;
  padding: 14px 24px; max-width: var(--wrap); margin: 0 auto;
}
.logo { display: flex; align-items: center; gap: 11px; flex-shrink: 0; }
.logo img { width: 42px; height: 42px; border-radius: 50%; display: block; }
.logo__name { font-family: var(--serif); font-size: 20px; line-height: 1.1; }
.logo__sub {
  display: block; font-family: var(--sans); font-size: 10px;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted-2);
}

.nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav__item { position: relative; }
.nav__link, .nav__btn {
  display: flex; align-items: center; gap: 6px;
  background: none; border: 0; padding: 10px 13px;
  font-size: 14.5px; font-weight: 500; border-radius: 6px; cursor: pointer;
}
.nav__link:hover, .nav__btn:hover { background: var(--paper-2); }
.nav__btn[aria-expanded="true"] { background: var(--paper-2); }
.nav__caret { font-size: 9px; color: var(--muted-2); }
.nav__cta { margin-left: 10px; white-space: nowrap; }

.dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  min-width: 250px; background: var(--white);
  border: 1px solid var(--line); border-radius: 12px;
  box-shadow: 0 24px 60px rgba(28,33,26,0.14);
  padding: 10px; display: none; gap: 2px; z-index: 70;
  animation: nxMenuIn 0.16s ease-out;
}
.dropdown[data-open="true"] { display: grid; }
.dropdown--wide { min-width: 620px; grid-template-columns: 1fr 1fr; right: 0; left: auto; }
.dropdown a { display: block; padding: 10px 12px; border-radius: 8px; font-size: 14.5px; }
.dropdown a:hover { background: var(--paper); }
.dropdown__title { font-size: 14.5px; font-weight: 600; }
.dropdown__blurb { font-size: 12.5px; color: var(--muted-2); margin-top: 2px; }

.hamburger {
  display: none; margin-left: auto; flex-direction: column; gap: 5px;
  background: none; border: 0; padding: 12px; cursor: pointer;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--ink); }

/* drawer */
/* [hidden] must win over the display declarations below, or the drawer paints
   open on first render before any JS has executed. */
.drawer[hidden], .drawer-backdrop[hidden] { display: none !important; }

.drawer-backdrop {
  position: fixed; inset: 0; z-index: 89;
  background: rgba(28,33,26,0.55); animation: nxFadeIn 0.2s ease-out;
}
.drawer {
  position: fixed; top: 0; left: 0; bottom: 0; z-index: 90;
  width: min(86vw, 380px); background: var(--paper);
  display: flex; flex-direction: column; overflow-y: auto;
  box-shadow: 18px 0 60px rgba(0,0,0,0.3);
  animation: nxSlideInLeft 0.26s cubic-bezier(0.22, 1, 0.36, 1);
}
.drawer__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; border-bottom: 1px solid var(--line);
  position: sticky; top: 0; background: var(--paper); z-index: 1;
}
.drawer__head img { width: 38px; height: 38px; border-radius: 50%; }
.drawer__close {
  background: none; border: 0; font-size: 26px; line-height: 1;
  padding: 8px 12px; cursor: pointer; color: var(--ink);
}
.drawer__body { padding: 12px 20px 32px; display: grid; gap: 2px; }
.drawer__link {
  padding: 15px 4px; font-size: 17px; font-weight: 600;
  border-bottom: 1px solid var(--line);
}
.drawer__section { border-bottom: 1px solid var(--line); }
.drawer__toggle {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; text-align: left; background: none; border: 0;
  padding: 15px 4px; font-size: 17px; font-weight: 600; cursor: pointer;
}
.drawer__sign { font-size: 22px; color: var(--accent); }
.drawer__sub { display: none; gap: 2px; padding: 0 4px 14px; }
.drawer__sub[data-open="true"] { display: grid; }
.drawer__sub a {
  padding: 12px 14px; font-size: 15px; color: var(--muted);
  background: var(--paper-2); border-radius: 8px;
}

@media (max-width: 1080px) {
  .nav { display: none; }
  .hamburger { display: flex; }
}

/* ------------------------------------------------------------------- hero */
.hero { position: relative; background: var(--ink); color: var(--paper); overflow: hidden; }
.hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.32; }
.hero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(28,33,26,0.95) 0%, rgba(28,33,26,0.72) 55%, rgba(28,33,26,0.5) 100%);
}
.hero__inner {
  position: relative; max-width: var(--wrap); margin: 0 auto;
  padding: 78px 24px 86px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 52px; align-items: start;
}
.hero p { color: #cfcbbe; }
.chips { display: flex; flex-wrap: wrap; gap: 12px; }
.chip {
  border: 1px solid rgba(224,168,106,0.4); border-radius: 999px;
  padding: 9px 18px; font-size: 13.5px; color: #e6e2d5;
  background: rgba(255,255,255,0.05);
}

/* ------------------------------------------------------------------- forms */
.card {
  background: var(--paper); color: var(--ink);
  border-radius: 16px; padding: 28px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.34);
}
.card--plain { background: var(--white); border: 1px solid var(--line-2); box-shadow: none; }
.form { display: grid; gap: 12px; }
.field, .form select, .form input {
  width: 100%; height: 50px; padding: 0 15px;
  border: 1px solid var(--line-2); border-radius: 9px;
  background: var(--white); font-size: 14.5px;
}
.form select {
  padding-right: 40px; appearance: none; -webkit-appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' fill='none' stroke='%236f7163' stroke-width='1.6'/></svg>");
  background-repeat: no-repeat; background-position: right 15px center; background-size: 12px 8px;
}
.form textarea {
  width: 100%; min-height: 110px; padding: 13px 15px;
  border: 1px solid var(--line-2); border-radius: 9px;
  background: var(--white); font-size: 14.5px; resize: vertical;
}
.form input:focus, .form select:focus, .form textarea:focus {
  outline: 2px solid var(--accent); outline-offset: -1px;
}
.phone-row { display: flex; gap: 9px; }
.phone-prefix {
  display: flex; align-items: center; height: 50px; padding: 0 13px;
  border: 1px solid var(--line-2); border-radius: 9px;
  background: #efece2; font-size: 14px; white-space: nowrap;
}
.phone-row input { flex: 1; min-width: 0; }
.form__note { font-size: 12px; color: #8b8d7d; text-align: center; }
.form__check { display: flex; gap: 9px; align-items: center; font-size: 13px; color: var(--muted); }
.form__check input { width: 15px; height: 15px; height: auto; accent-color: var(--accent); }

/* -------------------------------------------------------------------- stats */
.stats { background: var(--ink); border-top: 1px solid rgba(255,255,255,0.09); }
.stats .wrap {
  padding: 32px 24px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 26px;
}
.stat { text-align: center; }
.stat__n { font-family: var(--serif); font-size: 36px; color: var(--gold); line-height: 1; }
.stat__label { font-size: 12.5px; color: var(--on-dark-2); margin-top: 8px; }

/* -------------------------------------------------------------------- grids */
.grid { display: grid; gap: 20px; }
.grid--cards { grid-template-columns: repeat(auto-fill, minmax(272px, 1fr)); }
.grid--wide { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
.grid--split { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 52px; align-items: start; }
.grid--steps { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 26px; }

.tile {
  display: block; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
}
.tile:hover { border-color: var(--accent); }
.tile img { width: 100%; height: 168px; object-fit: cover; display: block; }
.tile__body { padding: 20px; }
.tile__title { font-family: var(--serif); font-size: 18.5px; margin-bottom: 7px; }
.tile__blurb { font-size: 13.5px; line-height: 1.55; color: var(--muted); }
.tile__meta {
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px; margin-top: 15px; font-size: 13px; font-weight: 600;
}
.tile__more { color: var(--accent); font-size: 12.5px; }

.shot { position: relative; border-radius: var(--radius); overflow: hidden; background: var(--ink); display: block; }
.shot img { width: 100%; height: 260px; object-fit: cover; display: block; }
.shot__cap {
  position: absolute; inset: auto 0 0 0; padding: 40px 22px 20px;
  background: linear-gradient(transparent, rgba(28,33,26,0.9)); color: var(--paper);
}
.shot__title { font-family: var(--serif); font-size: 19px; }
.shot__sub { font-size: 12.5px; color: #cfcbbe; margin-top: 3px; }

.step { border-top: 2px solid var(--accent); padding-top: 20px; }
.step__n { font-family: var(--mono); font-size: 12px; color: var(--accent); letter-spacing: 0.14em; margin-bottom: 12px; }
.step__title { font-family: var(--serif); font-size: 20px; margin-bottom: 9px; }
.step__body { font-size: 14px; line-height: 1.6; color: var(--muted); }

.ticks { display: grid; gap: 14px; }
.tick { display: flex; gap: 13px; align-items: start; }
.tick__mark { color: var(--accent); flex-shrink: 0; }
.tick__title { font-weight: 700; font-size: 15px; margin-bottom: 3px; }
.tick__body { font-size: 14.5px; line-height: 1.6; color: var(--muted); }

/* ------------------------------------------------------------------ pricing */
.pricelist { display: grid; gap: 1px; background: var(--line); }
.pricelist__row {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 16px; background: var(--white); padding: 14px 4px;
}
.pricelist__row span:first-child { font-size: 14.5px; color: var(--body); }
.pricelist__amt { font-family: var(--serif); font-size: 18px; color: var(--accent); white-space: nowrap; }

.pkg {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.14);
  border-radius: 15px; padding: 30px;
}
.pkg--featured { border-color: var(--gold); }
.pkg__head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 20px; }
.pkg__name { font-family: var(--serif); font-size: 25px; }
.pkg__tag { font-size: 12px; color: var(--gold); font-family: var(--mono); }
.pkg__from { font-size: 13px; color: var(--on-dark-2); }
.pkg__price { font-family: var(--serif); font-size: 34px; color: var(--gold); margin: 2px 0 24px; }
.pkg__items { display: grid; gap: 11px; margin-bottom: 28px; }
.pkg__item { display: flex; gap: 10px; font-size: 14px; line-height: 1.5; color: var(--on-dark); }
.pkg__item span { color: var(--gold); }

/* --------------------------------------------------------------- calculator */
.calc__label {
  font-size: 11.5px; font-family: var(--mono); letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--muted-2); margin-bottom: 10px;
}
.calc__opts { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.calc__opt {
  border: 1px solid var(--line-2); background: var(--white); color: var(--muted);
  padding: 9px 15px; border-radius: 999px; font-size: 13.5px; font-weight: 500; cursor: pointer;
}
.calc__opt:hover { border-color: var(--accent); color: var(--accent); }
.calc__opt[aria-pressed="true"] { background: var(--ink); border-color: var(--ink); color: var(--paper); font-weight: 600; }
.calc__out { border-top: 1px solid var(--line); padding-top: 22px; }
.calc__amt { font-family: var(--serif); font-size: 40px; margin: 6px 0 4px; line-height: 1.1; }
.calc__fine { font-size: 12px; color: #8b8d7d; font-style: italic; }

/* ---------------------------------------------------------------- sections */
.band-dark { background: var(--ink); color: var(--paper); }
.band-dark p { color: var(--on-dark-2); }
.band-mid { background: var(--paper-2); }
.band-white { background: var(--white); border-top: 1px solid var(--line); }
.band-accent { background: var(--accent); color: #fff; }
.band-accent p { color: #f4e3d7; }

/* ------------------------------------------------------------------- FAQ */
.faq { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%; display: flex; gap: 20px; align-items: center; justify-content: space-between;
  text-align: left; background: none; border: 0; padding: 21px 0;
  font-size: 16.5px; font-weight: 600; cursor: pointer; line-height: 1.4;
}
.faq__sign { font-size: 21px; color: var(--accent); flex-shrink: 0; }
.faq__a { padding: 0 0 24px; font-size: 15px; line-height: 1.7; color: var(--muted); max-width: 62em; display: none; }
.faq[data-open="true"] .faq__a { display: block; }

/* ------------------------------------------------------------ testimonials */
.marquee { overflow: hidden; }
.marquee__track { display: flex; width: max-content; gap: 20px; animation: nxMarquee 78s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.quote {
  flex: 0 0 348px; background: var(--paper); border: 1px solid var(--line-2);
  border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column;
}
.quote__head { display: flex; gap: 12px; align-items: center; padding: 16px; border-bottom: 1px solid var(--line); }
.quote__head img { width: 52px; height: 52px; border-radius: 9px; object-fit: cover; }
.quote__cat { font-family: var(--serif); font-size: 16px; }
.quote__stars { font-size: 12px; color: var(--accent); letter-spacing: 0.1em; }
.quote__text { padding: 18px 16px; font-size: 14.5px; line-height: 1.65; color: var(--body); flex: 1; }
.quote__by { padding: 0 16px 18px; font-size: 13px; }
.quote__name { font-weight: 700; }
.quote__where { color: var(--muted-2); margin-top: 2px; }

/* ------------------------------------------------------- process steps */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 22px; }
.stepcard { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.stepcard__media { position: relative; }
.stepcard__media img { width: 100%; height: 190px; object-fit: cover; display: block; }
.stepcard__n {
  position: absolute; top: 12px; left: 12px;
  background: var(--ink); color: var(--gold);
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.12em;
  padding: 6px 11px; border-radius: 999px;
}
.stepcard__body { padding: 20px; }
.stepcard__title { font-family: var(--serif); font-size: 20px; margin-bottom: 8px; }
.stepcard__text { font-size: 14px; line-height: 1.6; color: var(--muted); }

/* ------------------------------------------------------------- packages */
.pkg--media { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.pkg--media img { width: 100%; height: 190px; object-fit: cover; display: block; }
.pkg__inner { padding: 26px 30px 30px; display: flex; flex-direction: column; flex: 1; }

/* ------------------------------------------------- image-backed sections */
.band-art { position: relative; overflow: hidden; }
.band-art__bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0.12; z-index: 0;
}
.band-art__bg--dark { opacity: 0.18; }
.band-art > .wrap { position: relative; z-index: 1; }

/* ------------------------------------------------------------- galleries */
.filters { display: flex; flex-wrap: wrap; gap: 8px; }
.filter {
  border: 1px solid var(--line-2); background: var(--white); color: var(--muted);
  padding: 9px 17px; border-radius: 999px; font-size: 13.5px; font-weight: 500; cursor: pointer;
}
.filter:hover { border-color: var(--accent); color: var(--accent); }
.filter.is-active { background: var(--ink); border-color: var(--ink); color: var(--paper); font-weight: 600; }
.gallery__item[hidden] { display: none; }
.gallery__item { margin: 0; }
.gallery__cap {
  position: absolute; inset: auto 0 0 0; padding: 34px 16px 14px;
  background: linear-gradient(transparent, rgba(28,33,26,0.88));
  color: var(--paper); font-size: 13px; line-height: 1.45;
  display: grid; gap: 3px;
}
.gallery__cat {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gold);
}
.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 14px; }
.gallery__item { position: relative; border-radius: 12px; overflow: hidden; background: var(--paper-2); }
.gallery__item img { width: 100%; height: 230px; object-fit: cover; display: block; transition: transform 0.4s ease; }
.gallery__item:hover img { transform: scale(1.04); }
.gallery__item--tall img { height: 300px; }

/* --------------------------------------------------------------- locality */
.pills { display: flex; flex-wrap: wrap; gap: 8px; }
.pill {
  background: var(--white); border: 1px solid var(--line);
  border-radius: 999px; padding: 8px 15px; font-size: 13.5px;
}
.pill:hover { border-color: var(--accent); color: var(--accent); }
.pill--dark { background: transparent; border-color: rgba(255,255,255,0.16); color: var(--on-dark); }
.pill--dark:hover { border-color: var(--gold); color: var(--gold); }
.region-label {
  font-size: 13px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--muted-2); margin-bottom: 14px;
}

/* -------------------------------------------------------------- breadcrumb */
.crumbs { background: var(--paper-2); border-bottom: 1px solid var(--line-2); }
.crumbs .wrap {
  padding: 12px 24px; font-size: 12.5px; color: var(--muted);
  display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
}
.crumbs a { color: var(--muted); }
.crumbs__here { color: var(--accent); font-weight: 600; }

/* ------------------------------------------------------------------ prose */
.prose { max-width: 46em; }
.prose h2 { font-size: clamp(24px, 2.8vw, 32px); margin: 44px 0 16px; }
.prose h3 { font-size: clamp(19px, 2.2vw, 23px); margin: 32px 0 12px; }
.prose p { font-size: 16.5px; line-height: 1.75; color: var(--body); margin-bottom: 18px; }
.prose ul, .prose ol { font-size: 16.5px; line-height: 1.75; color: var(--body); padding-left: 22px; margin-bottom: 18px; }
.prose li { margin-bottom: 9px; }
.prose strong { font-weight: 700; color: var(--ink); }
.prose a { color: var(--accent); border-bottom: 1px solid var(--line-2); }
.prose table { width: 100%; border-collapse: collapse; margin-bottom: 24px; font-size: 15px; }
.prose th, .prose td { text-align: left; padding: 11px 12px; border-bottom: 1px solid var(--line); }
.prose th { font-weight: 700; background: var(--paper-2); }
.prose blockquote {
  margin: 0 0 22px; padding: 18px 22px; background: var(--paper-2);
  border-radius: 10px; font-size: 16px; line-height: 1.7; color: var(--body);
}

/* ------------------------------------------------------------------- blog */
.post-card {
  display: flex; flex-direction: column; background: var(--white);
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
}
.post-card:hover { border-color: var(--accent); }
.post-card img { width: 100%; height: 180px; object-fit: cover; }
.post-card__body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.post-card__cat {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 10px;
}
.post-card__title { font-family: var(--serif); font-size: 20px; line-height: 1.25; margin-bottom: 10px; }
.post-card__desc { font-size: 14px; line-height: 1.6; color: var(--muted); flex: 1; }
.post-card__meta { font-size: 12.5px; color: var(--muted-2); margin-top: 16px; }

/* ----------------------------------------------------------------- footer */
.footer { background: var(--ink); color: var(--on-dark); }
.footer a { color: var(--on-dark-2); }
.footer a:hover { color: var(--gold); }
.footer__top {
  padding: 74px 24px 40px; max-width: var(--wrap); margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 44px;
}
.footer__brand { display: flex; align-items: center; gap: 11px; margin-bottom: 18px; }
.footer__brand img { width: 44px; height: 44px; border-radius: 50%; }
.footer__brand span { font-family: var(--serif); font-size: 19px; color: var(--paper); }
.footer__about { font-size: 14px; line-height: 1.65; color: var(--on-dark-2); margin-bottom: 20px; max-width: 30em; }
.footer__head {
  font-size: 13px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--paper); margin-bottom: 18px;
}
.footer__links { display: grid; gap: 10px; font-size: 14px; }
.footer__contact { display: grid; gap: 12px; font-size: 14px; }
.footer__phone { color: var(--gold); font-weight: 600; }
.footer__addr { color: var(--on-dark-2); line-height: 1.6; }
.socials { display: flex; flex-wrap: wrap; gap: 10px; }
.socials a {
  width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 12px; color: var(--on-dark);
}
.socials a:hover { border-color: var(--gold); color: var(--gold); background: rgba(224,168,106,0.08); }
.socials svg { width: 17px; height: 17px; display: block; }
.udyam { font-family: var(--mono); font-size: 11px; color: var(--muted-2); margin-top: 22px; }

.footer__seo {
  max-width: var(--wrap); margin: 0 auto; padding: 30px 24px 20px;
  border-top: 1px solid rgba(255,255,255,0.09);
}
.footer__seo-group { margin-bottom: 26px; }
.footer__seo-label { font-size: 13.5px; font-weight: 600; color: #cfcbbe; margin-bottom: 9px; }
.footer__seo .pill { font-size: 12.5px; padding: 5px 12px; }
.footer__nearby { max-width: var(--wrap); margin: 0 auto; padding: 10px 24px 34px; }
.footer__nearby-block { margin-bottom: 16px; }
.footer__nearby-head { font-size: 13px; font-weight: 600; color: #cfcbbe; margin-bottom: 6px; }
.footer__nearby-links { font-size: 12px; line-height: 1.95; color: var(--muted-2); }
.footer__nearby-links a { color: var(--muted-2); }

.footer__legal { border-top: 1px solid rgba(255,255,255,0.09); }
.footer__legal .wrap {
  padding: 22px 24px; display: flex; flex-wrap: wrap; gap: 12px 26px;
  align-items: center; justify-content: space-between; font-size: 12.5px; color: var(--muted-2);
}
.footer__credit { display: flex; flex-wrap: wrap; gap: 6px 18px; align-items: center; }
.footer__credit a { color: var(--gold); font-weight: 600; }
.footer__legal-links { display: flex; flex-wrap: wrap; gap: 20px; }

/* --------------------------------------------------------------- keyframes */
@keyframes nxMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes nxSlideInLeft { from { transform: translateX(-100%); } to { transform: translateX(0); } }
@keyframes nxFadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes nxMenuIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }

@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

@media (max-width: 700px) {
  .section { padding: 56px 0; }
  .hero__inner { padding: 56px 24px 64px; }
  .card { padding: 22px; }
  .quote { flex-basis: 292px; }
  .dropdown--wide { min-width: auto; grid-template-columns: 1fr; }
}

/* ------------------------------------------------------- page head (image) */
.pagehead {
  position: relative; background: var(--ink); color: var(--paper); overflow: hidden;
}
.pagehead__inner { position: relative; padding-top: 64px; padding-bottom: 68px; }
.pagehead .h1 { margin: 0 0 16px; max-width: 24em; }
.pagehead__lede { color: #cfcbbe; max-width: 46em; margin: 0; }

@media (max-width: 700px) {
  .pagehead__inner { padding-top: 44px; padding-bottom: 48px; }
  .pagehead .h1 { max-width: none; }
}

/* --------------------------------------------------- mobile refinements */
@media (max-width: 700px) {
  /* iOS Safari zooms the whole page when a focused field is under 16px. */
  .field, .form select, .form input, .form textarea { font-size: 16px; height: 52px; }
  .form textarea { height: auto; }

  /* Comfortable tap targets on touch screens. */
  .btn { padding: 15px 24px; min-height: 48px; }
  .btn-row { display: flex; flex-wrap: wrap; gap: 10px; }
  .btn-row .btn { flex: 1 1 auto; text-align: center; }

  /* Long single-line values (prices, phone numbers) must not force a scrollbar. */
  .pricelist__row { gap: 12px; }
  .pricelist__amt { white-space: normal; }

  /* Filter and locality chip rows scroll instead of stacking into a wall. */
  .filters { flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 4px; }
  .filters::-webkit-scrollbar { height: 0; }
  .filter { flex: 0 0 auto; }

  .crumbs .wrap { font-size: 12px; }
  .utility .wrap { gap: 6px 16px; justify-content: flex-start; }
}
