:root {
  --bg: #171213;
  --ink: #fff7ef;
  --muted: #d6c8ba;
  --paper: #f7efe7;
  --paper-deep: #e5d5c9;
  --text: #211819;
  --text-soft: #6a5a58;
  --accent: #c75d6b;
  --accent-dark: #9b3e50;
  --blue: #49665c;
  --line: rgba(255, 255, 255, 0.16);
  --shadow: 0 24px 70px rgba(50, 24, 28, 0.22);
  --topbar-height: 80px;
}

* {
  box-sizing: border-box;
}

html {
  overflow-y: scroll;
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

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

body.nav-open,
body.lightbox-open {
  overflow: hidden;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

.site-shell {
  min-height: 100vh;
}

.topbar {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(23, 18, 19, 0.76);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 32px;
  justify-content: space-between;
  left: 0;
  min-height: var(--topbar-height);
  padding: 13px 36px;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 20;
}

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

.brand-symbol {
  align-items: center;
  aspect-ratio: 1;
  background: #fbf3ea;
  border: 1px solid rgba(205, 144, 108, 0.42);
  border-radius: 50%;
  box-shadow: 0 10px 22px rgba(16, 10, 9, 0.18);
  color: transparent;
  display: inline-flex;
  justify-content: center;
  overflow: hidden;
  width: 50px;
}

.brand-symbol img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.brand-mark strong,
.brand-mark small {
  display: block;
}

.brand-mark strong {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.05;
}

.brand-mark small {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.2;
  margin-top: 3px;
}

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

.site-nav a {
  color: rgba(247, 241, 232, 0.78);
  font-size: 16px;
  line-height: 1.2;
}

.site-nav a.is-current {
  color: var(--ink);
}

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

.nav-toggle {
  background: transparent;
  border: 0;
  cursor: pointer;
  display: none;
  gap: 6px;
  padding: 0;
}

.nav-toggle span {
  background: var(--ink);
  display: block;
  height: 2px;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
  width: 27px;
}

.mobile-nav-panel[hidden] {
  display: none;
}

.mobile-nav-panel {
  background: rgba(23, 18, 19, 0.99);
  bottom: 0;
  left: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  position: fixed;
  right: 0;
  top: var(--topbar-height);
  z-index: 19;
}

.mobile-nav-backdrop {
  display: none;
}

.mobile-nav-drawer {
  align-content: start;
  background:
    linear-gradient(180deg, rgba(31, 23, 24, 0.98), rgba(18, 13, 14, 0.99));
  border-left: 0;
  display: grid;
  gap: 0;
  min-height: calc(100dvh - var(--topbar-height));
  margin: 0 auto;
  max-width: 680px;
  overflow-y: auto;
  padding: 26px 30px calc(34px + env(safe-area-inset-bottom));
  position: relative;
  scrollbar-gutter: stable;
  width: 100%;
}

@supports (-webkit-touch-callout: none) {
  .site-shell {
    min-height: -webkit-fill-available;
  }

  .reviews-main-page {
    min-height: -webkit-fill-available;
  }
}

.mobile-nav-drawer a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--ink);
  display: flex;
  font-size: 24px;
  line-height: 1.1;
  min-height: 86px;
  padding: 0;
  align-items: center;
}

.hero {
  align-items: end;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr);
  min-height: 88svh;
  isolation: isolate;
  padding: 156px 76px 56px;
  position: relative;
}

.hero::before,
.hero::after {
  content: "";
  inset: 0;
  position: absolute;
}

.hero::before {
  background: var(--hero-image) var(--hero-position-x, 80%) var(--hero-position-y, 50%) / cover no-repeat;
  filter: saturate(0.98) contrast(1.02);
  z-index: -2;
}

.hero::after {
  background:
    linear-gradient(90deg, rgba(18, 13, 14, 0.9) 0%, rgba(18, 13, 14, 0.56) 42%, rgba(18, 13, 14, 0.12) 100%),
    linear-gradient(180deg, rgba(18, 13, 14, 0.18) 0%, rgba(18, 13, 14, 0.42) 100%);
  z-index: -1;
}

.hero-content {
  max-width: 820px;
}

