:root {
  --bg: #fffdf9;
  --paper: #ffffff;
  --ink: #1d1a17;
  --muted: #615b54;
  --line: #ded7ce;
  --wine: #8d1832;
  --wine-dark: #651226;
  --herb: #476a3c;
  --brass: #b89661;
  --shadow: 0 18px 46px rgba(29, 26, 23, 0.14);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px clamp(20px, 5vw, 72px);
  color: #fff;
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(255, 253, 249, 0.96);
  box-shadow: 0 12px 34px rgba(29, 26, 23, 0.09);
  color: var(--ink);
  backdrop-filter: blur(14px);
}

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

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1;
}

.brand strong {
  display: block;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
}

.brand small {
  display: block;
  margin-top: 5px;
  color: currentColor;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  opacity: 0.7;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 36px);
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover,
.site-footer a:hover {
  color: var(--wine);
}

.hero {
  position: relative;
  min-height: 86vh;
  overflow: hidden;
  color: #fff;
}

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

.hero-image {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(18, 15, 12, 0.82) 0%, rgba(18, 15, 12, 0.58) 34%, rgba(18, 15, 12, 0.1) 68%),
    linear-gradient(0deg, rgba(18, 15, 12, 0.42), rgba(18, 15, 12, 0));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(660px, calc(100% - 40px));
  padding: clamp(132px, 18vh, 180px) 0 108px;
  margin-left: clamp(20px, 6vw, 84px);
}

.section-label {
  margin: 0 0 18px;
  color: var(--brass);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

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

.hero h1 {
  margin-bottom: 24px;
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 78px);
  font-weight: 600;
  line-height: 1.03;
  letter-spacing: 0;
}

.hero p:not(.hero-location) {
  max-width: 560px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.55;
}

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

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button.primary {
  background: var(--wine);
  color: #fff;
}

.button.primary:hover {
  background: var(--wine-dark);
}

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

.pricing .button.secondary,
.button.secondary.dark {
  border-color: var(--line);
  color: var(--ink);
}

.scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  z-index: 2;
  width: 38px;
  height: 38px;
  color: #fff;
  transform: translateX(-50%);
}

.scroll-cue svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.section,
.band,
.split-section,
.contact {
  padding: clamp(70px, 10vw, 116px) clamp(20px, 5vw, 72px);
}

.band {
  background: #f7f3ed;
}

.section-grid,
.pricing,
.split-section,
.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(38px, 7vw, 96px);
  align-items: center;
}

.intro h2,
.split-copy h2,
.pricing h2,
.contact h2,
.section-heading h2 {
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 600;
  line-height: 1.08;
}

.lead {
  max-width: 740px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.55;
}

.section-heading {
  margin: 0 auto 44px;
}

.section-heading.centered {
  max-width: 720px;
  text-align: center;
}

.section-heading p {
  color: var(--muted);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
}

.service-card {
  min-width: 0;
}

.service-card img {
  width: 100%;
  aspect-ratio: 1 / 0.82;
  object-fit: cover;
  box-shadow: 0 12px 30px rgba(29, 26, 23, 0.1);
}

.service-card h3,
.planning-steps h3,
.pricing-list h3 {
  margin: 20px 0 8px;
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 600;
  line-height: 1.15;
}

.service-card p,
.planning-steps p,
.pricing-copy p,
.split-copy p,
.contact p,
.planning-note {
  color: var(--muted);
}

.split-section {
  background: var(--paper);
}

.split-media {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 18px;
  align-items: end;
}

.split-media img {
  width: 100%;
  min-height: 380px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.split-media img:first-child {
  min-height: 460px;
}

.split-copy {
  max-width: 640px;
}

.planning {
  background: #fff;
}

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

.planning-steps article {
  padding: 34px clamp(18px, 3vw, 36px);
  border-right: 1px solid var(--line);
  text-align: center;
}

.planning-steps article:last-child {
  border-right: 0;
}

.planning-steps span {
  display: inline-grid;
  width: 44px;
  height: 44px;
  margin-bottom: 6px;
  place-items: center;
  border: 1px solid var(--herb);
  border-radius: 50%;
  color: var(--herb);
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
}

.planning-note {
  max-width: 740px;
  margin: 32px auto 0;
  text-align: center;
}

.pricing {
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.75fr);
}

.pricing-list {
  display: grid;
  gap: 18px;
  margin: 28px 0 30px;
}

.pricing-list div {
  padding-left: 22px;
  border-left: 2px solid var(--wine);
}

.pricing-list h3 {
  margin-top: 0;
}

.pricing-list p {
  margin-bottom: 0;
}

.pricing-image {
  margin: 0;
}

.pricing-image img {
  width: 100%;
  aspect-ratio: 1 / 1.05;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.press-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 36px;
}

.press-links a {
  display: grid;
  min-width: 170px;
  min-height: 88px;
  place-items: center;
  border: 1px solid var(--line);
  background: var(--paper);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.press-links a:hover {
  box-shadow: 0 12px 32px rgba(29, 26, 23, 0.1);
  transform: translateY(-2px);
}

.contact {
  background: linear-gradient(90deg, rgba(24, 21, 18, 0.93), rgba(24, 21, 18, 0.82)), url("assets/legacy/planning7.jpg");
  background-position: center;
  background-size: cover;
  color: #fff;
}

.contact-panel {
  align-items: start;
}

.contact-panel p {
  color: rgba(255, 255, 255, 0.78);
}

address {
  display: grid;
  gap: 16px;
  font-style: normal;
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 700;
}

address a {
  text-decoration: none;
}

address a:hover {
  color: var(--brass);
}

address span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
  font-weight: 500;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(20px, 5vw, 72px);
  background: #151311;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  text-decoration: none;
}

@media (max-width: 1040px) {
  .service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .planning-steps article:nth-child(2) {
    border-right: 0;
  }

  .planning-steps article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 780px) {
  .site-header {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 14px 18px;
  }

  .site-nav {
    max-width: 100%;
    gap: 14px;
    overflow-x: auto;
    padding-top: 12px;
    font-size: 12px;
  }

  .site-nav a {
    flex: 0 0 auto;
  }

  .hero {
    min-height: 84vh;
  }

  .hero-image {
    object-position: 63% center;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(18, 15, 12, 0.88), rgba(18, 15, 12, 0.52));
  }

  .hero-content {
    width: min(340px, calc(100% - 36px));
    padding-top: 132px;
    margin-left: 18px;
  }

  .hero h1 {
    font-size: clamp(36px, 10vw, 46px);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .section-grid,
  .pricing,
  .split-section,
  .contact-panel {
    grid-template-columns: 1fr;
  }

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

  .planning-steps article,
  .planning-steps article:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .planning-steps article:last-child {
    border-bottom: 0;
  }

  .split-media {
    grid-template-columns: 1fr 1fr;
  }

  .split-media img,
  .split-media img:first-child {
    min-height: 280px;
  }

  .site-footer {
    display: grid;
  }
}

@media (max-width: 520px) {
  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand strong {
    font-size: 21px;
  }

  .brand small {
    font-size: 9px;
  }

  .service-card img {
    aspect-ratio: 1 / 0.68;
  }

  .split-media {
    grid-template-columns: 1fr;
  }

  .split-media img,
  .split-media img:first-child {
    min-height: 0;
    aspect-ratio: 1 / 0.8;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
