@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@600;700&family=Manrope:wght@500;700;800&display=swap");

:root {
  --ink: #18121a;
  --paper: #fffaf7;
  --rose: #f3b6ad;
  --coral: #e86f61;
  --wine: #6d1e35;
  --plum: #2a1728;
  --gold: #d6aa5b;
  --mist: #f7ece9;
  --muted: #725e67;
  --line: rgba(42, 23, 40, 0.14);
  --shadow: 0 24px 70px rgba(42, 23, 40, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff8f4;
  font-family: "Manrope", "Trebuchet MS", sans-serif;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 54px);
  color: #fff;
  background: linear-gradient(180deg, rgba(24, 18, 26, 0.88), rgba(24, 18, 26, 0.38));
  backdrop-filter: blur(10px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: 50%;
  color: var(--plum);
  background: linear-gradient(135deg, #fff, #f3c8b7 65%, #d6aa5b);
  font: 700 0.85rem/1 "Trebuchet MS", sans-serif;
}

.brand strong,
.brand small {
  display: block;
  white-space: nowrap;
}

.brand strong {
  font: 800 0.96rem/1.1 "Manrope", sans-serif;
  letter-spacing: 0;
}

.brand small {
  margin-top: 2px;
  color: rgba(255,255,255,0.72);
  font: 0.78rem/1.1 "Manrope", sans-serif;
}

nav {
  display: flex;
  gap: clamp(12px, 2vw, 28px);
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 999px;
  background: rgba(255,255,255,0.07);
  font: 800 0.72rem/1 "Manrope", sans-serif;
  text-transform: uppercase;
}

nav a {
  color: rgba(255,255,255,0.82);
  text-decoration: none;
}

nav a:hover {
  color: #fff;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: 50%;
  padding: 0;
  background: rgba(255,255,255,0.1);
  cursor: pointer;
  position: relative;
}

.menu-toggle span {
  position: absolute;
  left: 11px;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  transition: transform 160ms ease, opacity 160ms ease, top 160ms ease;
}

.menu-toggle span:nth-child(1) {
  top: 13px;
}

.menu-toggle span:nth-child(2) {
  top: 20px;
}

.menu-toggle span:nth-child(3) {
  top: 27px;
}

.nav-open .menu-toggle span:nth-child(1) {
  top: 20px;
  transform: rotate(45deg);
}

.nav-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .menu-toggle span:nth-child(3) {
  top: 20px;
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 760px;
  display: block;
  padding: 112px clamp(18px, 5vw, 76px) 58px;
  overflow: hidden;
  color: #fff;
  background: var(--plum);
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(24,18,26,0.9), rgba(24,18,26,0.52) 44%, rgba(24,18,26,0.54)),
    linear-gradient(0deg, rgba(24,18,26,0.92), rgba(24,18,26,0.08) 40%),
    url("assets/wedding-lighting.jpg") center 38% / cover;
  transform: scale(1.02);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -12% -18% 34%;
  height: 42vh;
  background: radial-gradient(ellipse at center, rgba(232,111,97,0.45), rgba(214,170,91,0.16) 35%, transparent 68%);
  pointer-events: none;
}

.hero-content,
.hero-card {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 1120px;
  padding-top: min(13vh, 110px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--coral);
  font: 800 0.74rem/1.2 "Manrope", sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 1060px;
  margin: 0;
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: clamp(2.25rem, 3.55vw, 3.72rem);
  line-height: 1.02;
  letter-spacing: 0;
  text-wrap: balance;
}

.lede {
  max-width: 720px;
  margin: 20px 0 0;
  color: rgba(255,255,255,0.86);
  font-size: clamp(0.95rem, 1.2vw, 1.08rem);
  line-height: 1.72;
}

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

.button,
.portal-button {
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 14px 20px;
  cursor: pointer;
  text-decoration: none;
  font: 800 0.78rem/1 "Manrope", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.button.primary,
.portal-button {
  color: var(--plum);
  background: linear-gradient(135deg, #fff, #ffd9c8 58%, var(--gold));
  box-shadow: 0 14px 34px rgba(232,111,97,0.26);
}

.button.secondary {
  color: #fff;
  border-color: rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.08);
}

.hero-card {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: fit-content;
  max-width: 900px;
  margin-top: 26px;
  padding: 12px;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.14);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero-card span {
  padding: 10px 13px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  font: 800 0.82rem/1.35 "Manrope", sans-serif;
}

.hero-card span:last-child {
  padding: 10px 13px;
  border: 1px solid rgba(255,255,255,0.14);
}

.section-band,
.services,
.proof,
.contact {
  padding: clamp(48px, 7vw, 88px) clamp(20px, 5vw, 72px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.85fr);
  gap: clamp(26px, 5vw, 70px);
  background:
    linear-gradient(135deg, #fffaf7, #fdece6 68%, #f7d3c4);
}

.intro h2,
.section-heading h2,
.booking h2,
.contact h2 {
  margin: 0;
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: clamp(1.75rem, 2.8vw, 2.85rem);
  line-height: 1.04;
  letter-spacing: 0;
  text-wrap: balance;
}

.intro > p,
.booking-copy p,
.contact p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.94rem, 1.1vw, 1.03rem);
  line-height: 1.7;
}

.services {
  background: var(--paper);
}

.section-heading {
  max-width: 680px;
  margin-bottom: clamp(24px, 4vw, 42px);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-grid article {
  min-height: 245px;
  padding: clamp(20px, 2.4vw, 30px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #fff, #fff9f6);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-grid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(42, 23, 40, 0.12);
}

.service-grid span {
  color: var(--coral);
  font: 800 0.75rem/1 "Manrope", sans-serif;
}

.service-grid h3 {
  margin: 30px 0 10px;
  color: var(--wine);
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: 1.42rem;
  line-height: 1.05;
}

.service-grid p,
.proof p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.62;
}

.gallery {
  background:
    radial-gradient(circle at 20% 0%, rgba(232,111,97,0.22), transparent 34%),
    linear-gradient(135deg, #21101f, #120b12 70%);
  color: #fff;
}

.gallery .section-heading h2 {
  color: #fff;
}

.photo-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 14px;
}

figure {
  margin: 0;
  overflow: hidden;
  background: #120d12;
  box-shadow: 0 24px 60px rgba(0,0,0,0.24);
}

figure.wide {
  grid-row: span 2;
}

figure img {
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  transition: transform 700ms ease;
}

figure:hover img {
  transform: scale(1.035);
}

figcaption {
  padding: 12px 14px;
  color: rgba(255,255,255,0.76);
  font: 800 0.72rem/1.2 "Manrope", sans-serif;
  text-transform: uppercase;
}

.proof {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  background: #fff8f4;
  padding-top: clamp(44px, 6vw, 78px);
  padding-bottom: clamp(44px, 6vw, 78px);
}

blockquote {
  margin: 0;
  padding: clamp(24px, 4vw, 42px);
  border-left: 5px solid var(--rose);
  background: #fff;
  box-shadow: 0 16px 46px rgba(42, 23, 40, 0.08);
}

blockquote p {
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: clamp(1.18rem, 1.65vw, 1.58rem);
  line-height: 1.2;
  color: var(--ink);
}

cite {
  display: block;
  margin-top: 22px;
  color: var(--coral);
  font: 800 0.75rem/1 "Manrope", sans-serif;
  text-transform: uppercase;
}

.booking {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(300px, 0.72fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  background:
    linear-gradient(135deg, rgba(255,250,247,0.97), rgba(248,229,223,0.93)),
    url("assets/chad-haney.jpg") right center / auto 112% no-repeat;
}

.booking-copy {
  padding: clamp(4px, 1vw, 12px);
}

.availability-card {
  padding: clamp(16px, 2.4vw, 28px);
  border: 1px solid rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.42);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.availability-card > div {
  max-width: 520px !important;
  border: 0 !important;
  border-radius: 18px !important;
  box-shadow: 0 22px 60px rgba(42, 23, 40, 0.22) !important;
  font-family: "Manrope", sans-serif !important;
}

.availability-card h3 {
  color: var(--wine);
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: 1.55rem;
}

.availability-card input[type="date"],
.availability-card input[type="submit"] {
  min-height: 52px;
  font-family: "Manrope", sans-serif !important;
}

.availability-card input[type="submit"] {
  background: linear-gradient(135deg, var(--wine), var(--coral)) !important;
  box-shadow: 0 12px 24px rgba(232,111,97,0.28);
}

.fallback-links {
  display: flex;
  gap: 16px;
  margin-top: 18px;
  font: 800 0.75rem/1.2 "Manrope", sans-serif;
  text-transform: uppercase;
}

.fallback-links a {
  color: var(--wine);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.8fr);
  gap: clamp(24px, 4vw, 70px);
  color: #fff;
  background:
    radial-gradient(circle at 90% 10%, rgba(232,111,97,0.24), transparent 34%),
    linear-gradient(135deg, var(--plum), #171016 64%, #4b1730);
}

.contact-list {
  display: grid;
  gap: 14px;
  align-content: center;
  font: 800 clamp(1rem, 1.45vw, 1.24rem)/1.25 "Manrope", sans-serif;
}

.contact-list a,
.contact-list span {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  text-decoration: none;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px clamp(18px, 5vw, 76px);
  color: rgba(255,255,255,0.72);
  background: #100b10;
  font: 800 0.72rem/1.2 "Manrope", sans-serif;
  text-transform: uppercase;
}

footer p {
  margin: 0;
}

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

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

@media (max-width: 760px) {
  .site-header {
    position: fixed;
    align-items: center;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  nav {
    position: fixed;
    top: 72px;
    left: 16px;
    right: 16px;
    display: grid;
    gap: 2px;
    padding: 10px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.16);
    background: rgba(24,18,26,0.94);
    box-shadow: 0 22px 70px rgba(0,0,0,0.34);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

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

  nav a {
    padding: 15px 14px;
    border-radius: 12px;
    background: rgba(255,255,255,0.06);
  }

  .hero {
    min-height: 680px;
    padding: 98px 20px 36px;
  }

  .hero-media {
    background:
      linear-gradient(90deg, rgba(24,18,26,0.91), rgba(24,18,26,0.54)),
      linear-gradient(0deg, rgba(24,18,26,0.96), rgba(24,18,26,0.08) 55%),
      url("assets/wedding-lighting.jpg") 58% center / cover;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2rem, 9vw, 2.75rem);
    line-height: 1.02;
  }

  .lede {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .hero-card {
    width: 100%;
    padding: 16px;
  }

  .hero-card span {
    font-size: 0.76rem;
  }

  .section-band,
  .services,
  .proof,
  .contact {
    padding: 42px 20px;
  }

  .intro h2,
  .section-heading h2,
  .booking h2,
  .contact h2 {
    font-size: clamp(1.55rem, 7.6vw, 2.05rem);
    line-height: 1.08;
  }

  .service-grid,
  .photo-layout,
  .proof {
    grid-template-columns: 1fr;
  }

  figure.wide {
    grid-row: auto;
  }

  figure img {
    min-height: 220px;
  }

  .booking {
    background: linear-gradient(135deg, #fffaf7, #f8e5df);
  }

  .portal-actions,
  footer {
    flex-direction: column;
  }

  .portal-button,
  .button {
    width: 100%;
    text-align: center;
  }

  .availability-card {
    padding: 8px;
    margin-inline: -6px;
  }

  .contact-list a,
  .contact-list span {
    padding: 14px 0;
  }
}
