@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;1,400;1,600&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&display=swap');

/* ── Variables ───────────────────────────────────────────── */
:root {
  --ink:       #2e3830;
  --ink-soft:  #4c5c52;
  --ink-muted: #7a8a80;
  --cream:     #f7f8f5;
  --cream-mid: #eceee9;
  --cream-deep:#d4d8d0;
  --gold:      #7a8a10;
  --gold-dark: #8a9115;
  --gold-light:#e4e9a0;
  --rule:      rgba(76,92,82,0.14);
  --serif:     'Playfair Display', Georgia, serif;
  --sans:      'DM Sans', system-ui, sans-serif;
  --max:       1100px;
  --gutter:    clamp(1.25rem, 5vw, 3rem);
  --transition: 0.28s ease;
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink);
  background: #ffffff;
  min-height: 100vh;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typography ──────────────────────────────────────────── */
h1,h2,h3,h4 { font-family: var(--serif); font-weight: 400; line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.55rem); }
h4 { font-size: 1.1rem; }
p  { font-size: clamp(0.95rem, 1.5vw, 1.05rem); color: var(--ink-soft); }
.serif { font-family: var(--serif); }
.italic { font-style: italic; }
.gold { color: var(--gold); }
.muted { color: var(--ink-muted); font-size: 0.875rem; }

/* ── Layout helpers ──────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%,420px),1fr)); gap: 2.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%,280px),1fr)); gap: 2rem; }

/* ── Rule decoration ─────────────────────────────────────── */
.ruled { position: relative; padding-bottom: 1.25rem; }
.ruled::after {
  content: '';
  display: block;
  width: 48px;
  height: 1.5px;
  background: var(--gold);
  margin-top: 1rem;
}
.ruled-center::after { margin-inline: auto; }

/* ── Nav ─────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: #ffffff;
  border-bottom: 1px solid var(--rule);
  backdrop-filter: blur(8px);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 180px;
}
.nav-logo-img { display: inline-block; line-height: 1; text-decoration: none; }
.nav-logo-image { height: 150px; width: auto; display: block; max-width: 300px; }


  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--ink);
  line-height: 1.2;
}
.nav-logo span { display: block; font-weight: 400; font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-muted); }
.nav-links {
  display: flex;
  gap: 0.25rem;
  align-items: center;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.4rem 0.75rem;
  border-radius: 2px;
  color: var(--ink-soft);
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--ink);
  background: var(--cream-mid);
}
.nav-links .nav-cta {
  background: var(--ink);
  color: var(--cream);
  padding: 0.45rem 1rem;
  margin-left: 0.5rem;
}
.nav-links .nav-cta:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }

/* Hamburger */
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.nav-toggle span { display: block; width: 22px; height: 1.5px; background: var(--ink); transition: var(--transition); }

@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none; flex-direction: column; align-items: stretch; gap: 0;
    position: absolute; top: 150px; left: 0; right: 0;
    background: #ffffff; border-bottom: 1px solid var(--rule);
    padding: 1rem var(--gutter);
  }
  .nav-links.open { display: flex; }
  .nav-logo-image { height: 70px; max-width: 180px; }
  .nav-inner { height: 100px; }
  .nav-links a { padding: 0.75rem 0; border-bottom: 1px solid var(--rule); border-radius: 0; }
  .nav-links a:last-child { border-bottom: none; }
  .nav-links .nav-cta { margin-left: 0; background: none; color: var(--ink); padding: 0.75rem 0; }
}

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  padding-block: clamp(4rem, 10vw, 7rem);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '"';
  font-family: var(--serif);
  font-size: clamp(12rem, 28vw, 22rem);
  color: var(--cream-mid);
  position: absolute;
  top: -2rem; right: -1rem;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.hero-inner { position: relative; z-index: 1; }
.hero-kicker {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero-kicker::before {
  content: '';
  display: inline-block;
  width: 28px; height: 1px;
  background: var(--gold);
}
.hero h1 { max-width: 14ch; margin-bottom: 1.5rem; }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero-lead {
  font-size: clamp(1rem, 2vw, 1.15rem);
  max-width: 52ch;
  margin-bottom: 2.5rem;
  color: var(--ink-soft);
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.75rem 1.75rem;
  border-radius: 2px;
  cursor: pointer;
  transition: all var(--transition);
  border: 1.5px solid transparent;
}
.btn-primary { background: var(--ink-soft); color: var(--cream); border-color: var(--ink-soft); }
.btn-primary:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.btn-outline { background: transparent; color: var(--ink-soft); border-color: var(--ink-soft); }
.btn-outline:hover { background: var(--ink-soft); color: var(--cream); }
.btn-ghost { background: transparent; color: var(--gold-dark); border-color: transparent; padding-left: 0; padding-right: 0; }
.btn-ghost::after { content: '→'; margin-left: 0.25rem; transition: margin-left var(--transition); }
.btn-ghost:hover::after { margin-left: 0.6rem; }

/* ── Sections ────────────────────────────────────────────── */
section { padding-block: clamp(3rem, 8vw, 5.5rem); }
.section-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 0.75rem;
}
.bg-mid { background: var(--cream-mid); }
.bg-ink { background: var(--ink); color: var(--cream); }
.bg-ink p { color: rgba(247,243,237,0.72); }
.bg-ink h2, .bg-ink h3 { color: var(--cream); }
.bg-ink .ruled::after { background: var(--gold); }
.bg-ink .section-label { color: var(--gold-light); }

