:root {
  --bg: #f3efe7;
  --bg-soft: #fbf8f3;
  --text: #1d1a17;
  --muted: #64584d;
  --line: rgba(29, 26, 23, 0.1);
  --card: rgba(255, 252, 247, 0.72);
  --card-strong: #161311;
  --accent: #bf8b41;
  --accent-strong: #8f5e1f;
  --shadow: 0 24px 60px rgba(34, 25, 17, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: min(1180px, calc(100vw - 40px));
  --card-logo-size: 48px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  overflow-x: clip;
  background:
    radial-gradient(circle at top left, rgba(191, 139, 65, 0.2), transparent 30%),
    radial-gradient(circle at 85% 15%, rgba(22, 19, 17, 0.12), transparent 22%),
    linear-gradient(180deg, #f8f2e6 0%, #efe7da 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, black 40%, transparent 85%);
  opacity: 0.28;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  width: var(--container);
  margin: 0 auto;
  padding-bottom: 24px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  width: 100%;
  padding: 18px 0;
  background: linear-gradient(180deg, rgba(247, 240, 228, 0.94), rgba(247, 240, 228, 0.76));
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 30px rgba(31, 23, 15, 0.08);
}

.site-header__inner {
  width: min(1400px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 10px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand img {
  height: 58px;
  width: auto;
  max-width: 220px;
  border-radius: 6px;
  object-fit: contain;
  border: 2px solid rgba(191, 139, 65, 0.3);
}

.brand span {
  display: grid;
}

.brand strong,
.hero h1,
.section-heading h2,
.intro-panel h2,
.story-copy h2,
.contact-panel h2 {
  font-family: "Cormorant Garamond", serif;
}

.brand strong {
  font-size: 1.35rem;
  line-height: 1;
}

.brand small {
  color: var(--muted);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  position: relative;
  font-weight: 700;
  font-size: 0.95rem;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #fff7ec;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 6px auto;
  background: var(--text);
  transition: transform 220ms ease, opacity 220ms ease;
}

.section {
  margin-bottom: 0;
}

.section:not(.hero) {
  position: relative;
  isolation: isolate;
  padding: 52px 0;
  overflow: visible;
}

.section:not(.hero)::before {
  content: "";
  position: absolute;
  inset: 0;
  left: calc(50% - 50vw);
  right: calc(50% - 50vw);
  z-index: -1;
  pointer-events: none;
  background: var(--section-bg, transparent);
}

.intro-grid {
  --section-bg: linear-gradient(135deg, rgba(255, 252, 247, 0.88), rgba(246, 239, 228, 0.98));
}

.services {
  --section-bg: linear-gradient(180deg, rgba(255, 252, 247, 0.9), rgba(244, 236, 226, 0.96));
}

.story {
  --section-bg: linear-gradient(135deg, rgba(247, 241, 232, 0.94), rgba(255, 252, 247, 0.78));
}

.gallery {
  --section-bg: linear-gradient(180deg, rgba(255, 250, 245, 0.92), rgba(243, 236, 227, 0.98));
}

.contact {
  --section-bg: linear-gradient(135deg, rgba(247, 240, 230, 0.96), rgba(255, 252, 247, 0.84));
}

.hero {
  position: relative;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  min-height: calc(100vh - 110px);
  padding: 90px 0 120px;
  overflow: clip;
  color: #f9f4eb;
}

.hero-media,
.hero-background,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-background {
  background-image: url("assets/images/hero-1.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  transform: scale(1.08);
  will-change: transform;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(17, 12, 10, 0.82) 0%, rgba(17, 12, 10, 0.62) 36%, rgba(17, 12, 10, 0.28) 60%, rgba(17, 12, 10, 0.58) 100%),
    linear-gradient(180deg, rgba(17, 12, 10, 0.28) 0%, rgba(17, 12, 10, 0.1) 30%, rgba(17, 12, 10, 0.76) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1400px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(280px, 0.62fr);
  gap: 42px;
  align-items: end;
  justify-content: center;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent-strong);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.74rem;
  font-weight: 800;
}

.hero h1 {
  margin: 0;
  font-size: clamp(3.2rem, 6vw, 6.4rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.hero-text,
.section-heading p,
.intro-panel p,
.service-card p,
.story-copy p,
.contact-panel p,
.hours-note {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.hero-copy {
  max-width: 640px;
  margin: 0 auto;
  padding: 38px 0 70px;
  text-align: left;
}

.hero .eyebrow,
.hero-text {
  color: rgba(249, 244, 235, 0.88);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-actions {
  justify-content: flex-start;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, #d7a25a, #a96f29);
  color: white;
  box-shadow: 0 18px 35px rgba(169, 111, 41, 0.28);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 252, 247, 0.14);
  color: #fff7ea;
  backdrop-filter: blur(14px);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 30px 0 0 0;
  max-width: 560px;
  list-style: none;
}

.hero-facts li,
.service-card,
.intro-panel,
.contact-panel,
.hours-panel {
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: var(--card);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.hero-facts li {
  padding: 16px 18px;
  border-radius: var(--radius-md);
  font-weight: 700;
  background: rgba(255, 251, 244, 0.14);
  color: #fff9f0;
  border-color: rgba(255, 255, 255, 0.16);
}

.hero-side {
  position: relative;
  min-height: 620px;
}

.hero-card {
  position: absolute;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: 0 30px 70px rgba(24, 19, 14, 0.2);
}

.hero-card img,
.story-media img,
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card-floating {
  right: 22px;
  bottom: 118px;
  width: min(360px, 100%);
  height: 470px;
  border: 10px solid rgba(255, 250, 242, 0.86);
  overflow: visible;
  box-shadow: none;
}

.hero-card-floating img {
  position: relative;
  z-index: 1;
  border-radius: inherit;
  box-shadow: 0 30px 70px rgba(24, 19, 14, 0.2);
}

.hero-badge {
  position: absolute;
  left: -18px;
  bottom: 18px;
  z-index: 2;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(17, 14, 12, 0.72);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.2);
  transform: translateY(42%);
}

.hero-badge span {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
}

.hero-badge small {
  color: rgba(255, 255, 255, 0.72);
}

.intro-grid,
.contact {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.intro-grid {
  position: relative;
  z-index: 2;
  margin-top: -66px;
}

.intro-panel,
.contact-panel,
.hours-panel {
  padding: 34px;
  border-radius: var(--radius-xl);
}

.intro-panel-dark {
  background: linear-gradient(135deg, rgba(26, 20, 16, 0.92), rgba(56, 40, 28, 0.88));
  color: white;
}

.intro-panel-dark p,
.intro-panel-dark .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 26px;
}

.section-heading h2,
.intro-panel h2,
.story-copy h2,
.contact-panel h2 {
  margin: 0 0 14px;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 0.98;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.partners .section-heading {
  margin-top: 8px;
}

.partner-logos {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: flex-start;
  padding: 18px 0 36px;
  flex-wrap: wrap;
}

.partner-logos img {
  height: var(--card-logo-size);
  width: auto;
  object-fit: contain;
  display: block;
}

@media (max-width: 820px) {
  .partner-logos {
    justify-content: center;
  }

  .partner-logos img {
    height: 40px;
  }

  .service-logos img {
    height: 40px;
  }

  .service-brand img {
    max-width: 120px;
  }

  .contact-logos img {
    height: 120px;
  }
}

.hero-facts li img {
  height: 22px;
  width: auto;
  vertical-align: middle;
  margin-right: 8px;
}

.contact-logos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.contact-logos img {
  width: 100%;
  height: 150px;
  border-radius: var(--radius-md);
  object-fit: cover;
}

.service-logos {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 8px;
}

.service-logos img {
  height: var(--card-logo-size);
  width: auto;
}

.service-brand {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 34px;
}

.service-brand img {
  max-width: 150px;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.service-media {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: 0 18px 36px rgba(29, 26, 23, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.88));
}

.service-media__button,
.story-media__button {
  all: unset;
  display: block;
  width: 100%;
  height: 100%;
  cursor: zoom-in;
}

.service-media__button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-card {
  padding: 20px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
}

.service-card--link {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.service-card--link:hover,
.service-card--link:focus-visible {
  transform: translateY(-2px);
}

.service-card h3,
.story-points h3 {
  margin: 0 0 12px;
  font-size: 1.25rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(191, 139, 65, 0.12);
  color: var(--accent-strong);
  font-weight: 800;
  transition: transform 220ms ease, background 220ms ease, color 220ms ease;
}

.service-link:hover,
.service-link:focus-visible {
  transform: translateY(-1px);
  background: rgba(191, 139, 65, 0.18);
  color: var(--accent-strong);
}

.story {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.showcase {
  --section-bg: linear-gradient(180deg, rgba(255, 250, 245, 0.94), rgba(243, 236, 227, 0.98));
  width: var(--container);
  margin: 0 auto;
}

.showcase-carousel {
  position: relative;
  margin-top: 18px;
}

.carousel-viewport {
  overflow: hidden;
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.carousel-track {
  display: flex;
  transition: transform 650ms ease;
  will-change: transform;
}

.carousel-slide {
  min-width: 100%;
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 10px;
  background: rgba(255, 252, 247, 0.66);
}

.carousel-card {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 16 / 9;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.92));
  box-shadow: 0 20px 40px rgba(29, 26, 23, 0.12);
}

.carousel-card__button {
  all: unset;
  display: block;
  width: 100%;
  height: 100%;
  cursor: zoom-in;
}

.carousel-card__button img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.carousel-card__button:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: -3px;
}

.carousel-control {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 252, 247, 0.9);
  color: var(--text);
  box-shadow: 0 18px 36px rgba(29, 26, 23, 0.16);
  transform: translateY(-50%);
  cursor: pointer;
  transition: transform 220ms ease, background 220ms ease;
}

.carousel-control:hover,
.carousel-control:focus-visible {
  transform: translateY(-50%) scale(1.04);
  background: rgba(255, 252, 247, 1);
}

.carousel-control span {
  font-size: 2rem;
  line-height: 1;
  margin-top: -2px;
}

.carousel-control-prev {
  left: 0;
}

.carousel-control-next {
  right: 0;
}

.photo-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 22px;
}

.photo-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px rgba(29,26,23,0.12);
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,255,255,0.92));
  min-height: 300px;
}

.photo-card-large {
  grid-column: span 2;
  min-height: 420px;
}

.photo-card__button {
  all: unset;
  display: block;
  width: 100%;
  height: 100%;
  cursor: zoom-in;
}

.photo-card__button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-card__button:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: -3px;
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 1080px) {
  .photo-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .photo-card-large {
    grid-column: span 2;
    min-height: 360px;
  }

  .photo-card {
    min-height: 260px;
  }
}

@media (max-width: 560px) {
  .photo-gallery {
    grid-template-columns: 1fr;
  }

  .photo-card-large {
    grid-column: auto;
    min-height: 240px;
  }

  .photo-card {
    min-height: 240px;
  }
}

.story-media {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: 0 30px 65px rgba(24, 19, 14, 0.18);
}

.story-media img {
  position: absolute;
  inset: 0;
}

.story-media__button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.story-copy {
  padding: 12px 4px 12px 18px;
}

.story-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.story-points div {
  padding: 22px;
  border-radius: var(--radius-lg);
  background: rgba(255, 251, 245, 0.62);
  border: 1px solid var(--line);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 22px;
}

.gallery-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: 0 24px 56px rgba(29, 26, 23, 0.15);
}

.gallery-card-large {
  min-height: 640px;
}

.gallery-card__button {
  all: unset;
  display: block;
  width: 100%;
  height: 100%;
  cursor: zoom-in;
}

.gallery-card__button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-card__button:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: -3px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(16, 12, 8, 0.82);
  backdrop-filter: blur(18px);
}

