:root {
  --black: #090909;
  --ink: #171615;
  --charcoal: #26221f;
  --text: #2b2825;
  --muted: #736b62;
  --line: #ded7cd;
  --paper: #f8f6f2;
  --white: #ffffff;
  --gold: #b58a4b;
  --gold-dark: #8c6734;
  --stone: #e9e2d7;
  --shadow: 0 24px 70px rgba(9, 9, 9, 0.18);
  --serif: Georgia, "Times New Roman", Times, serif;
  --sans: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 1120px;
  font-size: clamp(3.05rem, 7.1vw, 6.7rem);
}

h2 {
  font-size: clamp(2.2rem, 5.6vw, 5.1rem);
}

h3 {
  font-size: clamp(1.45rem, 2.2vw, 2rem);
}

p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.narrow {
  width: min(920px, calc(100% - 40px));
}

.section-pad {
  padding: 110px 0;
}

.compact-top {
  padding-top: 40px;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding: 16px 40px;
  color: var(--white);
  transition: background 220ms ease, border-color 220ms ease, color 220ms ease;
}

.site-header.is-scrolled,
.site-header.menu-open,
.light-page .site-header {
  background: rgba(248, 246, 242, 0.96);
  border-bottom: 1px solid rgba(9, 9, 9, 0.1);
  color: var(--ink);
  backdrop-filter: blur(18px);
}

.brand {
  display: grid;
  gap: 1px;
  min-width: 196px;
  color: currentColor;
}

.brand-main {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  line-height: 1;
  text-transform: uppercase;
}

.brand-sub {
  color: var(--gold);
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  line-height: 1;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding: 6px 0;
}

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

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid currentColor;
  border-radius: 0;
  background: transparent;
  color: inherit;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 86svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

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

.hero-media img,
.page-hero img {
  object-fit: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.42) 44%, rgba(0, 0, 0, 0.12) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.48) 0%, rgba(0, 0, 0, 0) 45%);
}

.hero-content {
  position: relative;
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 132px 0 58px;
}

.hero-content h1,
.page-hero h1 {
  color: var(--white);
}

.hero-copy {
  max-width: 760px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 1.7vw, 1.32rem);
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--gold-dark);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 22px;
  border: 1px solid transparent;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

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

.button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.button-light {
  background: var(--white);
  color: var(--black);
}

.button-quiet {
  border-color: rgba(255, 255, 255, 0.62);
  color: var(--white);
}

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

.button-gold {
  background: var(--gold);
  color: var(--black);
}

.intro-panel {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.hospitality-module {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 58px;
  align-items: start;
  margin-top: 70px;
  padding: 50px;
  background: var(--black);
  color: var(--white);
}

.hospitality-module h2 {
  color: var(--white);
  font-size: clamp(2.1rem, 4.6vw, 4.5rem);
}

.hospitality-copy {
  display: grid;
  gap: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
}

.module-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
  margin-top: 16px;
}

.module-list span {
  min-height: 68px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.06);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 70px;
  align-items: start;
}

.lead-block {
  display: grid;
  gap: 22px;
  color: var(--charcoal);
  font-size: clamp(1.05rem, 1.5vw, 1.24rem);
}

.focus-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.focus-list span {
  border: 1px solid var(--line);
  padding: 9px 12px;
  background: var(--paper);
  color: var(--charcoal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.section-heading.centered {
  text-align: center;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.service-card {
  min-height: 438px;
  padding: 36px;
  background: var(--white);
}

.service-card span,
.process-grid span,
.value-grid span,
.service-detail-grid span {
  display: block;
  margin-bottom: 34px;
  color: var(--gold-dark);
  font-family: var(--serif);
  font-size: 1.04rem;
}

.service-card h3 {
  margin-bottom: 20px;
}

.service-card p,
.process-grid p,
.value-grid p,
.service-detail-grid p {
  color: var(--muted);
}

.compact-list {
  margin-top: 24px;
}

.compact-list li {
  font-size: 0.92rem;
}

.image-band {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.image-band-media,
.image-band-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.image-band-media img {
  object-fit: cover;
}

.image-band::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.1));
  content: "";
}

.image-band-content {
  position: relative;
  z-index: 1;
}

.image-band-content h2 {
  max-width: 690px;
  color: var(--white);
}

.image-band-content p {
  max-width: 620px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.15rem;
}

.metric-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: min(980px, 100%);
  margin-top: 42px;
  background: rgba(255, 255, 255, 0.28);
}

