@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('/fonts/inter-latin.woff2') format('woff2-variations'),
       url('/fonts/inter-latin.woff2') format('woff2');
}

@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('/fonts/manrope-latin.woff2') format('woff2-variations'),
       url('/fonts/manrope-latin.woff2') format('woff2');
}

:root {
  /* ink */
  --ink: #151A1A;
  --ink-soft: #1B2424;          /* headings — warmer near-black */
  --slate: #3B4A4D;             /* body */
  --muted: #545E60;             /* secondary */

  /* surfaces (light → warm) */
  --paper: #FFFDF8;             /* cards */
  --cream: #F8F1E6;             /* warmest section */
  --bone:  #F2EEE6;             /* default page bg */
  --smoke: #EAE6DE;             /* cooler muted section */
  --mist:  #E8EEE9;             /* legacy retained */

  /* brand */
  --teal: #2F5050;
  --teal-dark: #203A3A;
  --teal-ink: #102222;
  --green: #5A7B62;
  --brass: #B08842;
  --brass-dark: #876632;
  --brass-soft: #D9B679;

  /* edges */
  --line: rgba(47, 80, 80, 0.16);
  --line-strong: rgba(47, 80, 80, 0.3);
  --hairline: rgba(176, 136, 66, 0.6);

  --shadow-sm: 0 1px 2px rgba(16, 34, 34, 0.04), 0 4px 12px rgba(16, 34, 34, 0.06);
  --shadow: 0 6px 16px rgba(16, 34, 34, 0.06), 0 22px 50px rgba(16, 34, 34, 0.08);
  --shadow-strong: 0 12px 24px rgba(16, 34, 34, 0.08), 0 32px 70px rgba(16, 34, 34, 0.14);

  --container: 1240px;
  --container-narrow: 880px;
  --gutter: 32px;
  --radius: 10px;
  --radius-sm: 4px;
  --radius-lg: 16px;
  --t: 220ms cubic-bezier(.2, .7, .2, 1);
}

::selection {
  background: rgba(47, 80, 80, 0.92);
  color: var(--paper);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--slate);
  font-family: 'Inter', Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: 100%;
  font-feature-settings: 'ss01', 'cv11';
  overflow-x: hidden;
  overflow-x: clip;
}

p {
  text-wrap: pretty;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  overflow-wrap: break-word;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: 0;
  background: none;
  color: inherit;
  cursor: pointer;
}

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

:focus-visible {
  outline: 3px solid rgba(176, 136, 66, 0.7);
  outline-offset: 3px;
  border-radius: 2px;
}

