﻿:root {
  --bg: #fffaf7;
  --surface: #ffffff;
  --surface-soft: #fff1ea;
  --ink: #211715;
  --muted: #6d5d58;
  --brand: #8c3b2f;
  --brand-dark: #5f221a;
  --accent: #d7a66b;
  --accent-soft: #f8dfc2;
  --line: #eadad1;
  --success: #1f6f4a;
  --danger: #9b1c1c;
  --shadow: 0 18px 42px rgba(78, 32, 20, 0.14);
  --shadow-soft: 0 8px 18px rgba(78, 32, 20, 0.08);
  --radius-lg: 18px;
  --radius-md: 14px;
  --radius-sm: 12px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(215, 166, 107, 0.24), transparent 32rem),
    radial-gradient(circle at 95% 10%, rgba(140, 59, 47, 0.16), transparent 26rem),
    var(--bg);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(140, 59, 47, 0.38);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -5rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 250, 247, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(234, 218, 209, 0.8);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  box-shadow: 0 10px 25px rgba(140, 59, 47, 0.25);
  font-size: 1rem;
}

.brand-text {
  display: grid;
  line-height: 1.08;
}

.brand-text small {
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.68rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a {
  padding: 0.75rem 0.9rem;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.94rem;
  transition: background 0.18s ease, color 0.18s ease;
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--surface-soft);
  color: var(--brand-dark);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

main {
  overflow: hidden;
}

.section {
  padding: 5.5rem 0;
}

.section-tight {
  padding: 3.6rem 0;
}

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

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: 3rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1rem;
  padding: 0.45rem 0.75rem;
  border: 1px solid rgba(140, 59, 47, 0.16);
  border-radius: 999px;
  color: var(--brand-dark);
  background: rgba(255, 255, 255, 0.72);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(215, 166, 107, 0.18);
}

h1,
h2,
h3,
h4 {
  line-height: 1.08;
  margin: 0;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

h1 {
  max-width: 13ch;
  font-size: clamp(2.85rem, 7.2vw, 5.8rem);
}

h2 {
  font-size: clamp(2rem, 4.5vw, 4rem);
}

h3 {
  font-size: clamp(1.3rem, 2.4vw, 1.75rem);
}

p {
  margin: 0;
  color: var(--muted);
}

.lead {
  max-width: 66ch;
  margin-top: 1.25rem;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.78rem 1.1rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  box-shadow: 0 16px 30px rgba(140, 59, 47, 0.22);
}

.btn-secondary {
  color: var(--brand-dark);
  background: var(--surface);
  border-color: var(--line);
}

.btn-soft {
  color: var(--brand-dark);
  background: var(--surface-soft);
  border-color: rgba(140, 59, 47, 0.12);
}

.hero-card {
  position: relative;
  min-height: 530px;
  padding: 0.9rem;
  border-radius: 22px;
  background: var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 16px;
  pointer-events: none;
}

.hero-card-inner {
  position: relative;
  height: 100%;
  min-height: 500px;
  display: grid;
  align-content: end;
  padding: 2rem;
  border-radius: 16px;
  overflow: hidden;
  background: var(--brand-dark);
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(33, 23, 21, 0.02) 18%, rgba(33, 23, 21, 0.74) 100%);
}

.hero-note {
  position: relative;
  z-index: 1;
  max-width: 390px;
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 16px;
  background: rgba(255, 250, 247, 0.92);
  box-shadow: var(--shadow-soft);
}

.hero-note strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1.1rem;
}

.info-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}

.info-pill {
  padding: 1rem;
  border: 1px solid rgba(234, 218, 209, 0.9);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
}

.info-pill span {
  display: block;
  color: var(--brand-dark);
  font-weight: 900;
}

.info-pill small {
  color: var(--muted);
  font-weight: 650;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}

.section-heading p {
  max-width: 58ch;
}

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

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

.card {
  padding: 1.45rem;
  border: 1px solid rgba(234, 218, 209, 0.9);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.76);
}

.card h3,
.card h4 {
  margin-bottom: 0.75rem;
}

.icon {
  min-width: 48px;
  width: fit-content;
  height: 48px;
  display: grid;
  place-items: center;
  padding-inline: 0.72rem;
  margin-bottom: 1rem;
  border-radius: 14px;
  background: var(--surface-soft);
  color: var(--brand-dark);
  font-weight: 900;
  font-size: 0.86rem;
}

.feature-list {
  display: grid;
  gap: 0.75rem;
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 0.65rem;
  color: var(--muted);
}

.feature-list li::before {
  content: "";
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--surface-soft);
  color: var(--success);
  font-weight: 900;
  line-height: 1;
  box-shadow: inset 0 0 0 8px var(--surface-soft), inset 0 0 0 11px var(--success);
}

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 2rem;
}

.panel {
  padding: 2rem;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--brand-dark), var(--brand));
  color: #fff;
  box-shadow: var(--shadow);
}

