:root {
  --paper: #f7f2e8;
  --paper-deep: #ede1cf;
  --paper-highlight: rgba(255, 251, 245, 0.8);
  --ink: #1d1711;
  --ink-soft: #685d52;
  --accent: #385d56;
  --accent-deep: #233c37;
  --accent-soft: rgba(56, 93, 86, 0.12);
  --espresso: #2a2119;
  --shell: rgba(255, 250, 244, 0.72);
  --shell-strong: rgba(255, 253, 249, 0.92);
  --line: rgba(78, 56, 39, 0.1);
  --line-strong: rgba(78, 56, 39, 0.18);
  --shadow-ambient: 0 34px 90px rgba(72, 47, 25, 0.08);
  --shadow-soft: 0 22px 54px rgba(72, 47, 25, 0.06);
  --radius-xl: 2rem;
  --radius-lg: 1.65rem;
  --radius-md: 1.2rem;
  --radius-sm: 0.95rem;
  --card-gap: 0.85rem;
  --container: min(1180px, calc(100vw - 2rem));
  --ease-fluid: cubic-bezier(0.32, 0.72, 0, 1);
  --ease-swift: cubic-bezier(0.22, 1, 0.36, 1);
  --z-nav: 20;
  --z-overlay: 30;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 8%, rgba(56, 93, 86, 0.14), transparent 30%),
    radial-gradient(circle at 90% 0%, rgba(199, 167, 132, 0.24), transparent 30%),
    linear-gradient(180deg, #fbf7f1 0%, var(--paper) 42%, #f6efe5 100%);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body::before {
  z-index: 1;
  opacity: 0.22;
  background:
    radial-gradient(circle at 15% 18%, rgba(255, 255, 255, 0.55), transparent 18%),
    radial-gradient(circle at 82% 24%, rgba(56, 93, 86, 0.1), transparent 22%),
    radial-gradient(circle at 55% 75%, rgba(141, 111, 80, 0.08), transparent 24%);
}

body::after {
  z-index: 2;
  opacity: 0.045;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.9) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.9) 1px, transparent 1px);
  background-size: 4px 4px;
  mix-blend-mode: multiply;
}

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

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

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

button {
  cursor: pointer;
}

.site-shell {
  position: relative;
  z-index: 3;
  min-height: 100vh;
  overflow: clip;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-nav);
  background: transparent;
  padding-top: 1rem;
  transition: padding 0.8s var(--ease-fluid);
}

.nav-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.75rem;
  padding: 0.55rem 0.65rem 0.55rem 1rem;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 251, 247, 0.64)),
    var(--shell-strong);
  border: 1px solid rgba(126, 97, 70, 0.11);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    inset 0 -1px 0 rgba(104, 93, 82, 0.06),
    0 18px 44px rgba(73, 53, 35, 0.08);
  backdrop-filter: blur(26px);
  transition:
    transform 0.9s var(--ease-fluid),
    background 0.9s var(--ease-fluid),
    box-shadow 0.9s var(--ease-fluid);
}

.site-header.is-scrolled .nav-wrap {
  transform: translateY(-0.15rem) scale(0.99);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 251, 247, 0.72)),
    var(--shell-strong);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    inset 0 -1px 0 rgba(104, 93, 82, 0.08),
    0 26px 64px rgba(73, 53, 35, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
  min-width: 0;
  flex-shrink: 0;
}

.brand-logo-shell {
  display: block;
  width: clamp(9.75rem, 17vw, 13rem);
  padding: 0.28rem;
  border-radius: 1.35rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(246, 238, 229, 0.78)),
    var(--shell-strong);
  border: 1px solid rgba(126, 97, 70, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -1px 0 rgba(104, 93, 82, 0.05),
    0 12px 28px rgba(35, 27, 22, 0.08);
}

.brand-logo {
  width: 100%;
  height: auto;
  border-radius: 1.08rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-nav a:not(.button) {
  position: relative;
  padding: 0.35rem 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
  transition:
    color 0.8s var(--ease-fluid),
    transform 0.8s var(--ease-fluid),
    opacity 0.8s var(--ease-fluid);
}

.site-nav a:not(.button):hover,
.site-nav a:not(.button):focus-visible,
.site-nav a.is-current:not(.button) {
  color: var(--ink);
}

.site-nav a.is-current:not(.button)::after,
.site-nav a:not(.button):hover::after,
.site-nav a:not(.button):focus-visible::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.1rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(35, 60, 55, 0), rgba(35, 60, 55, 0.88), rgba(35, 60, 55, 0));
}

.menu-toggle {
  position: relative;
  display: none;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(252, 246, 239, 0.84)),
    var(--shell-strong);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    0 10px 24px rgba(52, 39, 28, 0.08);
}

.menu-toggle span {
  position: absolute;
  left: 50%;
  width: 1rem;
  height: 1.5px;
  border-radius: 999px;
  background: var(--ink);
  transform-origin: center;
  transition:
    transform 0.7s var(--ease-fluid),
    opacity 0.5s var(--ease-fluid);
}

.menu-toggle span:first-child {
  transform: translate(-50%, -4px);
}

.menu-toggle span:last-child {
  transform: translate(-50%, 4px);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  min-height: 3.65rem;
  padding: 0.35rem 0.35rem 0.35rem 1.2rem;
  border: 0;
  border-radius: 999px;
  background:
    linear-gradient(145deg, rgba(42, 33, 25, 0.94), rgba(56, 93, 86, 0.92));
  color: #fbf7f1;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 24px 42px rgba(50, 37, 27, 0.16);
  transition:
    transform 0.8s var(--ease-fluid),
    box-shadow 0.8s var(--ease-fluid),
    background 0.8s var(--ease-fluid);
  will-change: transform;
}

