:root {
  --ink: #211f24;
  --muted: #786a72;
  --cream: #fff8ec;
  --paper: #ffffff;
  --blush: #e7a6c5;
  --coral: #e68a5d;
  --sage: #9ebd9e;
  --mint: #dff0dc;
  --butter: #f5dca9;
  --rose: #d46f99;
  --shadow: 0 22px 60px rgba(36, 35, 41, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Manrope", system-ui, sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 14px clamp(18px, 4vw, 58px);
  color: var(--paper);
  background: linear-gradient(180deg, rgba(36, 35, 41, 0.72), rgba(36, 35, 41, 0));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand-logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(36, 35, 41, 0.18);
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-copy strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.28rem;
  letter-spacing: 0;
  color: #fff7e8;
  text-shadow: 1px 1px 0 rgba(230, 138, 93, 0.85);
}

.brand-copy small {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #fff7e8;
}

.nav-links {
  display: flex;
  gap: clamp(14px, 2vw, 30px);
  font-size: 0.92rem;
  font-weight: 800;
}

.nav-links a,
.header-cta {
  opacity: 0.92;
}

.nav-links a:hover,
.header-cta:hover {
  opacity: 1;
}

.header-cta {
  padding: 11px 16px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.cta-short {
  display: none;
}

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: 118px clamp(20px, 6vw, 86px) 58px;
  color: var(--paper);
}

.hero img,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero img {
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(20, 20, 24, 0.74) 0%, rgba(20, 20, 24, 0.42) 44%, rgba(20, 20, 24, 0.08) 100%),
    linear-gradient(180deg, rgba(20, 20, 24, 0.12), rgba(20, 20, 24, 0.58));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffe7bd;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: 0;
  line-height: 0.98;
}

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(3.1rem, 8vw, 7.4rem);
}

h2 {
  max-width: 720px;
  font-size: clamp(2.25rem, 4.6vw, 4.9rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
  line-height: 1.15;
}

.hero-text {
  max-width: 650px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.6vw, 1.22rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 22px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button.primary {
  color: var(--ink);
  background: #ffe6ad;
  box-shadow: 0 14px 34px rgba(245, 220, 169, 0.34);
}

.button.secondary {
  color: var(--paper);
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(14px);
}

.availability {
  position: absolute;
  z-index: 1;
  right: clamp(20px, 5vw, 72px);
  bottom: 48px;
  width: min(330px, calc(100% - 40px));
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(18px);
}

.availability span {
  display: block;
  margin-bottom: 5px;
  color: #ffe6cf;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.availability strong {
  font-size: 1.15rem;
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(260px, 1.2fr);
  gap: 28px;
  align-items: center;
  padding: 28px clamp(20px, 6vw, 86px);
  color: var(--paper);
  background: var(--ink);
}

.intro-copy p {
  margin: 0;
  font-weight: 800;
}

.event-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.event-pills span {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--paper);
  font-size: 0.86rem;
  font-weight: 900;
}

.event-pills span:nth-child(2) {
  background: var(--blush);
}

.event-pills span:nth-child(3) {
  background: var(--mint);
}

.event-pills span:nth-child(4) {
  background: var(--butter);
}

.event-pills span:nth-child(5) {
  background: #ffd7e9;
}

.section {
  padding: clamp(70px, 10vw, 128px) clamp(20px, 6vw, 86px);
}

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

.section-heading h2 {
  margin-bottom: 0;
}

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

.service-card,
.steps li,
.quote-form {
  border-radius: var(--radius);
  box-shadow: 0 16px 46px rgba(36, 35, 41, 0.08);
}

.service-card {
  min-height: 260px;
  padding: 22px;
  background: var(--paper);
}

.service-card p,
.steps p,
.booking-copy p {
  color: var(--muted);
}

.service-icon {
  display: block;
  position: relative;
  width: 82px;
  height: 82px;
  margin-bottom: 28px;
}

.service-icon::before,
.service-icon::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  box-shadow: inset -8px -10px 14px rgba(36, 35, 41, 0.12);
}

.service-icon::before {
  inset: 0 22px 22px 0;
}

.service-icon::after {
  inset: 28px 0 0 28px;
}

.service-card.coral .service-icon::before,
.service-card.coral .service-icon::after {
  background: var(--coral);
}

.service-card.sage .service-icon::before,
.service-card.sage .service-icon::after {
  background: var(--sage);
}

.service-card.butter .service-icon::before,
.service-card.butter .service-icon::after {
  background: var(--butter);
}

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

.service-card.ink p {
  color: rgba(255, 255, 255, 0.74);
}

.service-card.ink .service-icon::before,
.service-card.ink .service-icon::after {
  background: #d9c7ff;
}

.portfolio {
  background: #f4fbf2;
}

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

