* {
  box-sizing: border-box;
}

:root {
  --cream: #f7f0e7;
  --sand: #d8bf9f;
  --clay: #a96f49;
  --navy: #172033;
  --green: #67745f;
  --white: #ffffff;
  --muted: #6a625a;
  --shadow: 0 24px 70px rgba(23, 32, 51, .14);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--navy);
  background: var(--cream);
}

a {
  color: inherit;
}

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

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  width: min(1120px, calc(100% - 32px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 16px 14px 22px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 999px;
  color: white;
  background: rgba(23, 32, 51, .42);
  backdrop-filter: blur(16px);
}

.brand {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  text-decoration: none;
  font-size: 1.2rem;
}

.nav {
  display: flex;
  gap: 22px;
  font-size: .92rem;
}

.nav a {
  text-decoration: none;
  opacity: .9;
}

.nav a:hover {
  opacity: 1;
}

.header-cta,
.button {
  text-decoration: none;
  border-radius: 999px;
  font-weight: 700;
}

.header-cta {
  background: white;
  color: var(--navy);
  padding: 10px 18px;
}

.hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  align-items: end;
  padding: 140px 7vw 90px;
  overflow: hidden;
}

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

.hero-media {
  background-image: url("assets/wedding-performance.jpg");
  background-size: cover;
  background-position: center 38%;
  transform: scale(1.02);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(12,18,28,.78) 0%, rgba(12,18,28,.45) 45%, rgba(12,18,28,.1) 100%),
    linear-gradient(0deg, rgba(12,18,28,.6), transparent 55%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  color: white;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .75rem;
  font-weight: 800;
}

.hero h1,
.intro h2,
.section-heading h2,
.split-copy h2,
.instagram-card h2,
.booking h2 {
  font-family: "Playfair Display", serif;
  line-height: .98;
  margin: 0;
}

.hero h1 {
  font-size: clamp(3.2rem, 8vw, 7.8rem);
  max-width: 980px;
}

.hero-copy {
  max-width: 620px;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.7;
  margin: 26px 0 32px;
  color: rgba(255,255,255,.88);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 22px;
  border: 1px solid transparent;
}

.primary {
  background: var(--sand);
  color: #20160f;
}

.secondary {
  border-color: rgba(255,255,255,.65);
  color: white;
}

.intro,
.services,
.gallery,
.instagram-section,
.booking {
  padding: 96px 7vw;
}

.intro {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 54px;
  align-items: center;
  background: white;
}

.intro h2,
.section-heading h2,
.split-copy h2,
.instagram-card h2,
.booking h2 {
  font-size: clamp(2.2rem, 4vw, 4.6rem);
}

.intro p,
.split-copy p,
.instagram-card p,
.booking-copy p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.85;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card {
  min-height: 300px;
  padding: 26px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(23,32,51,.08);
  border-radius: 28px;
  box-shadow: 0 12px 45px rgba(23, 32, 51, .06);
}

.service-card span {
  color: var(--clay);
  font-weight: 800;
}

.service-card h3 {
  font-size: 1.55rem;
  margin: 80px 0 14px;
}

.service-card p {
  color: var(--muted);
  line-height: 1.7;
}

.feature-card {
  background: var(--navy);
  color: white;
}

.feature-card p {
  color: rgba(255,255,255,.75);
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 720px;
}

.split-image {
  background-size: cover;
  background-position: center;
}

.beach-image {
  background-image: url("assets/beach-guitar.jpg");
  background-position: center 48%;
}

.market-image {
  background-image: url("assets/farmers-market.jpg");
}

.family-image {
  background-image: url("assets/family-beach.jpg");
}

.split-copy {
  padding: 90px 7vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: white;
}

.market-section .split-copy {
  background: var(--green);
  color: white;
}

.market-section .split-copy p,
.market-section .section-kicker {
  color: rgba(255,255,255,.82);
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
}

.check-list li {
  padding: 13px 0;
  border-bottom: 1px solid rgba(23,32,51,.12);
  color: var(--navy);
  font-weight: 700;
}

.beach-section .split-copy {
  background: #fdfaf5;
}

.text-link {
  color: var(--clay);
  font-weight: 800;
  text-decoration: none;
  margin-top: 10px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
}

.gallery-grid img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.gallery-grid img.gallery-square {
  object-position: center 56%;
}

.gallery-grid img:first-child {
  grid-row: span 2;
  height: 858px;
}

.instagram-section {
  padding-top: 0;
}

.instagram-card {
  background:
    linear-gradient(135deg, rgba(23,32,51,.88), rgba(23,32,51,.62)),
    url("assets/beach-guitar.jpg") center 44% / cover;
  color: white;
  border-radius: 36px;
  padding: clamp(40px, 8vw, 90px);
  box-shadow: var(--shadow);
}

.instagram-card p {
  max-width: 560px;
  color: rgba(255,255,255,.82);
}

.booking {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 44px;
  background: white;
}

.social-mini {
  margin-top: 24px;
  display: grid;
  gap: 6px;
}

.social-mini span {
  color: var(--muted);
}

.social-mini a {
  color: var(--clay);
  font-weight: 800;
  text-decoration: none;
}

.booking-form {
  background: var(--cream);
  padding: 28px;
  border-radius: 30px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
}

.booking-form label {
  display: grid;
  gap: 8px;
  font-weight: 800;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  border: 1px solid rgba(23,32,51,.14);
  border-radius: 16px;
  padding: 15px 16px;
  font: inherit;
  background: white;
}

.booking-form button {
  border: 0;
  border-radius: 999px;
  padding: 16px 22px;
  background: var(--navy);
  color: white;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.footer {
  padding: 30px 7vw;
  background: var(--navy);
  color: rgba(255,255,255,.78);
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.footer a {
  color: white;
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 900px) {
  .site-header {
    top: 10px;
    border-radius: 24px;
  }

  .nav {
    display: none;
  }

  .hero {
    padding: 120px 24px 70px;
  }

  .intro,
  .booking,
  .split-section {
    grid-template-columns: 1fr;
  }

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

  .split-image {
    min-height: 520px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid img,
  .gallery-grid img:first-child {
    height: 430px;
    grid-row: auto;
  }
}

@media (max-width: 620px) {
  .service-grid {
    grid-template-columns: 1fr;
  }

  .intro,
  .services,
  .gallery,
  .instagram-section,
  .booking,
  .split-copy {
    padding: 64px 22px;
  }

  .about-section .family-image,
  .gallery-grid img[src="assets/family-beach.jpg"] {
    min-height: 0;
    height: clamp(280px, 76vw, 360px);
  }

  .gallery-grid img.gallery-square {
    height: auto;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .footer {
    flex-direction: column;
  }
}