.button:hover,
.button:focus-visible {
  transform: translate3d(0, -3px, 0);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 30px 54px rgba(50, 37, 27, 0.18);
}

.button:active {
  transform: scale(0.98);
}

.button-label {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  white-space: normal;
}

.button-orb {
  display: inline-grid;
  place-items: center;
  width: 2.55rem;
  height: 2.55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
  transition:
    transform 0.8s var(--ease-fluid),
    background 0.8s var(--ease-fluid);
}

.button-orb span {
  transform: translateY(-0.02rem);
}

.button:hover .button-orb,
.button:focus-visible .button-orb {
  transform: translate3d(4px, -2px, 0) scale(1.05);
  background: rgba(255, 255, 255, 0.2);
}

.button-secondary {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(250, 244, 236, 0.82)),
    var(--shell-strong);
  color: var(--ink);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    inset 0 -1px 0 rgba(104, 93, 82, 0.05),
    0 18px 36px rgba(50, 37, 27, 0.08);
}

.button-secondary .button-orb {
  background: rgba(35, 60, 55, 0.08);
  border-color: rgba(35, 60, 55, 0.08);
}

.button-secondary:hover .button-orb,
.button-secondary:focus-visible .button-orb {
  background: rgba(35, 60, 55, 0.14);
}

.button-small {
  min-height: 3rem;
  padding-left: 1rem;
}

.button-small .button-orb {
  width: 2rem;
  height: 2rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.42rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid rgba(69, 52, 37, 0.08);
  color: var(--accent-deep);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.64rem;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.68);
}

.eyebrow + h1,
.eyebrow + h2,
.eyebrow + h3 {
  margin-top: 0.45rem;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 0.96;
  font-weight: 600;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.65rem);
  width: 100%;
  max-width: none;
  text-wrap: pretty;
}

h2 {
  font-size: clamp(1.25rem, 2.5vw, 2.175rem);
  width: 100%;
  max-width: none;
  text-wrap: pretty;
  margin-bottom: 0.3rem;
}

h3 {
  font-size: 1.7rem;
}

p {
  margin: 0;
}

.lede,
.section-heading p:not(.eyebrow),
.showcase-copy p:not(.eyebrow),
.feature-copy p:not(.eyebrow),
.story-panel p:not(.eyebrow),
.detail-panel p:not(.eyebrow),
.contact-card p:not(.eyebrow),
.faq-item p,
.footer-note {
  color: var(--ink-soft);
}

.lede {
  max-width: 60ch;
  font-size: 1.05rem;
}

.hero-section {
  padding: 2rem 0 3rem;
}

.page-hero {
  padding: 4.5rem 0 3.5rem;
}

.page-hero-compact {
  padding-bottom: 0.85rem;
}

.page-hero-compact .page-hero-grid {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.35rem;
}

.hero-grid,
.page-hero-grid {
  display: grid;
  align-items: start;
  gap: 2.25rem;
}

.hero-grid {
  grid-template-columns: 1.05fr 0.95fr;
  min-height: auto;
}

.page-hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(22rem, 0.9fr);
}

.hero-copy,
.section-heading,
.feature-copy,
.story-panel,
.showcase-copy {
  display: grid;
  gap: 1.35rem;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-points span {
  display: inline-flex;
  align-items: center;
  min-height: 2.6rem;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(69, 52, 37, 0.08);
  color: var(--ink-soft);
  font-size: 0.9rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.68);
}

.hero-media {
  display: grid;
  gap: var(--card-gap);
  grid-template-columns: 1.08fr 0.92fr;
  grid-template-rows: repeat(2, minmax(14rem, auto));
  align-items: stretch;
}

.media-card,
.page-hero-card,
.service-card,
.showcase-image,
.feature-image {
  position: relative;
  overflow: hidden;
  padding: 0.32rem;
  border-radius: calc(var(--radius-xl) + 0.15rem);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(247, 240, 232, 0.68)),
    var(--shell-strong);
  border: 1px solid rgba(109, 82, 58, 0.09);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    inset 0 -1px 0 rgba(109, 82, 58, 0.05),
    var(--shadow-ambient);
}

.media-card img,
.page-hero-card img,
.service-card img,
.showcase-image img,
.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(var(--radius-xl) - 0.18rem);
}

.media-card::after,
.service-card::after,
.showcase-image::after,
.feature-image::after,
.page-hero-card::after {
  content: "";
  position: absolute;
  inset: auto 0.32rem 0.32rem;
  height: 42%;
  border-radius: 0 0 calc(var(--radius-xl) - 0.18rem) calc(var(--radius-xl) - 0.18rem);
  background: linear-gradient(180deg, rgba(17, 12, 8, 0), rgba(17, 12, 8, 0.56));
  pointer-events: none;
}

.media-card-tall {
  grid-row: 1 / 3;
}

.media-card-accent {
  transform: translateY(1rem);
}

.media-label {
  position: absolute;
  inset: auto 1.45rem 1.35rem;
  z-index: 1;
  display: grid;
  gap: 0.18rem;
  color: #fff7ef;
}

.media-label span {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  opacity: 0.82;
}

.section {
  padding: 7rem 0;
}

.services-page {
  --card-gap: 0.55rem;
}

.services-page .section {
  padding-bottom: 4rem;
}

.services-page .section + .section {
  padding-top: 1.75rem;
}

.services-page .section-tight {
  padding-top: 1rem;
}