.cta-band :focus-visible,
.fit-block.good :focus-visible,
.contact-card :focus-visible,
.site-footer :focus-visible {
  outline-color: #E7C17C;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: -9999px;
  padding: 10px 16px;
  background: var(--teal);
  color: var(--paper);
  font-weight: 700;
  border-radius: var(--radius);
  z-index: 9999;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 253, 248, 0.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.header-row {
  min-height: 64px;
  display: flex;
  align-items: center;
  gap: 26px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-right: auto;
}

.brand img {
  width: 160px;
  height: auto;
}

.brand span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border: 1px solid rgba(176, 136, 66, 0.35);
  border-radius: 999px;
  color: var(--brass-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(176, 136, 66, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav a {
  color: var(--slate);
  font-size: 15px;
  font-weight: 600;
  padding: 8px 0;
  border-radius: 999px;
  padding: 8px 12px;
  transition: color var(--t), background var(--t);
}

.nav a:hover,
.nav a.is-active {
  color: var(--teal);
  background: rgba(47, 80, 80, 0.08);
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  font-weight: 700;
  color: var(--teal);
}

.nav .nav-cta {
  display: none;
}

.nav-mark,
.nav-mark::before,
.nav-mark::after {
  width: 18px;
  height: 2px;
  display: block;
  background: currentColor;
  border-radius: 2px;
  transition: transform var(--t), opacity var(--t);
}

.nav-mark {
  position: relative;
}

.nav-mark::before,
.nav-mark::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-mark::before {
  transform: translateY(-6px);
}

.nav-mark::after {
  transform: translateY(6px);
}

body.nav-open .nav-mark {
  background: transparent;
}

body.nav-open .nav-mark::before {
  transform: rotate(45deg);
}

body.nav-open .nav-mark::after {
  transform: rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-height: 48px;
  padding: 0 22px;
  border-radius: var(--radius-sm);
  font-family: 'Inter', Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  text-align: center;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  transition: background var(--t), color var(--t), border-color var(--t), box-shadow var(--t), transform var(--t);
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--ink-soft);
  color: var(--paper);
  border: 1px solid var(--ink-soft);
}

.btn-primary:hover {
  background: #000;
  border-color: #000;
}

.btn-secondary {
  background: transparent;
  color: var(--ink-soft);
  border: 1px solid var(--line-strong);
}

.btn-secondary:hover {
  border-color: var(--ink-soft);
  background: rgba(47, 80, 80, 0.04);
}

.btn-light {
  background: var(--paper);
  color: var(--ink-soft);
  border: 1px solid var(--paper);
}

.btn-light:hover {
  background: var(--cream);
  border-color: var(--cream);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 120px 0 110px;
  background: var(--paper);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--line);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 64px;
  align-items: stretch;
}

.hero-copy {
  padding: 8px 0 12px;
  align-self: center;
}

.hero-copy h1 {
  margin: 18px 0 0;
  max-width: 14ch;
}

.hero-copy .lede {
  max-width: 46ch;
}

.hero-photo,
.page-hero-image img {
  position: relative;
  overflow: hidden;
  background: var(--paper);
}

.hero-photo {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  min-height: 560px;
  box-shadow: var(--shadow);
  isolation: isolate;
  align-self: stretch;
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 60%, rgba(16, 34, 34, 0.18));
  z-index: 1;
}

.hero-photo img,
.page-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo img {
  min-height: 560px;
  object-position: 42% center;
  filter: saturate(0.92) contrast(1.02);
  transition: transform 1200ms cubic-bezier(.2, .7, .2, 1);
}

.hero-photo:hover img {
  transform: scale(1.025);
}

.page-hero-image img {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}


.eyebrow {
  margin: 0 0 18px;
  color: var(--brass-dark);
  font-family: 'Inter', Arial, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow .num {
  margin-right: 14px;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}

.fit-block.good .eyebrow .num,
.cta-band .eyebrow .num,
.contact-card .eyebrow .num {
  color: rgba(255, 253, 248, 0.45);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: 'Manrope', 'Inter', Arial, sans-serif;
  color: var(--teal);
  overflow-wrap: break-word;
  text-wrap: balance;
  font-feature-settings: "ss01" on, "kern" on, "liga" on;
}

h1 {
  font-size: clamp(48px, 7vw, 84px);
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: -0.035em;
}

h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.12;
  font-weight: 600;
  letter-spacing: -0.018em;
}

h3 {
  font-size: 20px;
  line-height: 1.3;
  font-weight: 600;
  letter-spacing: -0.005em;
}

.lede {
  max-width: 62ch;
  margin: 24px 0 0;
  color: var(--slate);
  font-family: 'Manrope', 'Inter', Arial, sans-serif;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.42;
  letter-spacing: -0.005em;
  text-wrap: pretty;
}

.section-lede {
  max-width: 64ch;
  margin: 0;
  color: var(--slate);
  font-size: 18px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 28px;
  margin-top: 36px;
}

.hero-text-link {
  font-size: 15px;
  font-weight: 600;
  color: var(--teal);
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 2px;
  transition: color var(--t), border-color var(--t);
}

.hero-text-link:hover {
  color: var(--brass-dark);
  border-bottom-color: var(--brass);
}

.signal-list {
  list-style: none;
  margin: 40px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.signal-list li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.signal-list li::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  background: var(--green);
  border-radius: 2px;
}

