@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;600;700&family=Manrope:wght@400;500;600;700&display=swap');

:root {
  --bg: #f4f2ec;
  --surface: #fdfcf9;
  --ink: #122531;
  --ink-soft: #40535f;
  --line: #d8d4c9;
  --brand: #1f4f4b;
  --brand-soft: #2f706a;
  --sand: #bf9863;
  --shadow: 0 18px 40px rgba(13, 27, 36, 0.12);
  --radius: 18px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% -15%, rgba(191, 152, 99, 0.13), transparent 33%),
    radial-gradient(circle at 90% 5%, rgba(31, 79, 75, 0.11), transparent 35%),
    var(--bg);
  line-height: 1.6;
}

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

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

.container {
  width: min(94%, var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(244, 242, 236, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(18, 37, 49, 0.08);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.brand img {
  width: 44px;
  height: 44px;
}

.brand strong,
.brand em {
  display: block;
  letter-spacing: 0.02em;
}

.brand strong {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.1;
}

.brand em {
  font-style: normal;
  font-size: 0.74rem;
  color: var(--ink-soft);
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.15rem;
}

.site-nav a {
  padding: 0.35rem 0;
  color: var(--ink-soft);
  font-weight: 500;
  border-bottom: 2px solid transparent;
  transition: color 180ms ease, border-color 180ms ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--ink);
  border-color: var(--sand);
}

.menu-toggle {
  display: none;
  border: 1px solid rgba(18, 37, 49, 0.16);
  background: transparent;
  border-radius: 10px;
  padding: 0.4rem 0.55rem;
  color: var(--ink);
}

main {
  padding-bottom: 3.5rem;
}

.hero {
  padding: 5.2rem 0 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.2rem;
  align-items: stretch;
}

.kicker {
  display: inline-block;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.74rem;
  color: var(--brand-soft);
  margin-bottom: 1rem;
}

h1,
h2,
h3 {
  font-family: 'Fraunces', Georgia, serif;
  line-height: 1.15;
  margin: 0 0 1rem;
  color: #0d1f29;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.35rem);
  letter-spacing: -0.01em;
}

h2 {
  font-size: clamp(1.55rem, 2.9vw, 2.25rem);
}

h3 {
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
}

p {
  margin: 0 0 1rem;
  color: var(--ink-soft);
}

.hero-copy p {
  max-width: 60ch;
}

.hero-card {
  background: linear-gradient(150deg, #163843, #0f2533);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  color: #f0f4f5;
  padding: clamp(1.2rem, 2.3vw, 1.8rem);
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: '';
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(191, 152, 99, 0.16);
  right: -95px;
  top: -70px;
}

.hero-card ul {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.hero-card li {
  padding: 0.85rem;
  border-radius: 12px;
  border: 1px solid rgba(240, 244, 245, 0.16);
  background: rgba(240, 244, 245, 0.08);
  font-size: 0.95rem;
}

.hero-card strong {
  color: #f9e1ba;
  display: block;
  font-family: 'Fraunces', Georgia, serif;
  margin-bottom: 0.2rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.button {
  border-radius: 999px;
  font-weight: 600;
  padding: 0.7rem 1.15rem;
  border: 1px solid transparent;
  transition: all 180ms ease;
}

.button-primary {
  background: var(--brand);
  color: #f4f4ef;
}

.button-primary:hover {
  background: #143c39;
}

.button-secondary {
  border-color: rgba(18, 37, 49, 0.2);
  color: var(--ink);
}

.button-secondary:hover {
  background: rgba(18, 37, 49, 0.05);
}

.section {
  padding: 3.9rem 0;
}

.section + .section {
  border-top: 1px solid rgba(18, 37, 49, 0.08);
}

.two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.6rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
}

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

.card h3 {
  margin-bottom: 0.6rem;
}

.media-frame {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media {
  min-height: 430px;
}

.hero-media img {
  min-height: 430px;
}

.hero-photo-home {
  object-position: 32% center;
}

.inline-note {
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.list-clean {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--ink-soft);
}

.list-clean li {
  margin-bottom: 0.5rem;
}

.band {
  background: linear-gradient(120deg, rgba(31, 79, 75, 0.09), rgba(191, 152, 99, 0.12));
  border: 1px solid rgba(31, 79, 75, 0.14);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.stat-grid {
  margin-top: 1.2rem;
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stat {
  border-left: 3px solid var(--brand);
  padding-left: 0.7rem;
}

.stat strong {
  display: block;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.35rem;
  line-height: 1.2;
}

.site-footer {
  background: #122531;
  color: #ced8dc;
  padding: 2.4rem 0;
  margin-top: 2.5rem;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.footer-brand strong {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.1rem;
  color: #f7fafb;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links a {
  color: #d8e3e8;
}

.footer-links a:hover {
  color: #f9e1ba;
}

.small {
  margin-top: 1rem;
  color: #9ab0bb;
  font-size: 0.9rem;
}

.reveal {
  transition: opacity 550ms ease, transform 550ms ease;
}

.js .reveal {
  opacity: 0;
  transform: translateY(12px);
}

.js .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.7rem;
}

.contact-list span {
  color: var(--ink-soft);
}

.table-wrap {
  width: 100%;
  overflow-x: auto;
}

.criteria {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}

.criteria th,
.criteria td {
  border-bottom: 1px solid var(--line);
  padding: 0.8rem;
  text-align: left;
  vertical-align: top;
}

.criteria th {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  color: var(--ink);
  width: 180px;
}

@media (max-width: 980px) {
  .hero-grid,
  .two-col,
  .grid-3,
  .stat-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 3.8rem;
  }
}

@media (max-width: 820px) {
  .menu-toggle {
    display: inline-flex;
    align-items: center;
  }

  .site-nav {
    position: absolute;
    left: 3%;
    right: 3%;
    top: 78px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 1rem;
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav.open {
    display: flex;
  }
}
