:root {
  color-scheme: dark;
  --ink: #f8f4ef;
  --muted: #d6c8bf;
  --quiet: #a79a94;
  --black: #0b090b;
  --panel: #171014;
  --panel-2: #21151b;
  --line: rgba(248, 244, 239, 0.17);
  --coral: #ff7b58;
  --orchid: #d6a3ff;
  --emerald: #54d69b;
  --gold: #efbd67;
  --shadow: rgba(0, 0, 0, 0.35);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(135deg, rgba(255, 123, 88, 0.12), transparent 32rem),
    linear-gradient(225deg, rgba(84, 214, 155, 0.1), transparent 30rem),
    var(--black);
  color: var(--ink);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.18;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, #000, transparent 82%);
}

a {
  color: inherit;
}

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

.site-header {
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 76px;
  padding: 14px clamp(16px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background: rgba(11, 9, 11, 0.88);
  backdrop-filter: blur(18px);
}

.brand,
.nav-links,
.hero-actions,
.contact-actions,
.site-footer div {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  min-width: 0;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(239, 189, 103, 0.75);
  border-radius: 50%;
  background: radial-gradient(circle at 30% 25%, var(--gold), #312019 58%, #101010);
  color: #180f0d;
  font-family: Georgia, serif;
  font-size: 0.92rem;
  font-weight: 700;
}

.brand strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 500;
  line-height: 1.05;
}

.brand small {
  display: block;
  color: var(--quiet);
  font-size: 0.76rem;
  line-height: 1.4;
}

.nav-links {
  gap: 6px;
  justify-content: flex-end;
}

.nav-links a,
.button {
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  color: var(--muted);
  font-size: 0.9rem;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  border-color: var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.06);
}

.header-call {
  color: var(--black) !important;
  background: var(--gold);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: center;
  min-height: calc(100svh - 76px);
  padding: clamp(28px, 6vw, 76px) clamp(16px, 4vw, 56px) clamp(24px, 4vw, 42px);
}

.hero-copy {
  max-width: 700px;
}

.kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: clamp(0.72rem, 1.5vw, 0.82rem);
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.45;
  text-transform: uppercase;
}

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

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

h1 {
  max-width: 11ch;
  margin-bottom: 22px;
  font-size: clamp(3.4rem, 8vw, 7.6rem);
  line-height: 0.88;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.1rem, 5vw, 4.8rem);
  line-height: 0.95;
}

h3 {
  margin-bottom: 18px;
  font-size: 1.6rem;
  line-height: 1.1;
}

.hero-text,
.intro > p,
.visit-panel > p {
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.16rem);
  line-height: 1.65;
}

.hero-text {
  max-width: 640px;
  margin-bottom: 30px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  font-weight: 800;
}

.button.primary {
  color: #170b08;
  background: linear-gradient(135deg, var(--coral), var(--gold));
  box-shadow: 0 14px 34px rgba(255, 123, 88, 0.2);
}

.button.ghost {
  border-color: var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.06);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.hero-mosaic {
  display: grid;
  grid-template-columns: 1.16fr 0.84fr;
  grid-template-rows: minmax(190px, 0.82fr) minmax(230px, 1fr);
  gap: 12px;
  height: min(720px, 72svh);
  min-height: 520px;
}

.tile,
.gallery-card {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 22px 60px var(--shadow);
}

.tile-main {
  grid-row: 1 / span 2;
}

.tile-main img {
  object-position: 50% 48%;
}

.tile:nth-child(2) img {
  object-position: 52% 44%;
}

.tile:nth-child(3) img {
  object-position: 45% 42%;
}

.quick-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto clamp(42px, 8vw, 96px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.quick-strip div {
  min-width: 0;
  padding: clamp(16px, 3vw, 24px);
  background: rgba(23, 16, 20, 0.92);
}

.quick-strip span {
  display: block;
  margin-bottom: 8px;
  color: var(--quiet);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.35;
  text-transform: uppercase;
}

.quick-strip strong {
  display: block;
  font-size: clamp(0.98rem, 1.8vw, 1.22rem);
  line-height: 1.3;
}

.section {
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(44px, 8vw, 86px) 0;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.58fr);
  gap: clamp(24px, 5vw, 60px);
  align-items: end;
  border-top: 1px solid var(--line);
}

