:root {
  --ink: #101113;
  --charcoal: #171a1c;
  --charcoal-2: #222629;
  --bone: #efe7d7;
  --paper: #f6efe0;
  --mist: #c7c0b1;
  --green: #627464;
  --green-dark: #29372f;
  --rust: #9c3d31;
  --brass: #c49a55;
  --line: rgba(239, 231, 215, 0.16);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--bone);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

.site-header {
  align-items: center;
  background: rgba(16, 17, 19, 0.82);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  left: 0;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 54px);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
}

.brand-mark {
  align-items: center;
  display: inline-flex;
  gap: 12px;
  min-width: 0;
}

.brand-sigil {
  align-items: center;
  aspect-ratio: 1;
  background: var(--bone);
  color: var(--ink);
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 900;
  justify-content: center;
  letter-spacing: 0;
  width: 42px;
}

.brand-avatar {
  aspect-ratio: 1;
  border: 1px solid rgba(239, 231, 215, 0.28);
  border-radius: 50%;
  flex: 0 0 auto;
  object-fit: cover;
  width: 42px;
}

.brand-mark strong,
.brand-mark small {
  display: block;
}

.brand-mark strong {
  font-size: 0.98rem;
}

.brand-mark small {
  color: var(--mist);
  font-size: 0.74rem;
  margin-top: 1px;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: clamp(16px, 3vw, 34px);
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav a {
  color: rgba(239, 231, 215, 0.82);
}

.site-nav a:hover {
  color: var(--bone);
}

.nav-toggle {
  align-items: center;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--bone);
  display: none;
  height: 42px;
  justify-content: center;
  padding: 0;
  width: 42px;
}

.nav-toggle span {
  background: currentColor;
  display: block;
  height: 2px;
  position: absolute;
  width: 18px;
}

.nav-toggle span:nth-child(1) {
  transform: translateY(-6px);
}

.nav-toggle span:nth-child(3) {
  transform: translateY(6px);
}

.hero {
  min-height: 88svh;
  overflow: hidden;
  position: relative;
}

.hero-media,
.hero-shade {
  inset: 0;
  position: absolute;
}

.hero-media {
  background-image: url("assets/real/fb-cover.jpg");
  background-position: center right;
  background-size: cover;
  transform: scale(1.02);
}

.hero-shade {
  background: rgba(0, 0, 0, 0.48);
}

.hero-content {
  min-height: 88svh;
  padding: 22vh clamp(20px, 7vw, 92px) 12vh;
  position: relative;
  width: min(780px, 92vw);
  z-index: 1;
}

.eyebrow,
.tag {
  color: var(--brass);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 14px;
  text-transform: uppercase;
}

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

h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 10vw, 9.5rem);
  line-height: 0.88;
  margin-bottom: 28px;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.15rem, 5vw, 4.7rem);
  line-height: 1;
  margin-bottom: 22px;
}

h3 {
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.12;
  margin-bottom: 10px;
}

.hero-copy {
  color: rgba(239, 231, 215, 0.9);
  font-size: clamp(1.12rem, 2.4vw, 1.55rem);
  max-width: 620px;
}

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

.contact-actions {
  align-items: flex-start;
  justify-content: flex-start;
}

.contact-actions .button {
  flex: 0 0 auto;
}

.button {
  align-items: center;
  border: 1px solid rgba(239, 231, 215, 0.22);
  display: inline-flex;
  font-size: 0.9rem;
  font-weight: 900;
  gap: 10px;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  text-transform: uppercase;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.icon {
  fill: none;
  flex: 0 0 auto;
  height: 18px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  width: 18px;
}

.brand-icon {
  fill: currentColor;
  stroke: none;
}

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

.button.primary {
  background: var(--bone);
  color: var(--ink);
}

.button.secondary {
  background: rgba(16, 17, 19, 0.54);
  color: var(--bone);
}

.signal-strip {
  background: var(--paper);
  color: var(--ink);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.signal-strip div,
.signal-strip a {
  border-right: 1px solid rgba(16, 17, 19, 0.16);
  color: var(--ink);
  display: block;
  min-width: 0;
  min-height: 110px;
  padding: 24px clamp(18px, 3vw, 38px);
}

.signal-strip a {
  transition:
    background 180ms ease,
    color 180ms ease;
}

.signal-strip a:hover {
  background: #ebe0cd;
  color: var(--rust);
}

.signal-strip strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 4.1vw, 3.1rem);
  line-height: 1;
}

.signal-title {
  align-items: center;
  display: flex;
  gap: clamp(10px, 1.6vw, 16px);
  min-width: 0;
}

.signal-icon {
  fill: none;
  flex: 0 0 auto;
  height: clamp(24px, 3.1vw, 34px);
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  width: clamp(24px, 3.1vw, 34px);
}

.signal-strip > div > span,
.signal-strip > a > span:not(.signal-title) {
  color: rgba(16, 17, 19, 0.72);
  display: block;
  font-size: 0.82rem;
  font-weight: 800;
  margin-top: 8px;
  text-transform: uppercase;
}

