:root {
  --ink: #173635;
  --ink-soft: #365756;
  --paper: #fbfaf7;
  --white: #ffffff;
  --mist: #e9f2ef;
  --sage: #b8cbbf;
  --rose: #b86b73;
  --rose-soft: #f3dce0;
  --gold: #c49a4a;
  --line: #d9ded8;
  --shadow: 0 22px 60px rgba(23, 54, 53, 0.14);
  --radius: 8px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

.hidden-field {
  display: none;
}

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

a {
  color: inherit;
  text-decoration: none;
}

p,
h1,
h2,
h3 {
  margin-top: 0;
}

p {
  color: var(--ink-soft);
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 880px;
  font-size: clamp(3rem, 8vw, 6.7rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 4rem);
}

h3 {
  font-size: 1.55rem;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section-pad {
  padding: clamp(72px, 9vw, 120px) 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 4px;
  color: var(--white);
  background: var(--ink);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(217, 222, 216, 0.72);
  background: rgba(251, 250, 247, 0.88);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 82px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 235px;
}

.brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--gold);
  color: var(--white);
  background: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.6rem;
}

.brand strong,
.brand small {
  display: block;
  letter-spacing: 0;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  line-height: 1;
}

.brand small {
  margin-top: 3px;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 650;
}

.site-nav > a,
.nav-group > a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 12px;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--ink);
  border-color: var(--gold);
}

.nav-cta {
  margin-left: 6px;
  border: 1px solid var(--ink);
  background: var(--white);
}

.nav-group {
  position: relative;
}

.nav-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  display: grid;
  min-width: 235px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  background: var(--white);
  box-shadow: var(--shadow);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-menu a {
  padding: 10px;
  border-radius: 4px;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  background: var(--mist);
}

.nav-group:hover .nav-menu,
.nav-group:focus-within .nav-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
  font-weight: 700;
}

.menu-bars,
.menu-bars::before,
.menu-bars::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  content: "";
}

.menu-bars {
  position: relative;
}

.menu-bars::before,
.menu-bars::after {
  position: absolute;
  left: 0;
}

.menu-bars::before {
  top: -6px;
}

.menu-bars::after {
  top: 6px;
}

.hero {
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(233, 242, 239, 0.9), rgba(251, 250, 247, 0.4)),
    var(--paper);
}

.hero-grid,
.page-hero-grid,
.split-grid,
.detail-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  align-items: center;
  gap: clamp(36px, 6vw, 80px);
}

.hero-copy {
  padding-top: 22px;
}

.hero-lede {
  max-width: 660px;
  margin-bottom: 32px;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--rose);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button-row.center {
  justify-content: center;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--ink);
  border-radius: 4px;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(23, 54, 53, 0.12);
}

.button-primary {
  color: var(--white);
  background: var(--ink);
}

.button-secondary {
  color: var(--ink);
  background: var(--white);
}

.image-slot {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  min-height: 260px;
  border: 1px solid rgba(23, 54, 53, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(45deg, rgba(23, 54, 53, 0.07) 25%, transparent 25% 75%, rgba(23, 54, 53, 0.07) 75%),
    linear-gradient(45deg, rgba(184, 107, 115, 0.09) 25%, transparent 25% 75%, rgba(184, 107, 115, 0.09) 75%),
    linear-gradient(135deg, rgba(233, 242, 239, 0.95), rgba(243, 220, 224, 0.68));
  background-position: 0 0, 18px 18px, 0 0;
  background-size: 36px 36px, 36px 36px, auto;
}

.image-slot::before {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(196, 154, 74, 0.6);
  content: "";
}

.image-slot span {
  position: relative;
  z-index: 1;
  max-width: 70%;
  padding: 10px 14px;
  border: 1px solid rgba(23, 54, 53, 0.18);
  border-radius: 4px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.76);
  font-size: 0.82rem;
  font-weight: 800;
  text-align: center;
}

.image-slot.has-image {
  background: var(--paper);
}

.image-slot.has-image::before {
  z-index: 1;
  border-color: rgba(255, 255, 255, 0.56);
  pointer-events: none;
}

