/* The Goose Method
   Colours, type and layout. Edit colour values on :root.
*/

:root {
  --ink: #111111;
  --paper: #FFFFFF;
  --offwhite: #F6F5F3;
  --grey: #5C5C5C;
  --grey-soft: #E6E4DF;
  --orange: #F88207;
  --orange-deep: #D86E00;

  --radius: 14px;
  --radius-sm: 10px;

  --max-width: 1140px;
  --max-narrow: 760px;

  --header-height: 72px;

  --font-head: "Manrope", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

h1, h2, h3 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.15;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 700; }

p { margin: 0 0 1em; }

a { color: var(--ink); }
a:hover { color: var(--orange-deep); }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--paper);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  z-index: 1000;
}
.skip-link:focus { left: 12px; top: 12px; }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.container.narrow { max-width: var(--max-narrow); }

.eyebrow {
  font-family: var(--font-head);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 600;
  margin: 0 0 12px;
}
.eyebrow-light { color: var(--orange); }

.accent { color: var(--orange); }

.text-link {
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 2px solid var(--orange);
  padding-bottom: 2px;
}
.text-link:hover { color: var(--orange-deep); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.98rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, transform 0.05s ease;
}
.btn-primary {
  background: var(--orange);
  color: var(--ink);
}
.btn-primary:hover {
  background: var(--orange-deep);
  color: var(--paper);
}
.btn-primary:active { transform: translateY(1px); }
.btn-large {
  padding: 16px 28px;
  font-size: 1.05rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--grey-soft);
  height: var(--header-height);
  display: flex;
  align-items: center;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; }
.brand-logo { height: 36px; width: auto; }

.nav { display: flex; align-items: center; }
.nav-list {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-list a {
  text-decoration: none;
  font-weight: 500;
  color: var(--ink);
  font-size: 0.98rem;
}
.nav-list a:hover { color: var(--orange-deep); }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.header-cta { display: inline-flex; }

@media (max-width: 820px) {
  .nav-toggle { display: inline-flex; }
  .nav-list {
    position: absolute;
    top: var(--header-height);
    right: 0;
    left: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--grey-soft);
    flex-direction: column;
    gap: 0;
    padding: 8px 0;
    display: none;
  }
  .nav-list.open { display: flex; }
  .nav-list li { width: 100%; }
  .nav-list a {
    display: block;
    padding: 14px 24px;
    border-top: 1px solid var(--grey-soft);
  }
  .nav-list li:first-child a { border-top: 0; }
  .header-cta { display: none; }
}

/* Hero */
.hero {
  padding: 80px 0 60px;
  background: var(--paper);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-title {
  margin-bottom: 18px;
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--grey);
  max-width: 56ch;
  margin-bottom: 28px;
}
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.hero-graphic {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-mark {
  width: min(360px, 80%);
  height: auto;
}

@media (max-width: 820px) {
  .hero { padding: 56px 0 40px; }
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-graphic { order: -1; }
  .hero-mark { width: 180px; }
}

/* Sections */
.section {
  padding: 88px 0;
}
.section-light { background: var(--offwhite); }
.section-dark {
  background: var(--ink);
  color: var(--paper);
}
.section-dark h2,
.section-dark h3 { color: var(--paper); }
.section-dark p { color: rgba(255, 255, 255, 0.78); }

.section-head {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}
.section-sub {
  color: var(--grey);
  font-size: 1.08rem;
}
.section-dark .section-sub { color: rgba(255, 255, 255, 0.78); }
.lede {
  font-size: 1.15rem;
  color: var(--grey);
}

.section-title { margin-bottom: 14px; }

@media (max-width: 820px) {
  .section { padding: 64px 0; }
}

/* Steps */
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.step {
  background: var(--paper);
  border: 1px solid var(--grey-soft);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--orange);
  font-family: var(--font-head);
  font-weight: 700;
  margin-bottom: 16px;
}
.step-title { margin-bottom: 8px; }
.step p { color: var(--grey); margin: 0; }