.services-page .detail-panel h2 {
  font-size: clamp(1.25rem, 2.5vw, 2.175rem);
  line-height: 0.96;
}

.services-page .cta-panel h2 {
  font-size: clamp(1.25rem, 2.5vw, 2.175rem);
  line-height: 0.96;
}

.home-page .section {
  padding: 4.25rem 0;
}

.home-page .section-tight {
  padding-top: 1rem;
}

.home-page .section-ink {
  padding: 4.5rem 0;
}

.home-page .process-layout,
.home-page .showcase-grid {
  gap: 1.35rem;
}

.contact-page .page-hero-grid > div:first-child {
  display: grid;
  gap: 1rem;
}

.page-hero-service-lists {
  display: grid;
  gap: 0.65rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1rem;
}

.page-hero-service-list {
  padding: 0.85rem 0.95rem;
  border-radius: 1.1rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(249, 242, 234, 0.62)),
    var(--shell-strong);
  border: 1px solid rgba(109, 82, 58, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    inset 0 -1px 0 rgba(109, 82, 58, 0.04),
    0 14px 26px rgba(72, 47, 25, 0.05);
}

.page-hero-service-title {
  margin-bottom: 0.45rem;
  color: var(--accent-deep);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.page-hero-service-list .clean-list {
  gap: 0.32rem;
  padding-left: 1rem;
  color: var(--ink-soft);
  font-size: 0.84rem;
  line-height: 1.35;
}

.contact-page .page-hero-card-compact {
  width: min(100%, 20rem);
}

.section-tight {
  padding-top: 1.5rem;
}

.section-compact-top {
  padding-top: 0.2rem;
}

.section-soft {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.18));
}

.section-ink {
  color: #f8f1e8;
  background:
    radial-gradient(circle at top right, rgba(94, 133, 122, 0.22), transparent 28%),
    radial-gradient(circle at 12% 0%, rgba(212, 180, 140, 0.12), transparent 24%),
    linear-gradient(180deg, #1f1813 0%, #140f0c 100%);
}

.section-ink .eyebrow {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.08);
  color: rgba(248, 241, 232, 0.82);
}

.section-ink p,
.section-ink .clean-list {
  color: rgba(248, 241, 232, 0.74);
}

.section-ink .service-card,
.section-ink .cta-panel-light {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -1px 0 rgba(255, 255, 255, 0.04),
    0 34px 90px rgba(0, 0, 0, 0.28);
}

.section-ink .button-secondary {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.08)),
    rgba(255, 255, 255, 0.1);
  color: #fff5eb;
}

.centered {
  justify-items: center;
  text-align: center;
}

.split-section,
.process-layout,
.showcase-grid,
.split-feature,
.contact-layout,
.about-story {
  display: grid;
  gap: 2rem;
}

.split-section {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
}

.value-grid {
  display: grid;
  gap: var(--card-gap);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.value-card,
.stat-card,
.detail-panel,
.story-panel,
.contact-card,
.form-panel,
.timeline-item,
.faq-item,
.checklist-panel,
.cta-panel,
.cta-panel-light {
  position: relative;
  overflow: hidden;
  padding: 1.65rem;
  border-radius: calc(var(--radius-lg) + 0.1rem);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(249, 242, 234, 0.66)),
    var(--shell-strong);
  border: 1px solid rgba(109, 82, 58, 0.09);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    inset 0 -1px 0 rgba(109, 82, 58, 0.05),
    var(--shadow-soft);
}

.value-card::before,
.stat-card::before,
.detail-panel::before,
.story-panel::before,
.contact-card::before,
.form-panel::before,
.timeline-item::before,
.faq-item::before,
.checklist-panel::before,
.cta-panel::before,
.cta-panel-light::before {
  content: "";
  position: absolute;
  inset: 0.45rem;
  border-radius: calc(var(--radius-lg) - 0.3rem);
  border: 1px solid rgba(255, 255, 255, 0.52);
  pointer-events: none;
}

.value-index,
.stat-title,
.footer-heading {
  font-weight: 700;
}

.value-index {
  color: var(--accent);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.stat-row {
  display: grid;
  gap: var(--card-gap);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stat-card:nth-child(2),
.value-card:nth-child(2) {
  transform: translateY(0.65rem);
}

.stat-title {
  margin-bottom: 0.6rem;
  color: var(--accent-deep);
}

.service-grid:not(.service-grid-expanded) {
  display: grid;
  gap: var(--card-gap);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: minmax(15rem, auto);
  align-items: stretch;
}

.service-grid.service-grid-expanded {
  display: grid;
  gap: var(--card-gap);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: auto;
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: auto;
  padding: 0.32rem;
}

.service-card img {
  flex: 0 0 8.5rem;
  height: 8.5rem;
}

.service-card::after {
  display: none;
}

.service-card > div {
  position: static;
  inset: auto;
  display: grid;
  gap: 0.45rem;
  max-width: none;
  padding: 1rem 0.25rem 0.2rem;
  color: #fff5eb;
}

.service-card p {
  color: rgba(255, 245, 235, 0.84);
}

.service-grid.service-grid-expanded .service-card {
  min-height: auto;
}

.service-grid.service-grid-expanded .service-card img {
  flex: 0 0 7.75rem;
  height: 7.75rem;
}

.service-grid.service-grid-expanded .service-card::after {
  display: none;
}

.service-grid.service-grid-expanded .service-card > div {
  color: var(--ink);
}

.service-grid.service-grid-expanded .service-card p {
  color: var(--ink-soft);
}

.service-grid:not(.service-grid-expanded) .service-card {
  min-height: auto;
}

.timeline {
  display: grid;
  gap: var(--card-gap);
}

.timeline-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
}

.timeline-item span {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  background: rgba(56, 93, 86, 0.1);
  border: 1px solid rgba(56, 93, 86, 0.08);
  color: var(--accent-deep);
  font-weight: 800;
}

.showcase-grid {
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-items: center;
}

.showcase-grid-gallery {
  align-items: start;
}

.showcase-image,
.feature-image,
.page-hero-card {
  min-height: 18rem;
  max-width: 28rem;
  width: 100%;
  justify-self: end;
}

.work-gallery {
  display: grid;
  gap: 1rem;
  width: 100%;
  max-width: 42rem;
  justify-self: end;
}

.work-gallery-stage {
  position: relative;
  overflow: hidden;
  padding: 0.32rem;
  border-radius: calc(var(--radius-xl) + 0.15rem);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(247, 240, 232, 0.68)),
    var(--shell-strong);
  border: 1px solid rgba(109, 82, 58, 0.09);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    inset 0 -1px 0 rgba(109, 82, 58, 0.05),
    var(--shadow-ambient);
}

