/* BDSI layout bridge — keep Breakdance wrappers from breaking imported layouts */
.bde-section.site-header,
.bde-section.bdsi-html-header,
section.site-header {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  min-height: 0 !important;
  background: transparent;
}
.bde-section.site-header > .section-container,
.bde-section.site-header > .bde-section-container,
section.site-header > .section-container {
  max-width: none !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}
.bde-section.site-header .bde-code-block,
.bde-section.site-header .breakdance-code-block {
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
  max-width: none !important;
}

/* --- site.css --- */
:root {
  --bg: #f3f1ec;
  --surface: #faf8f4;
  --fg: #171a18;
  --muted: #5a615c;
  --subtle: #8a918c;
  --accent: #2c4a43;
  --accent-hover: #243e38;
  --accent-fg: #f3f1ec;
  --border: #ddd9d1;
  --ink: #0e1614;
  --ink-fg: #e8e6e1;
  --ink-muted: #9aa39d;
  --font-sans: "Outfit", ui-sans-serif, system-ui, sans-serif;
  --font-display: "Newsreader", ui-serif, Georgia, "Times New Roman", serif;
  --text-display: clamp(2.5rem, 1.4rem + 4vw, 4.35rem);
  --text-section: clamp(1.85rem, 1.3rem + 1.6vw, 2.35rem);
  --leading-display: 1.08;
  --tracking-caps: 0.18em;
  --radius-sm: 0.375rem;
  --radius-md: 0.625rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --shadow-border:
    0px 0px 0px 1px rgba(23, 26, 24, 0.06),
    0px 1px 2px -1px rgba(23, 26, 24, 0.06),
    0px 2px 4px 0px rgba(23, 26, 24, 0.04);
  --max: 72rem;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.5;
}

img {
  max-width: 100%;
  display: block;
  outline: 1px solid rgba(23, 26, 24, 0.1);
  outline-offset: -1px;
}

h1,
h2,
h3 {
  text-wrap: balance;
  font-weight: 500;
  letter-spacing: -0.02em;
}

p {
  text-wrap: pretty;
}

a {
  color: inherit;
}

button,
[role="button"] {
  cursor: pointer;
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sr-only:focus {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 50;
  width: auto;
  height: auto;
  margin: 0;
  clip: auto;
  overflow: visible;
  white-space: normal;
  border-radius: var(--radius-md);
  background: var(--accent);
  color: var(--accent-fg);
  padding: 0.5rem 0.75rem;
}

.wrap {
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: 1.25rem;
}

.kicker {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--subtle);
}

.kicker.light {
  color: var(--ink-muted);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--border);
  background: color-mix(in oklab, var(--bg) 90%, transparent);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
  color: var(--fg);
}

.logo svg {
  flex-shrink: 0;
  color: var(--accent);
}

