:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  background: #f5f5f7;
  color: #1d1d1f;
  --muted: #6e6e73;
  --line: rgba(0, 0, 0, 0.12);
  --surface: rgba(255, 255, 255, 0.88);
  --blue: #0071e3;
  --green: #1d7f44;
  --soft: #f5f7fb;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: linear-gradient(180deg, #fbfbfd 0%, #f5f5f7 56%, #fff 100%);
}

main {
  width: min(1060px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 72px;
}

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

.site-header {
  padding-bottom: 30px;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 50px;
  gap: 18px;
  border-bottom: 1px solid var(--line);
}

.brand {
  font-size: 0.96rem;
  font-weight: 720;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.language-switch a,
.language-switch span {
  min-width: 66px;
  border-radius: 999px;
  padding: 7px 11px;
  color: #515154;
  font-size: 0.88rem;
  font-weight: 650;
  text-align: center;
}

.language-switch span {
  background: #1d1d1f;
  color: #fff;
}

.kicker {
  margin: 52px 0 10px;
  color: var(--blue);
  font-size: 0.86rem;
  font-weight: 720;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.3rem, 6vw, 4.8rem);
  line-height: 1;
  font-weight: 760;
  letter-spacing: 0;
}

.subtitle {
  max-width: 740px;
  margin: 18px 0 12px;
  color: #424245;
  font-size: clamp(1.02rem, 1.65vw, 1.2rem);
  line-height: 1.52;
}

.meta {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.catalog {
  display: grid;
  gap: 18px;
}

.listing {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: 0 18px 56px rgba(0, 0, 0, 0.07);
  backdrop-filter: blur(18px);
}

.listing + .listing {
  margin-top: 6px;
}

.listing-summary {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(16px, 3vw, 30px);
  min-height: 178px;
  padding: clamp(14px, 2.5vw, 22px);
  cursor: pointer;
  list-style: none;
}

.listing-summary::-webkit-details-marker {
  display: none;
}

.listing-summary::after {
  content: "+";
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  margin-left: 6px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--muted);
  font-size: 1.25rem;
  line-height: 1;
}

.listing[open] .listing-summary::after {
  content: "-";
}

.summary-media {
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  background: #ececf0;
}

.photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.summary-copy {
  display: grid;
  gap: 11px;
  min-width: 0;
}

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

.eyebrow span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 10px;
  background: #fff;
  color: #515154;
  font-size: 0.8rem;
  font-weight: 650;
}

.eyebrow span:last-child {
  color: var(--green);
}

.summary-title {
  display: block;
  color: #1d1d1f;
  font-size: clamp(1.35rem, 3vw, 2.3rem);
  line-height: 1.12;
  font-weight: 760;
  letter-spacing: 0;
}

.summary-price {
  justify-self: end;
  color: #1d1d1f;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1;
  font-weight: 760;
  white-space: nowrap;
}

.listing-details {
  padding: 0 clamp(18px, 3.4vw, 34px) clamp(22px, 3.6vw, 38px);
}

.listing[open] .listing-details {
  border-top: 1px solid var(--line);
  padding-top: clamp(18px, 3vw, 28px);
}

.summary {
  max-width: 820px;
  margin: 0 0 22px;
  color: #424245;
  font-size: 1.04rem;
  line-height: 1.58;
}

.price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin: 0 0 20px;
  padding: 17px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.price-row span {
  color: var(--muted);
  font-size: 0.95rem;
}

.price-row strong {
  font-size: clamp(2.1rem, 5vw, 3.25rem);
  line-height: 1;
}

.facts {
  margin: 0 0 18px;
  border-top: 1px solid var(--line);
}

.facts div {
  display: grid;
  grid-template-columns: minmax(150px, 0.35fr) minmax(0, 1fr);
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

dt,
h3 {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 720;
}

dd,
.note-grid p,
.contact {
  margin: 0;
  color: #1d1d1f;
  font-size: 0.98rem;
  line-height: 1.5;
}

.note-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 28px;
  padding-top: 4px;
}

.note-grid .wide {
  grid-column: 1 / -1;
}

.note-grid section {
  display: grid;
  gap: 7px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.contact {
  margin-top: 20px;
  border-radius: 14px;
  padding: 13px 14px;
  background: var(--soft);
  color: #424245;
}

@media (max-width: 720px) {
  main {
    width: min(100% - 22px, 1060px);
    padding-bottom: 44px;
  }

  nav {
    min-height: 54px;
  }

  .brand {
    max-width: 46vw;
  }

  .language-switch a,
  .language-switch span {
    min-width: 54px;
    padding: 7px 9px;
    font-size: 0.82rem;
  }

  .kicker {
    margin-top: 34px;
  }

  .listing {
    border-radius: 20px;
  }

  .listing-summary {
    grid-template-columns: 108px minmax(0, 1fr) auto;
    min-height: 120px;
    gap: 13px;
  }

  .summary-media {
    border-radius: 14px;
  }

  .eyebrow {
    display: none;
  }

  .summary-title {
    font-size: 1.12rem;
  }

  .summary-price {
    font-size: 1.45rem;
  }

  .listing-summary::after {
    width: 28px;
    height: 28px;
    margin-left: 0;
  }

  .facts div,
  .note-grid {
    grid-template-columns: 1fr;
  }
}
