@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/manrope-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/manrope-500.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/manrope-700.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Oswald";
  src: url("assets/fonts/oswald-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Oswald";
  src: url("assets/fonts/oswald-500.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Oswald";
  src: url("assets/fonts/oswald-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

:root {
  --bg: #e6e0d5;
  --surface: #f5f1ea;
  --ink: #111111;
  --muted: #5e574d;
  --line: rgba(17, 17, 17, 0.14);
  --panel: #d8d2c9;
  --accent: #b78b64;
  --shadow: 0 18px 40px rgba(17, 17, 17, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(183, 139, 100, 0.25), transparent 26%),
    linear-gradient(180deg, #d9d0c5 0%, var(--bg) 38%, #f1ece5 100%);
  min-height: 100vh;
}

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

.site-header,
main,
.mobile-bar {
  width: min(100%, 32rem);
  margin: 0 auto;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1rem 1rem 0;
}

.brand {
  display: grid;
  gap: 0.15rem;
}

.brand-mark,
.section-kicker,
.eyebrow,
h1,
h2,
.services-list li {
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.brand-mark {
  font-size: 1.2rem;
  line-height: 1;
}

.brand-subtitle,
.hero-text,
.section-heading p,
.contact-text,
.hours-grid span {
  color: var(--muted);
}

.header-language {
  border: 1px solid var(--line);
  background: rgba(245, 241, 234, 0.88);
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  font: inherit;
  font-weight: 700;
  margin-top: 0.1rem;
}

.header-language {
  appearance: none;
  -webkit-appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.1rem;
  line-height: 1;
  color: var(--muted);
  cursor: pointer;
}

main {
  padding: 1rem 1rem 6rem;
}

.privacy-main {
  padding-bottom: 2rem;
}

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

.eyebrow,
.section-kicker {
  margin: 0;
  font-size: 0.8rem;
}

h1 {
  font-size: clamp(3.4rem, 15vw, 5.8rem);
  line-height: 0.92;
  margin: 0.35rem 0 1rem;
}

.hero-text {
  max-width: 26rem;
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
}

.hero-visual {
  display: grid;
  grid-template-rows: 1.2fr 0.8fr;
  border-radius: 1.75rem;
  overflow: hidden;
  min-height: 27rem;
  box-shadow: var(--shadow);
  background: #cfc8be;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.visual-panel {
  position: relative;
  margin: 0;
  overflow: hidden;
}

.visual-top {
  background: #c9c0b5;
}

.visual-bottom {
  background: #8f867d;
}

.visual-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.04), rgba(17, 17, 17, 0.24));
  pointer-events: none;
}

.visual-panel img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-top img {
  object-position: center center;
}

.visual-bottom img {
  object-position: center 42%;
}

.quick-actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin: 1rem 0 1.5rem;
}

.action-card,
.section,
.mobile-bar,
.button {
  border-radius: 1.35rem;
}

.action-card,
.section {
  background: rgba(245, 241, 234, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow);
}

.action-card {
  padding: 1rem;
  min-height: 5.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.action-label {
  font-size: 0.82rem;
  color: var(--muted);
}

.section {
  padding: 1.15rem;
  margin-top: 1rem;
}

.section-heading {
  display: grid;
  gap: 0.75rem;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 10vw, 3rem);
  line-height: 0.95;
}

.section-heading p,
.contact-text {
  margin: 0;
  line-height: 1.65;
}

.section-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.text-link {
  font-size: 0.92rem;
  border-bottom: 1px solid var(--ink);
}

.services-intro {
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.6;
}

.services-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--line);
}

.service-group {
  border-bottom: 1px solid var(--line);
}

.service-toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.95rem 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.service-title {
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 1.5rem;
  line-height: 1;
}

.service-symbol {
  flex: 0 0 auto;
  font-size: 1.4rem;
  line-height: 1;
}

.service-items {
  padding: 0 0 1rem;
  display: grid;
  gap: 0.65rem;
}

.service-items[hidden] {
  display: none;
}

.service-items p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.hours-grid {
  display: grid;
  gap: 0.85rem;
}

.hours-grid div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--line);
}

.hours-grid div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.hours-grid strong {
  font-weight: 700;
}

.contact-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 1rem;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 3.25rem;
  padding: 0.9rem 1rem;
  text-align: center;
  font-weight: 700;
  border: 1px solid var(--ink);
}

.button-primary {
  background: var(--ink);
  color: #f8f5f0;
}

.button-secondary {
  background: transparent;
}

.mobile-bar {
  position: fixed;
  bottom: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  padding: 0.5rem;
  background: rgba(17, 17, 17, 0.92);
  box-shadow: 0 16px 40px rgba(17, 17, 17, 0.24);
}

.mobile-bar a {
  color: #f8f5f0;
  text-align: center;
  padding: 0.9rem 0.35rem;
  border-radius: 1rem;
  font-weight: 700;
  font-size: 0.95rem;
}

.mobile-bar a:hover,
.mobile-bar a:focus-visible {
  background: rgba(255, 255, 255, 0.1);
}

.site-footer {
  width: min(100%, 32rem);
  margin: 0 auto;
  padding: 0 1rem 5.5rem;
  text-align: center;
}

.site-footer a {
  color: var(--muted);
  font-size: 0.95rem;
  border-bottom: 1px solid var(--line);
}

.site-footer-static {
  padding-bottom: 2rem;
}

@media (max-width: 699px) {
  body {
    background: #e6e0d5;
  }

  .action-card,
  .section,
  .hero-visual {
    box-shadow: 0 10px 24px rgba(17, 17, 17, 0.06);
  }

  .mobile-bar {
    left: 0.75rem;
    right: 0.75rem;
    width: auto;
    transform: none;
    box-shadow: 0 10px 24px rgba(17, 17, 17, 0.18);
  }
}

@media (min-width: 700px) {
  .site-header,
  main,
  .mobile-bar,
  .site-footer {
    width: min(100%, 58rem);
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(20rem, 27rem);
    align-items: start;
    gap: 1.5rem;
  }

  .hero-copy {
    padding-top: 1.25rem;
  }

  .hero-visual {
    min-height: 38rem;
    max-height: 42rem;
  }

  .quick-actions,
  .contact-links {
    grid-template-columns: repeat(2, minmax(0, 18rem));
  }

  .section-hours .hours-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .section-hours .hours-grid div {
    display: grid;
    gap: 0.35rem;
    border-bottom: 0;
    border-right: 1px solid var(--line);
    padding: 0 1rem 0 0;
  }

  .section-hours .hours-grid div:last-child {
    border-right: 0;
  }
}

@media (min-width: 960px) {
  .site-header,
  main,
  .site-footer {
    width: min(100%, 66rem);
  }

  .mobile-bar {
    width: min(100%, 34rem);
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(22rem, 30rem);
    gap: 2rem;
  }

  .hero-visual {
    min-height: 40rem;
    max-height: 44rem;
  }
}
