:root {
  --cream: #f6efe6;
  --paper: #fffaf2;
  --linen: #eadccb;
  --sand: #d8c2a5;
  --charcoal: #28251f;
  --muted: #6e665b;
  --moss: #59694a;
  --moss-dark: #3d4934;
  --clay: #a86f4c;
  --line: rgba(40, 37, 31, 0.14);
  --shadow: 0 24px 60px rgba(84, 64, 43, 0.12);
  --radius: 8px;
  --sans: "Aptos", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --serif: Georgia, "Iowan Old Style", "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, var(--cream) 0%, var(--paper) 48%, #f3eadf 100%);
  color: var(--charcoal);
  font-family: var(--sans);
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(40, 37, 31, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(40, 37, 31, 0.03) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.45), transparent 70%);
}

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

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 4;
  transform: translateY(-140%);
  padding: 0.65rem 0.9rem;
  background: var(--charcoal);
  color: var(--paper);
  border-radius: var(--radius);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.section-shell {
  width: min(100% - 2rem, 1180px);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  top: 1rem;
  left: 50%;
  z-index: 3;
  width: min(calc(100% - 2rem), 1120px);
  min-height: 64px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0.8rem 0.7rem 1rem;
  border: 1px solid rgba(255, 250, 242, 0.6);
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.74);
  box-shadow: 0 18px 44px rgba(62, 45, 29, 0.11);
  backdrop-filter: blur(18px);
}

.site-header.scrolled {
  background: rgba(255, 250, 242, 0.9);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.58rem;
  min-width: max-content;
  text-decoration: none;
  color: var(--charcoal);
  font-family: var(--serif);
  font-size: 1.42rem;
}

.brand-mark {
  width: 2rem;
  height: 2rem;
  border: 2px solid var(--charcoal);
  border-radius: 50%;
  position: relative;
  flex: 0 0 auto;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.brand-mark::before {
  inset: 0.42rem;
  border: 2px solid var(--charcoal);
}

.brand-mark::after {
  width: 0.34rem;
  height: 0.34rem;
  top: 0.28rem;
  right: 0.32rem;
  background: var(--clay);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.22rem;
}

.site-nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0.44rem 0.72rem;
  border-radius: 999px;
  color: rgba(40, 37, 31, 0.82);
  font-size: 0.94rem;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(89, 105, 74, 0.1);
  color: var(--charcoal);
}

.site-nav a:active,
.button:active,
.filter-button:active,
.nav-toggle:active {
  transform: translateY(1px) scale(0.98);
}

.site-nav .nav-cta {
  background: var(--charcoal);
  color: var(--paper);
  padding-inline: 0.95rem;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 250, 242, 0.82);
  color: var(--charcoal);
  cursor: pointer;
  transition: transform 180ms ease;
}

.nav-toggle-line {
  position: absolute;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: transform 220ms ease;
}

.nav-toggle-line:first-child {
  transform: translateY(-4px);
}

.nav-toggle-line:nth-child(2) {
  transform: translateY(4px);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:first-child {
  transform: rotate(42deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) {
  transform: rotate(-42deg);
}

.nav-toggle-label {
  width: 1px;
  height: 1px;
  overflow: hidden;
  position: absolute;
  clip: rect(0 0 0 0);
}

.hero {
  min-height: 100dvh;
  position: relative;
  display: grid;
  place-items: center;
  padding: 8rem 0 4rem;
  overflow: hidden;
}

.hero.section-shell {
  width: 100%;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 24vh;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent, var(--cream));
}

.hero-video-shell {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  opacity: 0.72;
  background: radial-gradient(ellipse at center, rgba(255, 250, 242, 0.52), rgba(246, 239, 230, 0.94) 76%);
  mask-image:
    radial-gradient(ellipse 132% 84% at 50% 42%, #000 0%, #000 58%, rgba(0, 0, 0, 0.62) 80%, transparent 100%);
  -webkit-mask-image:
    radial-gradient(ellipse 132% 84% at 50% 42%, #000 0%, #000 58%, rgba(0, 0, 0, 0.62) 80%, transparent 100%);
}

.hero-video-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at center, rgba(255, 250, 242, 0.06) 0%, rgba(246, 239, 230, 0.42) 62%, rgba(246, 239, 230, 0.92) 100%),
    linear-gradient(180deg, rgba(40, 37, 31, 0.26), rgba(246, 239, 230, 0.16) 45%, rgba(246, 239, 230, 0.72));
}

.hero-video {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  object-position: center center;
  filter: saturate(0.82) contrast(1.02);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, 780px);
  text-align: center;
  padding-top: 2rem;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--moss-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
  font-weight: 500;
}

