:root {
  --ink: #10100f;
  --ink-soft: #24231f;
  --paper: #f8f7f2;
  --paper-deep: #efede5;
  --line: rgba(16, 16, 15, 0.14);
  --champagne: #d7c48f;
  --champagne-soft: #f1e7c8;
  --green: #173c34;
  --white: #ffffff;
  --muted: #676259;
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.22);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 24px clamp(20px, 4vw, 54px);
  color: var(--white);
  transition: background 220ms ease, color 220ms ease, padding 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(248, 247, 242, 0.94);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  backdrop-filter: blur(18px);
  padding-block: 14px;
}

.brand img {
  width: 148px;
  filter: brightness(0) invert(1);
  transition: filter 220ms ease, width 220ms ease;
}

.site-header.is-scrolled .brand img,
.site-header.is-open .brand img {
  filter: brightness(0) saturate(100%) invert(8%) sepia(6%) saturate(458%) hue-rotate(2deg) brightness(94%) contrast(92%);
  width: 138px;
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.main-nav a,
.contact-meta a {
  position: relative;
}

.main-nav a::after,
.contact-meta a::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.contact-meta a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.header-cta {
  grid-column: 3;
  justify-self: end;
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

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

.button-ghost {
  color: var(--white);
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  color: inherit;
}

.menu-toggle span {
  display: block;
  width: 16px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  opacity: 0.82;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.66)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.74), transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
  padding: 150px 0 118px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--champagne-soft);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--green);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 0.96;
  font-family: var(--serif);
  font-weight: 600;
}

h1 {
  font-size: clamp(4.3rem, 6.1vw, 6.3rem);
}

h2 {
  max-width: 780px;
  font-size: clamp(3rem, 6vw, 6.2rem);
}

h3 {
  font-size: clamp(2rem, 3vw, 3.2rem);
}

.hero-lede {
  max-width: 560px;
  margin: 22px auto 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.15vw, 1.12rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
}

.intro-band {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: center;
  padding: 28px clamp(20px, 4vw, 54px);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.intro-band p {
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.client-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  color: var(--ink-soft);
}

.client-line span {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.8vw, 1.85rem);
  white-space: nowrap;
}

.section {
  padding: clamp(84px, 11vw, 150px) clamp(20px, 5vw, 70px);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1fr);
  gap: clamp(44px, 8vw, 118px);
  align-items: center;
}

.section-copy p:not(.eyebrow),
.section-heading p:not(.eyebrow),
.wedding-copy p,
.contact-panel p,
.event-grid p,
.format-card p {
  color: var(--muted);
  font-size: 1.02rem;
}

.section-copy p:not(.eyebrow) {
  max-width: 610px;
}

.editorial-stack {
  position: relative;
  min-height: 660px;
  display: grid;
  grid-template-columns: 0.9fr 0.9fr;
  align-items: center;
}

.editorial-stack img,
.wedding-media img,
.event-grid img,
.video-card img {
  width: 100%;
  object-fit: cover;
}

.image-main {
  width: 78%;
  height: 600px;
  justify-self: end;
  object-position: 32% center;
  border: 14px solid var(--white);
  box-shadow: var(--shadow);
  transform: rotate(-1.4deg);
}

.image-float {
  position: relative;
  z-index: 2;
  width: 78%;
  min-width: 0;
  height: 600px;
  margin-left: -64px;
  object-position: center 18%;
  border: 14px solid var(--white);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.24);
  transform: rotate(1.2deg);
}

.dark-section {
  min-height: 100svh;
  display: grid;
  align-items: center;
  background: var(--ink);
  color: var(--white);
}

.formats-inner {
  width: 100%;
}

.section-heading {
  margin-bottom: 46px;
}

.section-heading.center {
  max-width: 800px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.dark-section .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.66);
}

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

.format-card {
  min-height: 430px;
  display: grid;
  grid-template-rows: 28px minmax(86px, auto) minmax(120px, auto) 1fr;
  align-items: start;
  padding: clamp(26px, 3vw, 40px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.045);
}

.format-card.featured {
  background: var(--paper);
  color: var(--ink);
}

.format-card.featured p,
.format-card.featured li {
  color: var(--muted);
}

.format-number {
  color: var(--champagne);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.format-card h3 {
  align-self: end;
}

.format-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.67);
}

