:root {
  --paper: #fbfaf7;
  --paper-deep: #ece5da;
  --ink: #171512;
  --muted: #635d56;
  --line: #d9cdbd;
  --gold: #c69a4a;
  --gold-soft: #ead2a5;
  --wine: #7b2f2f;
  --mint: #97d2c1;
  --black: #101114;
  --shadow: 0 18px 46px rgba(23, 21, 18, .13);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Assistant", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

body.lightbox-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

.preview-note {
  background: var(--black);
  color: var(--gold-soft);
  padding: 8px 20px;
  text-align: center;
  font-size: 14px;
  letter-spacing: 0;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 22px;
  padding: 14px clamp(18px, 4vw, 58px);
  background: rgba(251, 250, 247, .93);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

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

.brand b {
  display: block;
  font-size: 22px;
  line-height: 1.05;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.topbar nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2.5vw, 34px);
  color: var(--muted);
  font-weight: 700;
}

.topbar nav a,
.call-link,
.primary-action,
.maps-link,
.map-panel a,
.mobile-cta a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.social-link {
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.topbar nav a:focus-visible,
.call-link:focus-visible,
.primary-action:focus-visible,
.maps-link:focus-visible,
.map-panel a:focus-visible,
.shot:focus-visible,
.lightbox-close:focus-visible {
  outline: 3px solid var(--mint);
  outline-offset: 3px;
}

.call-link,
.primary-action,
.maps-link,
.map-panel a {
  border: 1px solid var(--black);
  background: var(--black);
  color: white;
  padding: 10px 18px;
  border-radius: 2px;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: min(780px, calc(100vh - 78px));
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--black);
}

.hero picture,
.hero img,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center;
  animation: hero-drift 24s ease-in-out infinite alternate;
}

.hero-shade {
  background:
    linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.58)),
    linear-gradient(90deg, rgba(0,0,0,.1), rgba(0,0,0,.45));
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(100%, 1120px);
  padding: clamp(36px, 7vw, 90px);
  color: white;
}

.hero-copy p,
.section-head p,
.visit-main p {
  margin: 0 0 12px;
  color: var(--gold-soft);
  font-weight: 800;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 840px;
  margin: 0;
  font-family: "Heebo", Arial, sans-serif;
  font-size: 56px;
  line-height: .98;
  font-weight: 300;
  letter-spacing: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 34px;
}

.hero-actions .primary-action {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
  min-width: 170px;
}

.rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 9px 14px;
  background: rgba(16, 17, 20, .6);
  border: 1px solid rgba(234, 210, 165, .42);
}

.stars {
  direction: ltr;
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 0;
}

.cut-line {
  position: relative;
  height: 76px;
  overflow: hidden;
  background: var(--paper);
}

.cut-line span {
  position: absolute;
  inset-inline: 0;
  top: 38px;
  border-top: 1px dashed var(--gold);
}

.cut-line svg {
  position: absolute;
  top: 22px;
  inline-size: 86px;
  color: var(--black);
  animation: scissors 6.5s ease-in-out infinite;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--line);
  background: var(--paper-deep);
}

.proof-strip article {
  min-height: 132px;
  padding: 24px clamp(18px, 3vw, 34px);
  border-inline-start: 1px solid var(--line);
}

.proof-strip article:first-child {
  border-inline-start: 0;
}

.proof-strip strong {
  display: block;
  font-family: "Heebo", Arial, sans-serif;
  font-size: 34px;
  line-height: 1;
}

.proof-strip span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 700;
}

.section {
  padding: clamp(64px, 9vw, 120px) clamp(18px, 5vw, 72px);
}

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

.section-head p,
.visit-main p {
  color: var(--wine);
}

.section h2 {
  margin: 0;
  font-family: "Heebo", Arial, sans-serif;
  font-size: 44px;
  line-height: 1.08;
  font-weight: 300;
  letter-spacing: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 10px;
}

.shot {
  position: relative;
  min-width: 0;
  padding: 0;
  border: 0;
  background: var(--black);
  color: white;
  cursor: pointer;
  overflow: hidden;
  border-radius: 0;
  aspect-ratio: 1 / 1.18;
}

.shot.tall {
  grid-row: span 2;
  aspect-ratio: 1 / 2;
}

.shot.wide {
  grid-column: span 2;
  aspect-ratio: 2 / 1;
}

.shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.shot:hover img {
  transform: scale(1.035);
}

.services {
  background: var(--paper-deep);
}

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