.eyebrow {
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  margin: 0 0 14px;
  text-transform: uppercase;
}

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

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

h1 {
  font-size: 82px;
  margin-bottom: 20px;
  max-width: 840px;
}

h2 {
  font-size: 48px;
  margin-bottom: 0;
}

h3 {
  font-size: 26px;
}

.hero-lead {
  color: rgba(247, 241, 232, 0.86);
  font-size: 23px;
  max-width: 650px;
}

.hero-actions,
.contact-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.primary-button,
.secondary-button,
.filter-button,
.lightbox-close {
  align-items: center;
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.primary-button {
  background: var(--accent);
  color: #fffaf4;
  font-weight: 700;
}

.primary-button:hover {
  background: #a84457;
  transform: translateY(-1px);
}

.secondary-button,
.lightbox-close {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--ink);
}

.secondary-button:hover,
.lightbox-close:hover {
  border-color: rgba(255, 255, 255, 0.46);
}

.section {
  padding: 86px 0;
}

.section-inner {
  margin: 0 auto;
  max-width: 1180px;
  padding: 0 34px;
}

.section-light {
  background: var(--paper);
  color: var(--text);
}

.section-cream {
  background: #efe0d7;
  color: var(--text);
}

.section-dark {
  background: #201719;
  color: var(--ink);
}

.intro-strip {
  padding: 28px 0;
}

.split-row {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: space-between;
}

.split-row p {
  color: var(--text-soft);
  font-size: 20px;
  margin-bottom: 0;
  max-width: 790px;
}

.text-link {
  color: var(--accent-dark);
  font-weight: 700;
  white-space: nowrap;
}

.section-heading {
  align-items: end;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 32px;
}

.portfolio-lead {
  color: var(--text-soft);
  font-size: 18px;
  margin: -10px 0 24px;
  max-width: 760px;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

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

.category-card {
  background: #fbf4ed;
  border: 1px solid rgba(23, 21, 19, 0.1);
  color: var(--text);
  cursor: pointer;
  display: grid;
  gap: 0;
  overflow: hidden;
  padding: 0;
  text-align: left;
}

.category-card.is-soon {
  cursor: default;
}

.category-card-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.category-card.is-soon .category-card-media {
  align-items: center;
  background:
    radial-gradient(circle at top, rgba(199, 93, 107, 0.12), transparent 56%),
    linear-gradient(180deg, #fffaf4 0%, #f4e8de 100%);
  display: flex;
  justify-content: center;
  padding: 24px;
}

.category-card-media img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
  width: 100%;
}

.category-card-soon {
  align-items: center;
  color: #403638;
  display: grid;
  gap: 14px;
  justify-items: center;
  text-align: center;
}

.category-card-soon-icon {
  align-items: center;
  aspect-ratio: 1;
  background: #403638;
  border-radius: 24px;
  color: #fffaf4;
  display: inline-flex;
  font-size: 52px;
  height: 88px;
  justify-content: center;
  line-height: 1;
  width: 88px;
}

.category-card-soon-text {
  font-size: 34px;
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.05;
  text-transform: uppercase;
}

.category-card:not(.is-soon):hover .category-card-media img {
  transform: scale(1.03);
}

.category-card-body {
  display: grid;
  gap: 12px;
  padding: 20px;
}

.category-card-top {
  align-items: baseline;
  display: flex;
  gap: 14px;
  justify-content: space-between;
}

.category-card-top strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  font-weight: 500;
}

.category-card-top span,
.category-card-description {
  color: var(--text-soft);
}

