:root {
  --sage: #7f9178;
  --sage-dark: #53634f;
  --leaf: #9ead73;
  --cream: #fbfaf5;
  --linen: #eee8dd;
  --ink: #2c322b;
  --muted: #687061;
  --blue: #5679a6;
  --rose: #a84669;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(44, 50, 43, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 98px;
  padding: 10px clamp(18px, 5vw, 72px);
  background: rgba(251, 250, 245, 0.92);
  border-bottom: 1px solid rgba(83, 99, 79, 0.14);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: clamp(190px, 18vw, 250px);
  overflow: hidden;
}

.brand img {
  width: 100%;
  height: 78px;
  object-fit: contain;
}

.site-menu {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 34px);
  font-size: 0.92rem;
  font-weight: 600;
}

.site-menu a {
  position: relative;
  text-decoration: none;
}

.site-menu a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--rose);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-menu a:hover::after,
.site-menu a:focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid rgba(83, 99, 79, 0.22);
  border-radius: 6px;
  background: var(--white);
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--sage-dark);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1.14fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 98px);
  padding: clamp(44px, 7vw, 96px) clamp(18px, 5vw, 72px) 48px;
}

.hero-copy {
  max-width: 590px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--rose);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: Lora, Georgia, serif;
  line-height: 1.08;
  font-weight: 600;
}

h1 {
  max-width: 570px;
  font-size: clamp(3rem, 7vw, 6.8rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 4rem);
}

.hero-copy p:not(.eyebrow),
.text-columns p,
.experience-copy p,
.about-band p,
.contact-copy p {
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.16rem);
}

.hero-copy p:not(.eyebrow) {
  max-width: 560px;
  margin: 26px 0 0;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button.primary {
  color: var(--white);
  background: var(--sage-dark);
}

.button.ghost {
  color: var(--sage-dark);
  background: rgba(127, 145, 120, 0.12);
}

.button.outline {
  color: var(--sage-dark);
  border-color: rgba(83, 99, 79, 0.32);
  background: var(--white);
}

.hero-image {
  min-height: 72vh;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-image img {
  width: 100%;
  height: 72vh;
  min-height: 520px;
  object-fit: cover;
  object-position: 46% center;
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(28px, 5vw, 76px);
  padding: clamp(64px, 9vw, 124px) clamp(18px, 5vw, 72px);
  background: var(--sage-dark);
  color: var(--white);
}

.intro-band .eyebrow,
.intro-band h2 {
  color: var(--white);
}

.text-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 4vw, 54px);
}

.text-columns p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.experience {
  display: grid;
  grid-template-columns: minmax(340px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(32px, 5vw, 82px);
  align-items: center;
  padding: clamp(64px, 9vw, 124px) clamp(18px, 5vw, 72px);
  background: var(--linen);
}

.photo-panel {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.photo-panel img {
  width: 100%;
  height: min(62vw, 680px);
  min-height: 430px;
  object-fit: cover;
  object-position: 40% center;
}

.experience-copy {
  max-width: 620px;
}

.check-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 30px 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 32px;
  font-weight: 600;
}

.check-list li::before {
  position: absolute;
  top: 0.12em;
  left: 0;
  color: var(--rose);
  content: "+";
}

.note {
  padding: 18px 20px;
  border-left: 4px solid var(--blue);
  background: rgba(255, 255, 255, 0.56);
}

.about-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(24px, 5vw, 76px);
  align-items: end;
  padding: clamp(62px, 8vw, 104px) clamp(18px, 5vw, 72px);
  background: var(--cream);
}

.about-band p {
  max-width: 650px;
  margin: 0;
}

.price-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1fr) minmax(240px, 320px);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  padding: clamp(58px, 8vw, 104px) clamp(18px, 5vw, 72px);
  background: var(--linen);
}

.price-image {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.price-image img {
  width: 100%;
  height: clamp(280px, 32vw, 470px);
  object-fit: cover;
  object-position: center;
}

.price-copy {
  max-width: 760px;
}

.price-copy p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.16rem);
}

.price-card {
  padding: clamp(28px, 4vw, 40px);
  color: var(--white);
  background: var(--sage-dark);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.price-card span {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.price-card strong {
  display: block;
  font-family: Lora, Georgia, serif;
  font-size: clamp(3rem, 6vw, 4.8rem);
  line-height: 1;
}

.price-card p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin: 0 clamp(18px, 5vw, 72px) clamp(46px, 6vw, 78px);
  padding: clamp(34px, 5vw, 56px);
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--sage-dark), #6f7c61 58%, var(--blue));
}

.contact .eyebrow,
.contact h2,
.contact p {
  color: var(--white);
}

.contact-copy {
  max-width: 680px;
}

.contact-copy p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.84);
}

.contact-details {
  display: grid;
  gap: 12px;
  min-width: min(360px, 100%);
}

.contact-details div,
.contact-details address,
.contact-details p {
  margin: 0;
  padding: 16px 18px;
  color: var(--sage-dark);
  font-style: normal;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 6px;
}

.contact-details strong {
  display: block;
  color: var(--ink);
}

.phone-link {
  display: inline-block;
  color: var(--ink);
  font-size: 1.12rem;
  font-weight: 800;
  text-decoration: none;
}

.phone-link:hover,
.phone-link:focus-visible {
  color: var(--sage-dark);
  text-decoration: underline;
}

.detail-label {
  display: block;
  margin-bottom: 4px;
  color: var(--rose);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px clamp(18px, 5vw, 72px);
  color: var(--muted);
  border-top: 1px solid rgba(83, 99, 79, 0.14);
}

.site-footer img {
  width: 168px;
  height: 72px;
  object-fit: contain;
}

.site-footer p {
  margin: 0;
  text-align: right;
}

@media (max-width: 860px) {
  .site-header {
    min-height: 82px;
  }

  .brand {
    width: 168px;
  }

  .brand img {
    height: 62px;
  }

  .menu-toggle {
    display: block;
  }

  .site-menu {
    position: absolute;
    top: 100%;
    right: 18px;
    left: 18px;
    display: grid;
    gap: 0;
    padding: 8px;
    background: var(--white);
    border: 1px solid rgba(83, 99, 79, 0.14);
    border-radius: 8px;
    box-shadow: 0 20px 55px rgba(44, 50, 43, 0.16);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

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

  .site-menu a {
    padding: 14px 12px;
  }

  .site-menu a::after {
    display: none;
  }

  .hero,
  .intro-band,
  .experience,
  .about-band,
  .price-band,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
    padding-top: 34px;
  }

  .hero-image,
  .hero-image img {
    min-height: 380px;
    height: 56vh;
  }

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

  .photo-panel img {
    height: 58vh;
    min-height: 360px;
  }

  .price-image img {
    height: 360px;
  }

  .contact {
    margin-right: 18px;
    margin-left: 18px;
  }

  .contact-actions {
    margin-top: 0;
  }

  .site-footer {
    display: grid;
    justify-items: start;
  }

  .site-footer p {
    text-align: left;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: 3.05rem;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }
}
