:root {
  --bg: #0a0a0a;
  --charcoal: #0f0f0f;
  --card: #141414;
  --gold: #c9a84c;
  --gold-light: #e8c96a;
  --gold-dark: #8a6a1f;
  --white: #f5f0e8;
  --grey: #888880;
  --grey-dark: #3a3a36;
  --border: rgba(201, 168, 76, 0.12);
  --max: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--white);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.8;
  overflow-x: hidden;
}

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

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

#ambient-canvas {
  position: fixed;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 20%, rgba(201, 168, 76, 0.08), transparent 34%), #050505;
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 80;
  pointer-events: none;
  opacity: 0.12;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.2) 0 1px, transparent 1px),
    radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.1) 0 1px, transparent 1px);
  background-size: 9px 9px, 15px 15px;
  mix-blend-mode: screen;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: 70px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
  padding: 0 60px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(20px);
}

.wordmark,
.desktop-nav,
.nav-button,
.menu-toggle,
.eyebrow,
.button,
.pillar-pills,
.pillar-card,
.operate,
.site-footer nav {
  font-family: "Cinzel", Georgia, serif;
  letter-spacing: 0;
}

.wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  white-space: nowrap;
  text-transform: uppercase;
}

.wordmark span:first-child {
  color: var(--white);
  font-weight: 700;
}

.wordmark span:nth-of-type(2) {
  color: var(--gold);
  font-weight: 700;
}

.wordmark span:last-child {
  color: var(--grey);
  font-weight: 400;
}

.wordmark i {
  width: 3px;
  height: 3px;
  background: rgba(201, 168, 76, 0.55);
  transform: rotate(45deg) translateY(-3px);
}

.desktop-nav {
  justify-self: center;
  display: flex;
  gap: 30px;
  color: var(--grey);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.desktop-nav a,
.site-footer a {
  transition: color 0.3s ease;
}

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

.nav-button,
.button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  padding: 10px 22px;
  color: var(--gold);
  font-family: "Cinzel", Georgia, serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: transform 0.3s ease, color 0.3s ease, background 0.3s ease;
}

.button.filled,
.nav-button:hover,
.button:hover {
  background: var(--gold);
  color: var(--bg);
}

.button.filled:hover,
.button.ghost {
  background: transparent;
  color: var(--gold);
}

.button.ghost:hover {
  background: var(--gold);
  color: var(--bg);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--gold);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 0.3s ease;
}

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

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

.mobile-menu {
  position: fixed;
  inset: 70px 0 0;
  z-index: 45;
  display: grid;
  align-content: center;
  gap: 26px;
  padding: 34px;
  background: rgba(5, 5, 5, 0.98);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-16px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.mobile-menu a {
  color: var(--white);
  font-family: "Cinzel", Georgia, serif;
  font-size: 1.25rem;
  text-align: center;
  text-transform: uppercase;
}

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

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 70;
  width: 100%;
  height: 2px;
  background: rgba(201, 168, 76, 0.08);
}

.scroll-progress span {
  display: block;
  height: 100%;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 108px 60px 60px;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 70px 0 0;
  z-index: -2;
  overflow: hidden;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 10, 10, 0.96), rgba(10, 10, 10, 0.6) 44%, rgba(10, 10, 10, 0.2)),
    linear-gradient(0deg, rgba(10, 10, 10, 0.92), transparent 42%, rgba(10, 10, 10, 0.42));
}

.hero-media img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  will-change: transform;
}

.hero-grid {
  position: absolute;
  inset: 70px 0 0;
  z-index: -1;
  background:
    linear-gradient(rgba(201, 168, 76, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.05) 1px, transparent 1px);
  background-size: 70px 70px;
  opacity: 0.35;
}

.corner {
  position: absolute;
  width: 120px;
  height: 120px;
  border-color: var(--gold);
  opacity: 0.55;
}

.corner::before,
.corner::after {
  content: "";
  position: absolute;
  background: currentColor;
  color: var(--gold);
}

.corner::before {
  width: 100%;
  height: 1px;
}

.corner::after {
  width: 1px;
  height: 100%;
}

.top-left {
  top: 112px;
  left: 46px;
}

.bottom-right {
  right: 46px;
  bottom: 46px;
  transform: rotate(180deg);
}

.hero-content {
  width: min(700px, 100%);
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.55em;
  text-transform: uppercase;
}

.ornament {
  width: 190px;
  display: grid;
  grid-template-columns: 1fr 8px 1fr;
  align-items: center;
  gap: 11px;
  margin: 18px 0;
}

.ornament span {
  height: 1px;
  background: rgba(201, 168, 76, 0.46);
}

.ornament i {
  width: 8px;
  height: 8px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
}