.category-card-badge {
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.filter-button {
  background: transparent;
  border-color: rgba(23, 21, 19, 0.16);
  color: var(--text-soft);
  gap: 8px;
  min-height: 40px;
  padding: 8px 14px;
}

.filter-button.active {
  background: #2d2022;
  border-color: #2d2022;
  color: var(--ink);
}

.filter-button.is-soon {
  cursor: default;
  opacity: 0.86;
}

.filter-button[disabled] {
  pointer-events: none;
}

.filter-badge {
  color: var(--accent-dark);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.gallery-status {
  color: var(--text-soft);
  font-size: 14px;
  margin: -10px 0 18px;
}

.gallery-grid {
  display: grid;
  gap: 58px;
}

.gallery-section {
  display: grid;
  gap: 18px;
}

.gallery-section-heading {
  align-items: end;
  border-bottom: 1px solid rgba(23, 21, 19, 0.12);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  padding-bottom: 14px;
}

.gallery-section-heading h3 {
  font-size: 34px;
  margin-bottom: 0;
}

.gallery-section-heading span {
  color: var(--text-soft);
  font-size: 14px;
  white-space: nowrap;
}

.gallery-masonry {
  column-count: 4;
  column-gap: 18px;
}

.photo-card {
  aspect-ratio: var(--card-ratio, 4 / 5);
  background: #211819;
  border: 0;
  color: var(--ink);
  break-inside: avoid;
  cursor: pointer;
  display: grid;
  margin: 0 0 18px;
  min-height: 0;
  overflow: hidden;
  padding: 0;
  position: relative;
  text-align: left;
  width: 100%;
}

.photo-card:nth-child(3n + 1) {
  aspect-ratio: var(--card-ratio, 3 / 4);
}

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

.photo-card::after {
  background: linear-gradient(0deg, rgba(8, 8, 7, 0.8), rgba(8, 8, 7, 0.06) 62%);
  content: "";
  inset: 0;
  position: absolute;
}

.photo-card-meta {
  align-self: end;
  padding: 22px;
  position: relative;
  z-index: 1;
}

.photo-card-meta strong,
.photo-card-meta span {
  display: block;
}

.photo-card-meta strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 8px;
}

.photo-card-meta span {
  color: rgba(247, 241, 232, 0.72);
  font-size: 14px;
}

.gallery-actions {
  display: flex;
  justify-content: center;
  margin-top: 14px;
}

.gallery-more {
  min-width: 210px;
}

.about-layout {
  align-items: center;
  display: grid;
  gap: 56px;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
}

.about-copy p:not(.eyebrow) {
  color: rgba(247, 241, 232, 0.74);
  font-size: 19px;
  margin-top: 24px;
}

.signature {
  color: var(--accent);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  margin-top: 34px;
}

.about-photo {
  margin: 0;
}

.about-photo img {
  aspect-ratio: 4 / 5;
  height: auto;
  object-fit: cover;
  width: 100%;
}

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

.service-card {
  background: #fffaf1;
  border: 1px solid rgba(23, 21, 19, 0.12);
  min-height: 236px;
  padding: 26px;
  position: relative;
}

.service-card::before {
  background: var(--accent);
  content: "";
  height: 4px;
  left: 26px;
  position: absolute;
  right: 26px;
  top: 0;
}

.service-card h3 {
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-soft);
}

.service-price {
  color: var(--accent-dark);
  display: block;
  font-weight: 800;
  margin-top: 22px;
}

.process-layout {
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
}

.process-list {
  counter-reset: steps;
  display: grid;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.process-list li {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 10px;
  grid-template-columns: 140px minmax(0, 1fr);
  padding-top: 18px;
}

.process-list strong {
  color: var(--accent);
}

.process-list span {
  color: rgba(247, 241, 232, 0.72);
}

.section-contact {
  background: var(--blue);
  color: var(--ink);
}

.contact-layout {
  align-items: center;
  display: grid;
  gap: 40px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.62fr);
}

.contact-actions {
  justify-content: flex-start;
}

.contact-actions p {
  color: rgba(247, 241, 232, 0.82);
  margin: 6px 0 0;
  width: 100%;
}

.inline-contact {
  border-bottom: 1px solid rgba(255, 247, 239, 0.5);
}

.inline-contact:hover {
  border-bottom-color: var(--ink);
}

.lightbox {
  align-items: center;
  background: rgba(5, 5, 5, 0.88);
  display: grid;
  inset: 0;
  padding: 32px;
  position: fixed;
  z-index: 40;
}

.lightbox[hidden] {
  display: none;
}

.lightbox-frame {
  align-items: center;
  display: grid;
  gap: 18px;
  grid-template-columns: 60px minmax(0, 1fr) 60px;
  margin: 0 auto;
  max-width: min(94vw, 1240px);
  width: 100%;
}

