@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Source+Serif+4:ital,opsz,wght@0,8..60,400;0,8..60,600;1,8..60,400&display=swap');

:root {
  --charcoal: #1E1E1E;
  --accent: #4C8FD8;
  --line: #E3E7EC;
  --muted: #5A6470;
  --caption: #8A919A;
  --max: 1120px;
  --measure: 68ch;
  --section-gap: 64px;
  --font: 'Inter', Arial, Helvetica, sans-serif;
  --font-serif: 'Source Serif 4', Georgia, serif;
  --font-sans: 'Inter', Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--charcoal);
  background: #fff;
  line-height: 1.65;
  font-size: 1.125rem;
}

a { color: var(--accent); }

/* ── Header ────────────────────────────────────────────────── */

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 28px 40px;
}

.wordmark {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--charcoal);
  text-decoration: none;
  letter-spacing: -0.01em;
  line-height: 1;
}
.wordmark:hover { color: var(--charcoal); }

/* ── Layout ────────────────────────────────────────────────── */

main {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 40px;
}

/* ── Type scale ────────────────────────────────────────────── */

h1 {
  margin: 0 0 24px;
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 4.5vw, 3.75rem);
  line-height: 1.08;
  font-weight: 600;
  font-optical-sizing: auto;
  letter-spacing: -0.01em;
}

h2 {
  margin: 0 0 20px;
  font-family: var(--font-sans);
  font-size: 2.25rem;
  line-height: 1.15;
  font-weight: 600;
  color: var(--charcoal);
}

h3 {
  margin: 40px 0 12px;
  font-family: var(--font-sans);
  font-size: 1.375rem;
  line-height: 1.3;
  font-weight: 600;
  color: var(--charcoal);
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 0.75rem;
  line-height: 1.4;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}

/* ── Hero ──────────────────────────────────────────────────── */

.hero {
  padding: 48px 0 var(--section-gap);
}

.lede {
  margin: 0 0 32px;
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 400;
  color: #2C333B;
  max-width: var(--measure);
}

/* ── CTA button ────────────────────────────────────────────── */

.cta {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  padding: 14px 26px;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  line-height: 1.4;
}
.cta:hover { background: #3a7dc4; color: #fff; }
.cta:disabled { opacity: 0.6; cursor: default; }

/* ── Content blocks ────────────────────────────────────────── */

.block { padding: var(--section-gap) 0; }
.block + .block { border-top: 1px solid var(--line); }

.block-lede {
  margin: 0 0 20px;
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 400;
  max-width: var(--measure);
  color: #2C333B;
}

/* ── Two-column layout ─────────────────────────────────────── */

.two-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-top: 32px;
}

.col-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 16px;
}

/* ── Prose lists ───────────────────────────────────────────── */

.prose-list {
  list-style: disc;
  margin: 16px 0 0;
  padding-left: 22px;
  display: grid;
  gap: 8px;
}
.prose-list li {
  font-family: var(--font-sans);
  font-size: 18px;
  color: #2C333B;
  line-height: 1.55;
}

/* ── Check list ────────────────────────────────────────────── */

.check-list {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.check-list li {
  font-family: var(--font-sans);
  font-size: 18px;
  color: #2C333B;
  line-height: 1.55;
  padding-left: 28px;
  position: relative;
}
.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='2.5 8 6.5 12 13.5 4' stroke='%234C8FD8' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

/* ── Price callout ─────────────────────────────────────────── */

.price-block {
  margin-top: 32px;
}

.price-figure {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.1;
  margin: 0 0 8px;
}

.price-detail {
  font-size: 16px;
  color: var(--muted);
  margin: 0;
}

/* ── Photo / image ─────────────────────────────────────────── */

.photo {
  display: block;
  width: 100%;
  height: auto;
}

.photo-full {
  display: block;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  max-height: 560px;
  object-fit: cover;
}

figcaption,
.caption {
  display: block;
  margin-top: 10px;
  font-size: 0.8125rem;
  color: var(--caption);
  line-height: 1.45;
  font-style: italic;
}

.credit {
  display: block;
  font-size: 0.75rem;
  color: var(--caption);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 6px;
  font-style: normal;
}

/* ── Anchor scroll offset ──────────────────────────────────── */

#enquire {
  scroll-margin-top: 32px;
  padding-top: 32px;
}

