:root {
  color-scheme: light;
  --bg: #f8f3ee;
  --paper: #fff8f2;
  --ink: #14110f;
  --muted: #6b5f57;
  --line: #efe6dd;
  --white: #ffffff;
  --accent: #EA6113; /* Sunset orange */
  --accent-deep: #F88F22; /* Deeper orange */
  --accent-soft: #FBB931; /* Soft yellow-orange */
  --accent-pale: #FFE3B3; /* Pale warm tone */
  --smoke: #fbf6f2;
  --shadow: 0 16px 40px rgba(20, 16, 12, 0.06);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

img,
svg {
  display: block;
}

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

button,
input,
textarea {
  font: inherit;
}

.page-shell {
  width: min(1080px, calc(100% - 24px));
  min-height: 100vh;
  display: grid;
  place-items: start center;
  margin: 0 auto;
  padding: 28px 0 42px;
}

.story-card {
  position: relative;
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.film-rail {
  display: none;
}

.film-rail::before {
  content: "";
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 9px;
  width: 10px;
  border-radius: 2px;
  background: repeating-linear-gradient(
    to bottom,
    rgba(16, 16, 16, 0.34) 0 10px,
    transparent 10px 24px
  );
}

.site-header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 30px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.95);
}

.logo-link {
  width: 104px;
  flex: 0 0 auto;
}

.logo-link img {
  width: 100%;
  height: auto;
  mix-blend-mode: multiply;
}

.anchor-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  flex-wrap: wrap;
  gap: 6px;
}

.anchor-nav a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 12px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 860;
}

.anchor-nav a:hover {
  border-color: rgba(16, 16, 16, 0.12);
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
}

.social-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.social-button,
.send-button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 860;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.social-button {
  border: 1px solid var(--line);
  padding: 0 17px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink);
  font-size: 0.9rem;
}

.social-button svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

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

.youtube:hover {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--white);
}

.instagram:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.main-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1fr);
  gap: 0;
  min-height: 660px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 100%;
  padding: 72px 50px 64px;
  border-right: 1px solid var(--line);
}

.doc-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.doc-meta span {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 12px;
  background: rgba(250, 250, 250, 0.95);
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.doc-meta span:first-child {
  color: var(--accent-deep);
}

.doc-meta span:first-child::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(234, 97, 19, 0.12);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-deep);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 560px;
  margin-bottom: 24px;
  font-size: clamp(3.7rem, 5vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  overflow-wrap: anywhere;
}

h2 {
  margin: 0;
  font-size: 2rem;
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.03rem;
  line-height: 1.16;
}

.lead {
  max-width: 560px;
  margin: 0 0 16px;
  color: var(--ink);
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.42;
}

.story-line,
.mission-line {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.mission-line {
  margin-top: 14px;
}

.quote-line {
  width: min(460px, 100%);
  margin: 24px 0 0;
  border-left: 4px solid var(--accent);
  padding: 18px 20px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.5;
  background: rgba(31, 120, 255, 0.05);
  border-radius: 18px;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: min(520px, 100%);
  margin-top: 34px;
}

.proof-strip span {
  min-height: 68px;
  display: grid;
  align-content: center;
  border-radius: 16px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.05);
}

.proof-strip span::before {
  content: "";
  width: 18px;
  height: 3px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: var(--accent);
}

.enquiry-panel {
  padding: 42px 34px 34px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 24px;
}

.panel-heading {
  position: relative;
  display: grid;
  gap: 8px;
  margin-bottom: 22px;
  padding-left: 22px;
}

.panel-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 880;
  text-transform: uppercase;
}

.panel-note {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.45;
}

.live-dot {
  position: absolute;
  left: 0;
  top: 5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(234, 97, 19, 0.12);
}

.enquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
}

.enquiry-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 850;
}

.enquiry-form input,
.enquiry-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  color: var(--ink);
  outline: none;
  padding: 14px;
}

.enquiry-form input {
  height: 52px;
}

.enquiry-form textarea {
  min-height: 180px;
  resize: vertical;
}

.enquiry-form input:focus,
.enquiry-form textarea:focus {
  border-color: var(--accent-deep);
  box-shadow: 0 0 0 3px rgba(31, 120, 255, 0.12);
}

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