/* ── Cards ───────────────────────────────────────────────── */
.card {
  background: #ffffff;
  border: 1px solid var(--rule);
  padding: 2rem 1.75rem;
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(26,24,20,0.08); }
.card-num {
  font-family: var(--serif);
  font-size: 2.5rem;
  color: var(--cream-deep);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 1rem;
  display: block;
}
.card h3 { margin-bottom: 0.5rem; }
.card p { font-size: 0.95rem; }
.card .btn-ghost { margin-top: 1.25rem; font-size: 0.8rem; }

/* ── Service list ────────────────────────────────────────── */
.service-block { padding-block: 2.5rem; border-top: 1px solid var(--rule); }
.service-block:last-child { border-bottom: 1px solid var(--rule); }
.service-block h3 { margin-bottom: 0.75rem; }
.service-block p { max-width: 60ch; }
.service-block .btn-ghost { margin-top: 1rem; }

/* ── Pullquote ───────────────────────────────────────────── */
.pullquote {
  border-left: 2px solid var(--gold);
  padding-left: 1.75rem;
  margin-block: 2rem;
}
.pullquote p {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  color: var(--ink);
  line-height: 1.55;
}
.pullquote cite { display: block; font-size: 0.85rem; margin-top: 0.6rem; color: var(--ink-muted); font-style: normal; }

/* ── Testimonials ────────────────────────────────────────── */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%,300px),1fr)); gap: 1.5rem; }
.testi {
  background: #ffffff;
  border: 1px solid var(--rule);
  padding: 1.75rem;
}
.testi-body {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 1rem;
}
.testi-body::before { content: '\201C'; }
.testi-body::after  { content: '\201D'; }
.testi-author { font-size: 0.82rem; color: var(--ink-muted); font-weight: 500; letter-spacing: 0.04em; }

/* ── Intro two-col ───────────────────────────────────────── */
.intro-pair { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,6vw,5rem); align-items: start; }
@media (max-width: 720px) { .intro-pair { grid-template-columns: 1fr; } }
.intro-pair .label-stack { position: sticky; top: 110px; }
@media (max-width: 720px) { .intro-pair .label-stack { position: static; } }

/* ── Contact form ────────────────────────────────────────── */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
@media (max-width: 540px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 500; color: var(--ink-muted); }
.field input,
.field select,
.field textarea {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--cream-deep);
  padding: 0.65rem 0.85rem;
  border-radius: 2px;
  outline: none;
  transition: border-color var(--transition);
  width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); }
.field textarea { resize: vertical; min-height: 120px; }

/* ── Footer ──────────────────────────────────────────────── */
.site-footer {
  background: var(--ink);
  color: var(--cream);
  padding-block: 3rem 2rem;
  margin-top: auto;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 640px) { .footer-inner { grid-template-columns: 1fr 1fr; } }
.footer-brand { grid-column: 1; }
@media (max-width: 640px) { .footer-brand { grid-column: 1 / -1; } }
.footer-logo {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.75rem;
}
.footer-tagline { font-size: 0.875rem; color: rgba(247,243,237,0.5); line-height: 1.5; max-width: 28ch; }
.footer-col h5 { font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; font-weight: 500; font-family: var(--sans); }
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col a { font-size: 0.875rem; color: rgba(247,243,237,0.6); transition: color var(--transition); }
.footer-col a:hover { color: var(--cream); }
.footer-base {
  border-top: 1px solid rgba(247,243,237,0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-base p { font-size: 0.78rem; color: rgba(247,243,237,0.35); }

/* ── BBC badge ───────────────────────────────────────────── */
.bbc-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  color: var(--ink-muted);
  border: 1px solid var(--cream-deep);
  padding: 0.4rem 0.85rem 0.4rem 0.6rem;
  border-radius: 2px;
  margin-top: 0.5rem;
}
.bbc-badge::before {
  content: 'BBC';
  font-weight: 600;
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  background: var(--ink);
  color: var(--cream);
  padding: 0.15rem 0.35rem;
  border-radius: 1px;
}

/* ── Animations ──────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.6s ease both; }
.fade-up-1 { animation-delay: 0.1s; }
.fade-up-2 { animation-delay: 0.22s; }
.fade-up-3 { animation-delay: 0.34s; }
.fade-up-4 { animation-delay: 0.46s; }

/* ── Utility ─────────────────────────────────────────────── */
.mt-sm  { margin-top: 0.75rem; }
.mt-md  { margin-top: 1.5rem; }
.mt-lg  { margin-top: 2.5rem; }
.mb-sm  { margin-bottom: 0.75rem; }
.mb-md  { margin-bottom: 1.5rem; }
.mb-lg  { margin-bottom: 2.5rem; }
.text-center { text-align: center; }
.max-prose { max-width: 65ch; }