.logo span {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.nav-desktop,
.header-actions {
  display: none;
}

.nav-desktop {
  align-items: center;
  gap: 2rem;
}

.nav-desktop a {
  font-size: 0.875rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 150ms ease-out;
}

.nav-desktop a:hover {
  color: var(--fg);
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  height: 2.75rem;
  padding: 0 0.5rem;
  font-size: 0.875rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 150ms ease-out;
}

.header-phone:hover {
  color: var(--fg);
}

.header-mobile {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 0;
  background: transparent;
  color: var(--fg);
  text-decoration: none;
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.mobile-nav.is-open {
  display: block;
}

.mobile-nav nav {
  display: flex;
  flex-direction: column;
  padding: 1rem 1.25rem 1.25rem;
}

.mobile-nav nav a {
  display: flex;
  align-items: center;
  min-height: 2.75rem;
  font-size: 1rem;
  color: var(--fg);
  text-decoration: none;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 2.75rem;
  padding: 0 1.25rem;
  border: 0;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition:
    color 150ms ease-out,
    background-color 150ms ease-out,
    box-shadow 150ms ease-out,
    transform 150ms ease-out;
}

.btn:active {
  transform: scale(0.96);
}

.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.btn-primary {
  background: var(--accent);
  color: var(--accent-fg);
}

.btn-primary:hover {
  background: var(--accent-hover);
}

.btn-secondary {
  background: transparent;
  color: var(--fg);
  box-shadow: var(--shadow-border);
}

.btn-secondary:hover {
  background: color-mix(in oklab, var(--fg) 5%, transparent);
}

.btn-lg {
  height: 3rem;
  padding: 0 1.5rem;
}

.btn-block {
  width: 100%;
  margin-top: 0.75rem;
}

/* Hero */
.hero {
  padding: 2.5rem 0 3rem;
}

.hero-copy {
  max-width: 48rem;
}

.hero h1 {
  margin: 1rem 0 0;
  font-family: var(--font-display);
  font-size: var(--text-display);
  font-weight: 500;
  line-height: var(--leading-display);
  letter-spacing: -0.03em;
}

.hero h1 em {
  font-style: italic;
  font-weight: 500;
}

.hero-lead {
  margin: 1.25rem 0 0;
  max-width: 36rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.625;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.facts {
  display: grid;
  gap: 2rem;
  margin: 4rem 0 0;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.facts dt {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--subtle);
}

.facts dd {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
}

/* Place */
.place {
  margin: 0;
}

.place-frame {
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.place img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.place figcaption {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.75rem;
  font-size: 0.75rem;
  color: var(--subtle);
}

.place-loc {
  display: none;
}

/* Services */
.section {
  padding: 5rem 0;
}

.section h2 {
  margin: 1rem 0 0;
  max-width: 36rem;
  font-family: var(--font-display);
  font-size: var(--text-section);
}

.services {
  margin: 3.5rem 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.service {
  display: grid;
  gap: 0.75rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  scroll-margin-top: 6rem;
}

.service:last-child {
  border-bottom: 0;
}

.service-index {
  font-size: 0.875rem;
  font-variant-numeric: tabular-nums;
  color: var(--subtle);
}

.service h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
}

.service p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.625;
  color: var(--muted);
}

/* North */
.north {
  background: var(--ink);
  color: var(--ink-fg);
}

.north-grid {
  max-width: var(--max);
  margin-inline: auto;
  display: grid;
}

.north-photo {
  position: relative;
  min-height: 24rem;
  overflow: hidden;
}

.north-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  outline: none;
}

.north-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 1.25rem;
}

.north h2 {
  margin: 1rem 0 0;
  font-family: var(--font-display);
  font-size: var(--text-section);
  color: var(--ink-fg);
}

.north p {
  margin: 1.5rem 0 0;
  max-width: 28rem;
  color: var(--ink-muted);
  line-height: 1.625;
}

.north p + p {
  margin-top: 1.25rem;
}

.north-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
  height: 2.75rem;
  width: fit-content;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink-fg);
  text-decoration: none;
  transition: opacity 150ms ease-out;
}

.north-link:hover {
  opacity: 0.7;
}

/* Included */
.included-grid {
  display: grid;
  gap: 3rem;
}

.included-copy p {
  margin: 1.25rem 0 0;
  max-width: 24rem;
  font-size: 0.875rem;
  line-height: 1.625;
  color: var(--muted);
}

.included-photo {
  margin: 2.5rem 0 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.included-photo img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.included-list {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.included-list li {
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
}

.included-list li:first-child {
  border-top: 0;
}

.included-list h3 {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 500;
  font-family: var(--font-sans);
  letter-spacing: 0;
}

.included-list p {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
  line-height: 1.625;
  color: var(--muted);
}

/* Contact */
.contact {
  scroll-margin-top: 6rem;
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.contact-grid {
  display: grid;
  gap: 3rem;
}

.contact h2 {
  margin: 1rem 0 0;
  font-family: var(--font-display);
  font-size: var(--text-section);
}

.contact-intro {
  margin: 1.25rem 0 0;
  max-width: 28rem;
  color: var(--muted);
  line-height: 1.625;
}

.contact-lines {
  margin: 2.5rem 0 0;
  padding: 0;
  list-style: none;
}

.contact-lines li + li {
  margin-top: 1.5rem;
}

.contact-lines .label {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--subtle);
}

.contact-lines a {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  margin-top: 0.375rem;
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 150ms ease-out;
}

.contact-lines a:hover {
  color: var(--accent);
}

.office-block p {
  margin: 0.375rem 0 0;
  font-size: 0.875rem;
  line-height: 1.625;
}

.office-hours {
  color: var(--muted);
}

.form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: grid;
  gap: 1rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.field label {
  font-size: 0.875rem;
  font-weight: 500;
}

.optional {
  font-weight: 400;
  color: var(--subtle);
}

.field input,
.field textarea {
  width: 100%;
  border: 0;
  border-radius: var(--radius-md);
  background: var(--surface);
  color: var(--fg);
  font: inherit;
  font-size: 0.875rem;
  box-shadow: var(--shadow-border);
  padding: 0 0.875rem;
}

.field input {
  height: 2.75rem;
}

.field textarea {
  min-height: 8rem;
  padding: 0.75rem 0.875rem;
  border-radius: var(--radius-lg);
  resize: vertical;
}

.field input:focus-visible,
.field textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.form-sent {
  display: none;
  flex-direction: column;
  justify-content: center;
  min-height: 18rem;
  padding: 2.5rem 1.5rem;
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow-border);
}

.form-sent.is-visible {
  display: flex;
}

.form-sent .check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-md);
  background: var(--accent);
  color: var(--accent-fg);
}