.vendor-band {
  padding: 38px 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.vendor-label {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
}

.vendor-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: center;
  gap: 32px;
}

.vendor-grid li {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
}

.vendor-grid img {
  height: 38px;
  width: auto;
  max-width: 100%;
  opacity: 0.7;
  transition: opacity var(--t);
}

.vendor-grid li:hover img {
  opacity: 1;
}


.section {
  padding: 112px 0;
}

.section-muted {
  background: var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.manifesto {
  position: relative;
  padding: 120px 0;
  background: var(--bone);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.manifesto::before {
  content: "";
  display: block;
  width: 56px;
  height: 1px;
  background: var(--hairline);
  margin: 0 auto 40px;
}

.manifesto-text {
  max-width: 920px;
  margin: 0 auto;
  font-family: 'Manrope', 'Inter', Arial, sans-serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--teal);
  padding: 0 24px;
  text-wrap: balance;
}

@media (max-width: 760px) {
  .manifesto {
    padding: 72px 0;
  }
  .manifesto::before {
    margin-bottom: 28px;
    width: 40px;
  }
}

.section-local {
  background: var(--smoke);
  border-top: 1px solid var(--line);
}

.split {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1fr);
  gap: 72px;
  align-items: start;
}

.mini-actions,
.location-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 24px;
}

.text-link,
.location-links a {
  color: var(--teal);
  font-weight: 800;
  border-bottom: 1px solid var(--line-strong);
}

.text-link:hover,
.location-links a:hover {
  color: var(--brass-dark);
  border-color: var(--brass);
}

.card-grid {
  display: grid;
  gap: 20px;
  margin-top: 56px;
}

.card-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card-grid .info-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

@media (max-width: 1120px) {
  .card-grid.four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.info-card {
  min-height: 280px;
  padding: 36px 32px 32px;
  background: var(--paper);
  position: relative;
  overflow: hidden;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}

.info-card::after,
.image-card::after,
.package-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(176, 136, 66, 0.08), transparent 60%);
  opacity: 0;
  transition: opacity var(--t);
}

.info-card:hover,
.package-panel:hover {
  box-shadow: var(--shadow);
}

.info-card:hover::after,
.image-card:hover::after,
.package-panel:hover::after {
  opacity: 1;
}

.card-num {
  position: absolute;
  top: 18px;
  right: 28px;
  display: block;
  margin: 0;
  color: rgba(176, 136, 66, 0.16);
  font-family: 'Manrope', 'Inter', Arial, sans-serif;
  font-size: 76px;
  font-weight: 700;
  line-height: 0.85;
  letter-spacing: -0.04em;
  font-variant-numeric: lining-nums tabular-nums;
  pointer-events: none;
  transition: color var(--t);
}

.info-card:hover .card-num {
  color: rgba(176, 136, 66, 0.26);
}

.info-card h3 {
  position: relative;
  z-index: 1;
  padding-top: 14px;
  max-width: 18ch;
}

.info-card p {
  position: relative;
  z-index: 1;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  max-width: 32ch;
}

.section-head {
  max-width: 760px;
  margin-bottom: 56px;
}

.section-head .lede,
.section-head .section-lede {
  margin-top: 18px;
}

.service-list {
  display: grid;
  gap: 1px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--line);
}

.service-row {
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  gap: 34px;
  padding: 30px 0;
  background: var(--mist);
  transition: background var(--t);
}

.service-row:hover {
  background: rgba(255, 253, 248, 0.8);
}

.service-row span {
  color: var(--teal);
  font-family: 'Manrope', 'Inter', Arial, sans-serif;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.12;
}

.service-row p {
  max-width: 72ch;
  margin: 0;
  color: var(--slate);
}

.visual-services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.image-card {
  position: relative;
  display: grid;
  grid-template-rows: 220px auto auto;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--t), box-shadow var(--t);
}

.image-card:hover {
  --lift: -2px;
  box-shadow: var(--shadow);
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 680ms ease, filter var(--t);
}