.lightbox img {
  box-shadow: var(--shadow);
  justify-self: center;
  max-height: 82vh;
  max-width: 100%;
  object-fit: contain;
}

.lightbox figcaption {
  color: rgba(255, 247, 239, 0.9);
  display: grid;
  gap: 6px;
  grid-column: 1 / -1;
  justify-items: center;
  text-align: center;
}

.lightbox-nav {
  align-items: center;
  background: transparent;
  border: 0;
  color: transparent;
  cursor: pointer;
  display: inline-flex;
  font-size: 34px;
  height: 52px;
  justify-content: center;
  line-height: 1;
  opacity: 0;
  transition: opacity 0.2s ease;
  width: 52px;
}

.lightbox-nav:hover {
  background: transparent;
  border-color: transparent;
}

.lightbox-nav:disabled {
  cursor: default;
  opacity: 0;
}

@media (max-width: 980px) {
  .topbar {
    padding: 13px 22px;
  }

  .site-nav {
    display: none;
  }

  .nav-toggle {
    display: inline-grid;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 84svh;
    padding: 134px 24px 42px;
  }

  h1 {
    font-size: 58px;
  }

  h2 {
    font-size: 38px;
  }

  .hero-lead {
    font-size: 20px;
  }

  .service-grid,
  .about-layout,
  .process-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .gallery-masonry {
    column-count: 2;
  }

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

  .photo-card {
    min-height: 0;
  }
}

@media (max-width: 680px) {
  :root {
    --topbar-height: 76px;
  }

  .topbar {
    min-height: 76px;
    padding: 12px 18px;
  }

  .brand-mark {
    min-width: 0;
    gap: 12px;
  }

  .brand-symbol {
    font-size: 20px;
    width: 48px;
  }

  .brand-mark strong {
    font-size: 22px;
  }

  .brand-mark small {
    font-size: 14px;
  }

  .mobile-nav-drawer {
    max-width: none;
    padding: 18px 30px calc(28px + env(safe-area-inset-bottom));
  }

  .mobile-nav-drawer a {
    font-size: 26px;
    min-height: 82px;
  }

  .hero {
    padding: 136px 24px 42px;
    background-position: 61% center;
    min-height: 82svh;
  }

  .hero::before {
    background-position: var(--hero-position-x, 72%) var(--hero-position-y, 50%);
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 32px;
  }

  .section {
    padding: 58px 0;
  }

  .section-inner {
    padding: 0 18px;
  }

  .split-row,
  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .split-row p {
    font-size: 18px;
  }

  .filter-row {
    flex-wrap: nowrap;
    margin-left: -18px;
    margin-right: -18px;
    overflow-x: auto;
    padding: 0 18px 8px;
    scrollbar-width: none;
  }

  .filter-row::-webkit-scrollbar {
    display: none;
  }

  .filter-button {
    flex: 0 0 auto;
  }

  .gallery-grid {
    gap: 42px;
  }

  .category-spotlight {
    grid-template-columns: 1fr;
  }

  .category-card-soon-text {
    font-size: 28px;
  }

  .gallery-section-heading {
    align-items: center;
  }

  .gallery-section-heading h3 {
    font-size: 26px;
  }

  .gallery-masonry {
    column-count: 2;
    column-gap: 10px;
  }

  .photo-card {
    margin-bottom: 10px;
  }

  .photo-card-meta {
    padding: 10px;
  }

  .photo-card-meta strong {
    font-size: 15px;
    margin-bottom: 3px;
  }

  .photo-card-meta span {
    font-size: 11px;
  }

  .process-list li {
    grid-template-columns: 1fr;
  }

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

  .primary-button,
  .secondary-button {
    width: 100%;
  }

  .lightbox {
    padding: 16px;
  }

  .lightbox-frame {
    gap: 14px;
    grid-template-columns: 1fr;
  }

  .lightbox-nav {
    bottom: 22px;
    position: fixed;
    z-index: 41;
  }

  .lightbox-prev {
    left: 18px;
  }

  .lightbox-next {
    right: 18px;
  }
}
/* photo2 homepage refresh: 2026-07-12 */
:root {
  --bg: #3a2930;
  --ink: #fff8f0;
  --muted: #eadbd1;
  --paper: #f7efe7;
  --paper-deep: #eadad0;
  --text: #302125;
  --text-soft: #705d5f;
  --accent: #b85668;
  --accent-dark: #853647;
  --blue: #75655f;
  --shadow: 0 22px 60px rgba(78, 48, 53, 0.18);
}