.section-heading {
  min-width: 0;
}

.gallery-section {
  border-top: 1px solid var(--line);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: minmax(210px, 18vw);
  gap: 12px;
  margin-top: clamp(24px, 5vw, 48px);
}

.gallery-card {
  min-height: 240px;
}

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

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

.gallery-card img {
  object-position: 50% 50%;
}

.gallery-card:nth-child(1) img {
  object-position: 52% 46%;
}

.gallery-card:nth-child(2) img {
  object-position: 50% 38%;
}

.gallery-card:nth-child(3) img {
  object-position: 46% 48%;
}

.gallery-card:nth-child(4) img {
  object-position: 50% 46%;
}

.gallery-card:nth-child(5) img {
  object-position: 50% 44%;
}

.gallery-card::after {
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  content: "";
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72), transparent);
}

figcaption {
  position: absolute;
  right: 14px;
  bottom: 12px;
  left: 14px;
  z-index: 1;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.25;
}

.services {
  border-top: 1px solid var(--line);
}

.service-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  margin: clamp(24px, 5vw, 42px) 0 0;
  list-style: none;
}

.service-list li {
  min-height: 58px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  color: var(--muted);
  font-weight: 800;
  line-height: 1.35;
}

.visit {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 18px;
  align-items: stretch;
  border-top: 1px solid var(--line);
}

.visit-panel,
.hours-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(23, 16, 20, 0.9);
}

.visit-panel {
  padding: clamp(24px, 5vw, 44px);
}

.visit-panel p {
  max-width: 680px;
  margin-bottom: 24px;
}

.hours-panel {
  padding: 28px;
}

.hours-panel dl {
  display: grid;
  gap: 2px;
  margin: 0;
}

.hours-panel div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(248, 244, 239, 0.1);
}

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

.hours-panel dt {
  color: var(--quiet);
  font-weight: 700;
}

.hours-panel dd {
  margin: 0;
  text-align: right;
  font-weight: 800;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(16px, 4vw, 56px) 36px;
  border-top: 1px solid var(--line);
  color: var(--quiet);
}

.site-footer p {
  margin: 0;
  line-height: 1.45;
}

.site-footer div {
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

.site-footer a {
  color: var(--ink);
  font-weight: 800;
}

@media (max-width: 1120px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-copy {
    max-width: 780px;
  }

  h1 {
    max-width: 12ch;
  }

  .hero-mosaic {
    height: 560px;
    min-height: 0;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: minmax(220px, 28vw);
  }

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

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

@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
    min-height: 0;
  }

  .nav-links a:not(.header-call) {
    display: none;
  }

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

  h1 {
    max-width: 9.5ch;
    font-size: clamp(3.1rem, 16vw, 4.8rem);
  }

  .hero-text,
  .intro > p,
  .visit-panel > p {
    font-size: 1rem;
  }

  .hero-mosaic {
    grid-template-columns: 1fr 0.72fr;
    grid-template-rows: 160px 190px;
    height: 362px;
  }

  .quick-strip,
  .intro,
  .visit {
    grid-template-columns: 1fr;
  }

  .quick-strip {
    margin-bottom: 26px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: minmax(188px, 58vw);
    gap: 10px;
  }

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

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

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

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

  .site-footer div {
    justify-content: flex-start;
  }
}

@media (max-width: 380px) {
  .site-header,
  .hero,
  .section,
  .site-footer {
    padding-right: 12px;
    padding-left: 12px;
  }

  .section,
  .quick-strip {
    width: calc(100% - 24px);
  }

  .brand-mark {
    flex-basis: 38px;
    width: 38px;
    height: 38px;
  }

  .nav-links a,
  .button {
    min-height: 42px;
    padding-right: 13px;
    padding-left: 13px;
    font-size: 0.92rem;
  }

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

  .button {
    width: 100%;
  }

  .hero-mosaic {
    grid-template-rows: 138px 164px;
    height: 314px;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .button:hover,
  .button:focus-visible {
    transform: none;
  }
}
