:root {
  --ink: #201b19;
  --paper: #fff9f2;
  --blush: #f8e7e8;
  --warm: #f2dfc7;
  --rose: #c96f84;
  --plum: #623847;
  --teal: #2d6f73;
  --gold: #bd8b2f;
  --soft-gold: #ead3a6;
  --line: rgba(98, 56, 71, 0.16);
  --shadow: 0 24px 70px rgba(98, 56, 71, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #fffaf5, var(--blush) 58%, #fff9f2);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

.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: 18px clamp(18px, 4vw, 56px);
  color: #fffaf3;
  background: linear-gradient(180deg, rgba(32, 27, 25, 0.72), rgba(32, 27, 25, 0.04));
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 0.82rem;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 500;
}

.brand small {
  margin-top: 4px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

nav {
  display: flex;
  gap: clamp(14px, 3vw, 34px);
  align-items: center;
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.nav-cta {
  padding: 10px 14px;
  border: 1px solid rgba(234, 211, 166, 0.72);
  border-radius: 999px;
  background: rgba(255, 250, 244, 0.12);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  padding: 128px clamp(18px, 5vw, 72px) 86px;
  overflow: hidden;
  color: #fffaf4;
}

.hero::after {
  content: "";
  position: absolute;
  inset: clamp(74px, 8vw, 112px) clamp(16px, 3vw, 42px) clamp(18px, 3vw, 42px);
  z-index: 1;
  border: 1px solid rgba(234, 211, 166, 0.32);
  pointer-events: none;
}

.hero-image,
.hero-scrim {
  position: absolute;
  inset: 0;
}

.hero-image {
  background-image: url("assets/hero-swing-wide.jpeg");
  background-size: cover;
  background-position: 82% center;
  transform: scale(1.01);
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(32, 27, 25, 0.95), rgba(98, 56, 71, 0.84) 38%, rgba(32, 27, 25, 0.34) 62%, rgba(32, 27, 25, 0.08)),
    linear-gradient(0deg, rgba(32, 27, 25, 0.62), rgba(32, 27, 25, 0.02) 48%),
    radial-gradient(circle at 78% 28%, rgba(234, 211, 166, 0.18), transparent 36%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: min(720px, 58vw);
  padding-left: clamp(0px, 1vw, 16px);
}

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

.eyebrow {
  color: #f4d59d;
}

.eyebrow.dark,
.section-kicker {
  color: var(--plum);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  max-width: 500px;
  font-size: clamp(2.9rem, 5.15vw, 5.2rem);
  line-height: 0.96;
}

h2 {
  font-size: clamp(2.1rem, 4vw, 4.8rem);
  line-height: 0.98;
}

h3 {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.25;
}

.hero-copy {
  max-width: 560px;
  margin: 30px 0 0;
  color: rgba(255, 250, 244, 0.9);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.55;
}

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

.button,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.button.primary,
button {
  color: #fffaf4;
  background: linear-gradient(135deg, var(--plum), var(--rose));
  box-shadow: 0 12px 30px rgba(98, 56, 71, 0.22);
}

.button.secondary {
  color: #fffaf4;
  border-color: rgba(234, 211, 166, 0.72);
  background: rgba(255, 250, 244, 0.1);
  backdrop-filter: blur(10px);
}

.hero-card {
  position: absolute;
  z-index: 3;
  right: clamp(18px, 5vw, 72px);
  top: 132px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: min(420px, calc(100% - 36px));
}

.hero-card span {
  padding: 10px 12px;
  border: 1px solid rgba(234, 211, 166, 0.48);
  border-radius: 999px;
  background: rgba(98, 56, 71, 0.28);
  color: #fffaf4;
  font-size: 0.82rem;
  font-weight: 750;
  backdrop-filter: blur(12px);
}

.band {
  background:
    linear-gradient(90deg, rgba(201, 111, 132, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(234, 211, 166, 0.48), transparent 58%),
    #f9ece6;
}

.intro,
.process,
.gallery-section,
.booking,
.feature-row,
.packages {
  padding: clamp(64px, 9vw, 118px) clamp(18px, 5vw, 72px);
}

.intro-grid,
.feature-row,
.booking {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.78fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.intro p,
.feature-copy > p,
.booking-copy p {
  max-width: 640px;
  margin: 24px 0 0;
  color: rgba(32, 27, 25, 0.72);
  font-size: 1.04rem;
  line-height: 1.75;
}

.feature-row {
  background:
    linear-gradient(180deg, #fffaf5, #fff6ef);
}

.service-list {
  display: grid;
  gap: 16px;
  margin-top: 32px;
}

.service-list article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px 18px;
  padding: 22px 0;
  border-top: 1px solid rgba(189, 139, 47, 0.28);
}

.service-list span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(189, 139, 47, 0.7);
  border-radius: 50%;
  color: var(--rose);
  background: rgba(234, 211, 166, 0.2);
  font-family: Georgia, serif;
}

.service-list p {
  grid-column: 2;
  margin: -8px 0 0;
  color: rgba(32, 27, 25, 0.68);
  line-height: 1.55;
}

.feature-photo {
  border: 12px solid #fffdf8;
  outline: 1px solid rgba(189, 139, 47, 0.34);
  outline-offset: 10px;
  box-shadow: var(--shadow);
  transform: rotate(1.4deg);
}

.feature-photo img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: clamp(26px, 5vw, 56px);
}

.section-heading h2 {
  max-width: 760px;
}

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

.process-grid article,
.package-grid article {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  border: 1px solid rgba(189, 139, 47, 0.3);
  background: rgba(255, 250, 244, 0.72);
  box-shadow: 0 16px 40px rgba(98, 56, 71, 0.08);
}

.process-grid span,
.package-grid span {
  color: var(--rose);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.process-grid h3,
.package-grid h3 {
  font-family: Georgia, serif;
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 500;
}

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

.package-grid p {
  margin: 18px 0 0;
  color: rgba(32, 27, 25, 0.68);
  line-height: 1.6;
}

.gallery-section {
  background:
    linear-gradient(180deg, #fffaf4, #faecee 62%, #fffaf4);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: clamp(22px, 3vw, 36px);
}

figure {
  position: relative;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 12px;
  overflow: hidden;
  border: 1px solid rgba(189, 139, 47, 0.34);
  background: linear-gradient(180deg, #fffdf8, #f7e4e8);
  box-shadow: 0 18px 44px rgba(98, 56, 71, 0.13);
}

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

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

figure img {
  flex: 1 1 auto;
  height: auto;
  min-height: 230px;
  object-fit: cover;
  border: 1px solid rgba(98, 56, 71, 0.12);
  transition: transform 500ms ease;
}

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

figcaption {
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  margin-top: 12px;
  padding: 10px 8px 2px;
  border: 0;
  border-top: 1px solid rgba(189, 139, 47, 0.24);
  border-radius: 0;
  color: var(--plum);
  background: transparent;
  font-size: 0.78rem;
  font-weight: 800;
  text-align: center;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.booking {
  background:
    linear-gradient(135deg, rgba(201, 111, 132, 0.2), transparent 36%),
    linear-gradient(315deg, rgba(189, 139, 47, 0.18), transparent 42%),
    var(--paper);
}

.inquiry-form {
  display: grid;
  gap: 14px;
  padding: clamp(20px, 3vw, 32px);
  border: 1px solid rgba(189, 139, 47, 0.32);
  background: rgba(255, 253, 248, 0.9);
  box-shadow: var(--shadow);
}

.form-note {
  margin: -2px 0 0;
  color: rgba(98, 56, 71, 0.7);
  font-size: 0.9rem;
  line-height: 1.45;
  text-align: center;
}

label {
  display: grid;
  gap: 8px;
  color: var(--plum);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

legend {
  margin: 0 0 8px;
  color: var(--plum);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.time-selects {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(32, 27, 25, 0.18);
  border-radius: 6px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fffdf8;
  font: inherit;
}

input[type="file"] {
  padding: 12px;
}

textarea {
  resize: vertical;
}

.thank-you-page {
  min-height: 100vh;
}

.thank-you-main {
  min-height: calc(100vh - 92px);
  display: grid;
  place-items: center;
  padding: clamp(96px, 14vw, 150px) clamp(18px, 5vw, 72px) 72px;
  background:
    linear-gradient(135deg, rgba(201, 111, 132, 0.2), transparent 36%),
    linear-gradient(315deg, rgba(189, 139, 47, 0.18), transparent 42%),
    var(--paper);
}

.thank-you-card {
  width: min(680px, 100%);
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid rgba(189, 139, 47, 0.32);
  background: rgba(255, 253, 248, 0.92);
  box-shadow: var(--shadow);
  text-align: center;
}

.thank-you-card h1 {
  margin: 0;
  color: var(--plum);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.3rem, 6vw, 4.8rem);
  line-height: 0.96;
}

.thank-you-card p:not(.eyebrow) {
  max-width: 54ch;
  margin: 20px auto 0;
  color: rgba(32, 27, 25, 0.78);
  font-size: 1.04rem;
  line-height: 1.8;
}

.thank-you-card .hero-actions {
  justify-content: center;
  margin-top: 28px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(18px, 5vw, 72px);
  color: #fffaf4;
  background: var(--ink);
}

.site-footer p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 250, 244, 0.72);
  line-height: 1.55;
}

.site-footer p a {
  display: inline-block;
  margin-left: 8px;
  color: #f4d59d;
  font-weight: 800;
}

@media (max-width: 920px) {
  .site-header {
    align-items: flex-start;
  }

  nav {
    display: none;
  }

  .hero {
    min-height: 88vh;
    align-items: end;
    padding-bottom: 110px;
  }

  .hero-image {
    background-position: 62% 50%;
  }

  .hero-content {
    max-width: 680px;
  }

  h1 {
    max-width: 680px;
    font-size: clamp(3.2rem, 9vw, 5.8rem);
  }

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

  .section-heading {
    display: block;
  }

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

  .gallery {
    gap: 22px;
  }

  figure.wide,
  figure.tall {
    grid-column: span 1;
    grid-row: span 1;
  }
}

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

  .brand {
    gap: 9px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    font-size: 0.68rem;
  }

  .brand small {
    font-size: 0.62rem;
  }

  .hero {
    min-height: 94vh;
    padding: 112px 16px 48px;
  }

  .hero-scrim {
    background:
      linear-gradient(90deg, rgba(32, 27, 25, 0.9), rgba(98, 56, 71, 0.62)),
      linear-gradient(0deg, rgba(32, 27, 25, 0.78), rgba(32, 27, 25, 0) 42%);
  }

  .hero-content {
    max-width: 100%;
  }

  h1 {
    font-size: clamp(2.55rem, 13vw, 4.1rem);
    line-height: 0.94;
  }

  .hero-copy {
    margin-top: 22px;
  }

  .hero-card {
    display: none;
  }

  .intro,
  .process,
  .gallery-section,
  .booking,
  .feature-row,
  .packages {
    padding: 58px 16px;
  }

  .hero-actions,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .button,
  button {
    width: 100%;
  }

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

  figure {
    min-height: 0;
    padding: 10px;
  }

  figure img {
    min-height: 340px;
  }

  .feature-photo {
    transform: none;
  }
}
