:root {
  --accent: #8b4252;
  --accent-dark: #6f3140;
  --bg-soft: #f9f4f6;
  --bg-contrast: #2e1d23;
  --bg-card: #ffffff;
  --text-main: #1d1d1d;
  --text-light: #ffffff;
  --muted: #5f5f5f;
  --border: #e7d8dd;
  --shadow: 0 12px 30px rgba(46, 29, 35, 0.14);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--text-main);
  background: #fff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  color: var(--accent-dark);
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 120;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.header-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text-main);
}

.brand img {
  width: 42px;
  height: 42px;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--accent);
  width: 42px;
  height: 42px;
  border-radius: 10px;
  cursor: pointer;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.main-nav a {
  font-weight: 600;
  font-size: 0.97rem;
}

.hero {
  background:
    linear-gradient(110deg, rgba(26, 16, 20, 0.78), rgba(139, 66, 82, 0.58)),
    url("../image/hero.jpg")
      center / cover no-repeat;
  color: var(--text-light);
  padding: 90px 0 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 26px;
  align-items: stretch;
}

.hero h1 {
  margin: 0 0 18px;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.18;
}

.hero p {
  margin: 0 0 14px;
  max-width: 66ch;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.hero-points article {
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.09);
  padding: 14px;
  transition: transform 0.25s ease, background 0.25s ease;
}

.hero-points article:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.2);
}

.hero-form {
  align-self: start;
  background: rgba(255, 255, 255, 0.94);
  color: var(--text-main);
  border-radius: 16px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.hero-form h2 {
  margin: 0 0 10px;
  font-size: 1.28rem;
}

.hero-form label {
  display: block;
  font-weight: 600;
  margin: 12px 0 6px;
}

input,
textarea,
button {
  font: inherit;
}

input,
textarea {
  width: 100%;
  border: 1px solid #cfbec5;
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--text-main);
  background: #fff;
}

textarea {
  resize: vertical;
  min-height: 130px;
}

.button,
button[type="submit"] {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: none;
  background: var(--accent);
  color: #fff;
  border-radius: 10px;
  padding: 12px 18px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.button:hover,
button[type="submit"]:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.section {
  padding: 64px 0;
}

.section-soft {
  background: var(--bg-soft);
}

.section-contrast {
  background: var(--bg-contrast);
  color: var(--text-light);
}

.section h2 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: clamp(1.55rem, 3vw, 2rem);
  line-height: 1.22;
}

.section-intro {
  color: var(--muted);
  max-width: 78ch;
  margin-bottom: 22px;
}

.section-contrast .section-intro {
  color: #f4dbe1;
}

.grid-2,
.grid-3 {
  display: grid;
  gap: 18px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 4px 12px rgba(40, 26, 32, 0.06);
}

.section-contrast .card {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: none;
}

.card h3 {
  margin: 0 0 8px;
  font-size: 1.16rem;
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  color: var(--accent-dark);
  margin-bottom: 10px;
}

.section-contrast .icon {
  background: #ffe8ee;
  color: var(--accent-dark);
}

.checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.checklist li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.checklist li i {
  color: var(--accent);
  margin-top: 5px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
  background: #fff;
}

.faq-item h3 {
  margin: 0 0 8px;
  font-size: 1.04rem;
}

.faq-item p {
  margin: 0;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-details p {
  margin: 8px 0;
}

.map-frame {
  border: 0;
  width: 100%;
  min-height: 300px;
  border-radius: 14px;
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 12px;
}

.checkbox input {
  width: auto;
  margin-top: 4px;
}

.site-footer {
  background: #1e1a1b;
  color: #e9e2e4;
  padding: 34px 0;
}

.footer-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1.3fr 1fr;
  align-items: start;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}

.footer-links a {
  color: #f6c5d3;
}

.disclaimer {
  margin-top: 14px;
  padding: 10px 12px;
  border-left: 3px solid #f6c5d3;
  background: rgba(255, 255, 255, 0.06);
}

.cookie-banner {
  position: fixed;
  bottom: 14px;
  left: 14px;
  right: 14px;
  z-index: 200;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 16px;
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-legal {
  margin: 6px 0 10px;
  font-size: 0.82rem;
  line-height: 1.45;
}

.cookie-legal a {
  font-weight: 600;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.button-outline {
  background: #fff;
  color: var(--accent-dark);
  border: 1px solid var(--accent-dark);
}

.cookie-panel {
  margin-top: 12px;
  border-top: 1px solid var(--border);
  padding-top: 12px;
}

.cookie-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
}

.cookie-switch {
  width: 46px;
  height: 24px;
}

.inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.inline-links .button {
  padding: 10px 15px;
}

.insight-section {
  background: #e8e8e8;
  color: #1f2327;
  padding-top: 52px;
}

.insight-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  align-items: start;
}

.insight-left {
  display: contents;
}

.insight-title {
  background: #aca06b;
  color: #fff;
  padding: 30px 20px;
  min-height: 168px;
  display: flex;
  align-items: center;
}

.insight-title h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.45rem, 2.6vw, 2.2rem);
}

.insight-photo img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.insight-main-photo {
  min-height: 240px;
}

.insight-main-photo img {
  min-height: 240px;
}

.insight-content {
  background: #bde6eb;
  padding: 22px;
  font-size: 1rem;
  line-height: 1.66;
  width: 100%;
  grid-column: 1 / -1;
  column-count: 1;
  column-gap: 0;
}

.insight-content p {
  margin: 0 0 14px;
  break-inside: avoid;
}

.insight-content p:last-child {
  margin-bottom: 0;
}

.insight-cta {
  text-align: center;
  margin: 28px 0 20px;
}

.insight-cta .button {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: #bde6eb;
  color: #091c27;
  border-radius: 0;
  min-width: 170px;
}

.insight-cta .button:hover {
  background: #9dd5dc;
}

.insight-bottom {
  background: #2f3033;
  color: #f6f6f6;
  padding: 44px 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.insight-item i {
  color: #ccb86a;
  font-size: 2rem;
}

.insight-item h3 {
  margin: 12px 0 10px;
  color: #ccb86a;
  font-size: 2rem;
}

.insight-item p {
  margin: 0;
  color: #f0f0f0;
}

@media (max-width: 980px) {
  .hero-grid,
  .contact-wrap,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }

  .insight-top {
    grid-template-columns: 1fr 1fr;
  }

  .insight-content {
    column-count: 1;
  }

  .insight-bottom {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .main-nav {
    position: absolute;
    right: 4%;
    top: 70px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: flex-start;
    padding: 12px;
    min-width: 230px;
    display: none;
  }

  .main-nav.open {
    display: flex;
  }
}

@media (max-width: 600px) {
  .hero {
    padding-top: 72px;
  }

  .hero-points {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .insight-top,
  .insight-left {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .insight-main-photo,
  .insight-main-photo img {
    min-height: 260px;
  }

  .insight-photo img {
    height: 260px;
  }

  .insight-item h3 {
    font-size: 1.7rem;
  }
}

@media (max-width: 320px) {
  .container {
    width: 94%;
  }

  .hero-form,
  .card,
  .faq-item,
  .cookie-banner {
    padding: 12px;
  }

  .insight-title,
  .insight-content,
  .insight-bottom {
    padding: 12px;
  }

  .insight-content {
    column-count: 1;
    column-gap: 0;
  }

  .main-nav {
    right: 3%;
    min-width: 200px;
  }

  .button,
  button[type="submit"] {
    width: 100%;
  }
}
@media (min-width: 1360px) {
  .insight-content {
    column-count: 3;
  }
}

