:root {
  --bg: oklch(0.985 0.004 210);
  --surface: oklch(0.955 0.018 185);
  --surface-strong: oklch(0.9 0.035 177);
  --ink: oklch(0.22 0.03 210);
  --muted: oklch(0.42 0.035 210);
  --line: oklch(0.84 0.02 190);
  --coral: oklch(0.72 0.13 36);
  --leaf: oklch(0.54 0.08 160);
  --sky: oklch(0.77 0.07 216);
  --white: oklch(1 0 0);
  --shadow: 0 26px 70px oklch(0.3 0.04 210 / 0.13);
  --font-display: "Bricolage Grotesque", system-ui, sans-serif;
  --font-body: "Afacad", system-ui, sans-serif;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --header-h: 82px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(
      circle at 8% 18%,
      oklch(0.88 0.06 205 / 0.5),
      transparent 28rem
    ),
    linear-gradient(180deg, var(--bg), oklch(0.965 0.006 205));
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.55;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: var(--header-h);
  padding: 0 clamp(18px, 4vw, 56px);
  background: oklch(0.985 0.004 210 / 0.82);
  border-bottom: 1px solid oklch(0.82 0.018 200 / 0.65);
  backdrop-filter: blur(18px);
  transition:
    transform 420ms var(--ease-out),
    background 220ms ease;
}

.header-link {
  justify-self: start;
  color: var(--ink);
  font-weight: 650;
  font-size: 0.95rem;
}

.brand {
  justify-self: center;
  display: grid;
  place-items: center;
  min-width: 168px;
}

.brand img {
  width: auto;
  max-width: min(220px, 36vw);
  height: 48px;
  object-fit: contain;
}

.brand span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.menu-button {
  justify-self: end;
  display: grid;
  gap: 7px;
  width: 46px;
  height: 46px;
  place-content: center;
  border-radius: 999px;
  background: var(--ink);
  color: var(--bg);
  cursor: pointer;
  transition:
    transform 160ms ease,
    background 180ms ease;
}

.menu-button:active {
  transform: scale(0.96);
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: transform 240ms var(--ease-out);
}

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

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

.menu-panel {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  align-content: center;
  gap: 42px;
  padding: var(--header-h) clamp(26px, 8vw, 120px) 56px;
  background: oklch(0.2 0.034 205 / 0.96);
  color: var(--bg);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.menu-panel.is-open {
  pointer-events: auto;
}

.menu-panel__inner {
  display: grid;
  gap: clamp(12px, 2vw, 22px);
}

.menu-panel a {
  width: max-content;
  font-family: var(--font-display);
  font-size: clamp(3rem, 9vw, 8rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: 0;
}

.menu-panel__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  color: oklch(0.86 0.025 190);
}

.hero {
  min-height: 100svh;
  padding: calc(var(--header-h) + 24px) clamp(14px, 3vw, 44px) 72px;
}

.gallery-shell {
  max-width: 1440px;
  margin: 0 auto;
}

.bento-gallery {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(6, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: clamp(7px, 0.9vw, 13px);
  height: min(66vh, 720px);
  min-height: 560px;
  overflow: visible;
}

.bento-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
  background: var(--surface);
  transform-origin: center;
  will-change: transform, opacity;
}

.bento-card:nth-child(1) {
  grid-column: 1 / 4;
  grid-row: 1 / 4;
}

.bento-card:nth-child(2) {
  grid-column: 4 / 6;
  grid-row: 1 / 3;
}

.bento-card:nth-child(3) {
  grid-column: 6 / 9;
  grid-row: 1 / 4;
}

.bento-card:nth-child(4) {
  grid-column: 9 / 11;
  grid-row: 1 / 3;
}

.bento-card:nth-child(5) {
  grid-column: 11 / 13;
  grid-row: 1 / 4;
}

.bento-card:nth-child(6) {
  grid-column: 4 / 6;
  grid-row: 3 / 5;
}

.bento-card:nth-child(7) {
  grid-column: 9 / 11;
  grid-row: 3 / 5;
}

.bento-card:nth-child(8) {
  grid-column: 1 / 4;
  grid-row: 4 / 7;
}

.bento-card:nth-child(9) {
  grid-column: 4 / 7;
  grid-row: 5 / 7;
}

.bento-card:nth-child(10) {
  grid-column: 7 / 9;
  grid-row: 4 / 7;
}

.bento-card:nth-child(11) {
  grid-column: 9 / 11;
  grid-row: 5 / 7;
}

.bento-card:nth-child(12) {
  grid-column: 11 / 13;
  grid-row: 4 / 7;
}

.bento-card img {
  transform: scale(1.025);
  filter: saturate(0.96) contrast(1.03);
  will-change: transform, filter;
}

.bento-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 55%,
    oklch(0.12 0.025 210 / 0.28)
  );
  opacity: 0.65;
  pointer-events: none;
}

.hero-copy {
  max-width: 1120px;
  margin: clamp(34px, 6vw, 72px) auto 0;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(22px, 5vw, 76px);
  align-items: center;
}

.availability,
.section-kicker {
  margin: 0 0 14px;
  color: var(--leaf);
  font-weight: 700;
}

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

h1,
h2,
h3 {
  font-family: var(--font-display);
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  margin-bottom: 0;
  font-size: clamp(3.7rem, 8.6vw, 8.8rem);
  line-height: 0.88;
  max-width: 900px;
}