.format-card ul {
  display: grid;
  gap: 10px;
  align-self: end;
  margin: 0;
  padding: 0;
  list-style: none;
}

.format-card li {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wedding-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1fr);
  gap: clamp(44px, 8vw, 112px);
  align-items: center;
  background: var(--paper-deep);
}

.wedding-media img {
  height: 720px;
  object-position: center;
  box-shadow: var(--shadow);
}

.wedding-copy {
  max-width: 670px;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 32px 0;
}

.service-list span {
  padding: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.45);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.event-grid article {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.event-grid img {
  height: 440px;
  margin-bottom: 24px;
  object-position: center;
}

.event-grid h3 {
  font-size: 2.5rem;
}

.video-section {
  background: var(--white);
}

.video-card {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.video-card img {
  height: 100%;
  min-height: 260px;
  opacity: 0.72;
  transition: transform 300ms ease, opacity 300ms ease;
}

.video-card:hover img {
  opacity: 0.92;
  transform: scale(1.04);
}

.video-card::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 68px;
  height: 68px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
}

.video-card::before {
  position: absolute;
  top: 50%;
  left: calc(50% + 3px);
  z-index: 1;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid var(--white);
  content: "";
  transform: translate(-50%, -50%);
}

.video-card span {
  position: absolute;
  right: 22px;
  bottom: 18px;
  left: 22px;
  z-index: 1;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-section {
  padding: clamp(78px, 10vw, 140px) clamp(20px, 5vw, 70px);
  background:
    linear-gradient(rgba(16, 16, 15, 0.72), rgba(16, 16, 15, 0.74)),
    url("assets/hero.jpg") center / cover;
  color: var(--white);
}

.contact-panel {
  width: min(880px, 100%);
  margin: 0 auto;
  padding: clamp(34px, 6vw, 76px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(16, 16, 15, 0.42);
  text-align: center;
  backdrop-filter: blur(14px);
}

.contact-panel h2 {
  margin-inline: auto;
}

.contact-panel p {
  max-width: 620px;
  margin: 24px auto 32px;
  color: rgba(255, 255, 255, 0.72);
}

.contact-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 26px;
  margin-top: 34px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  padding: 30px clamp(20px, 4vw, 54px);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.66);
}

.site-footer img {
  width: 140px;
  filter: brightness(0) invert(1);
}

.site-footer p {
  margin: 0;
  font-size: 0.85rem;
}

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

  .main-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .site-header.is-open .main-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 10px 20px 24px;
    background: rgba(248, 247, 242, 0.98);
    border-bottom: 1px solid var(--line);
    color: var(--ink);
  }

  .site-header.is-open .main-nav a {
    padding: 16px 0;
    border-top: 1px solid var(--line);
  }

  .dark-section {
    min-height: auto;
  }

  .format-grid,
  .event-grid,
  .video-grid,
  .split,
  .wedding-section {
    grid-template-columns: 1fr;
  }

  .intro-band {
    grid-template-columns: 1fr;
  }

  .editorial-stack {
    min-height: auto;
    grid-template-columns: 1fr 1fr;
  }

  .image-main,
  .image-float,
  .wedding-media img {
    height: min(620px, 85vw);
  }

  .image-main {
    width: 92%;
  }

  .image-float {
    width: 92%;
    margin-left: -34px;
    border-width: 10px;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 14px 18px;
  }

  .brand img {
    width: 128px;
  }

  .hero-content {
    width: min(100% - 32px, 880px);
    padding: 124px 0 86px;
    text-align: left;
  }

  h1 {
    font-size: clamp(2.95rem, 15vw, 4.7rem);
  }

  h2 {
    font-size: clamp(2.65rem, 13vw, 4.1rem);
  }

  .editorial-stack {
    margin-inline: -4px;
  }

  .image-main,
  .image-float {
    height: 430px;
    border-width: 8px;
  }

  .image-float {
    margin-left: -26px;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .button {
    width: 100%;
    min-height: 52px;
  }

  .service-list {
    grid-template-columns: 1fr;
  }

  .format-card {
    min-height: 360px;
  }

  .event-grid img {
    height: 360px;
  }

  .contact-panel {
    text-align: left;
  }

  .contact-meta {
    justify-content: flex-start;
  }
}