h1 {
  font-family: var(--serif);
  font-size: 4.7rem;
  max-width: 10ch;
  margin-inline: auto;
}

h2 {
  font-family: var(--serif);
  font-size: 3.15rem;
  max-width: 12ch;
}

h3 {
  font-size: 1.38rem;
}

.hero-copy {
  max-width: 54ch;
  margin: 1.15rem auto 0;
  color: rgba(40, 37, 31, 0.82);
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.8rem 1.15rem;
  border: 1px solid transparent;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button-primary {
  background: var(--moss);
  color: var(--paper);
  box-shadow: 0 15px 36px rgba(61, 73, 52, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--moss-dark);
}

.button-secondary {
  background: rgba(255, 250, 242, 0.72);
  color: var(--charcoal);
  border-color: rgba(40, 37, 31, 0.18);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(40, 37, 31, 0.32);
  background: rgba(255, 250, 242, 0.92);
}

.hero-proof {
  position: absolute;
  z-index: 1;
  left: 50%;
  bottom: 2.2rem;
  transform: translateX(-50%);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  width: min(100% - 2rem, 760px);
}

.hero-proof span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0.45rem 0.8rem;
  border: 1px solid rgba(255, 250, 242, 0.5);
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.58);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28);
  color: rgba(40, 37, 31, 0.8);
  backdrop-filter: blur(12px);
  font-size: 0.9rem;
}

.intro-band {
  padding: 6.5rem 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.35fr;
  gap: 5rem;
  align-items: start;
}

.intro-copy {
  display: grid;
  gap: 1rem;
  color: var(--muted);
  font-size: 1.08rem;
}

.intro-copy p,
.pricing-copy p,
.about-story p,
.booking-copy p,
.site-footer p {
  max-width: 65ch;
  margin: 0;
}

.services-section,
.pricing-section,
.booking-section {
  padding: 6rem 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 3rem;
  align-items: end;
  margin-bottom: 2.2rem;
}

.services-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr 0.72fr;
  gap: 1rem;
  align-items: stretch;
}

.service-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, 0.74);
  box-shadow: 0 18px 48px rgba(84, 64, 43, 0.08);
}

.feature-service {
  grid-row: span 2;
  min-height: 420px;
  background:
    linear-gradient(145deg, rgba(89, 105, 74, 0.14), rgba(255, 250, 242, 0.78)),
    var(--paper);
}

.event-service {
  grid-column: span 2;
  min-height: 210px;
  background: rgba(40, 37, 31, 0.92);
  color: var(--paper);
}

.service-card p {
  margin: 0;
  color: rgba(40, 37, 31, 0.7);
}

.event-service p {
  color: rgba(255, 250, 242, 0.72);
}

.service-kicker {
  color: var(--moss-dark);
  font-size: 0.83rem;
  font-weight: 700;
  text-transform: uppercase;
}

.service-price {
  display: inline-flex;
  align-self: flex-start;
  padding-top: 1rem;
  border-top: 1px solid currentColor;
  color: var(--moss-dark);
  font-weight: 800;
}

.event-service .service-price {
  color: var(--sand);
}

.portfolio-section {
  padding: 6rem 0;
  background: rgba(40, 37, 31, 0.94);
  color: var(--paper);
}

.portfolio-heading {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: end;
  margin-bottom: 1rem;
}

.portfolio-heading .eyebrow {
  color: var(--sand);
}

.portfolio-note {
  max-width: 58ch;
  margin: 0 0 2rem;
  color: rgba(255, 250, 242, 0.68);
}

.portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.5rem;
}