.topbar {
  background: rgba(91, 72, 69, 0.95);
}

.mobile-nav-panel {
  background: rgba(82, 62, 62, 0.99);
}

.mobile-nav-drawer {
  background: linear-gradient(180deg, rgba(96, 70, 70, 0.99), rgba(65, 45, 51, 0.99));
}

.hero {
  min-height: 620px;
  padding: 128px 76px 48px;
}

.hero::after {
  background:
    linear-gradient(90deg, rgba(56, 35, 42, 0.92) 0%, rgba(56, 35, 42, 0.58) 43%, rgba(56, 35, 42, 0.12) 100%),
    linear-gradient(180deg, rgba(55, 36, 42, 0.12) 0%, rgba(55, 36, 42, 0.38) 100%);
}

.hero-brand-lockup {
  align-items: center;
  display: flex;
  gap: 16px;
  margin-bottom: 18px;
}

.hero-brand-lockup img {
  background: #fbf3ea;
  border: 1px solid rgba(255, 242, 231, 0.62);
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(35, 18, 22, 0.24);
  height: 76px;
  object-fit: cover;
  width: 76px;
}

.hero-brand-lockup .eyebrow {
  color: #f0a4b1;
  margin: 0;
}

.primary-button,
.secondary-button,
.filter-button,
.lightbox-close {
  border-radius: 999px;
}

.section-dark {
  background: #5b3d47;
}

.text-link {
  align-items: center;
  border: 1px solid rgba(133, 54, 71, 0.22);
  border-radius: 999px;
  display: inline-flex;
  min-height: 42px;
  padding: 9px 16px;
}

.category-card {
  border-radius: 20px;
}

