:root {
  color-scheme: light;
  --ink: #17211f;
  --muted: #60706b;
  --line: #dce4de;
  --paper: #f6f4ee;
  --white: #ffffff;
  --brand: #16615a;
  --brand-strong: #0d403c;
  --accent: #8a530f;
  --leaf: #7d9a5f;
  --shadow: 0 18px 50px rgba(27, 38, 34, 0.16);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid #0d403c;
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 20;
  transform: translateY(-160%);
  padding: 10px 12px;
  border-radius: 8px;
  background: #ffffff;
  color: #0d403c;
  font-weight: 800;
  text-decoration: none;
}

.skip-link:focus-visible {
  transform: translateY(0);
}

button,
input,
select,
textarea {
  font: inherit;
}

::placeholder {
  color: #5c6d67;
  opacity: 1;
}

.hero {
  min-height: 82vh;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    linear-gradient(180deg, rgba(8, 21, 18, 0.32), rgba(8, 21, 18, 0.72)),
    url("https://www.erendiz.com/wp-content/uploads/2025/08/outdoors.jpg") center / cover;
  color: var(--white);
}

.hero.hero-compact {
  min-height: 52vh;
}

.topbar,
footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  max-width: 100%;
}

.lang-button {
  border-radius: 999px;
  padding: 10px 12px;
  min-width: 66px;
  background: rgba(255, 255, 255, 0.24);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: none;
}

.lang-button.active {
  background: #ffffff;
  color: var(--ink);
  border-color: transparent;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 750;
  text-decoration: none;
  min-width: 0;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
}

.install-button,
button {
  border: 0;
  border-radius: 8px;
  background: var(--brand);
  color: var(--white);
  padding: 12px 15px;
  font-weight: 750;
  cursor: pointer;
}

.install-button {
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.44);
}

.hero-copy {
  width: min(760px, 100%);
  padding: 18vh 0 9vh;
}

.hero-compact .hero-copy {
  padding: 10vh 0 6vh;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f1c278;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(2.55rem, 9vw, 5.6rem);
  line-height: 0.96;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(1.85rem, 5vw, 3rem);
  line-height: 1.05;
}

h3 {
  margin-bottom: 8px;
}

.hero-copy p:last-child {
  max-width: 620px;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.86);
}

main {
  display: grid;
  gap: 18px;
}

.quick-actions {
  position: sticky;
  top: 0;
  z-index: 4;
  width: 100%;
  max-width: 100vw;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(96px, 1fr));
  background: var(--white);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.quick-actions a {
  min-height: 52px;
  display: grid;
  place-items: center;
  padding: 10px;
  color: var(--brand-strong);
  font-weight: 760;
  text-align: center;
  text-decoration: none;
  border-right: 1px solid var(--line);
}

.section {
  width: min(1120px, calc(100% - 28px));
  margin: 0 auto;
  padding: 38px 0;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.cta-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 16px;
  border-radius: 8px;
  background: var(--brand);
  color: var(--white);
  font-weight: 760;
  text-decoration: none;
}

.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  width: fit-content;
  padding: 11px 15px;
  border-radius: 8px;
  background: var(--brand);
  color: var(--white);
  font-weight: 780;
  text-decoration: none;
}

.button-link.secondary {
  background: transparent;
  color: var(--brand-strong);
  border: 1px solid var(--line);
}

.cta-row a.secondary {
  background: transparent;
  color: var(--brand-strong);
  border: 1px solid var(--line);
}

.section-heading {
  max-width: 680px;
  margin-bottom: 20px;
}

.welcome-section {
  padding-top: 28px;
}

.welcome-contact-panel p {
  margin-bottom: 16px;
}

.contact-list {
  display: grid;
  gap: 10px;
}

.contact-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--brand-strong);
  font-weight: 760;
  text-decoration: none;
}

.contact-list span {
  color: var(--muted);
  font-weight: 720;
}

.transfer-section {
  width: min(1120px, calc(100% - 28px));
  padding-top: 26px;
  padding-bottom: 18px;
}