.image-card:hover img {
  transform: scale(1.045);
  filter: saturate(1.05) contrast(1.04);
}

.image-card span {
  padding: 22px 22px 0;
  color: var(--teal);
  font-family: 'Manrope', 'Inter', Arial, sans-serif;
  font-size: 23px;
  font-weight: 800;
  line-height: 1.15;
}

.image-card p {
  margin: 0;
  padding: 12px 22px 24px;
  color: var(--muted);
}

.service-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.service-pills span,
.package-list span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 13px;
  border: 1px solid rgba(47, 80, 80, 0.22);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.68);
  color: var(--slate);
  font-size: 13px;
  font-weight: 800;
}

.package-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 34px;
  align-items: center;
  padding: 44px 40px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.package-panel p:not(.eyebrow) {
  max-width: 68ch;
  margin: 16px 0 0;
  color: var(--slate);
}

.package-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 250px;
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.fit-block {
  padding: 40px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.fit-block.good {
  background: var(--ink-soft);
  color: var(--paper);
  border-color: var(--ink-soft);
}

.fit-block.good h2 {
  color: var(--paper);
}

.fit-block.good .eyebrow {
  color: rgba(255, 253, 248, 0.55);
}

.fit-block.good p {
  color: rgba(255, 253, 248, 0.75);
}

.fit-block p {
  color: var(--muted);
  font-size: 15px;
  margin-top: 18px;
}

.check-list {
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.check-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  margin-top: 9px;
  background: var(--brass);
  border-radius: 2px;
}

.check-list.quiet li::before {
  background: var(--green);
}

.cta-band {
  position: relative;
  padding: 104px 0;
  background: var(--ink-soft);
  color: var(--paper);
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(at 0% 0%, rgba(176, 136, 66, 0.18), transparent 50%),
    radial-gradient(at 100% 100%, rgba(47, 80, 80, 0.35), transparent 55%);
  pointer-events: none;
}

.cta-band .container {
  position: relative;
}

.cta-band h2,
.cta-band .eyebrow {
  color: var(--paper);
}

.cta-band .eyebrow {
  color: rgba(255, 253, 248, 0.55);
}

.cta-band p:not(.eyebrow) {
  max-width: 52ch;
  margin: 18px 0 0;
  color: rgba(255, 253, 248, 0.72);
  font-size: 18px;
  line-height: 1.55;
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}

.site-footer {
  padding: 58px 0 26px;
  background: var(--ink);
  color: var(--paper);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 42px;
}

.site-footer img {
  width: 168px;
  filter: brightness(0) invert(1);
}

.site-footer h2 {
  margin-bottom: 14px;
  color: var(--paper);
  font-family: 'Inter', Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 253, 248, 0.68);
  font-size: 14px;
  overflow-wrap: anywhere;
}

.site-footer nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-brand p {
  margin: 0;
  line-height: 1.55;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 6px;
}

.footer-contact a {
  font-weight: 700;
  color: var(--paper);
  font-size: 15px;
}

.footer-contact a:hover {
  color: #E7C17C;
}

.site-footer nav a:hover {
  color: var(--paper);
}

.footer-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 253, 248, 0.16);
  flex-wrap: wrap;
}

