:root {
  --ink: #100d17;
  --paper: #fbf7ef;
  --muted: #746b78;
  --line: rgba(255, 255, 255, 0.16);
  --panel: #1a1424;
  --panel-2: #24162e;
  --ivory: #fff8e8;
  --magenta: #ff2b7a;
  --gold: #f4b24c;
  --copper: #c76b43;
  --violet: #7b4dff;
  --shadow: 0 28px 80px rgba(16, 13, 23, 0.28);
  --wrap: min(1180px, calc(100% - 36px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 22px;
  padding: 16px clamp(18px, 4vw, 58px);
  color: #fff;
  transition: background 180ms ease, box-shadow 180ms ease;
}
.site-header::before {
  content: none;
}
.site-header > * {
  position: relative;
}
.site-header {
  padding-left: max(18px, calc((100vw - 1180px) / 2));
  padding-right: max(18px, calc((100vw - 1180px) / 2));
}
.site-header.is-solid {
  background: rgba(16, 13, 23, 0.92);
  box-shadow: 0 16px 44px rgba(16, 13, 23, 0.22);
  backdrop-filter: blur(16px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--magenta), var(--gold));
  box-shadow: 0 14px 32px rgba(0,0,0,.24);
  font-weight: 900;
}
.brand strong, .brand small { display: block; }
.brand small { color: rgba(255, 255, 255, 0.74); font-size: .78rem; }
.main-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 30px);
  font-size: .92rem;
  font-weight: 800;
}
.main-nav a { opacity: .82; }
.main-nav a:hover { opacity: 1; color: var(--gold); }
.nav-toggle {
  display: none;
  justify-self: end;
  width: 44px;
  height: 44px;
  place-items: center;
  gap: 4px;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: #fff;
}
.nav-toggle span {
  width: 18px;
  height: 2px;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: var(--ink);
}
.hero-media, .hero-shade { position: absolute; inset: 0; }
.hero-media {
  background-image: url("assets/hero-wedding-mc.jpg");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}
.hero-shade {
  background:
    radial-gradient(circle at 80% 20%, rgba(255,43,122,.32), transparent 36%),
    linear-gradient(90deg, rgba(16,13,23,.96) 0%, rgba(16,13,23,.76) 42%, rgba(16,13,23,.22) 100%),
    linear-gradient(0deg, rgba(16,13,23,.94) 0%, transparent 44%);
}
.hero-brand-art {
  position: absolute;
  z-index: 1;
  top: clamp(118px, 16vh, 176px);
  right: max(18px, calc((100vw - 1180px) / 2));
  width: min(42vw, 560px);
  pointer-events: none;
  opacity: .82;
  transform: rotate(-2deg);
}
.hero-brand-art img {
  display: block;
  width: 100%;
  border-radius: 30px;
  filter: drop-shadow(0 28px 44px rgba(0,0,0,.42));
}
.hero-content {
  position: relative;
  z-index: 2;
  width: var(--wrap);
  margin: 0 auto;
  padding: 145px 0 176px;
}
.eyebrow, .section-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
h1, h2, h3, p { overflow-wrap: anywhere; }
h1 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(2.45rem, 6.3vw, 6.6rem);
  line-height: .92;
  letter-spacing: 0;
}
h2 {
  margin: 0;
  font-size: clamp(2rem, 4.5vw, 4.6rem);
  line-height: 1;
  letter-spacing: 0;
}
h3 { margin: 0; font-size: 1.25rem; line-height: 1.15; }
.hero-lead {
  max-width: 760px;
  margin: 28px 0 0;
  color: rgba(255,255,255,.86);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
}
.hero-actions, .contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
  transition: transform 160ms ease, box-shadow 160ms ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary {
  background: linear-gradient(135deg, var(--magenta), var(--gold));
  color: #fff;
  box-shadow: 0 18px 42px rgba(255, 43, 122, .24);
}
.button.ghost {
  border-color: rgba(255,255,255,.48);
  color: #fff;
  background: rgba(255,255,255,.08);
}
.hero-facts {
  position: absolute;
  z-index: 2;
  right: max(18px, calc((100vw - 1180px) / 2));
  bottom: 24px;
  left: max(18px, calc((100vw - 1180px) / 2));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(18px);
}
.hero-facts div { padding: 22px; border-right: 1px solid var(--line); }
.hero-facts div:last-child { border-right: 0; }
.hero-facts strong, .hero-facts span { display: block; }
.hero-facts strong { font-size: 1.28rem; }
.hero-facts span { color: rgba(255,255,255,.72); font-size: .92rem; }