.metric-list span {
  min-height: 86px;
  display: flex;
  align-items: center;
  padding: 18px;
  background: rgba(0, 0, 0, 0.54);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
}

.report-section {
  background: var(--white);
}

.report-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 58px;
  align-items: center;
}

.report-copy {
  display: grid;
  gap: 24px;
}

.report-copy p {
  color: var(--charcoal);
  font-size: 1.08rem;
}

.report-figure {
  margin: 0;
  box-shadow: var(--shadow);
}

.report-figure img,
.split-layout > img {
  width: 100%;
  aspect-ratio: 1.42 / 1;
  object-fit: cover;
}

.gold-list {
  display: grid;
  gap: 13px;
  list-style: none;
}

.gold-list li {
  position: relative;
  padding-left: 24px;
  color: var(--charcoal);
}

.gold-list li::before {
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 9px;
  height: 1px;
  background: var(--gold);
  content: "";
}

.process {
  background: var(--paper);
}

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

.process-grid article,
.value-grid article {
  border-top: 1px solid var(--gold);
  padding-top: 28px;
}

.process-grid h3,
.value-grid h3 {
  margin-bottom: 16px;
}

.split-image {
  background: var(--white);
}

.split-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 66px;
  align-items: center;
}

.split-copy {
  display: grid;
  gap: 24px;
}

.split-copy p {
  color: var(--charcoal);
  font-size: 1.08rem;
}

.split-copy .button {
  justify-self: start;
  margin-top: 10px;
}

.consultation {
  background: var(--black);
  color: var(--white);
}

.consultation h2,
.consultation h1 {
  color: var(--white);
}

.consultation p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.consultation-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 70px;
  align-items: start;
}

.enquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.enquiry-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  font: inherit;
  min-height: 52px;
  padding: 14px 15px;
}

textarea {
  resize: vertical;
}

select option {
  color: var(--black);
}

.form-note {
  grid-column: 1 / -1;
  min-height: 24px;
  color: var(--gold) !important;
  font-size: 0.92rem !important;
}

.form-note a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer {
  border-top: 1px solid rgba(181, 138, 75, 0.26);
  background: var(--paper);
  padding: 46px 0;
}

.footer-layout {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.footer-brand {
  min-width: 250px;
  color: var(--ink);
}

.footer-brand .brand-main {
  font-size: 1.08rem;
}

.footer-brand .brand-sub {
  color: var(--gold-dark);
  font-size: 0.58rem;
}

.footer-layout p {
  max-width: 520px;
  margin-top: 18px;
  color: var(--muted);
}

.footer-layout nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-content: start;
  color: var(--charcoal);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.page-hero {
  position: relative;
  min-height: 74svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.page-hero-content {
  position: relative;
  padding: 170px 0 82px;
}

.page-hero h1 {
  max-width: 1040px;
  font-size: clamp(3rem, 6.8vw, 7.4rem);
}

.page-hero-copy {
  max-width: 760px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.14rem;
}

.page-intro {
  padding: 180px 0 82px;
  background: var(--white);
}

.founder-intro {
  padding-bottom: 58px;
}

.page-intro h1,
.contact-hero h1 {
  font-size: clamp(3rem, 6.2vw, 6.8rem);
}

.page-intro p,
.contact-hero p {
  max-width: 760px;
  margin-top: 28px;
  color: var(--charcoal);
  font-size: 1.14rem;
}

.editorial {
  display: grid;
  gap: 50px;
}

.large-serif {
  max-width: 1060px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 4.1rem);
  line-height: 1.08;
}

.editorial-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 54px;
  color: var(--charcoal);
  font-size: 1.1rem;
}

