/* Finse — premium landlord lettings, London properties */

:root {
  --bg: #f7f5f0;
  --bg-alt: #efede6;
  --surface: #ffffff;
  --ink: #1a1a1a;
  --ink-muted: #5c5a54;
  --accent: #2c3e34;
  --accent-soft: #3d5246;
  --gold: #8b7355;
  --line: rgba(26, 26, 26, 0.08);
  --shadow: 0 24px 48px rgba(26, 26, 26, 0.08);
  --radius: 2px;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "DM Sans", system-ui, sans-serif;
  --wrap: 1120px;
  --narrow: 640px;
  --teal: #2a6f6f;
  --teal-dark: #1f5555;
  --teal-muted: #3d8585;
  --faq-bg: #e5f0f0;
  --faq-card-radius: 8px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  font-optical-sizing: auto;
}

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

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.wrap {
  width: min(100% - 2.5rem, var(--wrap));
  margin-inline: auto;
}

.narrow {
  width: min(100% - 2.5rem, var(--narrow));
  margin-inline: auto;
}

.wrap--faq {
  width: min(100% - 2.5rem, 900px);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 245, 240, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4rem;
  gap: 1rem;
}

.header-end {
  display: flex;
  align-items: center;
  gap: 1rem 1.25rem;
  margin-left: auto;
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink);
  text-decoration: none;
}

.logo:hover {
  text-decoration: none;
  color: var(--accent);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.site-nav a {
  color: var(--ink-muted);
  text-decoration: none;
}

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

.nav-cta {
  padding: 0.5rem 1rem;
  background: var(--accent);
  color: #fff !important;
  border-radius: var(--radius);
}

.nav-cta:hover {
  background: var(--accent-soft);
  color: #fff !important;
  text-decoration: none;
}

@media (max-width: 768px) {
  .header-end {
    gap: 0.5rem;
  }

  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    inset: 4rem 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 0.85rem 1rem;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a:last-child {
    border-bottom: none;
    margin-top: 0.5rem;
    text-align: center;
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: min(88vh, 720px);
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(3rem, 8vw, 5rem);
  color: #fff;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(26, 26, 26, 0.55) 0%, rgba(26, 26, 26, 0.25) 55%, rgba(44, 62, 52, 0.35) 100%),
    url("https://images.unsplash.com/photo-1513635269975-59663e0ac1ad?w=1920&q=80") center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 26, 26, 0.75) 0%, transparent 45%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: calc(42rem + 3cm);
}

.hero-eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin: 0 0 1rem;
  opacity: 0.9;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 3.75rem);
  font-weight: 600;
  line-height: 1.1;
  margin: 0 0 1.25rem;
  letter-spacing: -0.02em;
}

.hero-lead {
  margin: 0 0 2rem;
  font-size: 1.05rem;
  line-height: 1.65;
  opacity: 0.95;
  max-width: calc(38rem + 3cm);
}

.hero-lead strong {
  font-weight: 600;
  color: #fff;
}

.hero-match {
  margin: 0 0 1.5rem;
  font-size: 0.95rem;
  line-height: 1.55;
  opacity: 0.95;
  max-width: calc(38rem + 3cm);
}

.hero-match strong {
  color: #fff;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.5rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-primary {
  background: #fff;
  color: var(--ink);
}

.btn-primary:hover {
  background: var(--bg-alt);
  text-decoration: none;
  color: var(--ink);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  text-decoration: none;
  color: #fff;
}

.btn-secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--line);
}

.btn-secondary:hover {
  border-color: var(--accent);
  background: rgba(44, 62, 52, 0.04);
  text-decoration: none;
  color: var(--accent);
}

.btn-block {
  width: 100%;
}

/* Strip */
.strip {
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1.5rem;
  padding: 1rem 0;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-muted);
}

.strip-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.6;
}

@media (max-width: 600px) {
  .strip-dot {
    display: none;
  }

  .strip-inner {
    flex-direction: column;
  }
}

/* Sections */
.section {
  padding: clamp(4rem, 10vw, 6rem) 0;
}