.portfolio-grid figure {
  position: relative;
  min-height: 390px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 16px 46px rgba(36, 35, 41, 0.08);
}

.portfolio-grid img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
  transition: transform 240ms ease;
}

.portfolio-grid figure:hover img {
  transform: scale(1.035);
}

.portfolio-grid figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 11px 13px;
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(255, 248, 236, 0.9);
  font-weight: 900;
  backdrop-filter: blur(12px);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  padding: 26px;
  background: var(--paper);
}

.steps span {
  display: inline-flex;
  margin-bottom: 46px;
  color: var(--rose);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 3rem;
  line-height: 1;
}

.booking {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(280px, 1.15fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(70px, 10vw, 128px) clamp(20px, 6vw, 86px);
  background:
    radial-gradient(circle at top left, rgba(245, 184, 191, 0.55), transparent 32%),
    linear-gradient(135deg, #fffaf2 0%, #fff 52%, #eef8ed 100%);
}

.instagram-link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--rose);
  font-weight: 900;
}

.phone-link {
  display: block;
  width: fit-content;
  margin-top: 18px;
  color: var(--ink);
  font-size: 1.35rem;
  font-weight: 900;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(20px, 4vw, 34px);
  background: var(--paper);
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #e7dcd9;
  border-radius: var(--radius);
  padding: 12px 13px;
  color: var(--ink);
  background: #fffdf9;
  font: inherit;
}

textarea {
  resize: vertical;
}

.full {
  grid-column: 1 / -1;
}

.site-footer {
  padding: 56px clamp(20px, 6vw, 86px) 24px;
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(212, 111, 153, 0.18), rgba(36, 35, 41, 0) 38%),
    var(--ink);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) repeat(3, minmax(145px, 0.55fr));
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  padding-bottom: 42px;
}

.footer-logo-lockup {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.footer-logo-lockup img {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.footer-logo-lockup span {
  display: grid;
  line-height: 1;
}

.footer-logo-lockup strong {
  color: #fff7e8;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2rem;
  letter-spacing: 0;
  text-shadow: 1px 1px 0 rgba(230, 138, 93, 0.85);
}

.footer-logo-lockup small {
  color: #fff7e8;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-brand p {
  max-width: 430px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.72);
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 999px;
  color: var(--ink);
  background: #ffe6ad;
  font-weight: 900;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 10px;
}

.footer-links h2,
.footer-contact h2 {
  margin: 0 0 8px;
  color: #ffe6ad;
  font: 900 0.78rem/1 "Manrope", system-ui, sans-serif;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-links a,
.footer-contact a,
.footer-contact span,
.footer-bottom {
  color: rgba(255, 255, 255, 0.74);
}

.footer-links a,
.footer-contact a,
.footer-bottom a {
  width: fit-content;
  font-weight: 800;
  transition: color 160ms ease;
}

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

.footer-contact {
  font-style: normal;
}

.footer-contact span {
  max-width: 240px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.92rem;
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

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

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

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .event-pills {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 68px;
    gap: 12px;
    padding: 12px 14px;
  }

  .brand {
    min-width: 0;
    gap: 9px;
  }

  .brand-logo {
    width: 40px;
    height: 40px;
  }

  .brand-copy strong {
    font-size: 1.05rem;
  }

  .brand-copy small,
  .header-cta {
    font-size: 0.72rem;
  }

  .header-cta {
    padding: 9px 12px;
  }

  .cta-full {
    display: none;
  }

  .cta-short {
    display: inline;
  }

  .hero {
    min-height: 96vh;
    padding: 96px 20px 158px;
  }

  .hero img {
    object-position: 64% center;
  }

  h1 {
    font-size: clamp(2.55rem, 13vw, 4.6rem);
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(20, 20, 24, 0.76), rgba(20, 20, 24, 0.38)),
      linear-gradient(180deg, rgba(20, 20, 24, 0.1), rgba(20, 20, 24, 0.68));
  }

  .availability {
    right: 20px;
    bottom: 22px;
  }

  .service-grid,
  .portfolio-grid,
  .steps,
  .quote-form {
    grid-template-columns: 1fr;
  }

  .portfolio-grid figure,
  .portfolio-grid img {
    min-height: 360px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-logo-lockup strong {
    font-size: 1.65rem;
  }
}

@media (max-width: 380px) {
  .brand-logo {
    width: 36px;
    height: 36px;
  }

  .brand-copy strong {
    font-size: 0.95rem;
  }

  .brand-copy small,
  .header-cta {
    font-size: 0.66rem;
  }

  .header-cta {
    min-height: 40px;
    padding: 8px 10px;
  }

  .hero {
    padding-left: 16px;
    padding-right: 16px;
  }

  h1 {
    font-size: clamp(2.25rem, 12vw, 3.6rem);
  }

  .event-pills span {
    padding: 9px 11px;
  }
}