.work-gallery-stage::before {
  content: "";
  position: absolute;
  inset: 0.32rem;
  border-radius: calc(var(--radius-xl) - 0.18rem);
  background:
    linear-gradient(180deg, rgba(18, 13, 10, 0.06), rgba(18, 13, 10, 0.14)),
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(17, 12, 8, 0.5));
  pointer-events: none;
}

.work-gallery-frame {
  position: relative;
  min-height: 30rem;
  aspect-ratio: 1.02;
  overflow: hidden;
  border-radius: calc(var(--radius-xl) - 0.18rem);
  background: rgba(24, 18, 14, 0.14);
}

.work-gallery-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.03);
  transition:
    opacity 0.8s var(--ease-fluid),
    transform 1.1s var(--ease-fluid);
}

.work-gallery-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.work-gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.work-gallery-caption {
  position: absolute;
  inset: auto 1.35rem 1.35rem;
  z-index: 1;
  display: grid;
  gap: 0.18rem;
  max-width: min(24rem, calc(100% - 2.7rem));
  color: #fff7ef;
}

.work-gallery-caption span {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.8;
}

.work-gallery-caption strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.5rem, 2.3vw, 2.1rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.work-gallery-toolbar {
  position: absolute;
  inset: 1.1rem 1.1rem auto;
  z-index: 2;
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
}

.work-gallery-status {
  display: grid;
  gap: 0.1rem;
  max-width: 17rem;
  padding: 0.8rem 0.95rem;
  border-radius: 1.1rem;
  background: rgba(255, 248, 240, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 18px 32px rgba(19, 13, 10, 0.18);
}

.work-gallery-counter,
.work-gallery-helper {
  color: #fff7ef;
}

.work-gallery-counter {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.work-gallery-helper {
  font-size: 0.82rem;
  line-height: 1.35;
  opacity: 0.78;
}

.work-gallery-controls {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.gallery-control {
  display: inline-grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 248, 240, 0.16);
  color: #fff7ef;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 18px 32px rgba(19, 13, 10, 0.18);
  transition:
    transform 0.6s var(--ease-fluid),
    background 0.6s var(--ease-fluid),
    border-color 0.6s var(--ease-fluid);
}

.gallery-control:hover,
.gallery-control:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 248, 240, 0.24);
  border-color: rgba(255, 255, 255, 0.24);
}

.compare-layout {
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
}

.compare-card,
.service-gallery-card {
  position: relative;
  overflow: hidden;
  padding: 0.9rem;
  border-radius: calc(var(--radius-xl) + 0.1rem);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(249, 242, 234, 0.66)),
    var(--shell-strong);
  border: 1px solid rgba(109, 82, 58, 0.09);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    inset 0 -1px 0 rgba(109, 82, 58, 0.05),
    var(--shadow-soft);
}

.compare-stage {
  --split: 56%;
  position: relative;
  min-height: 30rem;
  overflow: hidden;
  border-radius: calc(var(--radius-xl) - 0.2rem);
  background: rgba(24, 18, 14, 0.14);
}

.compare-stage::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 36%;
  background: linear-gradient(180deg, rgba(17, 12, 8, 0), rgba(17, 12, 8, 0.46));
  pointer-events: none;
}

.compare-image,
.compare-image-after-wrap {
  position: absolute;
  inset: 0;
}

.compare-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.compare-image-after-wrap {
  clip-path: inset(0 0 0 var(--split));
}

.compare-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--split);
  z-index: 2;
  width: 1px;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 0 0 1px rgba(17, 12, 8, 0.08);
}

.compare-divider span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(248, 240, 233, 0.82)),
    var(--shell-strong);
  border: 1px solid rgba(109, 82, 58, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    0 18px 32px rgba(17, 12, 8, 0.16);
  transform: translate(-50%, -50%);
}

.compare-divider span::before {
  content: "< >";
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--accent-deep);
}

.compare-chip {
  position: absolute;
  top: 1rem;
  z-index: 2;
  margin: 0;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 248, 240, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff7ef;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 18px 32px rgba(19, 13, 10, 0.18);
}

.compare-chip-before {
  left: 1rem;
}

.compare-chip-after {
  right: 1rem;
}

.compare-range {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: ew-resize;
  opacity: 0;
}

.compare-summary {
  display: grid;
  gap: 0.35rem;
  padding: 1rem 0.15rem 0.2rem;
}