@media (min-width: 941px) {
  .enquiry-form .consent.full-field {
    grid-column: 1;
  }

  .enquiry-form .send-button.full-field {
    grid-column: 2;
    align-self: end;
  }
}

.consent {
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 10px;
  color: var(--muted);
}

.consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--accent);
}

.send-button {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--white);
  font-size: 0.98rem;
  box-shadow: 0 10px 24px rgba(16, 16, 16, 0.12);
}

.send-button:hover {
  border-color: #000000;
  background: #000000;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.hidden-field {
  position: absolute;
  left: -9999px;
}

.seo-section,
.explore-section,
.faq-section,
.info-section {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--line);
  padding: 46px 54px;
}

.seo-section {
  background: rgba(255, 255, 255, 0.5);
}

.info-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.2fr);
  gap: 32px;
  align-items: start;
}

.section-copy {
  max-width: 760px;
}

.section-copy p:last-child,
.explore-section > p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.topic-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
  margin-top: 34px;
}

  .topic-grid article {
    padding: 24px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 40px rgba(17, 17, 17, 0.05);
    border: 1px solid rgba(231, 227, 221, 0.9);
  }

  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.2fr);
  gap: 30px;
  align-items: start;
  background: rgba(238, 241, 238, 0.68);
}

.keyword-list {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 6px 0 0;
  padding: 0;
  list-style: none;
}

.keyword-list li {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(16, 16, 16, 0.12);
  border-radius: 999px;
  padding: 0 13px;
  background: rgba(255, 255, 255, 0.66);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 820;
}

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

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--ink);
  font-weight: 880;
}

.faq-list p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--muted);
}

.site-footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 34px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.58);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 760;
}

.site-footer a {
  overflow-wrap: anywhere;
}

.footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.search-shell {
  align-content: start;
}

.search-card {
  max-width: 940px;
}

.search-panel {
  position: relative;
  z-index: 1;
  padding: 56px 54px;
}

.search-panel h1 {
  font-size: 3.8rem;
}

.search-form {
  display: grid;
  gap: 10px;
  max-width: 720px;
  margin-top: 28px;
  color: var(--ink);
  font-weight: 850;
}

.search-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px;
  gap: 10px;
}

.search-row input {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 14px;
  background: var(--white);
  color: var(--ink);
  outline: none;
}

.search-row input:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.08);
}

.result-list {
  max-width: 720px;
  margin-top: 30px;
}

.result-list p {
  margin-bottom: 12px;
  color: var(--muted);
  font-weight: 820;
}

.result-list ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.result-list a {
  min-height: 48px;
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.7);
  font-weight: 850;
}

.result-list a:hover {
  border-color: var(--ink);
}

@media (max-width: 940px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .anchor-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
  }

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

  .info-section {
    grid-template-columns: 1fr;
  }

  .hero-content {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 56px 34px 42px;
  }

  h1 {
    font-size: 4rem;
  }

  .lead {
    font-size: 1.28rem;
  }

  .topic-grid,
  .explore-section {
    grid-template-columns: 1fr 1fr;
  }

  .search-panel h1 {
    font-size: 3.2rem;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: 100%;
    padding: 0;
  }

  .story-card {
    min-height: 100vh;
    border-radius: 0;
  }

  .film-rail {
    display: none;
  }

  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    padding-left: 20px;
    padding-right: 20px;
  }

  .social-links {
    width: 100%;
  }

  .anchor-nav {
    order: 0;
  }

  .anchor-nav a {
    padding: 0 10px;
    font-size: 0.8rem;
  }

  .social-button {
    min-width: calc(50% - 5px);
  }

  .hero-content,
  .enquiry-panel,
  .seo-section,
  .explore-section,
  .faq-section,
  .info-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  h1 {
    font-size: 2.8rem;
  }

  h2 {
    font-size: 1.72rem;
  }

  .lead {
    font-size: 1.12rem;
  }

  .proof-strip,
  .enquiry-form,
  .topic-grid,
  .explore-section {
    grid-template-columns: 1fr;
  }

  .info-section {
    grid-template-columns: 1fr;
  }

  .enquiry-form {
    padding: 18px;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .search-panel {
    padding: 44px 20px;
  }

  .search-panel h1 {
    font-size: 2.45rem;
  }

  .search-row {
    grid-template-columns: 1fr;
  }
}