.section { padding: clamp(72px, 10vw, 132px) 0; }
.section > .section-heading,
.section > .section-kicker,
.section > .split,
.section > .promise-grid,
.section > .service-grid,
.section > .type-grid,
.section > .international-panel,
.section > .flow-list,
.section > .cred-panel,
.section > .trend-grid,
.section > .ecosystem-lead,
.section > .ecosystem-tags,
.section > .gallery-grid,
.section > .gallery-note {
  width: var(--wrap);
  margin-left: auto;
  margin-right: auto;
}
.section-heading {
  max-width: 920px;
  margin-bottom: 40px;
}
.split {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(320px, .78fr);
  gap: clamp(28px, 7vw, 96px);
  align-items: start;
}
.text-stack p { margin: 0 0 18px; color: var(--muted); font-size: 1.08rem; }
.promise-grid, .service-grid, .trend-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}
.promise-grid article, .service-card, .trend-grid article {
  min-height: 230px;
  padding: 28px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(16,13,23,.08);
}
.promise-grid span {
  display: inline-block;
  margin-bottom: 42px;
  color: var(--magenta);
  font-weight: 900;
}
.promise-grid p, .service-card p, .trend-grid p, .gallery-note, .inquiry-copy p, .form-note { color: var(--muted); }

.services, .flow, .inquiry { background: var(--ink); color: #fff; }
.services .section-heading h2, .flow .section-heading h2, .inquiry h2 { color: #fff; }
.service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.service-card {
  min-width: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.1), rgba(255,255,255,.05));
  border: 1px solid var(--line);
  color: #fff;
  box-shadow: none;
}
.service-card p { color: rgba(255,255,255,.72); }
.icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--magenta), var(--violet));
}

.types {
  background: linear-gradient(135deg, #fff7ed, #f8edf9);
}
.type-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.type-grid article {
  min-width: 0;
  min-height: 260px;
  padding: 26px;
  border-radius: 22px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 16px 42px rgba(16,13,23,.08);
}
.type-grid span {
  display: inline-flex;
  margin-bottom: 42px;
  color: var(--magenta);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.type-grid p {
  color: var(--muted);
}

.international {
  background: var(--ink);
  color: #fff;
}
.international-panel {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(340px, .75fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: start;
  padding: clamp(30px, 5vw, 60px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(circle at 80% 0%, rgba(255,43,122,.26), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,.1), rgba(255,255,255,.04));
}
.international-copy p {
  margin: 0 0 18px;
  color: rgba(255,255,255,.76);
}
.language-tags, .ecosystem-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0;
}
.language-tags span {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--magenta), var(--gold));
  color: #fff;
  font-size: .86rem;
  font-weight: 900;
}
.flow-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: rgba(255,255,255,.16);
  border: 1px solid var(--line);
}
.flow-list li {
  min-height: 190px;
  padding: 24px;
  background: var(--panel);
}
.flow-list strong, .flow-list span { display: block; }
.flow-list strong { margin-bottom: 20px; color: var(--gold); }
.flow-list span { color: rgba(255,255,255,.74); }
.credibility {
  background:
    radial-gradient(circle at 20% 20%, rgba(255,43,122,.18), transparent 34%),
    linear-gradient(135deg, #fff7ed, #f7edf8);
}
.cred-panel {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(320px, .78fr);
  gap: 36px;
  align-items: start;
  padding: clamp(30px, 5vw, 60px);
  border-radius: 24px;
  background: rgba(255,255,255,.7);
  box-shadow: var(--shadow);
}
.cred-panel p { color: var(--muted); }
.cred-stats { display: grid; gap: 14px; }
.cred-stats div {
  padding: 18px;
  border-radius: 16px;
  background: var(--ink);
  color: #fff;
}
.cred-stats strong, .cred-stats span { display: block; }
.cred-stats strong { color: var(--gold); font-size: 1.8rem; line-height: 1; }
.cred-stats span { margin-top: 8px; color: rgba(255,255,255,.72); }
.trend-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.trend-grid article { min-width: 0; }

.ecosystem {
  background: #fff;
}
.ecosystem-lead {
  max-width: 840px;
  color: var(--muted);
  font-size: 1.08rem;
}
.ecosystem-tags span {
  display: inline-flex;
  padding: 10px 14px;
  border: 1px solid rgba(16,13,23,.12);
  border-radius: 999px;
  background: #fbf7ef;
  color: var(--ink);
  font-weight: 800;
}

.gallery { background: #f4ebdf; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 290px;
  gap: 18px;
}
.gallery-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--panel), var(--magenta));
  box-shadow: var(--shadow);
}
.gallery-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(244,178,76,.58), transparent 28%),
    radial-gradient(circle at 20% 80%, rgba(255,43,122,.52), transparent 30%),
    linear-gradient(135deg, rgba(16,13,23,.95), rgba(36,22,46,.5));
}
.gallery-card.hero-shot {
  background-image: url("assets/hero-wedding-mc.jpg");
  background-size: cover;
  background-position: center;
}
.gallery-card.vows {
  background-image: url("assets/gallery-ceremony.jpg");
  background-size: cover;
  background-position: center;
}
.gallery-card.dinner {
  background-image: url("assets/gallery-dinner.jpg");
  background-size: cover;
  background-position: center;
}
.gallery-card.dance {
  background-image: url("assets/gallery-dance.jpg");
  background-size: cover;
  background-position: center;
}
.gallery-card.vows::after, .gallery-card.dinner::after, .gallery-card.dance::after {
  content: "";
  position: absolute;
  inset: 26px;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 18px;
}
.gallery-card figcaption {
  position: absolute;
  right: 20px;
  bottom: 18px;
  left: 20px;
  z-index: 1;
  color: #fff;
  font-weight: 900;
}
.gallery-note { max-width: 760px; margin-top: 18px; }

