:root {
  --ink: #15120e;
  --paper: #f2eadc;
  --paper-deep: #e5d6be;
  --red: #b8362f;
  --blue: #173f62;
  --green: #25382f;
  --line: rgba(21, 18, 14, 0.18);
  --muted: rgba(21, 18, 14, 0.66);
  --shadow: 0 22px 70px rgba(21, 18, 14, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(21, 18, 14, 0.045) 1px, transparent 1px),
    linear-gradient(var(--paper), var(--paper-deep));
  background-size: 44px 44px, auto;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 10;
  background: radial-gradient(circle at 50% 0%, transparent, rgba(21, 18, 14, 0.08));
  mix-blend-mode: multiply;
}

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

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

button {
  font: inherit;
  color: inherit;
}

.topbar {
  position: fixed;
  top: 18px;
  left: 24px;
  right: 24px;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 10px 10px 10px 14px;
  border: 1px solid rgba(242, 234, 220, 0.3);
  background: rgba(21, 18, 14, 0.72);
  color: #fff8ec;
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.2);
}

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

.brand-mark {
  width: 34px;
  height: 34px;
  background:
    linear-gradient(90deg, var(--red) 0 30%, #fff8ec 30% 66%, var(--blue) 66%),
    var(--paper);
  border-radius: 50%;
  border: 2px solid #fff8ec;
  box-shadow: inset 0 0 0 4px rgba(21, 18, 14, 0.18);
}

.brand strong {
  display: block;
  font-size: 15px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.brand small {
  display: block;
  margin-top: 3px;
  font-size: 11px;
  color: rgba(255, 248, 236, 0.68);
}

.nav {
  justify-self: center;
  display: flex;
  gap: 6px;
}

.nav a,
.top-call {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  color: rgba(255, 248, 236, 0.78);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.nav a:hover,
.top-call:hover {
  background: rgba(255, 248, 236, 0.12);
  color: #fff8ec;
}

.top-call {
  background: #fff8ec;
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: 100dvh;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  padding: 112px 24px 40px;
  overflow: hidden;
  background: var(--ink);
  color: #fff8ec;
}

.hero-image {
  position: absolute;
  inset: 0;
  opacity: 0.86;
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(21, 18, 14, 0.92), rgba(21, 18, 14, 0.24) 54%, rgba(21, 18, 14, 0.75)),
    linear-gradient(0deg, rgba(21, 18, 14, 0.9), transparent 42%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(840px, 100%);
  margin-left: clamp(0px, 5vw, 70px);
}

.kicker {
  margin: 0 0 16px;
  font-size: 11px;
  line-height: 1.2;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.24em;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: clamp(54px, 9vw, 134px);
  line-height: 0.88;
}

h2 {
  font-size: clamp(36px, 5vw, 76px);
  line-height: 0.95;
  margin-bottom: 18px;
}

h3 {
  font-size: clamp(25px, 3vw, 44px);
  line-height: 1;
  margin-bottom: 16px;
}

.lede {
  max-width: 510px;
  color: rgba(255, 248, 236, 0.78);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.button,
.text-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 2px;
  padding: 0 22px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:active,
.text-button:active,
.service-tab:active,
.gallery-item:active {
  transform: translateY(1px);
}

.button.primary {
  background: var(--red);
  color: #fff8ec;
}

.button.ghost {
  border-color: rgba(255, 248, 236, 0.36);
  color: #fff8ec;
}

.hero-panel {
  position: absolute;
  right: 24px;
  bottom: 40px;
  z-index: 1;
  width: min(250px, calc(100vw - 48px));
  padding: 18px;
  border-left: 4px solid var(--red);
  background: rgba(255, 248, 236, 0.9);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.hero-panel span {
  display: block;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.hero-panel strong {
  display: block;
  margin: 6px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 58px;
  line-height: 0.9;
}

.hero-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
}

.strip span {
  min-height: 72px;
  display: grid;
  place-items: center;
  padding: 14px;
  border-right: 1px solid var(--line);
  font-size: 12px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.strip span:last-child {
  border-right: 0;
}

section:not(.hero):not(.strip) {
  padding: clamp(72px, 10vw, 132px) 24px;
}

.section-head,
.service-layout,
.photo-story,
.gallery,
.visit {
  width: min(1240px, 100%);
  margin: 0 auto;
}

.section-head {
  margin-bottom: 38px;
}

.service-layout {
  display: grid;
  grid-template-columns: 0.74fr 1.26fr;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-tabs {
  display: grid;
  border-right: 1px solid var(--line);
}

.service-tab {
  min-height: 86px;
  display: flex;
  align-items: center;
  gap: 18px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  padding: 0 22px;
  cursor: pointer;
  font-weight: 900;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

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

.service-tab span {
  color: var(--muted);
}

.service-tab.active {
  background: var(--green);
  color: #fff8ec;
}

.service-card {
  min-height: 344px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(26px, 5vw, 58px);
}

.service-card p:not(.kicker) {
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.text-button {
  align-self: flex-start;
  background: transparent;
  border-color: var(--line);
}

.text-button:hover {
  border-color: var(--red);
  color: var(--red);
}

.photo-story {
  display: grid;
  grid-template-columns: minmax(0, 1.24fr) minmax(300px, 0.76fr);
  gap: clamp(22px, 4vw, 54px);
  align-items: center;
}

.photo-main {
  min-height: 590px;
  box-shadow: var(--shadow);
}

.story-copy {
  padding: 28px 0;
}

.story-copy p:not(.kicker) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.story-stat {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.story-stat strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 48px;
  line-height: 1;
}

.story-stat span {
  display: block;
  max-width: 360px;
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.5;
}

.gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-auto-rows: 310px;
  gap: 16px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: var(--green);
  cursor: zoom-in;
  box-shadow: var(--shadow);
}

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

.gallery-item img {
  transition: transform 800ms ease, opacity 300ms ease;
}

.gallery-item:hover img {
  transform: scale(1.035);
}

.gallery-item span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 9px 11px;
  background: rgba(21, 18, 14, 0.76);
  color: #fff8ec;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.visit {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
}

.visit-card,
.hours-card {
  padding: clamp(28px, 5vw, 56px);
  background: #fff8ec;
  box-shadow: var(--shadow);
}

.visit-card p {
  color: var(--muted);
  font-size: 18px;
}

.visit-grid {
  display: grid;
  gap: 0;
  margin-top: 30px;
  border-top: 1px solid var(--line);
}

.visit-grid a {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.visit-grid span,
.hours-card dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.visit-grid strong {
  word-break: break-word;
}

.hours-card {
  background: var(--green);
  color: #fff8ec;
}

.hours-card h3 {
  font-family: Georgia, "Times New Roman", serif;
}

.hours-card dl {
  margin: 20px 0 0;
}

.hours-card div {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 248, 236, 0.2);
}

.hours-card dd {
  margin: 6px 0 0;
}

.hours-card p {
  margin: 22px 0 0;
  color: rgba(255, 248, 236, 0.7);
  line-height: 1.5;
}

.mobile-dock {
  position: fixed;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 30;
  display: none;
  grid-template-columns: repeat(4, 1fr);
  min-height: 58px;
  border: 1px solid rgba(242, 234, 220, 0.24);
  background: rgba(21, 18, 14, 0.88);
  color: #fff8ec;
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.36);
}

.mobile-dock a,
.mobile-dock button {
  display: grid;
  place-items: center;
  border: 0;
  border-right: 1px solid rgba(242, 234, 220, 0.15);
  background: transparent;
  color: #fff8ec;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.mobile-dock :last-child {
  border-right: 0;
  background: var(--red);
}

.modal {
  width: min(560px, calc(100vw - 32px));
  border: 0;
  padding: 34px;
  background: #fff8ec;
  color: var(--ink);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.3);
}

.modal::backdrop {
  background: rgba(21, 18, 14, 0.72);
  backdrop-filter: blur(8px);
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
}

.image-modal {
  width: min(940px, calc(100vw - 32px));
  padding: 0;
  background: var(--ink);
  color: #fff8ec;
}

.image-modal img {
  height: auto;
  max-height: 78vh;
  object-fit: contain;
}

.image-modal p {
  margin: 0;
  padding: 16px 20px 20px;
  color: rgba(255, 248, 236, 0.78);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms ease;
}

[data-reveal].visible {
  opacity: 1;
  transform: translateY(0);
}

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

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}

@media (max-width: 860px) {
  body {
    padding-bottom: 78px;
  }

  .topbar {
    top: 10px;
    left: 10px;
    right: 10px;
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .brand strong {
    font-size: 13px;
  }

  .hero {
    min-height: 100dvh;
    padding: 94px 18px 128px;
    align-items: end;
  }

  .hero-copy {
    margin-left: 0;
  }

  h1 {
    font-size: clamp(54px, 17vw, 72px);
    line-height: 0.9;
  }

  .lede {
    max-width: 330px;
    font-size: 16px;
  }

  .hero-panel {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 26px;
  }

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

  .strip span {
    min-height: 62px;
    font-size: 10px;
  }

  .service-layout,
  .photo-story,
  .gallery,
  .visit {
    grid-template-columns: 1fr;
  }

  .service-tabs {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-tab {
    min-height: 62px;
    padding: 0 16px;
    font-size: 12px;
  }

  .service-card {
    min-height: 300px;
  }

  .photo-main {
    min-height: 380px;
  }

  .gallery {
    grid-auto-rows: 290px;
  }

  .gallery-item.wide {
    grid-row: span 1;
  }

  .visit-grid a {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .mobile-dock {
    display: grid;
  }
}

@media (max-width: 460px) {
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

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

  .top-call {
    min-height: 38px;
    padding: 0 12px;
  }

  section:not(.hero):not(.strip) {
    padding-left: 16px;
    padding-right: 16px;
  }

  .modal {
    padding: 28px 20px;
  }
}
