:root {
  --ink: #24312d;
  --muted: #617069;
  --paper: #fffdf7;
  --sage: #d9e0d0;
  --moss: #637466;
  --clay: #b5775d;
  --rose: #ead6cc;
  --cream: #f5efe4;
  --line: rgba(36, 49, 45, 0.16);
  --shadow: 0 20px 60px rgba(36, 49, 45, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px clamp(18px, 4vw, 56px);
  background: rgba(255, 253, 247, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 0.68rem;
  letter-spacing: 0;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 30px);
  color: var(--muted);
  font-size: 0.95rem;
}

nav a {
  text-decoration: none;
}

nav a:hover {
  color: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.2fr);
  gap: clamp(32px, 5vw, 82px);
  align-items: center;
  min-height: 0;
  padding: clamp(42px, 6vw, 76px) clamp(18px, 4vw, 56px);
  background: var(--cream);
}

.hero-media {
  height: min(64vh, 620px);
  min-height: 430px;
  overflow: hidden;
  border-radius: 8px;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-copy {
  align-self: center;
  padding: 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.05;
}

h1 {
  max-width: 880px;
  margin-bottom: 24px;
  font-size: clamp(2.55rem, 4.4vw, 4.35rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.25rem, 4vw, 4.6rem);
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.18;
}

.hero-lede {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.32rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
}

.button.primary {
  background: var(--ink);
  color: var(--paper);
}

.button.secondary {
  background: transparent;
}

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

section {
  padding: clamp(64px, 9vw, 124px) clamp(18px, 4vw, 56px);
}

.band {
  background: var(--sage);
}

.intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(280px, 1fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: end;
}

.intro p:last-child {
  max-width: 720px;
  color: #35433e;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
}

.section-heading {
  max-width: 820px;
  margin-bottom: clamp(32px, 5vw, 60px);
}

.section-heading p {
  max-width: 640px;
  color: var(--muted);
  font-size: 1.05rem;
}

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

.offering-card {
  overflow: hidden;
  background: #fffaf0;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(36, 49, 45, 0.08);
}

.offering-card img {
  width: 100%;
  height: clamp(180px, 17vw, 260px);
  object-fit: cover;
}

.offering-body {
  padding: clamp(18px, 2.4vw, 24px);
}

.price {
  margin-bottom: 10px;
  color: var(--clay);
  font-weight: 800;
}

ul {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

li + li {
  margin-top: 7px;
}

.space {
  background: #edf0e6;
}

.gallery-shell {
  position: relative;
}

.gallery {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 0 0 10px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.gallery::-webkit-scrollbar {
  display: none;
}

.gallery-item {
  position: relative;
  flex: 0 0 min(860px, 78vw);
  overflow: hidden;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 8px;
  cursor: zoom-in;
  aspect-ratio: 1.55;
  scroll-snap-align: center;
  box-shadow: 0 14px 36px rgba(36, 49, 45, 0.12);
}

.gallery-item.large {
  flex-basis: min(860px, 78vw);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

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

.carousel-button {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  background: rgba(255, 253, 247, 0.94);
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: 900;
  transform: translateY(-50%);
  box-shadow: 0 10px 24px rgba(36, 49, 45, 0.16);
}

.carousel-button:hover {
  background: var(--ink);
  color: var(--paper);
}

.carousel-button.prev {
  left: 16px;
}

.carousel-button.next {
  right: 16px;
}

.gallery-count {
  margin: 14px 0 0;
  color: var(--muted);
  font-weight: 800;
}

.fit {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(280px, 1fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: start;
}

.fit-copy p:last-child {
  color: var(--muted);
  font-size: 1.08rem;
}

.fit-list {
  display: grid;
  gap: 14px;
}

.fit-list div {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.fit-list div:last-child {
  border-bottom: 1px solid var(--line);
}

.fit-list strong {
  font-size: 1.05rem;
}

.fit-list span {
  color: var(--muted);
}

.contact {
  background: linear-gradient(135deg, var(--ink), #394238 54%, #5d5044);
  color: var(--paper);
}

.contact-panel {
  width: min(880px, 100%);
}

.contact .eyebrow {
  color: var(--rose);
}

.contact p {
  max-width: 700px;
  color: rgba(255, 253, 247, 0.82);
  font-size: 1.12rem;
}

.contact .button.primary {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}

.contact .button.secondary {
  color: var(--paper);
  border-color: rgba(255, 253, 247, 0.7);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(18px, 4vw, 56px);
  background: var(--ink);
  color: rgba(255, 253, 247, 0.75);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  text-decoration: none;
}

.lightbox {
  width: min(1080px, calc(100vw - 32px));
  padding: 0;
  overflow: hidden;
  background: var(--paper);
  border: 0;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.lightbox::backdrop {
  background: rgba(18, 25, 23, 0.72);
}

.lightbox img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  background: #111;
}

.lightbox p {
  margin: 0;
  padding: 14px 18px 18px;
  color: var(--muted);
}

.lightbox-close {
  position: absolute;
  top: 10px;
  right: 10px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  background: rgba(255, 253, 247, 0.92);
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  cursor: pointer;
  font-size: 1.8rem;
  line-height: 1;
}

@media (max-width: 980px) {
  .hero,
  .intro,
  .fit {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 28px;
  }

  .hero-media {
    height: 420px;
    min-height: 0;
  }

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

  .gallery-item,
  .gallery-item.large {
    flex-basis: min(720px, 84vw);
  }
}

@media (max-width: 680px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero-media {
    height: 310px;
  }

  .hero-copy {
    padding: 34px 18px 50px;
  }

  h1 {
    font-size: 2.45rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .button {
    width: 100%;
  }

  .gallery-item {
    flex-basis: 86vw;
    aspect-ratio: 1.35;
  }

  .carousel-button {
    width: 42px;
    height: 42px;
  }

  .carousel-button.prev {
    left: 8px;
  }

  .carousel-button.next {
    right: 8px;
  }

  .fit-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

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