:root {
  --ink: #172522;
  --green: #183f37;
  --sand: #f4f1eb;
  --line: #d8ddd9;
  --white: #fff;
  --muted: #5d6965;
  --accent: #9a5b31;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font: 16px/1.65 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

a {
  color: inherit;
  text-underline-offset: 0.22em;
}

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

h1, h2, h3 {
  line-height: 1.08;
  letter-spacing: -0.03em;
}

h1 {
  max-width: 14ch;
  font-size: clamp(3rem, 7vw, 6.6rem);
}

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

h3 {
  font-size: 1.25rem;
}

.wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.narrow {
  max-width: 780px;
}

.section {
  padding: clamp(4.5rem, 8vw, 8rem) 0;
}

.section-soft {
  background: var(--sand);
}

.section-dark,
.quote-section {
  color: var(--white);
  background: var(--green);
}

.split,
.case-study,
.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 7vw, 7rem);
  align-items: center;
}

.eyebrow {
  margin-bottom: 1rem;
  color: var(--accent);
  font-size: 1.06rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.section-dark .eyebrow,
.quote-section .eyebrow {
  color: #d4c5a8;
}

.lead {
  max-width: 42rem;
  color: var(--muted);
  font-size: 1.16rem;
}

.actions,
.inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.button {
  display: inline-block;
  border: 1px solid var(--green);
  padding: 0.84rem 1.15rem;
  color: var(--white);
  background: var(--green);
  font-weight: 750;
  text-decoration: none;
}

.button:hover {
  opacity: 0.9;
}

.section-dark .button,
.quote-section .button {
  border-color: var(--white);
}

.text-link {
  font-weight: 750;
  padding-left: 20px;
}

.skip-link {
  position: absolute;
  left: -9999px;
}

.skip-link:focus {
  top: 1rem;
  left: 1rem;
  z-index: 99;
  padding: 0.7rem;
  background: var(--white);
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
}

.header-inner {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  width: 185px;
  text-decoration: none;
}

.site-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.brand {
  font-size: 1.1rem;
  font-weight: 850;
  text-decoration: none;
}

.brand span {
  color: var(--green);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  font-size: 0.93rem;
}

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

.site-nav summary {
  cursor: pointer;
  list-style: none;
}

.site-nav summary::-webkit-details-marker {
  display: none;
}

.site-nav details {
  position: relative;
}

.dropdown {
  position: absolute;
  top: 2rem;
  left: -1rem;
  display: grid;
  min-width: 220px;
  padding: 0.65rem;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(23, 37, 34, 0.08);
}

.dropdown a {
  padding: 0.55rem;
  text-decoration: none;
}

.nav-cta {
  padding: 0.65rem 0.85rem;
  color: var(--white) !important;
  background: var(--green);
}

.menu-toggle {
  display: none;
  border: 0;
  background: none;
  font: inherit;
}

/* Hero */

.hero {
  padding: clamp(4rem, 7vw, 7rem) 0 0;
}

.hero-copy {
  padding-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.hero-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: end;
  margin-top: 2rem;
}

.hero-bottom .lead {
  margin: 0;
}

.hero-media {
  width: min(100% - 2rem, 1440px);
  margin-inline: auto;
}

.hero-media picture {
  display: block;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: min(68vw, 760px);
  min-height: 520px;
  object-fit: cover;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.4rem;
  margin: 2rem 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.9rem;
  list-style: none;
}

.trust-list li::before {
  content: "✓";
  margin-right: 0.45rem;
  color: var(--green);
  font-weight: 800;
}

/* Proof */

.proof {
  border-block: 1px solid var(--line);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.proof-item {
  padding: 2rem 1.5rem;
  border-right: 1px solid var(--line);
}

.proof-item:last-child {
  border-right: 0;
}

.proof-number {
  display: block;
  color: var(--green);
  font-size: clamp(3.5rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.proof-number-white {
  display: block;
  margin-bottom: .2rem;
  color: var(--white);
  font-size: 3.5rem;
  font-weight: 800;
}

.proof-text {
  display: block;
  margin-top: 0.8rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

/* Section headings */

.section-head {
  display: flex;
  gap: 2rem;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 2.2rem;
}

/* Grids */

.grid-four,
.grid-three,
.link-grid {
  display: grid;
  gap: 1.5rem;
}

.grid-four {
  grid-template-columns: repeat(4, 1fr);
}

.grid-three {
  grid-template-columns: repeat(3, 1fr);
}

.feature {
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

.feature a {
  text-decoration: none;
}

.feature img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.feature h3 {
  margin: 1rem 0 0.55rem;
}

.feature p,
.grid-three p {
  color: var(--muted);
}

.link-grid {
  grid-template-columns: repeat(4, 1fr);
}

.link-grid a {
  padding: 1rem 0;
  border-top: 1px solid var(--line);
  font-weight: 750;
  text-decoration: none;
}

/* Dark section */

.section-dark a {
  color: var(--white);
}

.inline-links a {
  padding-bottom: 0.15rem;
  border-bottom: 1px solid currentColor;
  text-decoration: none;
}

/* Case study */

.case-study img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* Process */

.process {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  margin: 2.5rem 0 0;
  padding: 0;
  list-style: none;
}

.process li {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.process-number {
  display: block;
  margin-bottom: 1.25rem;
  color: #9a5b31;
  font-size: 36px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.04em;
}

.process span {
  display: block;
}

/* FAQ */

.faq-section details {
  border-top: 1px solid var(--line);
  padding: 1.2rem 0;
}

.faq-section details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-section summary {
  cursor: pointer;
  font-weight: 750;
}

.faq-section details p {
  margin: 0.8rem 0 0;
  color: var(--muted);
}

/* Quote form */

.quote-section {
  padding: clamp(4.5rem, 8vw, 8rem) 0;
}

.quote-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.quote-form label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.9rem;
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 0;
  padding: 0.85rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  font: inherit;
}

.quote-form textarea {
  resize: vertical;
}

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

.hp {
  position: absolute !important;
  left: -9999px !important;
}

/* Footer */

.site-footer {
  padding: 4rem 0 1.5rem;
  color: #dfe7e4;
  background: #102a25;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2rem;
}

.footer-intro {
    padding-right: clamp(2rem, 4vw, 5rem);
}

.site-footer h2 {
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

.site-footer a {
  display: block;
  margin: 0.45rem 0;
  color: inherit;
  text-decoration: none;
}

.footer-brand {
  font-size: 1.2rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.85rem;
}

.footer-bottom div {
  display: flex;
  gap: 1rem;
}

/* Tablet */

@media (max-width: 900px) {
  .site-nav {
    position: absolute;
    top: 72px;
    right: 0;
    left: 0;
    display: none;
    padding: 1rem;
    border-bottom: 1px solid var(--line);
    background: var(--white);
    align-items: stretch;
    flex-direction: column;
  }

  .site-nav.open {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .dropdown {
    position: static;
    margin-top: 0.5rem;
    box-shadow: none;
  }

  .split,
  .case-study,
  .quote-grid,
  .hero-bottom {
    grid-template-columns: 1fr;
  }

  .proof-grid,
  .grid-four,
  .link-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process {
    grid-template-columns: repeat(3, 1fr);
  }


  .process-number {
    font-size: 34px;
    color: #9a5b31;
  }

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

  .proof-item:nth-child(2) {
    border-right: 0;
  }

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

/* Mobile */

@media (max-width: 600px) {
  h1 {
    font-size: clamp(2.8rem, 14vw, 4.5rem);
  }

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

  .proof-grid,
  .grid-four,
  .grid-three,
  .link-grid,
  .process,
  .quote-form,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .proof-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-item:last-child {
    border-bottom: 0;
  }

  .proof-number {
    font-size: 4rem;
  }

  .trust-list {
    display: grid;
  }

  .hero-image {
    height: 72vw;
    min-height: 380px;
  }

  .site-header {
    position: relative;
  }
}

@media (max-width: 900px) {
  .site-logo {
    width: 205px;
  }
}






/* Festival Marquee Hire service page — only new layout rules */

.service-masthead {
  padding: clamp(2rem, 4vw, 4rem) 0 clamp(3.5rem, 7vw, 7rem);
  color: var(--white);
  background: var(--green);
}

.service-breadcrumb {
  display: flex;
  gap: .6rem;
  margin-bottom: clamp(3rem, 4vw, 2rem);
  font-size: .85rem;
  opacity: .75;
}

.service-masthead-grid,
.service-intro,
.service-feature,
.service-planning {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr);
  gap: clamp(2.5rem, 8vw, 8rem);
}

.service-masthead h1 {
  margin-bottom: 0;
  color: var(--white);
}

.service-summary {
  align-self: end;
  font-size: 1.08rem;
}

.service-summary .button {
  color: var(--green);
  background: var(--white);
  border-color: var(--white);
}

.service-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: clamp(3rem, 6vw, 6rem);
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,.3);
  font-size: .86rem;
}

.service-meta strong {
  display: block;
  margin-bottom: .2rem;
  color: var(--white);
  font-size: 1.25rem;
}

.service-image-band {
  width: 100%;
}

.service-image-band img {
  width: 100%;
  max-height: 720px;
  object-fit: cover;
}

.service-index {
  align-self: start;
  display: grid;
  gap: .65rem;
  padding-top: .35rem;
}

.service-index a {
  width: fit-content;
  color: var(--muted);
  text-decoration: none;
}

.service-copy {
  max-width: 700px;
}

.service-rows {
  border-top: 1px solid var(--line);
}

.service-row {
  display: grid;
  grid-template-columns: 70px minmax(180px, .7fr) 1fr 30px;
  gap: 1.5rem;
  align-items: center;
  padding: 1.45rem 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.service-row-no {
  color: var(--accent);
  font-size: .82rem;
  font-weight: 800;
}

.service-row-title {
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  font-weight: 800;
  letter-spacing: -.03em;
}

.service-row-copy {
  color: var(--muted);
}

.service-feature-heading {
  align-self: start;
}

.service-areas {
  border-top: 1px solid var(--line);
}

.service-areas a {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 1.5rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.service-areas span {
  color: var(--muted);
}

.section-dark .service-areas span {
  color: rgba(255,255,255,.72);
}

.service-planning {
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
}

.service-planning img {
  width: 100%;
  aspect-ratio: 6 / 5;
  object-fit: cover;
}

@media (max-width: 900px) {
  .service-masthead-grid,
  .service-intro,
  .service-feature,
  .service-planning {
    grid-template-columns: 1fr;
  }

  .service-meta {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-index {
    display: none;
  }

  .service-row {
    grid-template-columns: 45px 1fr 30px;
  }

  .service-row-copy {
    grid-column: 2 / -1;
  }
}

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

  .service-row {
    grid-template-columns: 35px 1fr 20px;
    gap: .75rem;
  }

  .service-areas a {
    grid-template-columns: 1fr;
    gap: .2rem;
  }
}