.section-band {
  padding: clamp(70px, 9vw, 132px) clamp(20px, 5vw, 62px);
}

.section-inner {
  margin: 0 auto;
  max-width: 1220px;
}

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

.drop-band {
  background: var(--green-dark);
}

.drop-grid {
  align-items: center;
  display: grid;
  gap: clamp(32px, 6vw, 84px);
  grid-template-columns: minmax(0, 1.02fr) minmax(300px, 0.98fr);
}

.drop-copy p {
  color: rgba(239, 231, 215, 0.76);
  max-width: 720px;
}

.drop-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.drop-image {
  box-shadow: var(--shadow);
  overflow: hidden;
}

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

.intro-grid,
.available-grid,
.contact-grid {
  align-items: center;
  display: grid;
  gap: clamp(28px, 5vw, 70px);
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
}

.intro p,
.available-grid p,
.process-copy p,
.work-card p {
  color: rgba(239, 231, 215, 0.74);
}

.work-band {
  background: #f2eadb;
  color: var(--ink);
}

.work-band .eyebrow,
.work-band .tag {
  color: var(--rust);
}

.section-heading {
  margin-bottom: clamp(28px, 5vw, 54px);
  max-width: 760px;
}

.work-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(220px, 0.9fr));
}

.work-card {
  background: #fff9ec;
  border: 1px solid rgba(16, 17, 19, 0.12);
  box-shadow: 0 18px 50px rgba(20, 18, 14, 0.1);
  display: flex;
  flex-direction: column;
  min-height: 420px;
  overflow: hidden;
}

.work-card img,
.work-image-crop {
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.feature-card {
  min-height: 540px;
}

.feature-card img {
  aspect-ratio: 1.12 / 1;
}

.work-card-copy {
  padding: 24px;
}

.work-card p {
  color: rgba(16, 17, 19, 0.68);
}

.work-card .card-link {
  color: var(--ink);
}

.work-card .card-link:hover {
  color: var(--rust);
}

.work-image-crop {
  background-color: var(--green-dark);
  background-image: url("assets/hero-workbench.png");
  background-size: 185%;
}

.texture-one {
  background-position: 78% 48%;
}

.texture-two {
  background-image: url("assets/process-bench.png");
  background-position: 52% 50%;
  background-size: 145%;
}

.process {
  background: var(--green-dark);
}

.process-grid {
  align-items: center;
  display: grid;
  gap: clamp(34px, 6vw, 84px);
  grid-template-columns: minmax(300px, 0.92fr) minmax(0, 1.08fr);
}

.process-image {
  box-shadow: var(--shadow);
  overflow: hidden;
}

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

.steps {
  display: grid;
  gap: 16px;
  margin-top: 34px;
}

.steps div {
  border-top: 1px solid rgba(239, 231, 215, 0.18);
  display: grid;
  gap: 10px;
  grid-template-columns: 56px 1fr;
  padding-top: 18px;
}

.steps span {
  color: var(--brass);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
}

.steps h3,
.steps p {
  grid-column: 2;
}

.available-band {
  background: var(--charcoal-2);
}

.blog-hero {
  background: var(--charcoal);
  padding-top: clamp(132px, 16vw, 190px);
}

.blog-hero-grid,
.article-hero-grid,
.article-cta-grid {
  align-items: center;
  display: grid;
  gap: clamp(30px, 6vw, 80px);
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.86fr);
}

.blog-hero h1,
.article-hero h1 {
  font-size: clamp(3.7rem, 8vw, 7.6rem);
}

.blog-lede,
.article-lede {
  color: rgba(239, 231, 215, 0.78);
  font-size: clamp(1.06rem, 2vw, 1.28rem);
  margin-bottom: 0;
}

.blog-list-band {
  background: var(--paper);
  color: var(--ink);
}

.blog-list-band .eyebrow,
.blog-list-band .tag {
  color: var(--rust);
}

.blog-card-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.blog-preview .blog-card-grid {
  grid-template-columns: minmax(0, 720px);
}

.blog-index-link {
  color: var(--ink);
  margin-top: 26px;
}

.blog-index-link:hover {
  color: var(--rust);
}

.blog-card {
  background: #fff9ec;
  border: 1px solid rgba(16, 17, 19, 0.12);
  box-shadow: 0 18px 50px rgba(20, 18, 14, 0.1);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
}

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

.blog-card-copy {
  padding: 24px;
}

.blog-card h3 a:hover {
  color: var(--rust);
}

.blog-card p {
  color: rgba(16, 17, 19, 0.68);
}

.blog-card time,
.article-meta {
  color: rgba(16, 17, 19, 0.6);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.article-page {
  background: var(--paper);
  color: var(--ink);
}

.article-hero {
  background: var(--ink);
  color: var(--bone);
  padding-top: clamp(132px, 16vw, 190px);
}

.article-hero-image {
  box-shadow: var(--shadow);
  margin: 0;
  overflow: hidden;
}

.article-hero-image img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  width: 100%;
}

.article-meta {
  color: rgba(239, 231, 215, 0.68);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 28px;
}