.form-sent h3 {
  margin: 1.25rem 0 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
}

.form-sent p {
  margin: 0.5rem 0 0;
  max-width: 24rem;
  font-size: 0.875rem;
  line-height: 1.625;
  color: var(--muted);
}

.form.is-hidden {
  display: none;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
  padding: 3.5rem 0;
}

.footer-blurb {
  margin: 1rem 0 0;
  max-width: 20rem;
  font-size: 0.875rem;
  line-height: 1.625;
  color: var(--muted);
}

.footer-grid h2 {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 500;
  font-family: var(--font-sans);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--subtle);
}

.footer-grid address,
.footer-grid ul {
  margin: 0.75rem 0 0;
  font-size: 0.875rem;
  line-height: 1.625;
  font-style: normal;
  color: var(--muted);
}

.footer-grid ul {
  padding: 0;
  list-style: none;
}

.footer-grid ul li + li {
  margin-top: 0.5rem;
}

.footer-grid a {
  text-decoration: none;
}

.footer-grid a:hover {
  color: var(--fg);
}

.footer-legal {
  border-top: 1px solid var(--border);
}

.footer-legal-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem 0;
}

.footer-legal p {
  margin: 0;
  font-size: 0.75rem;
  color: var(--subtle);
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.legal-links a {
  font-size: 0.75rem;
  color: var(--subtle);
  text-decoration: none;
}

.legal-links a:hover {
  color: var(--fg);
}

.hero-enter {
  opacity: 0;
  transform: translateY(12px);
  filter: blur(4px);
  animation: hero-in 500ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-enter:nth-child(1) {
  animation-delay: 40ms;
}
.hero-enter:nth-child(2) {
  animation-delay: 120ms;
}
.hero-enter:nth-child(3) {
  animation-delay: 200ms;
}
.hero-enter:nth-child(4) {
  animation-delay: 280ms;
}

@keyframes hero-in {
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@media (min-width: 640px) {
  .wrap {
    padding-inline: 2rem;
  }

  .header-inner {
    height: 4.25rem;
  }

  .hero {
    padding: 6rem 0 4rem;
  }

  .hero-lead {
    font-size: 1.125rem;
  }

  .hero-actions {
    flex-direction: row;
    align-items: center;
    margin-top: 2.25rem;
  }

  .facts {
    grid-template-columns: repeat(3, 1fr);
  }

  .place img {
    aspect-ratio: 2.15 / 1;
  }

  .place-loc {
    display: inline;
  }

  .section {
    padding: 7rem 0;
  }

  .service {
    grid-template-columns: repeat(12, 1fr);
    align-items: baseline;
    gap: 2rem;
    padding: 2.5rem 0;
  }

  .service-index {
    grid-column: span 2;
  }

  .service h3 {
    grid-column: span 4;
  }

  .service p {
    grid-column: span 6;
    font-size: 1rem;
  }

  .north-copy {
    padding: 6rem 3rem;
  }

  .form-row {
    grid-template-columns: 1fr 1fr;
  }

  .included-list {
    grid-template-columns: 1fr 1fr;
    column-gap: 2.5rem;
  }

  .included-list li:nth-child(2) {
    border-top: 0;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }

  .footer-legal-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 1024px) {
  .nav-desktop,
  .header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .header-mobile,
  .mobile-nav {
    display: none !important;
  }

  .north-grid {
    grid-template-columns: 1fr 1fr;
  }

  .included-grid,
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-enter {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }

  .btn:active {
    transform: none;
  }
}