.compare-title,
.service-gallery-label {
  color: var(--accent-deep);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.gallery-strip {
  display: grid;
  gap: var(--card-gap);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: minmax(10rem, 12rem);
}

.gallery-strip-item {
  position: relative;
  overflow: hidden;
  padding: 0.32rem;
  border: 0;
  border-radius: calc(var(--radius-lg) + 0.1rem);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(247, 240, 232, 0.68)),
    var(--shell-strong);
  border: 1px solid rgba(109, 82, 58, 0.09);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    inset 0 -1px 0 rgba(109, 82, 58, 0.05),
    var(--shadow-soft);
  transition:
    transform 0.7s var(--ease-fluid),
    box-shadow 0.7s var(--ease-fluid);
}

.gallery-strip-item:hover,
.gallery-strip-item:focus-visible {
  transform: translateY(-4px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    inset 0 -1px 0 rgba(109, 82, 58, 0.05),
    0 26px 44px rgba(72, 47, 25, 0.12);
}

.gallery-strip-item::after {
  content: "";
  position: absolute;
  inset: auto 0.32rem 0.32rem;
  height: 45%;
  border-radius: 0 0 calc(var(--radius-lg) - 0.16rem) calc(var(--radius-lg) - 0.16rem);
  background: linear-gradient(180deg, rgba(17, 12, 8, 0), rgba(17, 12, 8, 0.56));
  pointer-events: none;
}

.gallery-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(var(--radius-lg) - 0.16rem);
}

.gallery-strip-item span {
  position: absolute;
  inset: auto 1.1rem 1rem;
  z-index: 1;
  color: #fff7ef;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.gallery-strip-item-large {
  grid-column: span 2;
  grid-row: span 2;
}

.service-gallery-grid {
  display: grid;
  gap: var(--card-gap);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-gallery-grid-services {
  margin-top: 1.5rem;
}

.service-gallery-card {
  display: grid;
  gap: 1rem;
  padding: 1.2rem;
}

.service-gallery-copy {
  display: grid;
  gap: 0.55rem;
}

.service-gallery-copy h3 {
  font-size: 1.65rem;
}

.service-gallery-media {
  display: grid;
  gap: 0.7rem;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: repeat(2, minmax(7.5rem, auto));
}

.service-gallery-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.15rem;
  background: rgba(24, 18, 14, 0.08);
}

.service-gallery-tile {
  position: relative;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 1.15rem;
  background: rgba(24, 18, 14, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 14px 24px rgba(72, 47, 25, 0.08);
  transition:
    transform 0.6s var(--ease-fluid),
    box-shadow 0.6s var(--ease-fluid);
}

.service-gallery-tile:hover,
.service-gallery-tile:focus-visible {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 18px 30px rgba(72, 47, 25, 0.1);
}

.service-gallery-tile::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 48%;
  background: linear-gradient(180deg, rgba(17, 12, 8, 0), rgba(17, 12, 8, 0.52));
  pointer-events: none;
}

.service-gallery-tile img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.service-gallery-tile span {
  position: absolute;
  inset: auto 0.9rem 0.8rem;
  z-index: 1;
  color: #fff7ef;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.2;
}

.service-gallery-tile-tall {
  grid-row: 1 / 3;
  min-height: 16rem;
}

body.lightbox-open {
  overflow: hidden;
}

.lightbox[hidden] {
  display: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 13, 10, 0.76);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.lightbox-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  width: min(1100px, 100%);
}

.lightbox-figure {
  margin: 0;
  padding: 0.38rem;
  border-radius: calc(var(--radius-xl) + 0.15rem);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06)),
    rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 24px 64px rgba(0, 0, 0, 0.28);
}

.lightbox-image {
  display: block;
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: calc(var(--radius-xl) - 0.18rem);
  background: rgba(17, 13, 10, 0.3);
}

.lightbox-caption {
  padding: 0.9rem 0.45rem 0.2rem;
  color: #fff7ef;
  font-weight: 600;
  line-height: 1.4;
}

.lightbox-close,
.lightbox-nav {
  display: inline-grid;
  place-items: center;
  width: 3.2rem;
  height: 3.2rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 248, 240, 0.14);
  color: #fff7ef;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 18px 32px rgba(0, 0, 0, 0.24);
  transition:
    transform 0.6s var(--ease-fluid),
    background 0.6s var(--ease-fluid);
}

.lightbox-close:hover,
.lightbox-close:focus-visible,
.lightbox-nav:hover,
.lightbox-nav:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 248, 240, 0.22);
}

.lightbox-close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  z-index: 2;
}

.page-hero-card-compact,
.page-hero-card-services,
.page-hero-card-contact {
  min-height: 0;
  width: min(100%, 22rem);
  max-width: 22rem;
  aspect-ratio: 0.9;
  justify-self: end;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  color: var(--accent-deep);
}

.text-link::after {
  content: "->";
  transition: transform 0.8s var(--ease-fluid);
}

.text-link:hover::after,
.text-link:focus-visible::after {
  transform: translateX(4px);
}

.cta-panel,
.cta-panel-light {
  display: grid;
  align-items: center;
  gap: 1.5rem;
  grid-template-columns: minmax(0, 1fr) auto;
}

.checklist-panel,
.service-detail-grid {
  display: grid;
  gap: var(--card-gap);
}

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

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

.detail-panel h2,
.story-panel h2,
.contact-card h2 {
  max-width: none;
  font-size: clamp(2.05rem, 3vw, 3rem);
}

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

.about-page .story-panel h2 {
  font-size: clamp(1.25rem, 2.5vw, 2.175rem);
}

.story-panel-offset {
  transform: translateY(1.5rem);
}