/* Fees block: flush under trust strip; seam touches Services (no page gap) */
#fees.section {
  padding-top: 0;
  padding-bottom: 0;
}

.strip.strip-trust {
  margin-bottom: 0;
}

#services.section.section-alt {
  padding-top: 0;
  padding-bottom: clamp(1.25rem, 2.5vw, 2rem);
}

#services.section.section-alt > .wrap {
  padding-top: clamp(1.5rem, 3vw, 2.75rem);
}

/* How we work: less air above heading and below step cards */
#process.section {
  padding-top: clamp(1.25rem, 2.5vw, 2rem);
  padding-bottom: clamp(1.25rem, 2.5vw, 2rem);
}

#process .section-head--center {
  margin-bottom: clamp(1.25rem, 2.5vw, 1.75rem);
}

#london.section.section-alt {
  padding-top: clamp(1.25rem, 2.5vw, 2rem);
}

.section-alt {
  background: var(--bg-alt);
}

.section-head {
  max-width: 36rem;
  margin-bottom: 2.5rem;
}

.section-head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  max-width: 40rem;
}

.section-head h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.section-sub {
  margin: 0;
  color: var(--ink-muted);
  font-size: 1.05rem;
}

.section-sub strong {
  color: var(--ink);
  font-weight: 600;
}

/* Landlord fees — one panel: intro + tables share the same band */
.fee-main-band {
  width: 100%;
  box-sizing: border-box;
  background: linear-gradient(
    135deg,
    rgba(42, 111, 111, 0.08) 0%,
    rgba(239, 237, 230, 0.75) 42%,
    var(--bg) 100%
  );
}

.fee-main-band > .fee-main-band-wrap {
  padding-top: clamp(1.1rem, 2.25vw, 1.65rem);
  padding-bottom: clamp(0.25rem, 1vw, 0.5rem);
}

.section-head--fee-intro {
  max-width: none;
  width: 100%;
  margin-bottom: 1.5rem;
}

/* AI + fee match explainer */
.fee-ai-box {
  width: 100%;
  max-width: none;
  box-sizing: border-box;
  background: linear-gradient(135deg, rgba(42, 111, 111, 0.1) 0%, rgba(255, 255, 255, 0.85) 100%);
  border: 1px solid rgba(42, 111, 111, 0.25);
  border-radius: var(--faq-card-radius);
  padding: clamp(1.25rem, 3vw, 1.75rem) clamp(1.25rem, 3vw, 1.75rem) clamp(1.15rem, 2.5vw, 1.5rem);
  margin-bottom: clamp(1.25rem, 2.75vw, 2rem);
}

.fee-ai-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  margin: 0 0 0.75rem;
  color: var(--teal-dark);
}

.fee-ai-text {
  margin: 0 0 0.85rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--ink-muted);
}

.fee-ai-text:last-child {
  margin-bottom: 0;
}

.fee-ai-match {
  padding-top: 0.75rem;
  border-top: 1px solid rgba(42, 111, 111, 0.15);
  margin-top: 0.25rem !important;
  margin-bottom: 0 !important;
}

.fee-ai-text strong {
  color: var(--ink);
}

/* Landlord fees — tables + highlight */
.fee-highlight-card {
  position: relative;
  background: var(--surface);
  border: 2px solid var(--teal);
  border-radius: var(--faq-card-radius);
  padding: 2rem 1.75rem 1.75rem;
  margin-bottom: 2.5rem;
  box-shadow: var(--shadow);
  max-width: 28rem;
}

.fee-highlight-card .fee-badge {
  position: absolute;
  top: 0;
  right: 1.25rem;
  transform: translateY(-50%);
  background: var(--teal);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 0.4rem 0.65rem;
  border-radius: var(--radius);
}

.fee-highlight-title {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: var(--teal-dark);
}

.fee-highlight-price {
  margin: 0 0 0.75rem;
  font-family: var(--font-serif);
  font-size: 2.25rem;
  color: var(--ink);
}

.fee-highlight-price strong {
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--teal-dark);
}