.filter-button.active {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.photo-card {
  border-radius: 18px;
}

.about-photo img {
  border-radius: 24px;
}

.service-card {
  border-radius: 22px;
  overflow: hidden;
}

.service-card::before {
  left: 0;
  right: 0;
}

.process-list li {
  background: rgba(255, 248, 240, 0.08);
  border: 1px solid rgba(255, 248, 240, 0.14);
  border-radius: 18px;
  padding: 20px;
}

.contact-actions .primary-button,
.contact-actions .secondary-button {
  min-height: 50px;
  min-width: 232px;
}

.contact-actions .primary-button {
  background: #fff5ed;
  color: var(--accent-dark);
}

.contact-actions .primary-button:hover {
  background: #ffffff;
}

.contact-actions .secondary-button {
  border-color: rgba(255, 248, 240, 0.54);
}

@media (max-width: 980px) {
  .hero {
    min-height: 580px;
    padding: 112px 24px 38px;
  }
}

@media (max-width: 680px) {
  .hero {
    min-height: 590px;
    padding: 106px 20px 34px;
  }

  .hero-brand-lockup {
    gap: 12px;
    margin-bottom: 14px;
  }

  .hero-brand-lockup img {
    height: 58px;
    width: 58px;
  }
}
/* Saved horizontal composition of the first screen. */
.hero-content {
  width: 100%;
  max-width: none;
}

.hero [data-hero-layout] {
  width: calc(var(--hero-block-width, 100) * 1%);
  margin-left: calc(var(--hero-block-x, 0) * 1%);
  box-sizing: border-box;
}

.hero h1[data-hero-layout],
.hero .hero-lead[data-hero-layout],
.hero .hero-actions[data-hero-layout] {
  max-width: none;
}

@media (max-width: 980px) {
  .hero [data-hero-layout] {
    width: 100%;
    margin-left: 0;
  }
}

/* v29 managed hero carousel */
.hero.hero--carousel::before { opacity: 0; }
.hero-slide-track {
  position: absolute;
  z-index: -2;
  inset: 0;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: -1px;
  opacity: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: saturate(0.98) contrast(1.02);
  transform: scale(1.015);
  transition: opacity 780ms ease, transform 5s linear;
}
.hero-slide.is-active { opacity: 1; transform: scale(1); }
.hero-content { position: relative; z-index: 1; }
.hero.hero--carousel { touch-action: pan-y; }
.hero-carousel-controls[hidden] { display: none !important; }
.hero-carousel-controls {
  position: absolute;
  z-index: 3;
  inset: 0;
  pointer-events: none;
}
.hero-carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 7px;
  transform: translateX(-50%);
  pointer-events: auto;
}
.hero-carousel-dot {
  width: 18px;
  height: 22px;
  padding: 0;
  border: 0;
  display: grid;
  place-items: center;
  background: transparent;
  cursor: pointer;
}
.hero-carousel-dot > span {
  position: relative;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  display: block;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.56);
  transition: width 180ms ease, border-radius 180ms ease, background 180ms ease;
}
.hero-carousel-dot.is-active > span { width: 30px; border-radius: 4px; background: rgba(255, 255, 255, 0.36); }
.hero-carousel-dot.is-active > span::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left;
}
.hero-carousel-dot.is-active.is-progressing > span::after { animation: hero-carousel-progress 5s linear forwards; }
.hero-carousel-controls[data-paused="true"] .hero-carousel-dot.is-active > span::after { animation-play-state: paused; }
.hero-carousel-buttons { display: contents; }
.hero-carousel-buttons button {
  position: absolute;
  top: 50%;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(20, 15, 17, 0.48);
  color: #fff;
  box-shadow: 0 6px 22px rgba(18, 11, 14, 0.2);
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
  pointer-events: auto;
  backdrop-filter: blur(8px);
  transition: opacity 160ms ease, transform 160ms ease, background 160ms ease, visibility 160ms ease;
}
.hero-carousel-buttons [data-hero-previous] { left: 24px; transform: translate(-8px, -50%); }
.hero-carousel-buttons [data-hero-next] { right: 24px; transform: translate(8px, -50%); }
.hero:hover .hero-carousel-buttons button,
.hero-carousel-buttons button:focus-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%);
}
.hero-carousel-buttons button:hover,
.hero-carousel-buttons button:focus-visible { background: rgba(20, 15, 17, 0.7); outline: none; }
.hero-carousel-buttons button:active { transform: translateY(-50%) scale(0.94); }
.hero-carousel-buttons [data-hero-previous] span,
.hero-carousel-buttons [data-hero-next] span { margin-top: -3px; font-size: 32px; font-family: Arial, sans-serif; line-height: 1; }