.split-feature {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
}

.contact-layout {
  grid-template-columns: minmax(17rem, 0.8fr) minmax(0, 1.2fr);
  align-items: start;
}

.contact-sidebar {
  display: grid;
  gap: var(--card-gap);
}

.contact-info-stack {
  display: grid;
  gap: 0.75rem;
}

.contact-info-item {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.9rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(93, 72, 53, 0.1);
}

.contact-info-item:first-child {
  padding-top: 0;
  border-top: 0;
}

.contact-info-icon {
  display: inline-grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-top: 0.15rem;
  border-radius: 0.9rem;
  background: rgba(56, 93, 86, 0.1);
  border: 1px solid rgba(56, 93, 86, 0.12);
  color: var(--accent-deep);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.contact-info-icon svg {
  width: 1.1rem;
  height: 1.1rem;
  fill: currentColor;
}

.contact-info-body {
  display: grid;
  gap: 0.3rem;
}

.contact-info-item h2 {
  font-size: clamp(1.2rem, 1.7vw, 1.6rem);
  line-height: 1.02;
}

.contact-info-item h2,
.contact-info-item a,
.site-footer a {
  overflow-wrap: anywhere;
}

.contact-info-item p:not(.contact-label) {
  font-size: 0.92rem;
}

.contact-address {
  display: grid;
  gap: 0.2rem;
  margin: 0;
  font-style: normal;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--ink);
}