.filter-button {
  min-height: 38px;
  border: 1px solid rgba(255, 250, 242, 0.22);
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  background: transparent;
  color: rgba(255, 250, 242, 0.78);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.filter-button:hover,
.filter-button:focus-visible,
.filter-button.active {
  background: var(--paper);
  color: var(--charcoal);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.82fr 1fr;
  grid-auto-flow: dense;
  gap: 0.9rem;
}

.portfolio-item {
  min-height: 300px;
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 250, 242, 0.12);
  background: #352f27;
}

.portfolio-item.hidden {
  display: none;
}

.portfolio-item.tall {
  grid-row: span 2;
  min-height: 610px;
}

.portfolio-item.wide {
  grid-column: span 2;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.84);
  transform: scale(1.01);
  transition: transform 480ms cubic-bezier(0.16, 1, 0.3, 1), filter 480ms ease;
}

.portfolio-item:hover img {
  transform: scale(1.045);
  filter: saturate(0.98);
}

.portfolio-item figcaption {
  position: absolute;
  left: 0.9rem;
  bottom: 0.9rem;
  max-width: calc(100% - 1.8rem);
  padding: 0.38rem 0.62rem;
  border: 1px solid rgba(255, 250, 242, 0.16);
  border-radius: 999px;
  background: rgba(40, 37, 31, 0.52);
  color: var(--paper);
  backdrop-filter: blur(12px);
  font-size: 0.9rem;
}

.empty-gallery {
  margin-top: 1rem;
  padding: 1rem;
  border: 1px dashed rgba(255, 250, 242, 0.28);
  border-radius: var(--radius);
  color: rgba(255, 250, 242, 0.76);
}

.pricing-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 4rem;
  align-items: start;
}

.pricing-copy {
  position: sticky;
  top: 7rem;
}

.pricing-copy p,
.booking-copy p {
  color: var(--muted);
  margin-top: 1.2rem;
}

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

.price-row {
  display: grid;
  grid-template-columns: minmax(9rem, 1fr) minmax(8rem, auto);
  gap: 0.5rem 1.4rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}

.price-row span {
  font-size: 1.12rem;
  font-weight: 800;
}

.price-row strong {
  justify-self: end;
  color: var(--moss-dark);
  font-size: 1.18rem;
}

.price-row em {
  grid-column: 1 / -1;
  color: var(--muted);
  font-style: normal;
}

.about-section {
  padding: 6rem 0;
  background: linear-gradient(90deg, rgba(89, 105, 74, 0.14), rgba(168, 111, 76, 0.08));
}

.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem;
  align-items: center;
}

.about-panel {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  border-radius: var(--radius);
  color: var(--paper);
  background:
    linear-gradient(180deg, rgba(40, 37, 31, 0.1), rgba(40, 37, 31, 0.78)),
    url("https://picsum.photos/seed/snapshot-camera-local/1100/900") center / cover;
  box-shadow: var(--shadow);
}

.about-panel .eyebrow {
  color: var(--sand);
}

.about-story {
  display: grid;
  gap: 1.15rem;
  padding-left: 1.4rem;
  border-left: 1px solid rgba(89, 105, 74, 0.32);
  color: rgba(40, 37, 31, 0.74);
  font-size: 1.04rem;
  line-height: 1.72;
}

.about-story .about-lead {
  color: var(--charcoal);
  font-size: 1.14rem;
  line-height: 1.62;
  font-weight: 650;
}

.booking-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 3.5rem;
  align-items: start;
}

.contact-form {
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, 0.72);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.42rem;
  margin-bottom: 1rem;
}

.field span {
  color: var(--charcoal);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(40, 37, 31, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, 0.92);
  color: var(--charcoal);
  padding: 0.78rem 0.84rem;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(89, 105, 74, 0.72);
  box-shadow: 0 0 0 4px rgba(89, 105, 74, 0.12);
  background: var(--paper);
}

.field-help {
  min-height: 1.2rem;
  color: var(--muted);
}

.field-error {
  min-height: 1.2rem;
  color: #8e3528;
  font-weight: 700;
}