.footer-meta .legal {
  flex: 1 1 auto;
  color: rgba(255, 253, 248, 0.6);
  font-size: 13px;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.footer-pref {
  color: rgba(255, 253, 248, 0.6);
  font-size: 13px;
  text-decoration: underline;
  text-underline-offset: 4px;
  flex-shrink: 0;
}

.footer-pref:hover {
  color: var(--paper);
}

.page-hero {
  padding: 96px 0 84px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.page-hero-image .hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: 64px;
}

.page-hero-image img {
  aspect-ratio: 4 / 3;
  min-height: 300px;
  border-radius: var(--radius-lg);
}

.page-hero h1 {
  max-width: 18ch;
  font-size: clamp(40px, 5.4vw, 68px);
  letter-spacing: -0.025em;
}

.page-hero .lede {
  max-width: 56ch;
}

.page-hero .lede {
  max-width: 68ch;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 62px;
  align-items: start;
}

.copy-block {
  max-width: 760px;
}

.copy-block h2 + p,
.copy-block h3 + p {
  margin-top: 14px;
}

.copy-block p {
  color: var(--slate);
}

.copy-block p,
.copy-block ul {
  font-size: 18px;
}

.copy-block ul {
  margin: 18px 0 34px;
  padding-left: 22px;
  color: var(--slate);
}

.side-panel {
  position: sticky;
  top: 96px;
  padding: 30px 32px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.side-panel h2 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 12px;
}

.side-panel p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.side-panel .btn {
  width: 100%;
  margin-top: 12px;
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}

.link-card {
  position: relative;
  display: block;
  padding: 24px 26px 24px 30px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  color: var(--ink);
  overflow: hidden;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}

.link-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--brass);
  transform: translateX(-4px);
  transition: transform var(--t);
}

.link-card::after {
  content: "→";
  position: absolute;
  right: 22px;
  top: 22px;
  font-family: 'Manrope', 'Inter', Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--brass);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity var(--t), transform var(--t);
}

.link-card:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow);
}

.link-card:hover::before {
  transform: translateX(0);
}

.link-card:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.link-card h3 {
  margin: 0 0 6px;
  padding-right: 24px;
  font-size: 18px;
}

.link-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.not-found {
  max-width: 720px;
  padding: 60px 0 40px;
}

.not-found-title {
  margin-top: 14px;
  font-size: 56px;
  line-height: 1.04;
}

.not-found-grid {
  margin-top: 44px;
}