.image-slot.has-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.image-slot.large {
  min-height: clamp(480px, 54vw, 660px);
  box-shadow: var(--shadow);
}

.image-slot.portrait {
  min-height: 560px;
}

.stats-band {
  border-block: 1px solid var(--line);
  background: var(--white);
}

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

.stats-grid div {
  padding: 26px 28px;
  border-right: 1px solid var(--line);
}

.stats-grid div:first-child {
  border-left: 1px solid var(--line);
}

.stats-grid strong,
.stats-grid span {
  display: block;
}

.stats-grid strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 500;
}

.stats-grid span {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-heading.narrow {
  max-width: 650px;
  margin-inline: auto;
  text-align: center;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card,
.event-tile,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 310px;
  padding: 30px;
}

.service-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 28px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-weight: 800;
}

.service-card p {
  flex: 1;
}

.service-card a,
.event-tile a,
.text-link {
  color: var(--ink);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.split-section {
  background: var(--white);
}

.split-copy p {
  max-width: 680px;
}

.event-preview {
  background: linear-gradient(180deg, var(--paper), var(--mist));
}

.tile-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.event-tile {
  overflow: hidden;
}

.tile-image {
  min-height: 255px;
  border: 0;
  border-radius: 0;
}

.event-tile h3,
.event-tile a {
  margin-inline: 18px;
}

.event-tile h3 {
  min-height: 62px;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 1.45rem;
}

.event-tile a {
  display: inline-flex;
  margin-bottom: 22px;
}

.details-section {
  background: var(--ink);
}

.details-section h2,
.details-section p,
.details-section .eyebrow {
  color: var(--white);
}

.details-section p {
  color: rgba(255, 255, 255, 0.76);
}

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

.check-list li {
  position: relative;
  padding: 13px 16px 13px 42px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 4px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.check-list li::before {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 11px;
  height: 11px;
  border: 2px solid var(--gold);
  content: "";
}

.process-band {
  padding: 42px 0;
  background: var(--rose-soft);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.process-grid div {
  padding: 22px 0;
}

.process-grid span {
  color: var(--rose);
  font-weight: 850;
}

.process-grid h3 {
  margin-bottom: 8px;
}

.process-grid p {
  margin-bottom: 0;
}

.studio-teaser {
  background: var(--paper);
}

.studio-teaser-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1fr);
  align-items: center;
  gap: clamp(32px, 6vw, 72px);
}

.studio-teaser-grid p {
  max-width: 650px;
}

.teaser-option-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.teaser-option-grid span {
  display: flex;
  align-items: center;
  min-height: 74px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.28rem;
}

.cta-section {
  padding: clamp(72px, 9vw, 116px) 0;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(233, 242, 239, 0.88)),
    var(--mist);
}

.cta-inner {
  max-width: 760px;
}

.cta-inner h2 {
  margin-bottom: 26px;
}

.site-footer {
  padding: 56px 0 24px;
  color: rgba(255, 255, 255, 0.72);
  background: #102726;
}

.site-footer p,
.site-footer a,
.site-footer span {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.9fr;
  gap: 36px;
}

.footer-grid h2 {
  margin-bottom: 16px;
  color: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.footer-grid a {
  display: table;
  margin-bottom: 9px;
}

.footer-brand {
  margin-bottom: 18px;
}

.footer-brand .brand-mark {
  color: var(--ink);
  background: var(--gold);
}

.footer-brand strong,
.footer-brand small {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.88rem;
}

.page-hero {
  background:
    linear-gradient(135deg, rgba(233, 242, 239, 0.9), rgba(251, 250, 247, 0.52)),
    var(--paper);
}

.page-hero h1 {
  font-size: clamp(2.8rem, 6.5vw, 5.9rem);
}

.page-hero p {
  max-width: 720px;
  font-size: 1.08rem;
}

.narrow-copy {
  max-width: 860px;
}

.page-hero-image {
  min-height: 430px;
}

.feature-list,
.event-list {
  display: grid;
  gap: 56px;
}

.feature-row,
.event-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
}

.feature-row.reverse .image-slot {
  order: 2;
}

.feature-image {
  min-height: 390px;
}

.event-panel {
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line);
}