.founder-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 66px;
  align-items: center;
}

.founder-photo {
  margin: 0;
  background: var(--black);
  box-shadow: var(--shadow);
}

.founder-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.founder-copy {
  display: grid;
  gap: 24px;
}

.founder-copy h2 {
  font-size: clamp(2rem, 3.8vw, 3.7rem);
}

.founder-copy p {
  color: var(--charcoal);
  font-size: 1.08rem;
}

.black-section {
  background: var(--black);
  color: var(--white);
}

.black-section h2 {
  color: var(--white);
}

.black-section .lead-block {
  color: rgba(255, 255, 255, 0.78);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.service-detail-grid article {
  display: grid;
  gap: 22px;
  min-height: 460px;
  padding: 42px;
  background: var(--white);
}

.service-detail-grid h2 {
  font-size: clamp(2rem, 3.6vw, 3.4rem);
}

.industry-list {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.industry-list article {
  display: grid;
  grid-template-columns: minmax(240px, 0.45fr) minmax(0, 1fr);
  gap: 50px;
  padding: 50px;
  background: var(--white);
}

.industry-list .industry-feature {
  background: var(--black);
  color: var(--white);
}

.industry-list .industry-feature h2 {
  color: var(--white);
}

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

.industry-list p {
  color: var(--muted);
  font-size: 1.08rem;
}

.industry-copy {
  display: grid;
  gap: 18px;
}

.industry-feature .industry-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-hero {
  min-height: calc(100svh - 1px);
  padding: 170px 0 95px;
  background: var(--white);
}

.contact-details {
  display: grid;
  gap: 12px;
  margin-top: 42px;
}

.contact-details span,
.contact-details a {
  display: block;
  border-top: 1px solid var(--line);
  padding-top: 12px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.light-form {
  border-left: 1px solid var(--line);
  padding-left: 54px;
}

.light-form label {
  color: var(--charcoal);
}

.light-form input,
.light-form textarea,
.light-form select {
  border-color: var(--line);
  background: var(--paper);
  color: var(--ink);
}

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

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 78px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 26px 20px 32px;
    background: rgba(248, 246, 242, 0.98);
    color: var(--ink);
    border-bottom: 1px solid rgba(9, 9, 9, 0.1);
  }

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

  .site-nav a {
    width: 100%;
    padding: 14px 0;
  }

  .two-column,
  .hospitality-module,
  .report-layout,
  .split-layout,
  .consultation-layout,
  .founder-layout,
  .editorial-columns {
    grid-template-columns: 1fr;
  }

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

  .process-grid,
  .value-grid,
  .metric-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .light-form {
    border-left: 0;
    padding-left: 0;
  }

  .footer-layout {
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  .container,
  .narrow,
  .hero-content {
    width: min(100% - 28px, 1160px);
  }

  .section-pad {
    padding: 76px 0;
  }

  .compact-top {
    padding-top: 28px;
  }

  .brand {
    min-width: 164px;
  }

  .brand-main {
    font-size: 0.86rem;
  }

  .brand-sub {
    font-size: 0.48rem;
  }

  .hero {
    min-height: 84svh;
  }

  .hero-content {
    padding: 130px 0 54px;
  }

  .hero-copy,
  .page-intro p,
  .contact-hero p {
    font-size: 1rem;
  }

  .button {
    width: 100%;
  }

  .service-grid,
  .service-detail-grid,
  .module-list,
  .process-grid,
  .value-grid,
  .metric-list,
  .enquiry-form {
    grid-template-columns: 1fr;
  }

  .service-card,
  .service-detail-grid article,
  .hospitality-module {
    min-height: auto;
    padding: 28px;
  }

  .image-band {
    min-height: 860px;
  }

  .metric-list span {
    min-height: 70px;
  }

  .page-hero {
    min-height: 68svh;
  }

  .page-hero-content,
  .page-intro,
  .contact-hero {
    padding-top: 132px;
  }

  .founder-layout {
    gap: 34px;
  }

  .industry-list article {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 30px;
  }
}