.panel p,
.panel li {
  color: rgba(255, 255, 255, 0.82);
}

.panel .feature-list li::before {
  color: var(--brand-dark);
  background: #fff;
}

.contact-card {
  display: grid;
  gap: 1rem;
}

.contact-row {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 0.85rem;
  padding: 1rem;
  border: 1px solid rgba(234, 218, 209, 0.9);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
}

.contact-row strong {
  display: block;
  line-height: 1.2;
}

.contact-row a,
.inline-link {
  color: var(--brand-dark);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.page-hero {
  padding: 5.4rem 0 3.4rem;
}

.page-hero h1 {
  max-width: 14ch;
}

.page-hero .lead {
  max-width: 72ch;
}

.breadcrumbs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.breadcrumbs a {
  color: var(--brand-dark);
}

.table-card {
  overflow: hidden;
  border: 1px solid rgba(234, 218, 209, 0.9);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
}

.fact-table {
  width: 100%;
  border-collapse: collapse;
}

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

.fact-table tr:last-child th,
.fact-table tr:last-child td {
  border-bottom: 0;
}

.fact-table th {
  width: 32%;
  color: var(--brand-dark);
  font-size: 0.94rem;
}

.legal-content {
  max-width: 900px;
}

.legal-content section {
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line);
}

.legal-content section:last-child {
  border-bottom: 0;
}

.legal-content h2 {
  margin-bottom: 0.8rem;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.legal-content h3 {
  margin: 1rem 0 0.4rem;
  font-size: 1.16rem;
}

.legal-content ul,
.legal-content ol {
  margin: 0.75rem 0 0;
  padding-left: 1.2rem;
  color: var(--muted);
}

.legal-content li + li {
  margin-top: 0.4rem;
}

.notice {
  margin: 2rem 0;
  padding: 1rem 1.15rem;
  border: 1px solid rgba(140, 59, 47, 0.14);
  border-radius: 20px;
  background: rgba(255, 241, 234, 0.72);
}

.form {
  display: grid;
  gap: 1rem;
}

.form-field {
  display: grid;
  gap: 0.35rem;
}

label {
  font-weight: 850;
  color: var(--ink);
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0.9rem 1rem;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
  font: inherit;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.form-help,
.status-message {
  color: var(--muted);
  font-size: 0.92rem;
}

.status-message.success {
  color: var(--success);
}

.status-message.error {
  color: var(--danger);
}

.required {
  color: var(--brand);
}

.map-card {
  min-height: 300px;
  display: grid;
  place-items: center;
  padding: 2rem;
  border: 1px solid rgba(234, 218, 209, 0.9);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 241, 234, 0.8)),
    radial-gradient(circle at 20% 20%, rgba(215, 166, 107, 0.18), transparent 18rem);
  text-align: center;
}

.site-footer {
  border-top: 1px solid rgba(234, 218, 209, 0.9);
  background: rgba(255, 255, 255, 0.62);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.75fr 0.9fr;
  gap: 2rem;
  padding: 3rem 0;
}

.footer-title {
  margin-bottom: 0.75rem;
  color: var(--ink);
  font-weight: 900;
}

.footer-links {
  display: grid;
  gap: 0.55rem;
}

.footer-links a {
  color: var(--muted);
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--brand-dark);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 980px) {
  .hero-grid,
  .split,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .hero-card {
    min-height: 460px;
  }

  .hero-card-inner {
    min-height: 430px;
  }

  .grid-3,
  .info-strip,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .section-heading {
    display: grid;
  }
}

@media (max-width: 760px) {
  .navbar {
    min-height: 72px;
  }

  .brand-text span {
    max-width: 168px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    inset: 72px 1rem auto 1rem;
    display: grid;
    gap: 0.25rem;
    padding: 0.75rem;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-soft);
    transform: translateY(-0.75rem);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-links a {
    border-radius: 16px;
  }

  .hero,
  .page-hero {
    padding-top: 4rem;
  }

  .section {
    padding: 4rem 0;
  }

  .grid-3,
  .info-strip,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-card,
  .hero-card-inner {
    min-height: 390px;
  }

  .hero-card-inner {
    padding: 1.25rem;
  }

  .fact-table th,
  .fact-table td {
    display: block;
    width: 100%;
  }

  .fact-table th {
    padding-bottom: 0.25rem;
  }

  .fact-table td {
    padding-top: 0.25rem;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 1.15rem, var(--container));
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 14px;
  }

  .brand-text small {
    display: none;
  }

  .actions,
  .footer-bottom {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .hero-card {
    padding: 0.8rem;
    border-radius: 18px;
  }

  .hero-card::before {
    inset: 0.8rem;
    border-radius: 23px;
  }

  .hero-card-inner {
    border-radius: 23px;
  }

  .card,
  .panel {
    padding: 1.2rem;
    border-radius: 18px;
  }
}
