:root {
  --accent: #d50812;
  --accent-dark: #a90008;
  --ink: #141414;
  --muted: #68625e;
  --line: #e8e2dc;
  --soft: #f8f4f0;
  --warm: #f0e7df;
  --shadow: 0 18px 45px rgba(22, 18, 16, 0.08);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: var(--sans);
  line-height: 1.7;
}

body.is-lightbox-open {
  overflow: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 240px 1fr 250px;
  align-items: center;
  min-height: 132px;
  padding: 8px clamp(22px, 5vw, 82px);
  background: rgba(255, 255, 255, 0.93);
  border-bottom: 1px solid rgba(232, 226, 220, 0.8);
  backdrop-filter: blur(18px);
}

.brand img,
.footer-logo img {
  width: 224px;
  height: 116px;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(24px, 4vw, 58px);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a,
.footer-nav a {
  transition: color 180ms ease;
}

.site-nav a:hover,
.footer-nav a:hover,
.facebook-link:hover,
.footer-facebook:hover {
  color: var(--accent);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}

.facebook-link,
.footer-facebook {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.facebook-link span:first-child,
.footer-facebook span {
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  color: #fff;
  background: #111;
  border-radius: 50%;
  font-family: Arial, sans-serif;
  font-size: 15px;
  line-height: 1;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 28px;
  border: 1px solid var(--ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 12px 30px rgba(213, 8, 18, 0.18);
}

.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.75);
}

.menu-toggle {
  display: none;
}

.section,
.section-split {
  scroll-margin-top: 146px;
}

.section-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
}

.hero {
  min-height: calc(100vh - 132px);
  background:
    radial-gradient(circle at 78% 12%, rgba(217, 182, 160, 0.24), transparent 32%),
    linear-gradient(90deg, #fff 0%, #fff 54%, #f4ebe4 100%);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(58px, 9vw, 126px) clamp(24px, 7vw, 92px);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 0.98;
}

h1 {
  margin-bottom: 28px;
  font-size: clamp(58px, 7vw, 112px);
  letter-spacing: 0;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(34px, 4vw, 58px);
}

.hero-subtext {
  margin-bottom: 34px;
  color: #272320;
  font-size: clamp(18px, 1.8vw, 25px);
  line-height: 1.55;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.hero-visual {
  position: relative;
  min-height: 560px;
  overflow: hidden;
}

.hero-visual::before {
  position: absolute;
  inset: 10% 8% 8% 0;
  content: "";
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(239, 219, 204, 0.8));
  border-radius: 52% 48% 0 0;
}

.hero-visual img {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center top;
  mix-blend-mode: multiply;
}

.about {
  background: #fff;
}

.about-photo img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.section-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 660px;
  padding: clamp(58px, 8vw, 110px) clamp(28px, 8vw, 105px);
}

.section-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
}

.section {
  padding: clamp(72px, 8vw, 118px) clamp(22px, 5vw, 70px);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
}

.section-heading h2 {
  margin-bottom: 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
}

.service-card {
  grid-column: span 3;
  min-height: 366px;
  padding: 12px 12px 22px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.service-card:nth-child(-n + 3) {
  grid-column: span 4;
}

.service-card:hover {
  border-color: rgba(213, 8, 18, 0.2);
  box-shadow: 0 22px 55px rgba(22, 18, 16, 0.12);
  transform: translateY(-6px);
}

.image-button {
  position: relative;
  display: block;
  width: 100%;
  margin: 0 0 20px;
  padding: 0;
  overflow: hidden;
  cursor: zoom-in;
  background: var(--soft);
  border: 0;
  font: inherit;
}

.image-button::after {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(20, 20, 20, 0.34);
  content: "View";
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  opacity: 0;
  text-transform: uppercase;
  transition: opacity 220ms ease;
}

.image-button:hover::after,
.image-button:focus-visible::after {
  opacity: 1;
}

.image-button:hover img,
.image-button:focus-visible img {
  transform: scale(1.06);
}

.image-button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.service-card .image-button {
  aspect-ratio: 4 / 3;
}

.image-button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease;
}