.transfer-card {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 18px;
  overflow: hidden;
  padding: 22px;
  border: 1px solid rgba(22, 97, 90, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(130deg, rgba(255, 255, 255, 0.96) 0 58%, rgba(238, 244, 230, 0.9) 58% 100%),
    url("https://www.erendiz.com/wp-content/uploads/2025/08/outdoors.jpg") center / cover;
  box-shadow: var(--shadow);
}

.transfer-copy {
  max-width: 720px;
}

.transfer-copy p {
  color: var(--muted);
}

.transfer-points {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.transfer-points li {
  position: relative;
  padding-left: 24px;
  color: var(--brand-strong);
  font-weight: 720;
}

.transfer-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--leaf);
  box-shadow: 0 0 0 4px rgba(125, 154, 95, 0.18);
}

.transfer-action {
  display: grid;
  align-content: center;
  gap: 10px;
  min-width: 0;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 8px;
  background: rgba(13, 64, 60, 0.92);
  color: #ffffff;
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.transfer-action:hover,
.transfer-action:focus-visible {
  background: #0d403c;
  box-shadow: 0 18px 42px rgba(13, 64, 60, 0.28);
  transform: translateY(-2px);
}

.transfer-action p {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.78);
}

.transfer-route {
  display: inline-flex;
  width: fit-content;
  padding: 6px 9px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
  color: #f1c278;
  font-size: 0.82rem;
  font-weight: 850;
}

.transfer-action strong {
  font-size: clamp(1.45rem, 3vw, 2.15rem);
  line-height: 1.05;
}

.transfer-action .button-link {
  margin-top: 4px;
  background: #ffffff;
  color: var(--brand-strong);
}

.task-list,
.grid,
.guide-list,
.protected-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  min-width: 0;
}