.event-panel:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.event-panel-image {
  min-height: 330px;
}

.gallery-shell {
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 18px;
}

.gallery-item {
  min-height: auto;
  height: 100%;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.contact-section {
  background: var(--white);
}

.palette-board {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  grid-auto-rows: 170px;
  gap: 14px;
  min-height: 450px;
}

.palette-card {
  position: relative;
  display: flex;
  align-items: end;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(23, 54, 53, 0.16);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 42px rgba(23, 54, 53, 0.08);
}

.palette-card::before {
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  content: "";
}

.palette-card span {
  position: relative;
  z-index: 1;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.palette-card.main {
  grid-row: span 2;
  background: linear-gradient(135deg, #fbfaf7, #eadfcb);
}

.palette-card.sage {
  background: #b8cbbf;
}

.palette-card.gold {
  background: #c49a4a;
}

.palette-card.rose {
  background: #f3dce0;
}

.builder-section {
  padding-top: clamp(28px, 5vw, 54px);
  background: var(--white);
}

.compact-builder {
  grid-template-columns: 1fr;
}

.compact-builder-flow {
  width: 100%;
  min-width: 0;
}

.builder-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
  align-items: start;
  gap: clamp(28px, 5vw, 56px);
}

.builder-options {
  display: grid;
  gap: 34px;
}

.option-group {
  padding: 0 0 34px;
  border-bottom: 1px solid var(--line);
}

.option-group:last-child {
  border-bottom: 0;
}

.option-heading {
  max-width: 720px;
  margin-bottom: 18px;
}

.option-heading h2 {
  margin-bottom: 0;
  font-size: clamp(1.8rem, 3vw, 3.1rem);
}

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

.color-choice-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.choice-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 9px;
  min-height: 168px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  cursor: pointer;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.choice-card:hover,
.choice-card:focus-within {
  border-color: rgba(196, 154, 74, 0.76);
  box-shadow: 0 14px 28px rgba(23, 54, 53, 0.09);
  transform: translateY(-1px);
}

.choice-card:has(input:checked) {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: inset 0 0 0 2px rgba(196, 154, 74, 0.18);
}

.choice-card input {
  position: absolute;
  width: 1px;
  min-height: 1px;
  height: 1px;
  margin: 0;
  opacity: 0;
  pointer-events: none;
}

.choice-card strong,
.choice-card small {
  display: block;
}

.choice-card strong {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.22rem;
  font-weight: 500;
  line-height: 1.15;
}

.choice-card small {
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.4;
}

.swatch-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-bottom: 5px;
}

.swatch-row i {
  display: block;
  height: 34px;
  border: 1px solid rgba(23, 54, 53, 0.16);
  border-radius: 4px;
}

.design-summary-card {
  position: sticky;
  top: 112px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(251, 250, 247, 0.98)),
    var(--paper);
  box-shadow: 0 18px 42px rgba(23, 54, 53, 0.08);
}

.design-summary-card h2 {
  margin-bottom: 12px;
  font-size: clamp(1.55rem, 2.4vw, 2rem);
}

.summary-card-heading {
  display: grid;
  gap: 4px;
  margin-bottom: 14px;
}

.summary-card-heading .eyebrow {
  margin-bottom: 0;
}

.summary-card-heading h3 {
  margin: 0;
}

.summary-card-heading p:last-child {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.45;
}

.summary-list {
  display: grid;
  gap: 14px;
  margin: 0 0 16px;
}

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

.summary-tile {
  display: grid;
  min-width: 0;
  gap: 5px;
  padding: 11px;
  border: 1px solid rgba(217, 222, 216, 0.9);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.82);
}

.summary-tile-feature {
  grid-column: 1 / -1;
  background:
    linear-gradient(135deg, rgba(233, 242, 239, 0.9), rgba(255, 255, 255, 0.9)),
    var(--white);
}

.summary-tile span,
.summary-addon-title span,
.summary-section-label {
  color: var(--rose);
  font-size: 0.66rem;
  font-weight: 850;
  line-height: 1.2;
  text-transform: uppercase;
}