.hero h1 {
  margin: 0;
  display: grid;
  gap: 4px;
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(3.4rem, 8vw, 6rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 0.95;
  text-transform: uppercase;
}

.hero h1 span:nth-child(2) {
  color: var(--gold);
}

.hero h1 span:nth-child(3) {
  color: var(--grey);
  font-weight: 400;
}

.tagline,
.hero-sub,
.section-heading em,
.disciplines em,
.standard small {
  color: rgba(201, 168, 76, 0.44);
  font-style: italic;
  letter-spacing: 0.18em;
}

.hero h2 {
  margin: 30px 0 5px;
  font-family: "Cinzel", Georgia, serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-sub {
  margin: 0 0 22px;
  color: var(--grey);
  font-size: 17px;
  letter-spacing: 0.04em;
}

.pillar-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--gold);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.pillar-pills span:not(:last-child)::after {
  content: "·";
  margin-left: 12px;
  color: rgba(201, 168, 76, 0.4);
}

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

.hero-line-art {
  position: absolute;
  right: 4vw;
  bottom: 8vh;
  z-index: 1;
  width: min(35vw, 500px);
  opacity: 0.72;
}

.draw-svg path {
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
}

.section {
  padding: clamp(86px, 11vw, 140px) 60px;
}

.story {
  background: var(--bg);
  text-align: center;
}

.story-inner,
.section-heading,
.standard-inner,
.philosophy {
  width: min(var(--max), 100%);
  margin: 0 auto;
  text-align: center;
}

.story p:last-child {
  margin: 0 auto;
  max-width: 820px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-style: italic;
  line-height: 1.55;
}

em {
  color: var(--gold);
}

.statement {
  position: relative;
  background: var(--charcoal);
  text-align: center;
}

.pulse-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  opacity: 0.55;
  animation: pulseLine 3s ease-in-out infinite;
}

@keyframes pulseLine {
  50% {
    opacity: 1;
  }
}

.statement h2,
.section-heading h2,
.standard h2,
.philosophy blockquote {
  margin: 0;
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.15;
  text-transform: uppercase;
}

.service-reels {
  background: var(--bg);
}

.service-panel {
  min-height: 92vh;
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(34px, 6vw, 92px);
  align-items: center;
  padding: clamp(72px, 9vw, 120px) 60px;
}

.service-panel.reverse {
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
}

.service-panel.reverse .service-copy {
  order: 2;
}

.service-panel.reverse .service-image {
  order: 1;
}

.service-copy h2 {
  margin: 0 0 24px;
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(2.1rem, 4.5vw, 4.2rem);
  letter-spacing: 0.05em;
  line-height: 1.08;
  text-transform: uppercase;
}

.service-copy p:not(.eyebrow) {
  color: rgba(245, 240, 232, 0.74);
  font-size: 1.18rem;
}

.service-copy a {
  color: var(--gold);
  font-family: "Cinzel", Georgia, serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.service-image {
  position: relative;
  margin: 0;
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--card);
}

.service-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 10, 10, 0.6), transparent 42%);
}

.service-image img {
  height: min(62vw, 640px);
  min-height: 420px;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.05);
  transform: scale(1.04);
}