@keyframes hero-carousel-progress {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@media (hover: none), (pointer: coarse) {
  .hero-carousel-buttons { display: none; }
}

@media (max-width: 680px) {
  .hero-carousel-dots { bottom: 12px; max-width: calc(100% - 28px); overflow: hidden; }
  .hero-carousel-buttons { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide { transition: none; transform: none; }
  .hero-carousel-dot.is-active.is-progressing > span::after { animation: none; transform: scaleX(1); }
  .hero-carousel-buttons button { transition: none; }
}
/* v34 tighter intro-to-portfolio rhythm */
.intro-strip { padding-bottom: 12px; }
.intro-strip + #portfolio { padding-top: 42px; }

@media (max-width: 680px) {
  .intro-strip { padding: 28px 0 12px; }
  .intro-strip + #portfolio { padding-top: 32px; }
}

/* v35 fuller service cards */
.service-card {
  display: flex;
  flex-direction: column;
}

.service-card p {
  margin-bottom: 0;
  font-size: 18px;
  line-height: 1.55;
}

.service-price {
  margin-top: auto;
  padding-top: 22px;
  font-size: 22px;
  line-height: 1.25;
}

/* Compact native mobile navigation overlay */
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-nav-panel {
  background: transparent;
  display: block;
  overflow: hidden;
}

.mobile-nav-backdrop {
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  background: rgba(23, 18, 19, 0.28);
  border: 0;
  cursor: default;
  display: block;
  inset: 0;
  opacity: 0;
  padding: 0;
  position: absolute;
  transition: opacity 0.22s ease;
  width: 100%;
}

.mobile-nav-drawer {
  background: rgba(91, 65, 68, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0 0 18px 18px;
  box-shadow: 0 22px 48px rgba(23, 18, 19, 0.28);
  gap: 0;
  margin: 0 auto auto;
  max-height: calc(100dvh - var(--topbar-height) - 18px);
  min-height: 0;
  opacity: 0;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 8px 24px 14px;
  scrollbar-gutter: auto;
  touch-action: pan-y;
  transform: translateY(-16px);
  transition:
    transform 0.22s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.18s ease;
  width: min(680px, calc(100% - 32px));
  z-index: 1;
}

.mobile-nav-drawer a {
  font-size: 22px;
  min-height: 64px;
}

.mobile-nav-panel.is-open .mobile-nav-backdrop {
  opacity: 1;
}

.mobile-nav-panel.is-open .mobile-nav-drawer {
  opacity: 1;
  transform: translateY(var(--mobile-nav-drag-y, 0px));
}

.mobile-nav-panel.is-closing .mobile-nav-drawer {
  opacity: 0;
  transform: translateY(-16px);
}

.mobile-nav-panel.is-dragging .mobile-nav-drawer {
  transition: none;
}

@media (max-width: 680px) {
  .mobile-nav-drawer {
    border-radius: 0 0 16px 16px;
    max-width: none;
    padding: 6px 22px 12px;
    width: calc(100% - 24px);
  }

  .mobile-nav-drawer a {
    font-size: 22px;
    min-height: 60px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mobile-nav-backdrop,
  .mobile-nav-drawer,
  .nav-toggle span {
    transition: none;
  }
}

/* v40 shared edge navigation for the hero and gallery viewer */
.hero-carousel-buttons button {
  top: 0;
  width: 68px;
  height: 100%;
  padding: 0;
  border: 0;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: transparent;
  box-shadow: none;
  opacity: 0;
  visibility: hidden;
  backdrop-filter: none;
  transform: none;
  transition: background 180ms ease, opacity 180ms ease, visibility 180ms ease;
}

.hero-carousel-buttons button::before,
.lightbox-nav::before {
  width: 15px;
  height: 15px;
  border-right: 3px solid rgba(255, 255, 255, 0.96);
  border-bottom: 3px solid rgba(255, 255, 255, 0.96);
  content: "";
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.7));
}

.hero-carousel-buttons [data-hero-previous] {
  left: 0;
  transform: none;
}

.hero-carousel-buttons [data-hero-next] {
  right: 0;
  transform: none;
}

.hero-carousel-buttons [data-hero-previous]::before,
.lightbox-prev::before {
  transform: rotate(135deg);
}

.hero-carousel-buttons [data-hero-next]::before,
.lightbox-next::before {
  transform: rotate(-45deg);
}

.hero-carousel-buttons [data-hero-previous] span,
.hero-carousel-buttons [data-hero-next] span {
  display: none;
}

.hero:hover .hero-carousel-buttons button,
.hero-carousel-buttons button:focus-visible {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.hero-carousel-buttons [data-hero-previous]:hover,
.hero-carousel-buttons [data-hero-previous]:focus-visible {
  background: linear-gradient(90deg, rgba(15, 11, 12, 0.3), transparent);
}

.hero-carousel-buttons [data-hero-next]:hover,
.hero-carousel-buttons [data-hero-next]:focus-visible {
  background: linear-gradient(270deg, rgba(15, 11, 12, 0.3), transparent);
}

.hero-carousel-buttons button:active {
  transform: none;
}

.lightbox {
  padding: 18px;
}

.lightbox-frame {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr;
  justify-items: center;
  max-width: 94vw;
  width: fit-content;
}

.lightbox-media {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-height: calc(100dvh - 92px);
  max-width: 94vw;
  width: fit-content;
  touch-action: pan-y;
}

.lightbox img {
  display: block;
  width: auto;
  height: auto;
  max-height: calc(100dvh - 92px);
  max-width: 92vw;
}

.lightbox figcaption {
  grid-column: auto;
}

.lightbox-nav {
  position: absolute;
  top: 0;
  z-index: 2;
  width: 72px;
  height: 100%;
  border: 0;
  background: transparent;
  color: transparent;
  font-size: 0;
  opacity: 0;
  transition: background 180ms ease, opacity 180ms ease;
}

.lightbox-prev { left: 0; }
.lightbox-next { right: 0; }

.lightbox-media:hover .lightbox-nav:not(:disabled),
.lightbox-media.is-controls-visible .lightbox-nav:not(:disabled),
.lightbox-nav:focus-visible {
  opacity: 1;
}

.lightbox-prev:hover {
  background: linear-gradient(90deg, rgba(15, 11, 12, 0.3), transparent);
}

.lightbox-next:hover {
  background: linear-gradient(270deg, rgba(15, 11, 12, 0.3), transparent);
}

.lightbox-nav:disabled {
  display: none;
}

@media (max-width: 700px) {
  .lightbox {
    padding: 8px;
  }

  .lightbox-frame,
  .lightbox-media {
    max-width: 100vw;
  }

  .lightbox img {
    max-height: calc(100dvh - 78px);
    max-width: 100vw;
  }

  .lightbox-nav {
    display: none;
  }

  .lightbox figcaption {
    padding: 0 14px;
  }
}


/* v43 living light: adaptive header, cinematic hero, shared gallery image */
:root {
  --topbar-rgb: 91, 72, 69;
  --topbar-glow-rgb: 220, 171, 151;
}

.topbar {
  background: rgba(var(--topbar-rgb), 0.93);
  box-shadow: 0 12px 34px rgba(29, 18, 21, 0.12);
  isolation: isolate;
  overflow: clip;
  transition:
    background-color 780ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 780ms ease;
}

.topbar::before,
.topbar::after {
  content: "";
  pointer-events: none;
  position: absolute;
}

.topbar::before {
  background: linear-gradient(
    108deg,
    transparent 18%,
    rgba(var(--topbar-glow-rgb), 0.04) 38%,
    rgba(var(--topbar-glow-rgb), 0.2) 49%,
    rgba(255, 248, 240, 0.11) 53%,
    transparent 72%
  );
  inset: 0;
  opacity: 0;
  transform: translateX(-115%);
  z-index: 0;
}

.topbar::after {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(var(--topbar-glow-rgb), 0.55),
    rgba(255, 248, 240, 0.72),
    transparent
  );
  bottom: 0;
  height: 1px;
  left: 0;
  opacity: 0.72;
  right: 0;
}

.topbar > * {
  position: relative;
  z-index: 1;
}

.topbar.is-light-sweep::before {
  animation: topbar-light-sweep 920ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes topbar-light-sweep {
  0% { opacity: 0; transform: translateX(-115%); }
  18% { opacity: 0.78; }
  72% { opacity: 0.48; }
  100% { opacity: 0; transform: translateX(115%); }
}

.hero-slide {
  transform: scale(1.055);
  transform-origin: var(--hero-focal-x, 50%) var(--hero-focal-y, 50%);
  transition: opacity 1050ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.hero-slide.is-active {
  animation: hero-cinematic-drift 6s cubic-bezier(0.2, 0.7, 0.2, 1) both;
  opacity: 1;
}

@keyframes hero-cinematic-drift {
  from { transform: scale(1.055); }
  to { transform: scale(1.012); }
}

::view-transition-old(root),
::view-transition-new(root) {
  animation: none;
  mix-blend-mode: normal;
}

::view-transition-group(gallery-photo) {
  animation-duration: 460ms;
  animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  overflow: clip;
}

::view-transition-old(gallery-photo),
::view-transition-new(gallery-photo) {
  height: 100%;
  object-fit: cover;
}

.lightbox:not([hidden]) {
  animation: lightbox-backdrop-in 180ms ease-out both;
}

@keyframes lightbox-backdrop-in {
  from { background-color: rgba(5, 5, 5, 0); }
  to { background-color: rgba(5, 5, 5, 0.88); }
}

@media (prefers-reduced-motion: reduce) {
  .topbar {
    transition: none;
  }

  .topbar.is-light-sweep::before,
  .hero-slide.is-active,
  .lightbox:not([hidden]) {
    animation: none;
  }

  .hero-slide {
    transform: none;
  }
}
