:root {
  --background: #fefdfb;
  --foreground: #1f2740;
  --primary: #1f2740;
  --primary-foreground: #fffdf9;
  --secondary: #f5f1e8;
  --accent: #c98f40;
  --accent-foreground: #1d1b18;
  --radius: 10px;
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--foreground);
  background: var(--background);
  line-height: 1.6;
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--primary-foreground);
  background-image: url("./hero.jpg");
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-color: #000;
}

.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-overlay {
  background: linear-gradient(to bottom, rgb(20 26 44 / 92%), rgb(20 26 44 / 86%), rgb(20 26 44 / 94%));
}

.hero-content {
  position: relative;
  max-width: 64rem;
  margin: 0 auto;
  padding: 4rem 1rem;
  text-align: center;
}

.logo {
  width: auto;
  height: 5rem;
  background: rgb(254 252 251);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
}

.eyebrow {
  margin: 1.5rem 0 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3em;
}

.hero-content .eyebrow,
.hero-content h1,
.hero-content .subtitle {
  text-shadow: 0 2px 6px rgb(0 0 0 / 45%);
}

h1 {
  margin: 0;
  font-size: 1.875rem;
  line-height: 1.2;
}

.subtitle {
  max-width: 42rem;
  margin: 1rem auto 0;
  font-size: 1rem;
}

.content,
.cta,
.footer-grid,
.copyright {
  max-width: 48rem;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.content {
  padding-top: 3rem;
  padding-bottom: 3rem;
  font-size: 1rem;
}

.content p {
  margin: 0 0 1.5rem;
}

.cta {
  margin-bottom: 3rem;
  padding: 1.5rem;
  border: 1px solid var(--accent);
  border-radius: 12px;
  background: var(--secondary);
  text-align: center;
}

.btn {
  display: inline-block;
  margin-top: 1.5rem;
  background: var(--accent);
  color: var(--accent-foreground);
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

footer {
  border-top: 4px solid var(--accent);
  background: var(--primary);
  color: var(--primary-foreground);
}

.footer-grid {
  display: grid;
  gap: 2rem;
  max-width: 64rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

footer h2 {
  margin: 0;
  font-size: 1.125rem;
  letter-spacing: 0.02em;
}

footer p,
address {
  margin: 1rem 0 0;
  font-style: normal;
}

.phone {
  color: var(--accent);
  font-weight: 600;
  text-underline-offset: 4px;
}

.copyright {
  max-width: 64rem;
  border-top: 1px solid rgb(255 253 249 / 20%);
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 1rem;
  padding-bottom: 1rem;
  text-align: center;
  font-size: 0.875rem;
  color: rgb(255 253 249 / 80%);
}

.cookie-notice {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  max-width: min(22rem, calc(100vw - 2rem));
  padding: 0.75rem 0.875rem;
  border: 1px solid #d9d2c3;
  border-radius: 8px;
  background: #ffffff;
  color: #1f2740;
  box-shadow: 0 8px 20px rgb(0 0 0 / 10%);
}

.cookie-notice p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.4;
}

.cookie-notice button {
  border: 0;
  border-radius: 6px;
  background: var(--accent);
  color: #1f2740;
  padding: 0.4rem 0.75rem;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1;
  cursor: pointer;
}

.cookie-notice.is-hidden {
  display: none;
}

@media (min-width: 640px) {
  .hero-content {
    padding: 12rem 1.5rem;
  }

  .eyebrow {
    font-size: 0.875rem;
  }

  h1 {
    font-size: 2.5rem;
  }

  .content,
  .cta,
  .footer-grid,
  .copyright {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .cta {
    padding: 2.5rem;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .hero {
    background-attachment: scroll;
  }
}


.espa {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1000;
  width: 400px;
  box-shadow: 0 4px 12px rgb(0 0 0 / 20%);
}
.espa img {
  width: 100%;
  height: auto;
}
@media (max-width: 600px) {
  .espa {
    top: 0;
    left: 50%;
    transform: translate(-50%, 0%);
  }
}