.lightbox[hidden] {
  display: none;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: transparent;
}

.lightbox__dialog {
  position: relative;
  z-index: 1;
  width: min(1200px, 100%);
  max-height: calc(100vh - 48px);
  padding: 18px;
  border-radius: 28px;
  background: rgba(255, 252, 247, 0.96);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.lightbox__counter {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(17, 14, 12, 0.72);
  color: #fff7ea;
  font-size: 0.88rem;
  font-weight: 800;
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: rgba(17, 14, 12, 0.78);
  color: #fff7ea;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
  transform: translateY(-50%);
  cursor: pointer;
}

.lightbox__nav:hover,
.lightbox__nav:focus-visible {
  background: rgba(17, 14, 12, 0.92);
}

.lightbox__nav span {
  font-size: 2rem;
  line-height: 1;
}

.lightbox__nav--prev {
  left: 24px;
}

.lightbox__nav--next {
  right: 24px;
}

.lightbox__image {
  width: 100%;
  max-height: calc(100vh - 120px);
  object-fit: contain;
  border-radius: 18px;
  background: #100d0b;
}

.lightbox__close {
  position: absolute;
  top: 28px;
  right: 28px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  background: rgba(17, 14, 12, 0.86);
  color: #fff7ea;
  font-weight: 800;
  cursor: pointer;
}

body.lightbox-open {
  overflow: hidden;
}

.contact-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.contact-list a {
  font-size: 1.05rem;
  font-weight: 700;
}

.hours-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}