.summary-tile strong {
  min-width: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.92rem;
  font-weight: 850;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.summary-tile-feature strong {
  font-size: 1.02rem;
}

.summary-addons {
  display: grid;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.summary-section-label {
  color: var(--ink-soft);
}

.summary-addon-group {
  display: grid;
  gap: 8px;
  padding: 10px;
  border: 1px solid rgba(217, 222, 216, 0.72);
  border-radius: 6px;
  background: rgba(244, 243, 239, 0.52);
}

.summary-addon-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.summary-addon-title small {
  display: inline-grid;
  min-width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--ink);
  font-size: 0.72rem;
  font-weight: 900;
}

.summary-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.summary-chip,
.summary-empty {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border-radius: 4px;
  padding: 5px 8px;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.2;
}

.summary-chip {
  border: 1px solid rgba(23, 54, 53, 0.14);
  color: var(--ink);
  background: var(--white);
}

.summary-empty {
  color: var(--ink-soft);
  background: transparent;
  padding-inline: 0;
}

.summary-actions {
  display: grid;
  gap: 8px;
}

.summary-actions .button {
  min-height: 44px;
}

.contact-grid {
  align-items: start;
}

.contact-card {
  position: sticky;
  top: 110px;
  padding: 30px;
}

.contact-card h2 {
  margin-bottom: 28px;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.contact-method {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.contact-method span {
  display: block;
  margin-bottom: 4px;
  color: var(--rose);
  font-size: 0.75rem;
  font-weight: 850;
  text-transform: uppercase;
}

.contact-method p,
.contact-method a {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
}

.event-form {
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 24px;
}

.form-grid label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 800;
}

.form-grid label.full {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 11px 12px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus,
.button:focus-visible,
.menu-toggle:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(196, 154, 74, 0.45);
  outline-offset: 3px;
}

.form-status {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--ink);
  font-weight: 800;
}

.event-type-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: -36px;
  padding-bottom: 34px;
}

.event-type-strip span {
  padding: 8px 12px;
  border: 1px solid rgba(23, 54, 53, 0.16);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 800;
}

.event-builder {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  align-items: start;
  gap: clamp(24px, 4vw, 52px);
  min-width: 0;
}

.event-builder.compact-builder {
  grid-template-columns: 1fr;
}