.fee-highlight-sub {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--ink-muted);
}

.fee-highlight-note {
  margin: 0 0 1.25rem;
  font-size: 0.9rem;
  color: var(--ink-muted);
  line-height: 1.5;
}

.fee-tables {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.fee-table-heading {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  margin: 0 0 0.75rem;
  color: var(--teal-dark);
}

.fee-table-hint {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--ink-muted);
}

.fee-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  background: var(--surface);
  border-radius: var(--faq-card-radius);
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(26, 26, 26, 0.06);
  border: 1px solid var(--line);
}

.fee-table th,
.fee-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.fee-table th {
  background: var(--bg-alt);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-muted);
}

.fee-table tbody tr:last-child td {
  border-bottom: none;
}

.fee-table th:not(:first-child),
.fee-table td:not(:first-child) {
  text-align: right;
}

.fee-table th:first-child,
.fee-table td:first-child {
  text-align: left;
}

.fee-table-foot {
  margin: 0;
  font-size: 0.8rem;
  color: var(--ink-muted);
  line-height: 1.55;
  max-width: none;
}

.fee-disclaimer {
  margin: 0;
  font-size: 0.75rem;
  color: var(--ink-muted);
  max-width: none;
  line-height: 1.55;
}

/* Footnotes under tables — inside .wrap.fee-main-band-wrap so left edge matches tables */
.fee-notes {
  padding-top: clamp(0.35rem, 1.25vw, 0.75rem);
  padding-bottom: clamp(2rem, 5vw, 3.25rem);
}

.fee-notes .fee-disclaimer {
  margin-top: 1rem;
}

@media (max-width: 520px) {
  .fee-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}

/* FAQ — category tabs + accordion */
.section-faq-fox {
  background: var(--faq-bg);
  padding-top: clamp(3.5rem, 8vw, 5rem);
  padding-bottom: clamp(3.5rem, 8vw, 5rem);
}

.faq-fox-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  font-weight: 600;
  color: var(--teal-dark);
  margin: 0 0 1.75rem;
  text-align: center;
  letter-spacing: -0.02em;
}

.faq-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 0.35rem;
  margin-bottom: 1.75rem;
}

.faq-tab {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.65rem 1rem;
  border: 2px solid var(--teal);
  background: transparent;
  color: var(--teal);
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.faq-tab:hover {
  background: rgba(42, 111, 111, 0.08);
}

.faq-tab.is-active {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
}

.faq-tab:focus-visible {
  outline: 2px solid var(--teal-dark);
  outline-offset: 2px;
}

.faq-panels {
  max-width: 100%;
}

.faq-panel[hidden] {
  display: none !important;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.faq-acc-item {
  background: var(--surface);
  border-radius: var(--faq-card-radius);
  border: 1px solid rgba(42, 111, 111, 0.2);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(26, 26, 26, 0.04);
}

.faq-acc-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.15rem 1.1rem 1.25rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  text-align: left;
  color: var(--ink);
  background: rgba(229, 240, 240, 0.45);
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
}

.faq-acc-trigger:hover {
  background: rgba(229, 240, 240, 0.85);
}

.faq-acc-trigger:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: -2px;
}

.faq-acc-icon {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  position: relative;
  color: var(--teal);
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-acc-icon::before {
  content: "−";
}

.faq-acc-trigger[aria-expanded="false"] .faq-acc-icon::before {
  content: "+";
}

.faq-acc-panel {
  border-top: 1px solid rgba(42, 111, 111, 0.12);
}

.faq-acc-panel[hidden] {
  display: none;
}

.faq-acc-body {
  padding: 1rem 1.25rem 1.35rem;
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--ink-muted);
}

.faq-acc-body p {
  margin: 0 0 0.75rem;
}

.faq-acc-body p:last-child {
  margin-bottom: 0;
}

.faq-checklist {
  margin: 0.75rem 0;
  padding: 0;
  list-style: none;
}

.faq-checklist li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.5rem;
}

.faq-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
  font-size: 0.85rem;
}