.hours-head span {
  font-weight: 700;
  color: var(--accent-strong);
}

.hours-list {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.hours-list span {
  color: var(--muted);
}

.hours-list strong {
  text-align: right;
}

.hours-note {
  margin-top: 24px;
  padding: 18px 20px;
  border-radius: var(--radius-lg);
  background: rgba(191, 139, 65, 0.1);
}

.site-footer {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 64px 0 28px;
  background:
    radial-gradient(circle at top left, rgba(191, 139, 65, 0.18), transparent 32%),
    linear-gradient(180deg, rgba(24, 20, 17, 0.98), rgba(17, 14, 12, 1));
  color: rgba(255, 248, 239, 0.82);
}

.site-footer__inner,
.site-footer__meta {
  width: var(--container);
  margin: 0 auto;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) repeat(3, minmax(0, 0.75fr));
  gap: 28px;
  align-items: start;
  padding-bottom: 34px;
}

.site-footer__brand h2,
.site-footer__nav p,
.site-footer__contact p,
.site-footer__hours p {
  margin: 0 0 12px;
  color: #fff7ea;
}

.site-footer__brand h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.site-footer__brand p,
.site-footer__nav a,
.site-footer__contact a,
.site-footer__contact span,
.site-footer__hours span,
.site-footer__meta {
  color: rgba(255, 248, 239, 0.76);
  line-height: 1.7;
}