article,
.info-panel,
.access-form,
.service-form,
.menu-access-form {
  min-width: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

article,
.info-panel {
  padding: 20px;
}

article span {
  display: block;
  margin-bottom: 8px;
  color: var(--leaf);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

article strong {
  display: block;
  margin-bottom: 8px;
}

article p,
.info-panel li,
.section > p,
.form-note {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
}

.service-section {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 18px;
  align-items: start;
}

.info-panel ul {
  margin: 0;
  padding-left: 20px;
}

.access-form,
.service-form,
.menu-access-form {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.menu-access-form {
  margin-top: 18px;
}

.menu-preview {
  margin-top: 14px;
  grid-template-columns: 1fr;
}

.menu-section {
  width: min(1180px, calc(100% - 28px));
}

.menu-section > div {
  max-width: 980px;
}

.menu-teaser-section {
  width: min(980px, calc(100% - 28px));
}

.menu-teaser {
  display: grid;
  gap: 8px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.menu-teaser .button-link {
  margin-top: 8px;
}

.menu-page .hero {
  min-height: 42vh;
}

.menu-page .hero-copy {
  padding: 7vh 0 5vh;
}

.menu-page h1 {
  font-size: clamp(2.35rem, 7vw, 4.8rem);
}

.menu-page-section {
  padding-top: 24px;
}

.menu-page-section > div {
  max-width: none;
}

.menu-page-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.menu-category-nav {
  position: sticky;
  top: 56px;
  z-index: 4;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 10px 0 12px;
  margin-bottom: 12px;
  background: rgba(246, 244, 238, 0.94);
  backdrop-filter: blur(10px);
  scrollbar-width: thin;
}

.menu-category-nav a {
  flex: 0 0 auto;
  min-height: 38px;
  padding: 9px 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--brand-strong);
  font-size: 0.9rem;
  font-weight: 780;
  text-decoration: none;
  white-space: nowrap;
}

.menu-items {
  display: grid;
  gap: 28px;
  margin-top: 24px;
}

.menu-category {
  display: grid;
  gap: 12px;
}

.menu-category h3 {
  margin: 0;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(22, 97, 90, 0.22);
  color: var(--brand-strong);
  font-size: 1.22rem;
}

.menu-category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.menu-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  min-height: 104px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 28px rgba(27, 38, 34, 0.08);
}

.menu-card.has-image {
  grid-template-columns: auto 1fr;
}

.menu-card-image {
  width: 84px;
  height: 84px;
  border-radius: 8px;
  object-fit: cover;
  background: #e8ece5;
}

.menu-card-content {
  display: grid;
  align-content: start;
  gap: 6px;
  min-width: 0;
}

.menu-card strong {
  margin: 0;
  color: var(--ink);
  line-height: 1.28;
}

.menu-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.menu-items .menu-price {
  display: inline-flex;
  width: fit-content;
  margin-top: 2px;
  margin-bottom: 0;
  padding: 5px 9px;
  border-radius: 8px;
  background: rgba(138, 83, 15, 0.11);
  color: var(--accent);
  font-size: 0.95rem;
  font-weight: 850;
  text-transform: none;
}

.cleaning-section {
  width: min(980px, calc(100% - 28px));
}

.cleaning-form {
  display: grid;
  gap: 16px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.cleaning-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.cleaning-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.cleaning-option {
  display: grid;
  gap: 10px;
  align-content: start;
  min-height: 170px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcf8;
  color: var(--ink);
  box-shadow: 0 10px 28px rgba(27, 38, 34, 0.08);
  text-align: left;
  cursor: pointer;
}

.cleaning-option.active {
  border-color: rgba(22, 97, 90, 0.72);
  background: rgba(22, 97, 90, 0.08);
}

.cleaning-option strong {
  margin: 0;
  color: var(--brand-strong);
  line-height: 1.25;
}

.cleaning-option span:last-child {
  color: var(--muted);
  font-size: 0.92rem;
}

.cleaning-icon {
  width: 58px;
  height: 58px;
  border-radius: 8px;
  background: linear-gradient(145deg, #ffffff, #dfe8df);
  box-shadow: inset 0 0 0 1px rgba(13, 64, 60, 0.12);
}

.cleaning-icon-tomorrow {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(125, 154, 95, 0.52)),
    linear-gradient(90deg, transparent 0 42%, #0d403c 42% 50%, transparent 50% 100%);
}

.cleaning-icon-never {
  background:
    linear-gradient(135deg, transparent 0 43%, #8a530f 44% 56%, transparent 57% 100%),
    linear-gradient(145deg, #ffffff, #eee5db);
}

.cleaning-icon-daily {
  background:
    radial-gradient(circle at 50% 50%, #ffffff 0 24%, transparent 25% 100%),
    conic-gradient(from 30deg, #16615a, #7d9a5f, #8a530f, #16615a);
}

.service-items {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.service-items h3 {
  margin: 0;
  color: var(--brand-strong);
  font-size: 1.08rem;
}

.service-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.service-card {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 104px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  box-shadow: 0 10px 28px rgba(27, 38, 34, 0.08);
  text-align: left;
  cursor: pointer;
}

.service-card:hover {
  border-color: rgba(22, 97, 90, 0.38);
  transform: translateY(-1px);
}

.service-card-image,
.service-picture {
  width: 86px;
  height: 86px;
  border-radius: 8px;
}

.service-card-image {
  object-fit: cover;
  background: #e8ece5;
}

.service-picture {
  position: relative;
  display: grid;
  place-items: end start;
  overflow: hidden;
  padding: 9px;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0;
  background:
    linear-gradient(140deg, rgba(13, 64, 60, 0.18), rgba(13, 64, 60, 0.62)),
    url("https://www.erendiz.com/wp-content/uploads/2025/08/outdoors.jpg") center / cover;
}

.service-picture::after {
  content: "";
  position: absolute;
  right: 8px;
  top: 8px;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: inset 0 0 0 1px rgba(13, 64, 60, 0.16);
}

.service-picture-taxi::after {
  border-radius: 6px 6px 10px 10px;
  background: linear-gradient(#ffffff 0 46%, #d9a233 46% 100%);
}

.service-picture-tour {
  background:
    linear-gradient(140deg, rgba(13, 64, 60, 0.1), rgba(22, 97, 90, 0.7)),
    url("https://www.erendiz.com/wp-content/uploads/2025/08/outdoors.jpg") center / cover;
}

.service-picture-tour::after {
  border-radius: 50% 50% 8px 8px;
  background: linear-gradient(180deg, #ffffff 0 42%, #7d9a5f 42% 100%);
}

.service-picture-laundry::after {
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, #ffffff 0 38%, #7d9a5f 39% 45%, #ffffff 46% 100%);
}

.service-picture-tips::after {
  background: linear-gradient(145deg, #ffffff 0 55%, #d9a233 56% 100%);
}

.service-card-content {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.service-card-content strong {
  color: var(--brand-strong);
  line-height: 1.25;
}

.service-card-meta {
  color: var(--accent);
  font-size: 0.92rem;
  font-weight: 780;
}

.access-form {
  grid-template-columns: 1fr 1fr auto;
  align-items: end;
  margin-bottom: 14px;
}

label {
  display: grid;
  gap: 6px;
  color: var(--brand-strong);
  font-size: 0.9rem;
  font-weight: 760;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfaf7;
  color: var(--ink);
  padding: 12px;
}

textarea {
  resize: vertical;
}

.form-note {
  margin: -2px 0 0;
  font-size: 0.92rem;
}

.form-status {
  margin: 0;
  color: var(--brand-strong);
  font-size: 0.92rem;
  font-weight: 700;
}

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

.local-practical-section {
  width: min(1120px, calc(100% - 28px));
}

.local-practical-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 14px;
}

.local-panel {
  display: grid;
  gap: 14px;
  align-content: start;
}

.local-panel-wide {
  grid-column: 1 / -1;
}

.local-panel label {
  margin-top: 2px;
}

.local-result {
  display: grid;
  gap: 10px;
  min-height: 172px;
  padding: 13px 0 0;
  border-top: 1px solid rgba(22, 97, 90, 0.2);
}

.local-result h4 {
  margin: 0;
  color: var(--brand-strong);
  font-size: 1.02rem;
  line-height: 1.25;
}

.local-result p {
  margin: 0;
  color: var(--muted);
}

.local-result ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.local-result li {
  padding: 9px 10px;
  border-left: 3px solid var(--leaf);
  background: #fbfaf7;
  color: var(--brand-strong);
  font-size: 0.94rem;
  font-weight: 720;
}

.local-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.local-actions a,
.supply-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  width: fit-content;
  padding: 8px 11px;
  border: 1px solid rgba(22, 97, 90, 0.24);
  border-radius: 8px;
  color: var(--brand-strong);
  font-size: 0.9rem;
  font-weight: 780;
  text-decoration: none;
}

.supply-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.supply-card {
  display: grid;
  align-content: start;
  gap: 8px;
}

.supply-card h3,
.supply-card p {
  margin-bottom: 0;
}

footer {
  width: min(1120px, calc(100% - 28px));
  margin: 30px auto 0;
  padding: 24px 0 34px;
  color: var(--muted);
}

footer a {
  color: var(--brand);
  font-weight: 760;
}

.note-panel {
  padding: 18px 20px;
  background: #fff8eb;
  border: 1px solid #ecd7b1;
  border-radius: 8px;
  color: #604d2a;
}

.token-panel {
  margin-top: 16px;
}

.bullet-list {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.bullet-list li + li {
  margin-top: 8px;
}

@media (max-width: 820px) {
  .hero {
    min-height: 78vh;
  }

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

  .task-list,
  .grid,
  .guide-list,
  .local-practical-grid,
  .supply-list,
  .protected-content,
  .split,
  .service-section,
  .access-form,
  .transfer-card {
    grid-template-columns: 1fr;
  }

  .section {
    width: calc(100vw - 22px);
    max-width: 680px;
    padding: 28px 0;
  }

  .menu-category-grid {
    grid-template-columns: 1fr;
  }

  .menu-card.has-image {
    grid-template-columns: 72px 1fr;
  }

  .menu-card-image {
    width: 72px;
    height: 72px;
  }

  .menu-page-heading {
    align-items: start;
    flex-direction: column;
  }

  .menu-category-nav {
    top: 50px;
  }

  .service-card-grid {
    grid-template-columns: 1fr;
  }

  .cleaning-fields,
  .cleaning-options {
    grid-template-columns: 1fr;
  }

  .cleaning-option {
    min-height: 132px;
  }

  .transfer-section {
    width: calc(100vw - 22px);
    max-width: 680px;
    padding-top: 20px;
  }

  .transfer-card {
    padding: 18px;
    background: #ffffff;
  }

  .transfer-action {
    padding: 16px;
  }

  .transfer-action .button-link {
    width: 100%;
  }

  footer {
    width: calc(100vw - 22px);
    max-width: 680px;
    align-items: flex-start;
    flex-direction: column;
  }

  .language-switcher {
    width: 100%;
    justify-content: center;
  }

  .lang-button {
    flex: 1 1 64px;
    min-width: 0;
    justify-content: center;
  }
}