.service-image figcaption {
  position: absolute;
  z-index: 2;
  left: 24px;
  bottom: 20px;
  color: var(--gold);
  font-family: "Cinzel", Georgia, serif;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.pillar-grid-section {
  background: var(--bg);
}

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

.pillar-grid,
.event-grid,
.client-grid,
.enquire-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

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

.pillar-card,
.event-grid article,
.client-grid > div,
.enquire-grid article {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(20, 20, 20, 0.72);
  backdrop-filter: blur(12px);
}

.pillar-card {
  min-height: 330px;
  padding: 28px;
}

.pillar-card::before,
.enquire-grid article::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.pillar-card:hover::before,
.enquire-grid article:hover::before {
  transform: scaleX(1);
}

.pillar-card span {
  color: rgba(201, 168, 76, 0.3);
  font-family: "Cinzel Decorative", Georgia, serif;
  font-size: 4.4rem;
  line-height: 1;
}

.pillar-card p {
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
}

.pillar-card h3 {
  margin: 30px 0;
  font-size: 1rem;
  line-height: 1.65;
  text-transform: uppercase;
}

.pillar-card a {
  position: absolute;
  left: 28px;
  bottom: 24px;
  color: var(--gold);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.pillar-card:hover a {
  opacity: 1;
  transform: translateY(0);
}

.disciplines {
  background: var(--charcoal);
  text-align: center;
}

.discipline-rows {
  width: min(1120px, 100%);
  margin: 24px auto;
}

.discipline-rows p {
  margin: 14px 0;
  color: rgba(136, 136, 128, 0.72);
  font-family: "Cinzel", Georgia, serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.discipline-rows p:hover {
  color: var(--gold);
}

.name-section,
.standard,
.clients {
  background: var(--bg);
}

.definition-list {
  width: min(980px, 100%);
  margin: 0 auto;
}

.definition-list article {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 56px;
  padding: 46px 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.definition-list b {
  display: block;
  color: rgba(201, 168, 76, 0.1);
  font-family: "Cinzel Decorative", Georgia, serif;
  font-size: 5rem;
  line-height: 1;
}

.definition-list h3,
.event-grid h3,
.client-grid h3,
.enquire-grid h3 {
  margin: 0 0 16px;
  color: var(--gold);
  font-family: "Cinzel", Georgia, serif;
  font-size: 1rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.definition-list p {
  margin: 0;
  padding-left: 44px;
  border-left: 1px solid rgba(201, 168, 76, 0.34);
  color: rgba(245, 240, 232, 0.78);
}

.standard-inner {
  max-width: 900px;
}

.standard .ornament {
  margin: 34px auto;
}

.standard h3 {
  margin: 0 0 28px;
  font-family: "Cinzel", Georgia, serif;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  line-height: 2;
  text-transform: uppercase;
}

.standard p {
  margin: 0 auto 26px;
  max-width: 680px;
  color: rgba(245, 240, 232, 0.78);
  font-size: 1.25rem;
}

.events {
  background: var(--charcoal);
}

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

.event-grid article,
.client-grid > div,
.enquire-grid article {
  padding: 28px;
}

.event-grid p,
.client-grid p,
.enquire-grid p {
  color: rgba(245, 240, 232, 0.68);
}

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

.client-grid p {
  margin: 0;
  padding: 12px 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.06);
  transition: color 0.3s ease;
}

.client-grid p:hover {
  color: var(--white);
}

.operate {
  padding: 38px 24px;
  border-block: 1px solid rgba(201, 168, 76, 0.1);
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 0.45em;
  text-align: center;
  text-transform: uppercase;
}

.philosophy blockquote {
  max-width: 760px;
  margin: 0 auto;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4.2vw, 3.6rem);
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.72;
  text-transform: none;
}

.enquire {
  background: var(--charcoal);
}

.enquire-grid article {
  min-height: 280px;
}

.enquire-grid .button {
  margin-top: 16px;
}

.contact-block {
  width: min(var(--max), 100%);
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--border);
  background: rgba(10, 10, 10, 0.42);
  backdrop-filter: blur(14px);
}

.contact-block > div {
  min-height: 116px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 22px;
  border-right: 1px solid rgba(201, 168, 76, 0.08);
}

.contact-block > div:last-child {
  border-right: 0;
}

.contact-block span,
.footer-contact {
  font-family: "Cinzel", Georgia, serif;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-block span {
  color: rgba(201, 168, 76, 0.58);
  font-size: 0.58rem;
}

.contact-block a,
.contact-block p {
  margin: 0;
  color: rgba(245, 240, 232, 0.78);
  font-size: 1rem;
  line-height: 1.35;
  transition: color 0.3s ease;
}

.contact-block a:hover {
  color: var(--gold);
}

.site-footer {
  padding: 72px 60px;
  display: grid;
  justify-items: center;
  gap: 20px;
  background: #050505;
  color: var(--grey-dark);
  text-align: center;
}

.site-footer p {
  margin: 0;
  color: rgba(201, 168, 76, 0.32);
  font-style: italic;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(201, 168, 76, 0.18);
  font-size: 8px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.footer-contact {
  width: min(980px, 100%);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 22px;
  padding: 18px 0;
  border-top: 1px solid rgba(201, 168, 76, 0.12);
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
  color: rgba(136, 136, 128, 0.78);
  font-size: 0.62rem;
}

.footer-contact a {
  color: rgba(245, 240, 232, 0.58);
}

.footer-contact span {
  color: rgba(201, 168, 76, 0.52);
}

[data-reveal],
.hero-line {
  opacity: 0;
  transform: translateY(36px);
}

@media (max-width: 1040px) {
  .site-header {
    padding: 0 24px;
    grid-template-columns: auto 1fr auto auto;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .pillar-grid,
  .event-grid,
  .enquire-grid,
  .contact-block {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-block > div:nth-child(2n) {
    border-right: 0;
  }

  .service-panel,
  .service-panel.reverse {
    grid-template-columns: 1fr;
  }

  .service-panel.reverse .service-copy,
  .service-panel.reverse .service-image {
    order: initial;
  }

  .hero-line-art {
    opacity: 0.24;
    width: 52vw;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 18px;
  }

  .site-header {
    height: 66px;
    padding: 0 16px;
  }

  .wordmark {
    font-size: 0.78rem;
  }

  .nav-button {
    display: none;
  }

  .hero {
    padding: 98px 20px 46px;
  }

  .top-left {
    top: 90px;
    left: 18px;
  }

  .bottom-right {
    right: 18px;
    bottom: 24px;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 4.8rem);
  }

  .hero-line-art {
    display: none;
  }

  .section,
  .service-panel {
    padding-inline: 20px;
  }

  .pillar-grid,
  .event-grid,
  .client-grid,
  .enquire-grid,
  .contact-block,
  .definition-list article {
    grid-template-columns: 1fr;
  }

  .contact-block > div {
    min-height: 96px;
    border-right: 0;
    border-bottom: 1px solid rgba(201, 168, 76, 0.08);
  }

  .contact-block > div:last-child {
    border-bottom: 0;
  }

  .definition-list article {
    gap: 18px;
  }

  .definition-list p {
    padding-left: 22px;
  }

  .service-image img {
    min-height: 300px;
  }

  .operate {
    font-size: 0.62rem;
    line-height: 2.2;
  }
}