/* ── Form prompt ───────────────────────────────────────────── */

.form-prompt {
  font-family: var(--font-sans);
  font-size: 2.25rem;
  line-height: 1.15;
  font-weight: 600;
  color: var(--charcoal);
  margin: 0 0 20px;
  max-width: 50ch;
}

/* ── Contact form ──────────────────────────────────────────── */

.contact-form {
  margin-top: 44px;
  display: grid;
  gap: 0;
  max-width: 560px;
  position: relative;
}

.hp {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
}

.form-field { padding: 20px 0; }
.form-field + .form-field { border-top: 1px solid var(--line); }

.form-field label {
  display: block;
  font-size: 15px;
  color: var(--charcoal);
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.3;
}

.required { color: var(--muted); font-weight: 400; }
.optional { font-size: 13px; font-weight: 400; color: var(--muted); }

.form-field input,
.form-field select,
.form-field textarea {
  display: block;
  width: 100%;
  font-family: var(--font);
  font-size: 16px;
  color: var(--charcoal);
  background: #F5F5F5;
  border: 1px solid var(--line);
  padding: 12px 14px;
  border-radius: 4px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover { border-color: #c8cdd4; }

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(76, 143, 216, 0.12);
  background: #fff;
}

.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--muted); opacity: 0.55; }

.form-field textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.55;
}

.form-field select {
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  padding-right: 36px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1.5l5 5 5-5' stroke='%235A6470' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-color: #F5F5F5;
}
.form-field select:focus { background-color: #fff; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}
.form-row .form-field { padding: 0; }
.form-row .form-field + .form-field { border-top: none; }

.form-actions {
  padding-top: 28px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}

.form-status {
  font-size: 16px;
  line-height: 1.4;
  min-height: 1px;
  padding-top: 2px;
}

.form-error { color: #8B3A3A; }

.field-error {
  display: none;
  margin-top: 6px;
  font-size: 13px;
  color: #8B3A3A;
  line-height: 1.4;
}

.form-field.has-error .field-error { display: block; }
.form-field.has-error input,
.form-field.has-error select,
.form-field.has-error textarea { border-color: #C62828; }

.form-success-msg {
  display: none;
  margin-top: 44px;
  max-width: 560px;
}
.form-success-msg.visible { display: block; }
.form-success-msg p {
  font-family: var(--font-sans);
  font-size: 18px;
  color: #2C333B;
  line-height: 1.6;
  margin: 0 0 16px;
}
.form-success-msg p:last-child { margin-bottom: 0; }

.privacy-note {
  margin-top: 32px;
  font-size: 14px;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.6;
}
.privacy-note a { color: var(--muted); }
.privacy-note a:hover { color: var(--charcoal); }

/* ── Footer ────────────────────────────────────────────────── */

.site-footer { background: var(--charcoal); }

.site-footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 32px 40px 48px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 20px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}

.footer-reg {
  flex: 1 1 300px;
  margin: 0;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 16px;
  align-items: center;
  flex-basis: 100%;
  margin-top: 12px;
}

.footer-link {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 13px;
}
.footer-link:hover { color: #fff; }

/* ── Focus styles ──────────────────────────────────────────── */

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
input:focus, select:focus, textarea:focus { outline: none; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}

/* ── Responsive: small screens ─────────────────────────────── */

@media (max-width: 600px) {
  body { font-size: 1.0625rem; }
  h1 { font-size: 2.25rem; line-height: 1.1; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.25rem; }
  .lede { font-size: 18px; }
  .block-lede { font-size: 18px; }
  .block { padding: 36px 0; }
  .site-header { padding: 20px 24px; }
  main { padding: 0 24px; }
  .two-cols { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-row .form-field + .form-field { border-top: 1px solid var(--line); padding-top: 20px; }
  .form-actions { flex-direction: column; align-items: stretch; }
  .form-actions .cta { text-align: center; }
  .contact-form { max-width: 100%; }
  .site-footer-inner { padding: 24px 24px 40px; }
  .hero { padding: 24px 0 36px; }
  .form-prompt { font-size: 20px; }
}
