* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f8f5ef;
  --surface: #ffffff;

  --text: #4a3a2a;
  --muted: #7f6f60;

  --primary: #b89062;
  --primary-dark: #8a6846;

  --secondary: #efe6d8;
  --accent: #d9c1a4;

  --shadow: 0 18px 45px rgba(90, 65, 40, 0.12);
  --radius: 24px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top left,
      rgba(239, 230, 216, 0.95),
      transparent 35%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(244, 248, 251, .86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(37, 99, 235, 0.12);
}

.navbar {
  max-width: 1160px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--primary-dark);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  color: var(--muted);
  font-weight: 600;
}

.nav-links a:hover {
  color: var(--primary);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px 0;
  background: var(--primary-dark);
  border-radius: 999px;
}

.hero {
  max-width: 1160px;
  margin: 0 auto;
  padding: 86px 24px 58px;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  line-height: 1.04;
  letter-spacing: -0.06em;
  max-width: 850px;
}

.hero-text {
  margin-top: 24px;
  max-width: 670px;
  font-size: 1.18rem;
  color: var(--muted);
}

.hero-actions,
.contact-links {
  margin-top: 34px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 13px 24px;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
  transition: 0.2s ease;
}

.btn.primary {
  background: var(--primary);
  color: white;
}

.btn.primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.btn.secondary {
  border-color: rgba(235, 153, 37, 0.22);
  color: var(--primary-dark);
  background: #faf7f2;
}

.btn.secondary:hover {
  background: var(--secondary);
}

.hero-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  text-align: center;
  transform: rotate(1deg);
}

.portrait-placeholder {
  min-height: 320px;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(240, 210, 167, 0.9), rgba(219, 234, 254, 0.95)),
    radial-gradient(circle at 30% 20%, #ffffff, transparent 35%);
  display: grid;
  place-items: center;
  color: var(--primary-dark);
  font-weight: 800;
  margin-bottom: 22px;
}

.hero-card h2 {
  font-size: 1.5rem;
}

.hero-card p {
  color: var(--muted);
}

.section {
  max-width: 1160px;
  margin: 0 auto;
  padding: 72px 24px;
}

.notice {
  padding-top: 0;
  padding-bottom: 0;
}

.notice p {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(235, 123, 37, 0.16);
  color: var(--muted);
  border-radius: 18px;
  padding: 18px 22px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  color: var(--muted);
  font-size: 1.05rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(235, 159, 37, 0.08);
}

.icon {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: var(--secondary);
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.card h3,
.step h3 {
  margin-bottom: 10px;
  font-size: 1.22rem;
}

.card p,
.step p {
  color: var(--muted);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.step {
  padding: 24px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(37, 99, 235, 0.12);
}

.step span {
  display: inline-block;
  color: var(--primary);
  font-weight: 900;
  margin-bottom: 16px;
}

.quote-section {
  padding-top: 38px;
  padding-bottom: 38px;
}

blockquote {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: white;
  border-radius: var(--radius);
  padding: clamp(30px, 5vw, 56px);
  font-size: clamp(1.45rem, 3vw, 2.5rem);
  line-height: 1.25;
  box-shadow: var(--shadow);
}

.location-box {
  background: var(--surface);
  border-radius: var(--radius);
  padding: clamp(28px, 5vw, 54px);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: stretch;
  box-shadow: var(--shadow);
}

.location-content p:not(.eyebrow) {
  color: var(--muted);
  margin-top: 18px;
}

.map-wrapper {
  min-height: 360px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(37, 99, 235, 0.12);
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
}

.footer {
  text-align: center;
  color: var(--muted);
  padding: 30px 24px 42px;
}

@media (max-width: 880px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    left: 24px;
    right: 24px;
    top: 68px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    background: var(--surface);
    padding: 20px;
    border-radius: 18px;
    box-shadow: var(--shadow);
  }

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

  .hero,
  .location-box {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 58px;
  }

  .hero-card {
    transform: none;
  }

  .about-grid,
  .cards,
  .steps {
    grid-template-columns: 1fr;
  }
}

/* Portrait image */
.portrait {
  height: 320px;
  border-radius: 22px;
  overflow: hidden;
  margin-bottom: 22px;
  background: var(--secondary);
}

.portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.hero-card h3 {
  color: var(--primary-dark);
  font-size: 1rem;
  margin-top: 4px;
  margin-bottom: 6px;
  font-weight: 800;
}

/* Legal pages */
.legal-page {
  max-width: 920px;
  margin: 0 auto;
  padding: 72px 24px;
}

.legal-page h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
}

.legal-page h2 {
  font-size: 1.5rem;
  margin-top: 38px;
  margin-bottom: 12px;
}

.legal-page h3 {
  margin-top: 24px;
  margin-bottom: 8px;
}

.legal-page p,
.legal-page li {
  color: var(--muted);
  margin-bottom: 10px;
}

.legal-page ul {
  padding-left: 22px;
}

.legal-box {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
  margin-top: 24px;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
  overflow: hidden;
  border-radius: 16px;
}

.legal-table th,
.legal-table td {
  text-align: left;
  vertical-align: top;
  padding: 14px;
  border-bottom: 1px solid rgba(37, 99, 235, 0.12);
}

.legal-table th {
  color: var(--primary-dark);
  background: rgba(219, 234, 254, 0.65);
}

.footer-links {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-links a,
.footer-links button {
  color: var(--primary-dark);
  font-weight: 700;
  background: none;
  border: 0;
  cursor: pointer;
  font: inherit;
}

.footer-links a:hover,
.footer-links button:hover {
  color: var(--primary);
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 999;
  display: none;
}

.cookie-banner.visible {
  display: block;
}

.cookie-banner__content {
  max-width: 980px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(235, 149, 37, 0.14);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 24px;
}

.cookie-banner h2 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.cookie-banner p {
  color: var(--muted);
  margin-bottom: 8px;
}

.cookie-banner a {
  color: var(--primary-dark);
  font-weight: 800;
}

.cookie-banner__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.cookie-settings {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(235, 146, 37, 0.12);
}

.cookie-settings label {
  display: block;
  margin-bottom: 12px;
  color: var(--muted);
  font-weight: 700;
}

.cookie-settings input {
  margin-right: 8px;
}

@media (max-width: 560px) {
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .cookie-banner__actions .btn,
  .cookie-settings .btn {
    width: 100%;
  }

  .legal-table,
  .legal-table tbody,
  .legal-table tr,
  .legal-table th,
  .legal-table td {
    display: block;
  }
}