/* Feature list */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.feature {
  background: var(--paper);
  border: 1px solid var(--grey-soft);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.feature h3 { margin-bottom: 8px; }
.feature p { color: var(--grey); margin: 0; }

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 24px;
}
.service-card {
  background: var(--paper);
  border: 1px solid var(--grey-soft);
  border-radius: var(--radius);
  padding: 32px;
}
.service-card-core {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.service-card-core h3 { color: var(--paper); }
.service-card-core p { color: rgba(255, 255, 255, 0.82); }
.card-tag {
  font-family: var(--font-head);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0 0 12px;
  font-weight: 600;
}
.service-card-core .card-tag { color: var(--orange); }
.addon-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.addon-list li {
  padding-left: 22px;
  position: relative;
  color: var(--grey);
}
.addon-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 10px;
  height: 2px;
  background: var(--orange);
}

@media (max-width: 820px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* Reasons */
.reasons {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.reason {
  padding: 8px 0 0;
  border-top: 2px solid var(--orange);
}
.reason h3 { margin-bottom: 8px; padding-top: 14px; }
.reason p { margin: 0; }

/* Work */
.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.work-card {
  background: var(--paper);
  border: 1px solid var(--grey-soft);
  border-radius: var(--radius);
  padding: 28px;
}
.work-card h3 { margin-bottom: 10px; }
.work-card p { color: var(--grey); }
.work-card a[aria-disabled="true"] {
  opacity: 0.5;
  pointer-events: none;
}

/* Form */
.enquiry-form {
  background: var(--paper);
  border: 1px solid var(--grey-soft);
  border-radius: var(--radius);
  padding: 32px;
  display: grid;
  gap: 18px;
}
.form-row { display: grid; gap: 8px; }
.form-row label {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
}
.req { color: var(--orange); }
.form-row input[type="text"],
.form-row input[type="email"],
.form-row input[type="tel"],
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--grey-soft);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 17px;
  background: var(--paper);
  color: var(--ink);
}
.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(248, 130, 7, 0.2);
}
.form-row textarea { resize: vertical; min-height: 110px; }

.form-row-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-row-split > div { display: grid; gap: 8px; }

@media (max-width: 600px) {
  .form-row-split { grid-template-columns: 1fr; }
  .enquiry-form { padding: 22px; }
}

.form-checks {
  border: 0;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
}
.form-checks legend {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0 0 8px;
  grid-column: 1 / -1;
}
.check {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid var(--grey-soft);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.95rem;
}
.check input { accent-color: var(--orange); }

.form-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.form-note {
  color: var(--grey);
  font-size: 0.9rem;
  margin: 0;
}
.form-error {
  color: #B00020;
  background: #FFE9EC;
  border: 1px solid #F4C2C8;
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  margin: 0;
  font-size: 0.95rem;
}

.form-success {
  background: var(--paper);
  border: 1px solid var(--grey-soft);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
}
.form-success h3 { margin-bottom: 8px; }

.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  opacity: 0;
  pointer-events: none;
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
  padding: 48px 0 32px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 32px;
  align-items: start;
}
.footer-brand { display: flex; gap: 16px; align-items: flex-start; }
.footer-mark { width: 48px; height: 48px; }
.footer-brand p { margin: 0; max-width: 48ch; }
.footer-meta {
  text-align: right;
  display: grid;
  gap: 8px;
}
.footer-meta a {
  color: var(--paper);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.footer-meta a:hover { border-color: var(--orange); color: var(--orange); }
.footer-meta .muted {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

@media (max-width: 700px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-meta { text-align: left; }
}

/* Scroll reveals */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* Privacy page */
.legal {
  padding: 80px 0;
}
.legal h1 { margin-bottom: 12px; }
.legal h2 { margin-top: 36px; }
.legal p, .legal li { color: var(--grey); }
.legal ul { padding-left: 20px; }
.legal-note {
  background: var(--offwhite);
  border-left: 3px solid var(--orange);
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  margin: 0 0 32px;
  color: var(--ink);
}