.builder-step-nav {
  position: sticky;
  top: 108px;
  display: grid;
  gap: 7px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.builder-step-nav a {
  padding: 10px 11px;
  border-radius: 4px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 800;
}

.builder-step-nav a:hover,
.builder-step-nav a:focus-visible {
  color: var(--ink);
  background: var(--white);
}

.builder-flow {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.builder-step {
  scroll-margin-top: 110px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.builder-picker {
  scroll-margin-top: 110px;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.builder-picker[open] {
  background: var(--white);
  box-shadow: 0 18px 42px rgba(23, 54, 53, 0.08);
}

.builder-picker > summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 20px;
  cursor: pointer;
  list-style: none;
}

.builder-picker > summary::-webkit-details-marker {
  display: none;
}

.builder-picker > summary::after {
  content: "+";
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  font-size: 1.25rem;
  font-weight: 900;
}

.builder-picker[open] > summary::after {
  content: "-";
}

.builder-picker > summary span,
.builder-picker > summary strong {
  min-width: 0;
}

.builder-picker > summary span {
  display: grid;
  gap: 2px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  line-height: 1.05;
}

.builder-picker > summary small {
  color: var(--rose);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.builder-picker > summary strong {
  justify-self: end;
  max-width: 340px;
  overflow: hidden;
  color: var(--ink-soft);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 850;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.option-scroll {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(250px, 310px);
  gap: 14px;
  width: 100%;
  min-width: 0;
  overflow-x: auto;
  padding: 0 20px 22px;
  scroll-padding-inline: 20px;
  scroll-snap-type: x proximity;
}

.option-scroll::-webkit-scrollbar {
  height: 10px;
}

.option-scroll::-webkit-scrollbar-track {
  background: rgba(217, 222, 216, 0.55);
  border-radius: 999px;
}

.option-scroll::-webkit-scrollbar-thumb {
  background: var(--sage);
  border-radius: 999px;
}

.picker-card {
  min-height: 100%;
  scroll-snap-align: start;
}

.picker-card.media-choice {
  min-height: 420px;
}

.picker-card.palette-choice {
  min-height: 245px;
}

.picker-note {
  max-width: 760px;
  margin: -6px 20px 18px;
}

.addon-builder-group {
  padding: 0 20px 22px;
}

.addon-builder-group + .addon-builder-group {
  padding-top: 4px;
}

.addon-builder-group h2 {
  margin-bottom: 12px;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.addon-builder-group .option-scroll {
  margin-inline: -20px;
}

.addon-option-scroll .picker-card.media-choice {
  min-height: 395px;
}

.builder-step:nth-child(even) {
  background: var(--paper);
}

.step-heading {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  margin-bottom: 24px;
}

.step-heading h2 {
  margin-bottom: 8px;
  font-size: clamp(1.85rem, 3.3vw, 3.35rem);
}

.step-heading p:last-child {
  margin-bottom: 0;
}

.step-number {
  display: inline-grid;
  width: 68px;
  height: 68px;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--ink);
  background: var(--white);
  font-size: 0.82rem;
  font-weight: 900;
  text-align: center;
}

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

.palette-choice {
  min-height: 220px;
}

.media-choice-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.media-choice-grid.small-media {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.media-choice {
  min-height: 0;
  padding: 14px;
}

.media-choice .card-image {
  min-height: 210px;
  margin: -14px -14px 4px;
  border-width: 0 0 1px;
  border-radius: var(--radius) var(--radius) 0 0;
}

.small-media .card-image {
  min-height: 155px;
}

.choice-card em {
  color: var(--rose);
  font-style: normal;
  font-size: 0.84rem;
  font-weight: 850;
}

.select-pill {
  align-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  margin-top: 4px;
  padding: 0 12px;
  border: 1px solid var(--ink);
  border-radius: 4px;
  color: var(--ink);
  background: var(--white);
  font-size: 0.82rem;
  font-weight: 850;
}

.choice-card:has(input:checked) .select-pill {
  color: var(--white);
  background: var(--ink);
}

.review-step {
  background:
    linear-gradient(135deg, rgba(233, 242, 239, 0.74), rgba(255, 255, 255, 0.9)),
    var(--white);
}

.cart-cta-actions,
.invoice-cart-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cart-section {
  background: var(--white);
  padding-top: clamp(30px, 5vw, 58px);
}

.invoice-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.44fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(22px, 4vw, 42px);
}

.invoice-cart-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(251, 250, 247, 0.98)),
    var(--paper);
}

.invoice-cart-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.invoice-cart-actions .button {
  width: 100%;
}

.invoice-form-panel {
  background: var(--white);
  box-shadow: 0 18px 42px rgba(23, 54, 53, 0.08);
}

.invoice-form-heading {
  max-width: 760px;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.invoice-form-heading h2,
.invoice-form-heading h3 {
  margin-bottom: 8px;
  font-size: clamp(1.65rem, 3vw, 2.55rem);
}

.invoice-form-heading p:last-child {
  margin-bottom: 0;
}

.cart-empty {
  max-width: 760px;
  padding: clamp(26px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(233, 242, 239, 0.62)),
    var(--paper);
  box-shadow: 0 18px 42px rgba(23, 54, 53, 0.08);
}

.cart-empty h2 {
  margin-bottom: 10px;
}

.cart-cta-step {
  background:
    linear-gradient(135deg, rgba(233, 242, 239, 0.82), rgba(255, 255, 255, 0.94)),
    var(--white);
}

.cart-cta-step .step-heading {
  margin-bottom: 18px;
}

.review-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.45fr) minmax(0, 1fr);
  align-items: start;
  gap: 22px;
}

.quote-summary-card {
  position: sticky;
  top: 112px;
}

.quote-summary-card h3 {
  margin-bottom: 12px;
  font-size: clamp(1.55rem, 2.4vw, 2rem);
}

.quote-summary-card .button {
  width: 100%;
}

.quote-form-panel {
  background: var(--white);
}

input[readonly],
textarea[readonly] {
  color: var(--ink-soft);
  background: #f4f3ef;
}

@media (max-width: 980px) {
  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    inset: 82px 0 auto 0;
    display: none;
    max-height: calc(100vh - 82px);
    overflow-y: auto;
    padding: 18px 20px 28px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  body.nav-open .site-nav {
    display: grid;
    justify-content: stretch;
  }

  .site-nav > a,
  .nav-group > a {
    justify-content: space-between;
    min-height: 50px;
    padding: 0;
  }

  .nav-cta {
    justify-content: center;
    margin-left: 0;
    padding-inline: 14px;
  }

  .nav-menu {
    position: static;
    display: grid;
    min-width: 0;
    margin: 4px 0 12px;
    padding: 0 0 0 14px;
    border: 0;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    background: transparent;
    box-shadow: none;
  }

  .hero-grid,
  .page-hero-grid,
  .split-grid,
  .detail-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .tile-grid,
  .process-grid,
  .choice-grid {
    grid-template-columns: 1fr 1fr;
  }

  .studio-teaser-grid,
  .builder-layout,
  .event-builder,
  .invoice-layout,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .design-summary-card,
  .builder-step-nav,
  .quote-summary-card {
    position: static;
  }

  .invoice-cart-actions {
    grid-template-columns: 1fr;
  }

  .builder-step-nav {
    order: 2;
    grid-template-columns: repeat(3, 1fr);
  }

  .builder-flow {
    order: 1;
  }

  .builder-picker > summary {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .palette-choice-grid,
  .media-choice-grid,
  .media-choice-grid.small-media {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .stats-grid div,
  .stats-grid div:first-child {
    border-right: 1px solid var(--line);
    border-left: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .stats-grid div:last-child {
    border-bottom: 0;
  }

  .feature-row,
  .event-panel {
    grid-template-columns: 1fr;
  }

  .feature-row.reverse .image-slot {
    order: 0;
  }

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

  .contact-card {
    position: static;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .header-inner {
    min-height: 74px;
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand small {
    max-width: 150px;
  }

  .site-nav {
    top: 74px;
    max-height: calc(100vh - 74px);
  }

  .section-pad {
    padding: 62px 0;
  }

  h1 {
    font-size: clamp(2.55rem, 16vw, 4.8rem);
  }

  h2 {
    font-size: clamp(1.85rem, 10vw, 3rem);
  }

  .image-slot.large,
  .image-slot.portrait,
  .page-hero-image,
  .feature-image,
  .event-panel-image {
    min-height: 340px;
  }

  .service-grid,
  .tile-grid,
  .process-grid,
  .footer-grid,
  .form-grid,
  .choice-grid,
  .color-choice-grid,
  .teaser-option-grid,
  .palette-choice-grid,
  .media-choice-grid,
  .media-choice-grid.small-media,
  .builder-step-nav {
    grid-template-columns: 1fr;
  }

  .event-type-strip {
    margin-top: -24px;
    padding-bottom: 24px;
  }

  .builder-step {
    padding: 20px;
  }

  .step-heading {
    grid-template-columns: 1fr;
  }

  .step-number {
    width: auto;
    height: auto;
    min-height: 42px;
    padding: 0 12px;
    border-radius: 4px;
    place-self: start;
  }

  .builder-picker > summary {
    padding: 16px;
  }

  .builder-picker > summary strong {
    grid-column: 1 / -1;
    justify-self: start;
    max-width: 100%;
  }

  .builder-picker > summary::after {
    grid-column: 2;
    grid-row: 1;
  }

  .option-scroll {
    grid-auto-columns: minmax(238px, 82vw);
    padding: 0 16px 18px;
    scroll-padding-inline: 16px;
  }

  .picker-card.media-choice {
    min-height: 390px;
  }

  .addon-builder-group {
    padding-inline: 16px;
  }

  .media-choice .card-image,
  .small-media .card-image {
    min-height: 220px;
  }

  .palette-board {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 130px;
    min-height: 0;
  }

  .palette-card.main {
    grid-row: span 1;
  }

  .summary-list div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }

  .gallery-item.tall,
  .gallery-item.wide {
    grid-row: auto;
    grid-column: auto;
  }
}