.contact-label {
  color: var(--accent-deep);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-form {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-form label {
  display: grid;
  gap: 0.55rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 1rem 1.05rem;
  border: 1px solid rgba(93, 72, 53, 0.1);
  border-radius: 1.1rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(250, 244, 236, 0.86)),
    var(--shell-strong);
  color: var(--ink);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    inset 0 -1px 0 rgba(109, 82, 58, 0.04);
  outline: none;
  transition:
    transform 0.8s var(--ease-fluid),
    border-color 0.8s var(--ease-fluid),
    box-shadow 0.8s var(--ease-fluid);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  transform: translateY(-1px);
  border-color: rgba(56, 93, 86, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    0 0 0 4px rgba(56, 93, 86, 0.08);
}

.full-span {
  grid-column: 1 / -1;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.form-note {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.form-status {
  min-height: 1.5rem;
  color: var(--accent-deep);
  font-weight: 700;
}

.faq-layout {
  display: grid;
  gap: var(--card-gap);
}

.faq-item summary {
  position: relative;
  cursor: pointer;
  list-style: none;
  padding-right: 2rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: -0.15rem;
  color: var(--accent);
  font-size: 1.4rem;
  transition: transform 0.8s var(--ease-fluid);
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  margin-top: 0.95rem;
}

.clean-list {
  display: grid;
  gap: 0.6rem;
  margin: 0;
  padding-left: 1.15rem;
}

.site-footer {
  padding: 3.5rem 0 3rem;
  border-top: 1px solid rgba(93, 72, 53, 0.08);
}

.footer-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1.2fr 0.7fr 0.8fr;
}

.site-footer a,
.site-footer p {
  color: var(--ink-soft);
}

.floating-facebook-link {
  position: fixed;
  right: max(1rem, calc(0.8rem + env(safe-area-inset-right, 0px)));
  bottom: max(1rem, calc(0.9rem + env(safe-area-inset-bottom, 0px)));
  z-index: 18;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.55rem 0.95rem 0.55rem 0.55rem;
  border-radius: 999px;
  background:
    linear-gradient(145deg, rgba(42, 33, 25, 0.94), rgba(56, 93, 86, 0.92));
  color: #fff8f1;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 18px 34px rgba(40, 28, 20, 0.2);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition:
    transform 0.5s var(--ease-fluid),
    box-shadow 0.5s var(--ease-fluid),
    background 0.5s var(--ease-fluid);
}

.floating-facebook-link:hover,
.floating-facebook-link:focus-visible {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 24px 44px rgba(40, 28, 20, 0.24);
}

.floating-facebook-icon {
  display: inline-grid;
  place-items: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.floating-facebook-icon svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}

.floating-facebook-label {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
}

@media (min-width: 781px) {
  .button {
    gap: 0.72rem;
    min-height: 3.2rem;
    padding: 0.28rem 0.28rem 0.28rem 1rem;
  }

  .button-label {
    font-size: 0.88rem;
  }

  .button-orb {
    width: 2.2rem;
    height: 2.2rem;
  }

  .button-small {
    min-height: 2.7rem;
    padding-left: 0.9rem;
  }

  .button-small .button-orb {
    width: 1.85rem;
    height: 1.85rem;
  }

  .floating-facebook-link {
    gap: 0.6rem;
    padding: 0.48rem 0.82rem 0.48rem 0.48rem;
  }

  .floating-facebook-icon {
    width: 2rem;
    height: 2rem;
  }

  .floating-facebook-label {
    font-size: 0.88rem;
  }
}

.footer-grid > div {
  display: grid;
  gap: 0.6rem;
  align-content: start;
}

.brand-footer {
  margin-bottom: 0.25rem;
}

.brand-footer .brand-logo-shell {
  width: clamp(11rem, 20vw, 15rem);
}

.footer-heading {
  color: var(--ink);
}

[data-reveal] {
  opacity: 0;
  filter: blur(10px);
  transform: translate3d(0, 3rem, 0);
  transition:
    opacity 0.95s var(--ease-fluid),
    filter 0.95s var(--ease-fluid),
    transform 0.95s var(--ease-fluid);
}

[data-reveal].is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0);
}

@media (max-width: 1040px) {
  .hero-grid,
  .page-hero-compact .page-hero-grid,
  .page-hero-grid,
  .split-section,
  .showcase-grid,
  .compare-layout,
  .split-feature,
  .contact-layout,
  .about-story,
  .footer-grid,
  .service-detail-grid,
  .value-grid,
  .stat-row,
  .checklist-panel,
  .service-gallery-grid,
  .service-grid.service-grid-expanded {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
  }

  .page-hero-service-lists {
    grid-template-columns: 1fr;
  }

  .hero-media {
    grid-template-columns: 1fr 1fr;
  }

  .media-card-tall {
    grid-row: auto;
    min-height: 26rem;
  }

  .media-card-accent,
  .story-panel-offset,
  .stat-card:nth-child(2),
  .value-card:nth-child(2) {
    transform: none;
  }

  .service-grid:not(.service-grid-expanded) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: auto;
  }

  .service-grid:not(.service-grid-expanded) .service-card:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
  }

  .cta-panel,
  .cta-panel-light {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  .site-header {
    padding-top: 0.85rem;
  }

  .nav-wrap {
    min-height: 4.2rem;
    padding: 0.5rem 0.6rem 0.5rem 0.85rem;
  }

  .brand-logo-shell {
    width: clamp(8.8rem, 34vw, 10.6rem);
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
    z-index: calc(var(--z-overlay) + 1);
  }

  .site-nav {
    position: fixed;
    inset: 0.55rem;
    z-index: var(--z-overlay);
    display: grid;
    align-content: start;
    justify-items: stretch;
    gap: 0.55rem;
    min-height: calc(100dvh - 1.1rem);
    overflow-y: auto;
    overscroll-behavior: contain;
    padding:
      calc(4.9rem + env(safe-area-inset-top, 0px))
      1rem
      calc(1rem + env(safe-area-inset-bottom, 0px));
    border-radius: 2rem;
    background:
      linear-gradient(180deg, rgba(20, 15, 12, 0.82), rgba(17, 13, 10, 0.76)),
      rgba(17, 13, 10, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.05),
      0 24px 70px rgba(15, 10, 8, 0.22);
    backdrop-filter: blur(18px) saturate(0.92);
    -webkit-backdrop-filter: blur(18px) saturate(0.92);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.75s var(--ease-fluid);
  }

  .site-nav a {
    width: min(18rem, 100%);
    text-align: center;
    justify-self: center;
  }

  .site-nav a:not(.button) {
    color: #fff8f1;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(1.45rem, 7vw, 1.95rem);
    letter-spacing: -0.03em;
    line-height: 1;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    text-shadow:
      0 1px 0 rgba(0, 0, 0, 0.22),
      0 8px 24px rgba(0, 0, 0, 0.2);
    transform: translate3d(0, 2rem, 0);
    opacity: 0;
  }

  .site-nav a.is-current:not(.button) {
    color: #fffdf9;
    background: rgba(255, 251, 245, 0.12);
    border: 1px solid rgba(255, 251, 245, 0.18);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.12),
      0 10px 28px rgba(0, 0, 0, 0.16);
    text-shadow: none;
  }

  .site-nav a:not(.button)::after {
    display: none;
  }

  .site-nav a.button {
    width: min(18rem, 100%);
    min-height: 3.25rem;
    transform: translate3d(0, 2rem, 0);
    opacity: 0;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav.is-open a {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }

  .site-nav.is-open a:nth-child(1) { transition-delay: 80ms; }
  .site-nav.is-open a:nth-child(2) { transition-delay: 120ms; }
  .site-nav.is-open a:nth-child(3) { transition-delay: 160ms; }
  .site-nav.is-open a:nth-child(4) { transition-delay: 200ms; }
  .site-nav.is-open a:nth-child(5) { transition-delay: 240ms; }
  .site-nav.is-open a:nth-child(6) { transition-delay: 280ms; }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translate(-50%, 0) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translate(-50%, 0) rotate(-45deg);
  }

  body.menu-open {
    overflow: hidden;
  }

  h1 {
    font-size: clamp(1.6rem, 7vw, 2.3rem);
  }

  h2 {
    font-size: clamp(1.75rem, 8vw, 2.35rem);
  }

  .hero-section,
  .page-hero,
  .section {
    padding: 4.5rem 0;
  }

  .hero-section {
    padding: 1.25rem 0 2.5rem;
  }

  .page-hero {
    padding: 3.5rem 0 3rem;
  }

  .page-hero-compact {
    padding-bottom: 0.5rem;
  }

  .page-hero-compact .page-hero-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .hero-media,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .cta-actions,
  .form-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button,
  .button-small {
    width: 100%;
  }

  .page-hero-card,
  .showcase-image,
  .work-gallery,
  .feature-image,
  .media-card {
    min-height: 12rem;
    max-width: none;
    justify-self: stretch;
  }

  .work-gallery-frame {
    min-height: 24rem;
  }

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

  .page-hero-card-compact,
  .page-hero-card-services,
  .page-hero-card-contact {
    min-height: 0;
    max-width: none;
    aspect-ratio: 1;
    width: 100%;
    justify-self: stretch;
  }

  .media-card-tall {
    min-height: 18rem;
  }

  .service-card {
    min-height: auto;
  }

  .service-card img {
    flex-basis: 6.75rem;
    height: 6.75rem;
  }

  .hero-points {
    flex-direction: column;
  }

  .hero-points span {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .value-card,
  .stat-card,
  .detail-panel,
  .story-panel,
  .contact-card,
  .form-panel,
  .timeline-item,
  .faq-item,
  .checklist-panel,
  .cta-panel,
  .cta-panel-light {
    padding: 1.25rem;
  }

  .timeline-item {
    grid-template-columns: 2.5rem 1fr;
    gap: 0.85rem;
  }

  .timeline-item span {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.85rem;
  }

  .detail-panel h2,
  .story-panel h2,
  .contact-card h2 {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }

  .about-page .story-panel h2 {
    font-size: clamp(1.1rem, 5.6vw, 1.5rem);
  }

  .contact-info-item h2 {
    font-size: clamp(1rem, 5.4vw, 1.25rem);
    line-height: 1.1;
  }

  .contact-info-item {
    grid-template-columns: 2.2rem 1fr;
    gap: 0.75rem;
  }

  .contact-info-icon {
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 0.8rem;
  }

  .contact-info-icon svg {
    width: 1rem;
    height: 1rem;
  }

  .service-grid:not(.service-grid-expanded) {
    grid-template-columns: 1fr;
  }

  .contact-page .page-hero {
    padding: 2.6rem 0 1.4rem;
  }

  .contact-page .page-hero-grid,
  .contact-page .page-hero-compact .page-hero-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .contact-page .page-hero-grid > div:first-child {
    order: 1;
    width: 100%;
    justify-self: stretch;
  }

  .contact-page .page-hero-card-compact {
    order: 2;
    width: 100%;
    max-width: none;
    aspect-ratio: 4 / 3;
    min-height: 0;
    justify-self: stretch;
  }

  .contact-page h1 {
    max-width: none;
    width: 100%;
    font-size: clamp(1.45rem, 6.4vw, 1.9rem);
    line-height: 1.06;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding-top: 0.7rem;
  }

  .nav-wrap {
    min-height: 3.85rem;
    padding: 0.42rem 0.45rem 0.42rem 0.65rem;
    border-radius: 1.45rem;
  }

  .brand-logo-shell {
    width: clamp(7.4rem, 42vw, 8.9rem);
    border-radius: 1.1rem;
  }

  .site-nav {
    padding:
      calc(4.6rem + env(safe-area-inset-top, 0px))
      0.85rem
      calc(0.85rem + env(safe-area-inset-bottom, 0px));
  }

  .site-nav a:not(.button) {
    font-size: clamp(1.25rem, 7vw, 1.7rem);
  }

  .button,
  .button-small {
    min-height: 3.3rem;
    padding-left: 1rem;
  }

  .floating-facebook-link {
    right: max(0.7rem, calc(0.55rem + env(safe-area-inset-right, 0px)));
    bottom: max(0.85rem, calc(0.75rem + env(safe-area-inset-bottom, 0px)));
    width: 3.25rem;
    height: 3.25rem;
    padding: 0;
    justify-content: center;
  }

  .floating-facebook-label {
    display: none;
  }

  .button-orb,
  .button-small .button-orb {
    width: 2.2rem;
    height: 2.2rem;
  }

  .page-hero-card,
  .showcase-image,
  .work-gallery,
  .feature-image,
  .media-card {
    min-height: 11rem;
  }

  .work-gallery {
    gap: 0.8rem;
  }

  .work-gallery-frame {
    min-height: 20rem;
  }

  .compare-stage {
    min-height: 22rem;
  }

  .compare-chip {
    top: 0.8rem;
    padding: 0.42rem 0.7rem;
    font-size: 0.62rem;
  }

  .compare-chip-before {
    left: 0.8rem;
  }

  .compare-chip-after {
    right: 0.8rem;
  }

  .work-gallery-caption {
    inset: auto 1rem 1rem;
    max-width: calc(100% - 2rem);
  }

  .work-gallery-toolbar {
    position: static;
    display: grid;
    gap: 0.8rem;
    padding: 0.9rem 0.9rem 0;
  }

  .work-gallery-status {
    max-width: none;
  }

  .work-gallery-controls {
    justify-content: flex-start;
  }

  .gallery-control {
    width: 2.75rem;
    height: 2.75rem;
  }

  .gallery-strip {
    grid-template-columns: 1fr;
    grid-auto-rows: minmax(12rem, auto);
  }

  .gallery-strip-item-large {
    grid-column: auto;
    grid-row: auto;
  }

  .service-gallery-media {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
  }

  .service-gallery-tile-tall {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 12rem;
  }

  .lightbox {
    padding: 0.8rem;
  }

  .lightbox-dialog {
    grid-template-columns: 1fr;
    gap: 0.8rem;
    width: min(100%, 34rem);
  }

  .lightbox-nav {
    position: absolute;
    bottom: 1rem;
    z-index: 2;
    width: 2.9rem;
    height: 2.9rem;
  }

  .lightbox-nav-prev {
    left: 1rem;
  }

  .lightbox-nav-next {
    right: 1rem;
  }

  .lightbox-image {
    max-height: 70vh;
  }

  .lightbox-caption {
    padding: 0.8rem 0.35rem 3.1rem;
  }

  .media-card-tall {
    min-height: 15rem;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    padding: 0.9rem 0.95rem;
  }

  .faq-item summary {
    font-size: 0.95rem;
  }

  .contact-page .page-hero {
    padding: 2.2rem 0 1.15rem;
  }

  .contact-page .page-hero-card-compact {
    aspect-ratio: 5 / 4;
  }

  .contact-page h1 {
    max-width: none;
    width: 100%;
    font-size: clamp(1.2rem, 6.5vw, 1.5rem);
    line-height: 1.08;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    filter: none;
    transform: none;
  }
}