.field.invalid input,
.field.invalid select,
.field.invalid textarea {
  border-color: rgba(142, 53, 40, 0.7);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.form-status {
  margin: 0;
  color: var(--moss-dark);
  font-weight: 700;
}

.faq-section {
  padding: 6rem 0;
  background: rgba(255, 250, 242, 0.68);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 4rem;
}

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

details {
  border-bottom: 1px solid var(--line);
  padding: 1.1rem 0;
}

summary {
  cursor: pointer;
  color: var(--charcoal);
  font-weight: 800;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  float: right;
  color: var(--moss-dark);
  font-weight: 800;
}

details[open] summary::after {
  content: "-";
}

details p {
  margin: 0.7rem 0 0;
  color: var(--muted);
}

.site-footer {
  padding: 3rem 0;
  background: var(--charcoal);
  color: var(--paper);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: start;
}

.footer-brand {
  color: var(--paper);
}

.footer-brand .brand-mark,
.footer-brand .brand-mark::before {
  border-color: var(--paper);
}

.site-footer p {
  margin-top: 0.85rem;
  color: rgba(255, 250, 242, 0.68);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.35rem;
}

.footer-links a {
  padding: 0.42rem 0.62rem;
  color: rgba(255, 250, 242, 0.74);
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--paper);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: reveal-up 620ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: var(--delay, 0ms);
}

@keyframes reveal-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@media (max-width: 980px) {
  .site-header {
    top: 0.75rem;
    border-radius: 24px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    width: min(100%, 340px);
    display: grid;
    gap: 0.2rem;
    padding: 0.6rem;
    border: 1px solid rgba(255, 250, 242, 0.7);
    border-radius: 20px;
    background: rgba(255, 250, 242, 0.94);
    box-shadow: 0 18px 44px rgba(62, 45, 29, 0.13);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    justify-content: space-between;
    width: 100%;
    border-radius: 14px;
  }

  h1 {
    font-size: 3.6rem;
  }

  h2 {
    font-size: 2.5rem;
  }

  .intro-grid,
  .section-heading,
  .pricing-layout,
  .about-grid,
  .booking-section,
  .faq-layout,
  .portfolio-heading {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .pricing-copy {
    position: static;
  }

  .services-grid,
  .portfolio-grid {
    grid-template-columns: 1fr 1fr;
  }

  .feature-service,
  .event-service,
  .portfolio-item.tall,
  .portfolio-item.wide {
    grid-column: auto;
    grid-row: auto;
  }

  .feature-service,
  .portfolio-item.tall {
    min-height: 360px;
  }

  .portfolio-filters {
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  .section-shell {
    width: min(100% - 1rem, 1180px);
  }

  .site-header {
    width: min(calc(100% - 1rem), 1120px);
    padding-left: 0.85rem;
  }

  .brand {
    font-size: 1.22rem;
  }

  .hero {
    min-height: 100dvh;
    padding-top: 7.2rem;
    padding-bottom: 7rem;
  }

  .hero-video-shell {
    mask-image:
      radial-gradient(ellipse 150% 72% at 50% 42%, #000 0%, #000 50%, rgba(0, 0, 0, 0.52) 72%, transparent 100%);
    -webkit-mask-image:
      radial-gradient(ellipse 150% 72% at 50% 42%, #000 0%, #000 50%, rgba(0, 0, 0, 0.52) 72%, transparent 100%);
  }

  .hero-content {
    padding-inline: 0.25rem;
  }

  h1 {
    font-size: 3rem;
    max-width: 9ch;
  }

  h2 {
    font-size: 2.18rem;
    max-width: 100%;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-actions,
  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-proof {
    bottom: 1rem;
  }

  .intro-band,
  .services-section,
  .portfolio-section,
  .pricing-section,
  .about-section,
  .booking-section,
  .faq-section {
    padding: 4.25rem 0;
  }

  .services-grid,
  .portfolio-grid,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .feature-service,
  .event-service {
    min-height: 230px;
  }

  .portfolio-item,
  .portfolio-item.tall {
    min-height: 340px;
  }

  .price-row {
    grid-template-columns: 1fr;
  }

  .price-row strong {
    justify-self: start;
  }

  .about-panel {
    min-height: 340px;
    padding: 1.25rem;
  }

  .about-story {
    padding-left: 1rem;
  }

  .footer-links {
    justify-content: flex-start;
  }
}