.hero-copy > p:last-of-type {
  max-width: 38rem;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
  text-wrap: pretty;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 750;
  transition:
    transform 160ms ease,
    background 180ms ease,
    color 180ms ease;
}

.button:active {
  transform: scale(0.97);
}

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

.button--primary:hover {
  background: var(--leaf);
}

.button--ghost {
  border: 1px solid var(--line);
  background: oklch(1 0 0 / 0.68);
  color: var(--ink);
}

main > section:not(.hero) {
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(72px, 11vw, 150px) clamp(20px, 4vw, 44px);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(320px, 1fr);
  gap: clamp(32px, 7vw, 110px);
}

.section-intro h2 {
  margin: 0;
  font-size: clamp(2.5rem, 5.2vw, 5.2rem);
  line-height: 0.96;
}

.section-intro--center {
  max-width: 820px;
  margin: 0 auto 42px;
  text-align: center;
}

.about-copy {
  display: grid;
  gap: 22px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.5vw, 1.25rem);
}

.about-copy p {
  margin: 0;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  background: oklch(1 0 0 / 0.6);
}

.service-list article {
  min-height: 320px;
  padding: clamp(22px, 3vw, 34px);
  border-right: 1px solid var(--line);
}

.service-list article:last-child {
  border-right: 0;
}

.service-list span {
  color: var(--coral);
  font-weight: 800;
}

.service-list h3 {
  margin: 54px 0 16px;
  font-size: clamp(1.55rem, 2.4vw, 2.35rem);
  line-height: 1;
}

.service-list p,
.package-card li {
  color: var(--muted);
}

.package-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 40px;
}

.package-card {
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line);
  background: oklch(1 0 0 / 0.66);
}

.package-card--featured {
  background: var(--surface);
  border-color: oklch(0.71 0.06 170);
}

.package-card h3 {
  margin-bottom: 10px;
  font-size: 2rem;
}

.price {
  margin-bottom: 28px;
  color: var(--leaf);
  font-size: 2rem;
  font-weight: 800;
}

.package-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

.stories {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 14px;
}

.story-panel {
  min-height: 520px;
  display: grid;
  align-content: end;
  padding: clamp(28px, 5vw, 60px);
  background: var(--ink);
  color: var(--bg);
}

.story-panel p {
  max-width: 780px;
  margin-bottom: 28px;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.8vw, 5.3rem);
  line-height: 0.98;
  text-wrap: balance;
}

.story-panel span {
  color: oklch(0.84 0.05 185);
  font-weight: 700;
}

.story-panel--image {
  background:
    linear-gradient(180deg, transparent, oklch(0.16 0.03 210 / 0.25)),
    url("https://images.unsplash.com/photo-1511285560929-80b456fea0bc?auto=format&fit=crop&w=1000&q=82")
      center/cover;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 700;
}

.message-field,
.contact-form button {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  background: oklch(1 0 0 / 0.78);
  color: var(--ink);
  padding: 14px 15px;
  outline: none;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--leaf);
  box-shadow: 0 0 0 4px oklch(0.54 0.08 160 / 0.12);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(20px, 4vw, 56px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

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

.site-footer div {
  display: flex;
  gap: 18px;
}

.reveal-ready {
  opacity: 0;
  transform: translateY(24px);
}

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

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

  .service-list article:nth-child(2) {
    border-right: 0;
  }

  .service-list article {
    border-bottom: 1px solid var(--line);
  }

  .service-list article:nth-child(n + 3) {
    border-bottom: 0;
  }
}

@media (max-width: 720px) {
  :root {
    --header-h: 72px;
  }

  body {
    font-size: 17px;
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    padding-inline: 14px;
  }

  .header-link {
    display: none;
  }

  .brand {
    justify-self: start;
    min-width: 0;
  }

  .brand img {
    max-width: 176px;
    height: 42px;
  }

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

  .menu-panel a {
    font-size: clamp(2.7rem, 16vw, 5.5rem);
  }

  .hero {
    padding-inline: 0;
    padding-bottom: 54px;
  }

  .gallery-shell {
    overflow: hidden;
  }

  .bento-gallery {
    display: flex;
    gap: 12px;
    min-height: 0;
    grid-template-rows: none;
    height: min(67svh, 610px);
    padding: 12px max(16px, calc((100vw - 320px) / 2));
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 16px;
    border-inline: 0;
    box-shadow: none;
    background: transparent;
    scrollbar-width: none;
  }

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

  .bento-card,
  .bento-card--wide,
  .bento-card--tall,
  .bento-card:nth-child(1),
  .bento-card:nth-child(6),
  .bento-card:nth-child(11) {
    flex: 0 0 min(78vw, 380px);
    height: 100%;
    scroll-snap-align: center;
  }

  .hero-copy {
    padding: 0 20px;
    margin-top: 32px;
  }

  h1 {
    font-size: clamp(3.15rem, 16vw, 5.7rem);
  }

  main > section:not(.hero) {
    padding-inline: 20px;
  }

  .service-list,
  .package-row,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .service-list article,
  .service-list article:nth-child(2),
  .service-list article:nth-child(n + 3) {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .service-list h3 {
    margin-top: 32px;
  }

  .story-panel {
    min-height: 420px;
  }

  .story-panel--image {
    min-height: 360px;
  }

  .site-footer {
    display: grid;
  }
}

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

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