:root {
  --brand-a: #153243;
  --brand-b: #f4efe6;
  --brand-c: #d97925;
  --text-main: #1e252a;
  --text-soft: #4f5a61;
  --line: #d5d9dd;
  --paper: #fffdf9;
  --radius: 10px;
  --radius-soft: 18px;
  --container: 1120px;
  --shadow-soft: 0 10px 28px rgba(17, 29, 37, 0.08);
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: 'Source Sans 3', sans-serif;
  color: var(--text-main);
  background: linear-gradient(180deg, #fffdf9 0%, #f7f2e9 60%, #fffdf9 100%);
  line-height: 1.65;
}

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

a:hover {
  color: #0f2632;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
  background: #ffffff;
  color: #000000;
  padding: 8px 12px;
  z-index: 1000;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(4px);
  background: rgba(255, 253, 249, 0.92);
  border-bottom: 1px solid var(--line);
}

.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.brand-mark {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.nav-toggle {
  border: 1px solid var(--brand-a);
  background: transparent;
  color: var(--brand-a);
  border-radius: 8px;
  padding: 0.45rem 0.8rem;
  font-weight: 600;
  display: none;
}

.menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 1.1rem;
}

.menu a {
  text-decoration: none;
  font-weight: 600;
}

.hero {
  padding: 3.6rem 0 1.8rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr;
  gap: 1.4rem;
  align-items: start;
}

.hero-main,
.hero-side {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-soft);
  box-shadow: var(--shadow-soft);
  padding: 1.3rem 1.4rem;
}

.eyebrow {
  margin: 0 0 0.45rem;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6f6b61;
  font-weight: 700;
}

h1,
h2,
h3 {
  font-family: 'Playfair Display', serif;
  line-height: 1.25;
  margin-top: 0;
  color: #1f2d35;
}

h1 {
  font-size: clamp(1.8rem, 2.2vw, 2.5rem);
  margin-bottom: 0.9rem;
}

h2 {
  font-size: clamp(1.42rem, 1.7vw, 2rem);
  margin-bottom: 0.8rem;
}

.section {
  padding: 1.8rem 0;
}

.section-band {
  background: #f3ede4;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.duo {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.25rem;
}

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

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

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

.list-tight {
  margin: 0;
  padding-left: 1.1rem;
}

.list-tight li {
  margin-bottom: 0.45rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.btn {
  display: inline-block;
  border-radius: 999px;
  padding: 0.62rem 1.05rem;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid var(--brand-a);
}

.btn-solid {
  background: var(--brand-a);
  color: #ffffff;
}

.btn-solid:hover {
  background: #0e2938;
}

.btn-outline {
  background: transparent;
  color: var(--brand-a);
}

.btn-outline:hover {
  background: #eef4f7;
}

.mini-note {
  border-left: 3px solid var(--brand-c);
  padding-left: 0.85rem;
  color: var(--text-soft);
}

.testi-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

.testi {
  margin: 0;
  border: 1px solid var(--line);
  background: #ffffff;
  border-radius: var(--radius);
  padding: 1rem;
}

.testi cite {
  display: block;
  margin-top: 0.55rem;
  font-style: normal;
  font-weight: 700;
}

.faq-list article {
  border-bottom: 1px solid var(--line);
  padding: 0.8rem 0;
}

.faq-list h3 {
  margin-bottom: 0.35rem;
  font-size: 1.06rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-box {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  padding: 1rem;
}

label {
  display: block;
  margin: 0.6rem 0 0.2rem;
  font-weight: 600;
}

input,
textarea {
  width: 100%;
  border: 1px solid #bfc7ce;
  border-radius: 8px;
  padding: 0.58rem 0.64rem;
  font: inherit;
  background: #ffffff;
}

input:focus,
textarea:focus,
button:focus,
a:focus {
  outline: 2px solid #11364d;
  outline-offset: 2px;
}

.hp {
  position: absolute;
  left: -9999px;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin: 0.8rem 0;
}

.consent input {
  width: auto;
  margin-top: 0.24rem;
}

.notice {
  border: 1px solid #e3d8c8;
  background: #fbf7ef;
  border-radius: var(--radius);
  padding: 0.95rem;
}

.footer {
  margin-top: 1.5rem;
  background: #122a36;
  color: #eff4f6;
  padding: 1.4rem 0;
}

.footer a {
  color: #f4cfa8;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
}

.footer ul {
  margin: 0;
  padding-left: 1rem;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  max-width: 760px;
  margin-inline: auto;
  z-index: 50;
  background: #102b37;
  color: #edf4f8;
  border-radius: 12px;
  border: 1px solid #2f4652;
  padding: 0.9rem;
  box-shadow: 0 14px 26px rgba(8, 18, 24, 0.3);
}

.cookie-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.cookie-banner .btn-outline {
  border-color: #9eb8c7;
  color: #edf4f8;
}

.cookie-banner .btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
}

.hidden {
  display: none;
}

.legal-main {
  padding: 2rem 0;
}

.legal-card {
  border: 1px solid var(--line);
  background: #ffffff;
  border-radius: 14px;
  padding: 1.2rem;
}

@media (max-width: 980px) {
  .hero-grid,
  .duo,
  .grid-three,
  .grid-two,
  .contact-layout,
  .footer-grid,
  .testi-row {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    display: inline-block;
  }

  .menu {
    display: none;
    width: 100%;
  }

  .menu.is-open {
    display: block;
  }

  .header-wrap {
    flex-wrap: wrap;
  }

  .menu ul {
    flex-direction: column;
    border-top: 1px solid var(--line);
    padding-top: 0.6rem;
  }
}