.faq {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.faq details {
  background: var(--paper);
  padding: 22px 24px;
}

.faq summary {
  color: var(--teal);
  cursor: pointer;
  font-weight: 800;
}

.faq p {
  margin: 12px 0 0;
  color: var(--slate);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 56px;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  color: var(--slate);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: var(--paper);
  color: var(--ink);
  transition: border-color var(--t);
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--ink-soft);
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-note {
  min-height: 1.5em;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.contact-card {
  padding: 30px 32px;
  background: var(--ink-soft);
  color: var(--paper);
  border-radius: var(--radius-lg);
}

.contact-card h2 {
  color: var(--paper);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 14px;
}

.contact-card .eyebrow {
  color: rgba(255, 253, 248, 0.55);
}

.contact-card p {
  color: rgba(255, 253, 248, 0.72);
  font-size: 15px;
  margin: 6px 0;
  overflow-wrap: anywhere;
}

.contact-card a {
  color: #E7C17C;
  border-bottom: 1px solid rgba(231, 193, 124, 0.3);
}

.contact-card a:hover {
  color: var(--paper);
  border-bottom-color: var(--paper);
}

.contact-card .btn {
  color: var(--paper);
  margin: 6px 0 4px;
}

.contact-card .btn-light {
  color: var(--teal);
}

.contact-card .btn:hover {
  color: var(--paper);
}

.contact-card .btn-light:hover {
  color: var(--teal);
}

.cal-frame {
  position: relative;
  width: 100%;
  margin-top: 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: 0 14px 40px rgba(16, 34, 34, 0.06);
  overflow: hidden;
}

.cal-embed {
  position: relative;
  width: 100%;
  min-height: 720px;
  background: var(--paper);
  z-index: 1;
}

.cal-skeleton {
  position: absolute;
  inset: 0;
  z-index: 0;
  padding: 26px;
  background: var(--paper);
  pointer-events: none;
}

.cal-skeleton-row {
  width: 32%;
  height: 22px;
  margin-bottom: 22px;
  border-radius: 4px;
  background: linear-gradient(90deg, rgba(47,80,80,0.06), rgba(47,80,80,0.12), rgba(47,80,80,0.06));
  background-size: 200% 100%;
  animation: skeletonShimmer 1400ms ease-in-out infinite;
}

.cal-skeleton-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
}

.cal-skeleton-grid span {
  display: block;
  height: 46px;
  border-radius: 6px;
  background: linear-gradient(90deg, rgba(47,80,80,0.05), rgba(47,80,80,0.1), rgba(47,80,80,0.05));
  background-size: 200% 100%;
  animation: skeletonShimmer 1400ms ease-in-out infinite;
}

@keyframes skeletonShimmer {
  0%   { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

@media (max-width: 760px) {
  .cal-embed {
    min-height: 680px;
  }
  .cal-skeleton {
    padding: 18px;
  }
  .cal-skeleton-grid {
    gap: 6px;
  }
  .cal-skeleton-grid span {
    height: 36px;
  }
}

.contact-form .form-heading {
  margin: 0 0 6px;
  font-size: 26px;
}

.contact-form .eyebrow {
  margin-bottom: 8px;
}

@media (max-width: 760px) {
  .cal-embed {
    min-height: 680px;
  }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 560ms ease, transform 560ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal].no-anim {
  transition: none;
}

.info-card:hover,
.package-panel:hover {
  transform: translateY(-2px);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}


@media (max-width: 1120px) {
  .nav {
    gap: 16px;
  }

  .nav a {
    font-size: 14px;
  }

  .header-cta {
    display: none;
  }

  h1 {
    font-size: 66px;
  }

  h2 {
    font-size: 40px;
  }

  .page-hero h1 {
    font-size: 56px;
  }
}

@media (max-width: 960px) {

  .hero-grid,
  .split,
  .content-grid,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .card-grid.three,
  .fit-grid,
  .footer-grid,
  .visual-services,
  .package-panel {
    grid-template-columns: 1fr;
  }

  .package-panel {
    align-items: start;
  }

  .package-list {
    max-width: none;
  }

  .service-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .side-panel {
    position: static;
  }

}

@media (max-width: 760px) {
  :root {
    --gutter: 20px;
  }

  body {
    font-size: 16px;
  }

  .header-row {
    min-height: 64px;
    gap: 14px;
  }

  .brand img {
    width: 150px;
  }

  .brand span {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    min-height: 44px;
  }

  .nav {
    position: fixed;
    inset: 64px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: calc(100vh - 64px);
    max-height: calc(100dvh - 64px);
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 8px var(--gutter) 20px;
    background: var(--bone);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 22px 42px rgba(27, 38, 38, 0.16);
  }

  body.nav-open .nav {
    display: flex;
  }

  .nav a {
    min-height: 52px;
    display: flex;
    align-items: center;
    padding: 0 4px;
    border-radius: 0;
    border-bottom: 1px solid var(--line);
    font-size: 16px;
  }

  .nav a:last-child {
    border-bottom: 0;
  }

  .nav .nav-cta {
    display: inline-flex;
    justify-content: center;
    min-height: 50px;
    margin-top: 18px;
    padding: 12px 18px;
    border: 0;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.01em;
  }

  .hero,
  .section {
    padding: 44px 0;
  }

  .section-head {
    margin-bottom: 26px;
  }

  .hero-grid {
    gap: 28px;
  }

  h1 {
    max-width: 100%;
    font-size: 40px;
    line-height: 1.06;
  }

  h2 {
    font-size: 30px;
  }

  h3 {
    font-size: 20px;
  }

  .eyebrow {
    margin-bottom: 12px;
    font-size: 11px;
  }

  .page-hero h1 {
    max-width: 100%;
    font-size: 38px;
  }

  .lede {
    margin-top: 16px;
    font-size: 17px;
  }

  .section-lede {
    font-size: 17px;
  }

  .cta-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 22px;
  }

  .btn {
    width: 100%;
    min-height: 50px;
    padding: 12px 18px;
    line-height: 1.18;
    white-space: normal;
  }

  .signal-list {
    display: grid;
    gap: 10px;
    margin-top: 24px;
    padding-top: 18px;
    font-size: 13px;
  }

  .mini-actions,
  .location-links {
    gap: 10px 16px;
    margin-top: 18px;
  }

  .hero-photo,
  .hero-photo img {
    min-height: 0;
    aspect-ratio: 5 / 4;
  }

  .hero-photo img {
    object-position: 42% center;
  }


  .page-hero {
    padding: 40px 0;
  }

  .page-hero-image img {
    min-height: 0;
    aspect-ratio: 5 / 4;
  }

  .split,
  .content-grid,
  .contact-layout {
    gap: 28px;
  }

  .vendor-band {
    padding: 28px 0;
  }

  .vendor-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px 18px;
  }

  .vendor-grid img {
    height: 24px;
  }

  .card-grid {
    margin-top: 26px;
    gap: 12px;
    background: transparent;
    border: 0;
  }

  .info-card {
    min-height: auto;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
  }

  .card-num {
    margin-bottom: 14px;
    font-size: 24px;
  }

  .info-card p {
    margin-top: 10px;
  }

  .service-list {
    gap: 10px;
    background: transparent;
    border: 0;
  }

  .service-row {
    padding: 18px 20px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    gap: 6px;
  }

  .service-row span {
    font-size: 19px;
  }

  .service-row p {
    font-size: 15px;
  }

  .visual-services {
    gap: 12px;
  }

  .image-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    grid-template-rows: none;
    aspect-ratio: 16 / 9;
    min-height: 200px;
    overflow: hidden;
  }

  .image-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }

  .image-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(16, 34, 34, 0) 22%, rgba(16, 34, 34, 0.65) 58%, rgba(16, 34, 34, 0.94));
    z-index: 1;
    pointer-events: none;
  }

  .image-card span,
  .image-card p {
    position: relative;
    z-index: 2;
  }

  .image-card span {
    padding: 0 18px 4px;
    color: var(--paper);
    font-size: 20px;
    text-shadow: 0 1px 12px rgba(16, 34, 34, 0.4);
  }

  .image-card p {
    margin: 0;
    padding: 0 18px 18px;
    color: rgba(255, 253, 248, 0.94);
    font-size: 14px;
    text-shadow: 0 1px 10px rgba(16, 34, 34, 0.4);
  }

  .service-pills,
  .package-list {
    gap: 8px;
    margin-top: 20px;
  }

  .service-pills span,
  .package-list span {
    min-height: 34px;
    padding: 0 12px;
    font-size: 12px;
  }

  .package-panel {
    padding: 24px;
    gap: 20px;
  }

  .package-panel p:not(.eyebrow) {
    font-size: 16px;
  }

  .fit-grid {
    gap: 12px;
    background: transparent;
    border: 0;
  }

  .fit-block {
    padding: 24px;
    border-radius: var(--radius);
  }

  .check-list {
    margin-top: 22px;
    gap: 10px;
  }

  .copy-block p,
  .copy-block ul {
    font-size: 17px;
  }

  .copy-block ul {
    margin-bottom: 24px;
  }

  .side-panel,
  .contact-card {
    padding: 22px;
  }

  .side-panel h2,
  .contact-card h2 {
    font-size: 22px;
  }

  .field input,
  .field textarea,
  .field select {
    font-size: 16px;
    padding: 14px;
  }

  .field textarea {
    min-height: 130px;
  }

  .cta-band {
    padding: 48px 0;
  }

  .cta-inner {
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: start;
  }

  .site-footer {
    padding: 42px 0 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .site-footer img {
    width: 150px;
  }

  .footer-meta {
    margin-top: 26px;
    padding-top: 18px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .footer-meta .legal {
    font-size: 13px;
    line-height: 1.5;
  }


@media (max-width: 520px) {
  :root {
    --gutter: 16px;
  }

  .header-row {
    min-height: 60px;
  }

  .brand img {
    width: 138px;
  }

  .nav {
    inset: 60px 0 auto 0;
    max-height: calc(100vh - 60px);
    max-height: calc(100dvh - 60px);
    padding: 8px var(--gutter) 18px;
  }

  .hero,
  .section {
    padding: 38px 0;
  }

  .section-head {
    margin-bottom: 22px;
  }

  h1 {
    font-size: 34px;
    line-height: 1.08;
  }

  h2 {
    font-size: 26px;
  }

  h3 {
    font-size: 19px;
  }

  .page-hero {
    padding: 34px 0;
  }

  .page-hero h1 {
    font-size: 32px;
  }

  .lede {
    font-size: 16px;
  }

  .hero-photo,
  .hero-photo img,
  .page-hero-image img {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }


  .image-card span {
    font-size: 19px;
  }

  .service-pills span,
  .package-list span {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .cta-band {
    padding: 40px 0;
  }

  .footer-grid {
    gap: 24px;
  }

  .site-footer img {
    width: 156px;
  }

  .legal {
    margin-top: 22px;
  }
}

@media (max-width: 390px) {
  .brand img {
    width: 128px;
  }

  .nav-toggle {
    padding: 0 10px;
    font-size: 14px;
  }

  .header-row {
    gap: 10px;
  }

  h1,
  .page-hero h1 {
    font-size: 30px;
  }

  h2 {
    font-size: 24px;
  }

  .lede {
    font-size: 16px;
  }

  .hero-photo,
  .hero-photo img,
  .page-hero-image img {
    aspect-ratio: 4 / 3;
  }

  .info-card,
  .package-panel,
  .fit-block,
  .side-panel,
  .contact-card {
    padding: 18px;
  }
}


.consent-banner {
  animation: consentSlideUp 380ms cubic-bezier(.2, .7, .2, 1);
}

.consent-banner.is-leaving {
  animation: consentSlideDown 220ms ease forwards;
}

@keyframes consentSlideUp {
  from { transform: translateY(40px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

@keyframes consentSlideDown {
  from { transform: translateY(0); opacity: 1; }
  to   { transform: translateY(40px); opacity: 0; }
}

.consent-card {
  padding: 22px 24px 20px;
  border-radius: 14px;
  background:
    radial-gradient(140% 80% at 100% 0%, rgba(176, 136, 66, 0.18), transparent 56%),
    linear-gradient(155deg, #2F5050 0%, #102222 100%);
  color: var(--paper);
  box-shadow: 0 28px 60px rgba(16, 34, 34, 0.45);
  border: 1px solid rgba(245, 241, 234, 0.08);
}

.consent-heading {
  margin: 0 0 6px;
  font-family: 'Manrope', 'Inter', Arial, sans-serif;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0;
  color: var(--paper);
  display: flex;
  align-items: center;
  gap: 10px;
}

.consent-heading::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #E7C17C;
  box-shadow: 0 0 0 4px rgba(231, 193, 124, 0.18);
}

.consent-text {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 253, 248, 0.78);
}

.consent-text a {
  color: #E7C17C;
  border-bottom: 1px solid rgba(231, 193, 124, 0.4);
}

.consent-text a:hover {
  border-bottom-color: #E7C17C;
}

.consent-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.consent-banner .btn-consent-primary,
.consent-banner .btn-consent-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform var(--t), background var(--t), border-color var(--t), color var(--t);
}

.consent-banner .btn-consent-primary {
  background: var(--brass);
  color: var(--paper);
  border: 1px solid var(--brass);
}

.consent-banner .btn-consent-primary:hover {
  background: var(--brass-dark);
  border-color: var(--brass-dark);
}

.consent-banner .btn-consent-secondary {
  background: transparent;
  color: var(--paper);
  border: 1px solid rgba(245, 241, 234, 0.3);
}

.consent-banner .btn-consent-secondary:hover {
  border-color: var(--paper);
  background: rgba(245, 241, 234, 0.08);
}

.consent-banner .btn-consent-primary:active,
.consent-banner .btn-consent-secondary:active {
  transform: translateY(1px);
}

@media (max-width: 600px) {
  .consent-banner {
    left: 12px !important;
    right: 12px !important;
    bottom: 12px !important;
    width: auto !important;
    max-width: none !important;
  }
  .consent-card {
    padding: 18px 18px 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}