.service-list article,
.price-note,
.review-card,
.hours-panel {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.service-list article {
  min-height: 190px;
  padding: 28px;
}

.service-list h3,
.hours-panel h3 {
  margin: 0 0 10px;
  font-family: "Heebo", Arial, sans-serif;
  font-size: 22px;
  line-height: 1.2;
}

.service-list p,
.price-note p,
.review-card small,
.visit-main + p {
  color: var(--muted);
}

.price-note {
  max-width: 760px;
  margin-top: 18px;
  padding: 20px 24px;
  border-inline-start: 5px solid var(--gold);
}

.price-note strong {
  font-family: "Heebo", Arial, sans-serif;
  font-size: 22px;
}

.service-cta {
  margin-top: 22px;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.review-card {
  padding: 22px;
}

.review-card header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 12px;
}

.review-card header span {
  direction: ltr;
  color: var(--gold);
  font-size: 14px;
  white-space: nowrap;
}

.review-card blockquote {
  margin: 14px 0 0;
  color: var(--ink);
}

.maps-link {
  margin-top: 24px;
}

.visit {
  display: grid;
  grid-template-columns: minmax(280px, .8fr) minmax(250px, .55fr) minmax(360px, 1fr);
  gap: 18px;
  align-items: stretch;
  background: var(--paper-deep);
}

.visit-main {
  padding-block: 18px;
}

.visit-main h2 {
  margin-bottom: 22px;
}

.hours-panel {
  padding: 24px;
}

.hours-panel dl {
  margin: 0;
}

.hours-panel div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
}

.hours-panel div:last-child {
  border-bottom: 0;
}

.hours-panel dt {
  font-weight: 800;
}

.hours-panel dd {
  margin: 0;
  color: var(--muted);
}

.map-panel {
  overflow: hidden;
  min-height: 420px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.map-panel iframe {
  display: block;
  width: 100%;
  height: 360px;
  border: 0;
}

.map-panel a {
  width: 100%;
  border-radius: 0;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 30px clamp(18px, 5vw, 72px) 94px;
  background: var(--black);
  color: white;
}

footer span:nth-child(2) {
  color: var(--gold-soft);
}

.mobile-cta {
  display: none;
  position: fixed;
  z-index: 30;
  inset-inline: 14px;
  inset-block-end: 12px;
}

.mobile-cta a {
  width: 100%;
  background: var(--gold);
  color: var(--black);
  border: 1px solid var(--black);
  border-radius: 3px;
  font-weight: 900;
  box-shadow: var(--shadow);
}

.lightbox[hidden] {
  display: none;
}

.lightbox {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(16, 17, 20, .92);
}

.lightbox img {
  max-width: min(96vw, 1280px);
  max-height: 86vh;
  object-fit: contain;
  border: 1px solid rgba(234, 210, 165, .42);
}

.lightbox-close {
  position: absolute;
  inset-block-start: 18px;
  inset-inline-end: 18px;
  inline-size: 48px;
  block-size: 48px;
  border: 1px solid rgba(234, 210, 165, .42);
  background: var(--black);
  color: white;
  cursor: pointer;
  font-size: 34px;
  line-height: 1;
}

@keyframes hero-drift {
  to { transform: scale(1.08) translateX(-1%); }
}

@keyframes scissors {
  0%, 100% { transform: translateX(-8vw); }
  50% { transform: translateX(96vw); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero img,
  .cut-line svg,
  .shot img {
    animation: none;
    transition: none;
  }
}

@media (max-width: 980px) {
  .topbar {
    grid-template-columns: 1fr auto;
  }

  .topbar nav {
    grid-column: 1 / -1;
    order: 3;
    justify-content: start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .proof-strip,
  .review-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

@media (max-width: 640px) {
  .topbar {
    position: relative;
    min-height: 70px;
    padding: 12px 14px;
    gap: 10px;
  }

  .call-link {
    display: none;
  }

  .brand small {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .topbar nav {
    gap: 18px;
    font-size: 14px;
  }

  .hero {
    min-height: 74vh;
  }

  .hero-copy {
    padding: 28px 18px 42px;
  }

  .hero h1 {
    font-size: 46px;
  }

  .hero-actions {
    align-items: stretch;
  }

  .hero-actions .primary-action,
  .rating-pill {
    width: 100%;
  }

  .proof-strip {
    grid-template-columns: 1fr 1fr;
  }

  .proof-strip article {
    min-height: 112px;
    padding: 18px;
  }

  .proof-strip strong {
    font-size: 34px;
  }

  .section {
    padding: 56px 14px;
  }

  .section h2 {
    font-size: 34px;
  }

  .gallery-grid {
    gap: 8px;
  }

  .shot,
  .shot.tall,
  .shot.wide {
    grid-column: auto;
    grid-row: auto;
    min-height: 0;
    aspect-ratio: 1 / 1;
  }

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

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

  .map-panel {
    min-height: 350px;
  }

  .map-panel iframe {
    height: 300px;
  }

  footer {
    display: grid;
    padding-bottom: 92px;
  }

  .mobile-cta {
    display: block;
  }
}

.map a img,.maps-link img,.map-panel a img{display:inline;vertical-align:middle;margin-inline-end:6px}

.brand-logo{width:auto;height:48px;max-width:120px;object-fit:contain}