.faq-inline-link {
  display: inline-block;
  margin-top: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--teal);
  text-decoration: none;
  border: 2px solid var(--teal);
  padding: 0.45rem 1rem;
  border-radius: 999px;
}

.faq-inline-link:hover {
  background: var(--teal);
  color: #fff;
  text-decoration: none;
}

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 40;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 2px solid var(--teal);
  background: var(--surface);
  color: var(--teal);
  font-size: 1.25rem;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: background 0.2s ease, color 0.2s ease;
}

.back-to-top:hover {
  background: var(--teal);
  color: #fff;
}

.back-to-top:focus-visible {
  outline: 2px solid var(--teal-dark);
  outline-offset: 2px;
}

.back-to-top[hidden] {
  display: none;
}

/* Split */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.split--reverse .split-text {
  order: 2;
}

.split--reverse .split-panel {
  order: 1;
}

@media (max-width: 768px) {
  .split,
  .split--reverse .split-text,
  .split--reverse .split-panel {
    grid-template-columns: 1fr;
    order: unset;
  }
}

.split-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  font-weight: 600;
  margin: 0 0 1rem;
  line-height: 1.15;
}

.split-text p {
  margin: 0 0 1rem;
  color: var(--ink-muted);
}

.split-text p:last-child {
  margin-bottom: 0;
}

.checklist {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.checklist li {
  padding: 0.5rem 0 0.5rem 1.75rem;
  position: relative;
  color: var(--ink);
  font-weight: 500;
  font-size: 0.95rem;
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.85rem;
}

.pullquote {
  margin: 0;
  padding: 2rem 2rem 2rem 2.25rem;
  border-left: 3px solid var(--accent);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.pullquote p {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-style: italic;
  line-height: 1.45;
  margin: 0 0 1rem;
  color: var(--ink);
}

.pullquote footer {
  font-size: 0.85rem;
  font-style: normal;
  color: var(--ink-muted);
}

.split-panel--areas {
  background: var(--surface);
  padding: 2rem;
  border: 1px solid var(--line);
}

.areas-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ink-muted);
  margin: 0 0 1rem;
}

.areas-groups {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.areas-group-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 0.35rem;
  color: var(--ink);
}

.areas-places {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--ink-muted);
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: none;
}

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

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

.step {
  padding: 1.75rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--line);
}

.step-num {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.step h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
}

.step p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--ink-muted);
}

/* Contact */
.section-contact {
  background: var(--surface);
  border-top: 1px solid var(--line);
}

.contact-form {
  margin-top: 0.5rem;
}

.contact-form-status {
  margin: 0 0 1.15rem;
  padding: 0.85rem 1rem;
  font-size: 0.9rem;
  line-height: 1.5;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--ink);
}

.contact-form-status.is-success {
  border-color: rgba(42, 111, 111, 0.45);
  background: rgba(229, 240, 240, 0.65);
  color: var(--teal-dark);
}

.contact-form-status.is-error {
  border-color: rgba(139, 60, 60, 0.35);
  background: rgba(139, 60, 60, 0.06);
  color: #5c2a2a;
}

.contact-form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  margin: 0;
}

.form-row.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 520px) {
  .form-row.two {
    grid-template-columns: 1fr;
  }
}

.field {
  display: block;
  margin-bottom: 1.15rem;
}

.field-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
  margin-bottom: 0.35rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--ink);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}

.field textarea {
  resize: vertical;
  min-height: 6rem;
}

/* Footer */
.site-footer {
  padding: 3rem 0;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.75);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  align-items: flex-start;
}

.footer-brand p {
  margin: 0.5rem 0 0;
  font-size: 0.9rem;
}

.logo--footer {
  color: #fff;
}

.logo--footer:hover {
  color: #fff;
  opacity: 0.85;
}

.footer-contact {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
  color: #fff;
}

.footer-contact-sep {
  opacity: 0.5;
}

.footer-meta p {
  margin: 0;
  font-size: 0.85rem;
}

.footer-meta .footer-legal {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  line-height: 1.45;
}