.inquiry {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(400px, .82fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: start;
  padding-left: max(18px, calc((100vw - 1180px) / 2));
  padding-right: max(18px, calc((100vw - 1180px) / 2));
}
.inquiry-copy {
  position: sticky;
  top: 116px;
}
.contact-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--gold);
  font-weight: 900;
}
.contact-cards {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}
.contact-cards a {
  display: grid;
  gap: 4px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.08);
}
.contact-cards strong {
  color: #fff;
}
.contact-cards span {
  color: var(--gold);
  font-weight: 900;
}
.inquiry-form {
  display: grid;
  gap: 14px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,.08);
}
.inquiry-form label {
  display: grid;
  gap: 7px;
  color: rgba(255,255,255,.84);
  font-weight: 800;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.inquiry-form input, .inquiry-form select, .inquiry-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 14px;
  background: rgba(255,255,255,.1);
  color: #fff;
  padding: 13px 14px;
  outline: none;
}
.inquiry-form select option { color: var(--ink); }
.inquiry-form input:focus, .inquiry-form select:focus, .inquiry-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(244,178,76,.18);
}
.trap { position: absolute; left: -9999px; }
.form-status {
  display: none;
  padding: 12px 14px;
  border-radius: 12px;
  font-weight: 800;
}
.form-status.is-visible { display: block; }
.form-status.is-success { background: rgba(67, 207, 124, .16); color: #afffcf; }
.form-status.is-error { background: rgba(255, 43, 122, .16); color: #ffd2e1; }
.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 30px max(18px, calc((100vw - 1180px) / 2));
  background: #08060d;
  color: rgba(255,255,255,.78);
}
.site-footer strong, .site-footer span { display: block; }
.site-footer a { color: #fff; font-weight: 900; }
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 18px;
}
.mobile-cta {
  display: none;
  position: fixed;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 40;
  min-height: 50px;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--magenta), var(--gold));
  color: #fff;
  font-weight: 900;
  box-shadow: 0 20px 44px rgba(16,13,23,.35);
}

@media (max-width: 1120px) {
  .site-header {
    display: flex;
    justify-content: space-between;
  }
  .brand { flex: 1 1 auto; }
  .nav-toggle {
    display: grid;
    flex: 0 0 44px;
  }
  .main-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 14px;
    left: 14px;
    display: none;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(16,13,23,.96);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
  }
  .main-nav.is-open { display: grid; }
  .main-nav a { padding: 13px; border-bottom: 1px solid var(--line); }
  .main-nav a:last-child { border-bottom: 0; }
  .hero-brand-art { display: none; }
  .service-grid, .trend-grid, .flow-list, .type-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .split, .cred-panel, .inquiry, .international-panel { grid-template-columns: 1fr; }
  .inquiry-copy { position: static; }
}

@media (max-width: 720px) {
  .site-header { padding: 12px 14px; }
  .brand small { display: none; }
  .brand-mark { width: 42px; height: 42px; }
  h1 { font-size: clamp(2.2rem, 13vw, 4rem); }
  h2 { font-size: clamp(1.9rem, 10vw, 3.1rem); }
  :root { --wrap: calc(100% - 28px); }
  .hero-content { padding: 112px 0 282px; }
  .hero-facts { grid-template-columns: 1fr; right: 14px; bottom: 76px; left: 14px; }
  .hero-facts div { padding: 14px 16px; border-right: 0; border-bottom: 1px solid var(--line); }
  .hero-facts div:last-child { border-bottom: 0; }
  .section { padding: 68px 0; }
  .inquiry {
    padding-left: 14px;
    padding-right: 14px;
  }
  .promise-grid, .service-grid, .trend-grid, .flow-list, .type-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 260px; }
  .gallery-card.hero-shot { grid-row: auto; }
  .form-row { grid-template-columns: 1fr; }
  .site-footer { flex-direction: column; padding-bottom: 84px; }
  .footer-contact { justify-content: flex-start; }
  .mobile-cta { display: grid; }
}