.service-card h3 {
  min-height: 48px;
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.3;
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.gallery {
  background: linear-gradient(180deg, #fff 0%, #fbf8f5 100%);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 22px;
}

.gallery-grid figure {
  min-height: 330px;
  margin: 0;
  background: var(--soft);
  overflow: hidden;
}

.gallery-grid .image-button {
  width: 100%;
  height: 100%;
  margin: 0;
}

.gallery-grid img {
  object-fit: cover;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(12, 10, 9, 0);
  backdrop-filter: blur(0);
  opacity: 0;
  pointer-events: none;
  transition: opacity 320ms ease, background 320ms ease, backdrop-filter 320ms ease;
}

.lightbox.is-open {
  background: rgba(12, 10, 9, 0.78);
  backdrop-filter: blur(10px);
  opacity: 1;
  pointer-events: auto;
}

.lightbox-frame {
  max-width: min(86vw, 920px);
  max-height: 86vh;
  opacity: 0;
  text-align: center;
  transform: translateY(28px) scale(0.9);
  transition: opacity 360ms ease, transform 460ms cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox.is-open .lightbox-frame {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.lightbox-frame img {
  width: auto;
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
  transform-origin: center;
}

.lightbox.is-open .lightbox-frame img {
  animation: soft-pop 520ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.lightbox-frame p {
  margin: 14px 0 0;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lightbox-close {
  position: absolute;
  top: 22px;
  right: 24px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: #fff;
  cursor: pointer;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.36);
  font-size: 34px;
  line-height: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 680ms ease, transform 680ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 80ms;
}

.reveal-delay-2 {
  transition-delay: 150ms;
}

@keyframes soft-pop {
  0% {
    filter: blur(8px);
    opacity: 0;
    transform: scale(0.86);
  }

  70% {
    filter: blur(0);
    opacity: 1;
    transform: scale(1.018);
  }

  100% {
    filter: blur(0);
    opacity: 1;
    transform: scale(1);
  }
}

.reviews {
  background: #fff;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  max-width: 1120px;
  margin: 0 auto;
}

.review-card {
  display: flex;
  min-height: 270px;
  flex-direction: column;
  justify-content: center;
  padding: 38px 34px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
  text-align: center;
}

.stars {
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 17px;
  letter-spacing: 0.16em;
}

.review-card p {
  color: #3e3935;
  font-size: 15px;
}

.review-card h3 {
  margin: auto 0 0;
  font-size: 15px;
}

.access {
  display: grid;
  grid-template-columns: 1.08fr 0.66fr 0.92fr;
  min-height: 520px;
  scroll-margin-top: 110px;
  background: #fff;
}

.map-panel img,
.access-photo img {
  width: 100%;
  height: 100%;
  min-height: 520px;
}

.map-panel img,
.access-photo img {
  object-fit: cover;
}

.access-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 46px clamp(26px, 4vw, 52px);
  background: #fff;
}

.access-card h2 {
  margin-bottom: 18px;
}

address {
  margin-bottom: 22px;
  color: var(--muted);
  font-style: normal;
}

.hours {
  margin: 0 0 26px;
}

.hours div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: #272320;
  font-size: 15px;
}

.hours dt {
  font-weight: 700;
}

.hours dd {
  margin: 0;
}

.access-actions {
  display: grid;
  gap: 12px;
}

.access-actions .btn {
  width: 100%;
}

.site-footer {
  background: #fff;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 30px;
  padding: 38px clamp(24px, 8vw, 140px);
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  justify-content: center;
  gap: 8px 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-facebook {
  justify-self: end;
}

.copyright {
  margin: 0;
  padding: 13px 20px;
  color: #d6d1cd;
  background: #111;
  font-size: 11px;
  text-align: center;
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 200px 1fr 210px;
  }

  .facebook-link span:last-child {
    display: none;
  }

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

  .service-card,
  .service-card:nth-child(-n + 3) {
    grid-column: auto;
  }
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 104px;
    padding: 12px 20px;
  }

  .brand img {
    width: 160px;
    height: 80px;
  }

  .menu-toggle {
    display: inline-grid;
    width: 46px;
    height: 46px;
    place-items: center;
    padding: 0;
    background: transparent;
    border: 1px solid var(--line);
  }

  .menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--ink);
    transition: transform 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-5px) rotate(-45deg);
  }

  .site-nav,
  .header-actions {
    grid-column: 1 / -1;
    display: none;
  }

  .site-header.is-open .site-nav,
  .site-header.is-open .header-actions {
    display: flex;
  }

  .site-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 22px 0 14px;
  }

  .header-actions {
    align-items: stretch;
    justify-content: flex-start;
    padding-bottom: 18px;
  }

  .facebook-link span:last-child {
    display: inline;
  }

  .section-split,
  .access {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    background: linear-gradient(180deg, #fff 0%, #f7eee8 100%);
  }

  .hero-copy {
    padding: 58px 24px 36px;
  }

  .hero-visual,
  .about-photo img,
  .map-panel img,
  .access-photo img {
    min-height: 430px;
  }

  .about-photo {
    order: 2;
  }

  .section-copy {
    padding: 64px 24px;
  }

  .section {
    padding: 68px 20px;
  }

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

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

  .gallery-grid figure {
    min-height: 390px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-logo img {
    object-position: center;
  }

  .footer-facebook {
    justify-self: center;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 34px;
  }

  .button-row,
  .header-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-visual,
  .about-photo img,
  .map-panel img,
  .access-photo img {
    min-height: 340px;
  }

  .gallery-grid figure {
    min-height: 320px;
  }

  .review-card {
    padding: 32px 24px;
  }

  .footer-nav {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