.article-body {
  font-size: clamp(1.02rem, 1.6vw, 1.16rem);
  padding-bottom: clamp(70px, 9vw, 118px);
  padding-top: clamp(58px, 8vw, 100px);
}

.article-body > * {
  margin-left: auto;
  margin-right: auto;
  max-width: 780px;
}

.article-body p {
  color: rgba(16, 17, 19, 0.76);
}

.article-body h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  margin-top: clamp(42px, 7vw, 72px);
}

.article-cta {
  background: var(--green-dark);
  color: var(--bone);
}

.about {
  background: var(--ink);
}

.about-grid {
  align-items: start;
  display: grid;
  gap: clamp(30px, 6vw, 86px);
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
}

.about-grid > div > p {
  color: rgba(239, 231, 215, 0.76);
  max-width: 720px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list article {
  border: 1px solid var(--line);
  padding: 20px;
}

.faq-list h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.faq-list p {
  color: rgba(239, 231, 215, 0.72);
  margin-bottom: 0;
}

.availability-list {
  display: grid;
  gap: 14px;
}

.buying-path {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.buying-path div {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 12px;
  grid-template-columns: 42px 1fr;
  padding-top: 14px;
}

.buying-path span {
  color: var(--brass);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  line-height: 1;
}

.buying-path p {
  margin-bottom: 0;
}

.availability-list article {
  border: 1px solid var(--line);
  padding: 22px;
}

.card-link {
  align-items: center;
  border-bottom: 1px solid currentColor;
  color: var(--bone);
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 900;
  gap: 8px;
  margin-top: 8px;
  padding-bottom: 3px;
  text-transform: uppercase;
}

.card-link .icon {
  height: 15px;
  width: 15px;
}

.card-link:hover {
  color: var(--brass);
}

.status {
  display: inline-flex;
  font-size: 0.72rem;
  font-weight: 900;
  margin-bottom: 16px;
  padding: 5px 8px;
  text-transform: uppercase;
}

.status.live {
  background: rgba(98, 116, 100, 0.28);
  color: #c8dec2;
}

.status.limited {
  background: rgba(196, 154, 85, 0.2);
  color: #e8c887;
}

.status.enquiry {
  background: rgba(239, 231, 215, 0.14);
  color: #f1e4cb;
}

.status.archive {
  background: rgba(156, 61, 49, 0.2);
  color: #e09b93;
}

.contact {
  background: var(--paper);
  color: var(--ink);
}

.contact .eyebrow {
  color: var(--rust);
}

.contact .button.secondary {
  background: transparent;
  border-color: rgba(16, 17, 19, 0.2);
  color: var(--ink);
}

.site-footer {
  align-items: center;
  background: var(--ink);
  border-top: 1px solid var(--line);
  color: rgba(239, 231, 215, 0.66);
  display: flex;
  flex-wrap: wrap;
  font-size: 0.84rem;
  gap: 12px 24px;
  justify-content: space-between;
  padding: 26px clamp(20px, 5vw, 62px);
}

.site-footer p {
  margin: 0;
}

.footer-note {
  max-width: 560px;
}

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

  .nav-toggle {
    display: inline-flex;
    position: relative;
  }

  .site-nav {
    background: rgba(16, 17, 19, 0.96);
    border-bottom: 1px solid var(--line);
    display: grid;
    gap: 0;
    left: 0;
    padding: 8px 20px 18px;
    position: absolute;
    right: 0;
    top: 66px;
    transform: translateY(-130%);
    transition: transform 180ms ease;
  }

  .site-nav a {
    border-top: 1px solid var(--line);
    padding: 15px 0;
  }

  body.nav-open .site-nav {
    transform: translateY(0);
  }

  .hero,
  .hero-content {
    min-height: 86svh;
  }

  .hero-content {
    padding-top: 18vh;
  }

  .signal-strip,
  .intro-grid,
  .drop-grid,
  .about-grid,
  .available-grid,
  .contact-grid,
  .process-grid,
  .blog-hero-grid,
  .article-hero-grid,
  .article-cta-grid {
    grid-template-columns: 1fr;
  }

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

  .signal-strip div {
    border-bottom: 1px solid rgba(16, 17, 19, 0.16);
    min-height: 96px;
  }

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

  .blog-card-grid {
    grid-template-columns: 1fr;
  }

  .work-card,
  .feature-card {
    min-height: 0;
  }
}

@media (max-width: 560px) {
  .brand-mark small {
    display: none;
  }

  .hero {
    min-height: 84svh;
  }

  .hero-content {
    min-height: 84svh;
    padding-bottom: 9vh;
  }

  .hero-media {
    background-position: 63% center;
  }

  .hero-shade {
    background: rgba(0, 0, 0, 0.58);
  }

  .button {
    width: 100%;
  }

  .signal-strip {
    grid-template-columns: 1fr;
  }

  .section-band {
    padding-left: 18px;
    padding-right: 18px;
  }

  .steps div {
    grid-template-columns: 46px 1fr;
  }
}

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