.site-footer__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.site-footer__nav,
.site-footer__contact,
.site-footer__hours {
  display: grid;
  gap: 10px;
  align-content: start;
}

.site-footer__nav a,
.site-footer__contact a {
  width: fit-content;
  font-weight: 700;
}

.site-footer__nav a:hover,
.site-footer__nav a:focus-visible,
.site-footer__contact a:hover,
.site-footer__contact a:focus-visible,
.site-footer__meta a:hover,
.site-footer__meta a:focus-visible {
  color: #fff7ea;
}

.site-footer__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 247, 234, 0.14);
}

.site-footer__meta div {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal-delay-1 {
  transition-delay: 120ms;
}

.reveal-delay-2 {
  transition-delay: 220ms;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .showcase {
    width: min(100vw - 40px, 1180px);
  }

  .carousel-card {
    aspect-ratio: 16 / 10;
  }

  .hero,
  .story,
  .gallery-grid,
  .service-grid,
  .intro-grid,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 72px;
    padding-bottom: 84px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .section:not(.hero) {
    padding: 36px 0;
  }

  .story-copy {
    padding: 0;
  }

  .story-points,
  .hero-facts,
  .story-points {
    grid-template-columns: 1fr 1fr;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-side {
    min-height: 420px;
  }

  .gallery-grid {
    grid-template-columns: 1.2fr 1fr;
  }

  .gallery-card-large {
    min-height: 520px;
  }

  .contact-logos img {
    height: 132px;
  }

  .intro-grid {
    margin-top: -46px;
  }

  .hero-card-floating {
    right: 0;
    bottom: 76px;
    width: min(320px, 72vw);
    height: 380px;
  }

  .hero-badge {
    left: 0;
    bottom: 10px;
    transform: translateY(28%);
  }
}

@media (max-width: 820px) {
  .showcase {
    width: min(100vw - 24px, 1180px);
  }

  .carousel-slide {
    gap: 12px;
    padding: 8px;
  }

  .carousel-card {
    aspect-ratio: 4 / 3;
  }

  .carousel-control {
    width: 42px;
    height: 42px;
  }

  .carousel-control span {
    font-size: 1.7rem;
  }

  .page-shell {
    width: min(100vw - 24px, 1180px);
  }

  .site-header {
    padding: 12px 0;
  }

  .site-header__inner {
    width: calc(100% - 24px);
    padding: 0;
  }

  .nav-toggle {
    display: inline-block;
    flex-shrink: 0;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 12px;
    left: 12px;
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 26px;
    background: rgba(255, 249, 240, 0.95);
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 220ms ease, transform 220ms ease;
  }

  .site-header.menu-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 14px 10px;
  }

  .site-header.menu-open .nav-toggle span:first-child {
    transform: translateY(8px) rotate(45deg);
  }

  .site-header.menu-open .nav-toggle span:last-child {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero h1 {
    font-size: clamp(2.6rem, 13vw, 4.6rem);
  }

  .hero-copy {
    padding-bottom: 28px;
    max-width: 620px;
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-card-floating {
    width: min(280px, 72vw);
    height: 320px;
    bottom: 94px;
  }

  .story-media,
  .gallery-card-large,
  .gallery-card {
    min-height: 320px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .story-points,
  .hero-facts {
    grid-template-columns: 1fr;
  }

  .intro-panel,
  .contact-panel,
  .hours-panel,
  .service-card {
    padding: 26px;
  }

  .contact-logos {
    grid-template-columns: 1fr;
  }

  .contact-logos img {
    height: 140px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .showcase {
    width: min(100vw - 24px, 1180px);
  }

  .carousel-slide {
    gap: 10px;
    padding: 6px;
  }

  .carousel-card {
    aspect-ratio: 4 / 3;
  }

  .lightbox__counter {
    top: 14px;
    left: 14px;
  }

  .lightbox__nav--prev {
    left: 14px;
  }

  .lightbox__nav--next {
    right: 14px;
  }

  .brand span {
    display: none;
  }

  .hero-badge {
    left: 0;
    right: auto;
    bottom: 8px;
    transform: translateY(24%);
  }

  .hero {
    min-height: 860px;
    padding-top: 52px;
    padding-bottom: 64px;
  }

  .hero-side {
    min-height: 320px;
  }

  .section {
    margin-bottom: 0;
  }

  .section:not(.hero) {
    padding: 26px 0;
  }

  .hero-card-floating {
    width: min(220px, 66vw);
    height: 250px;
    bottom: 80px;
    border-width: 6px;
  }

  .lightbox {
    padding: 12px;
  }

  .lightbox__dialog {
    padding: 12px;
  }

  .lightbox__close {
    top: 20px;
    right: 20px;
  }

  .hero-badge {
    padding: 14px 16px;
  }

  .intro-grid {
    margin-top: -22px;
  }

  .hours-head,
  .hours-list li,
  .site-footer__meta {
    display: grid;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .site-footer__meta {
    justify-content: start;
  }

  .hours-list strong {
    text-align: left;
  }
}