:root {
  color-scheme: light;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  --primary-text: #1b1b1f;
  --secondary-text: #4a4f5a;
  --accent: #c59a5d;
  --background: #f7f4ef;
  --card-background: #ffffff;
  --muted-background: rgba(197, 154, 93, 0.12);
  --border-color: #dfd7ca;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  background-color: var(--background);
  color: var(--primary-text);
  line-height: 1.6;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

img {
  max-width: 100%;
  display: block;
}

main {
  padding: 0 1.5rem 3.5rem;
}

h1,
h2,
h3 {
  margin: 0;
  font-weight: 600;
  color: var(--primary-text);
}

p {
  margin: 0;
  color: var(--secondary-text);
}

p + p {
  margin-top: 1rem;
}

ul {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--secondary-text);
}

.content-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 0;
}

.section-surface {
  padding: clamp(2rem, 4vw, 2.75rem);
  display: grid;
  gap: clamp(1.75rem, 3vw, 2.5rem);
  background: none;
  border: none;
  box-shadow: none;
  border-radius: 0;
}

.section-surface > h2 {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
}

.about__intro {
  display: grid;
  gap: 1.5rem;
  font-size: 1.05rem;
}

.about__figure {
  margin: 0;
}

.about__figure img {
  border-radius: 1rem;
}

.about__highlights {
  border-top: 1px solid var(--border-color);
  padding-top: 1.75rem;
  display: grid;
  gap: 1rem;
}

.about__highlights h3 {
  margin: 0;
  font-size: 1.35rem;
  color: var(--primary-text);
}

.about__highlights ul {
  display: grid;
  gap: 0.75rem;
}

.image-card {
  background-color: var(--card-background);
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: 0 12px 24px rgba(27, 27, 31, 0.08);
}
 
.content-section + .content-section {
  border-top: 3px solid #d97b20;
  padding-top: calc(3rem + 1.5rem);
}

.image-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.image-card figcaption {
  padding: 1rem 1.25rem;
  background: rgba(247, 244, 239, 0.9);
  font-size: 0.95rem;
  color: var(--secondary-text);
}

.sections__table {
  display: contents;
}

.table-wrapper {
  overflow-x: auto;
  border-radius: 1rem;
  border: 1px solid var(--border-color);
  background-color: var(--card-background);
  box-shadow: 0 12px 28px rgba(27, 27, 31, 0.08);
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.table-wrapper::-webkit-scrollbar {
  display: none;
}

table {
  width: 100%;
  border-collapse: collapse;
}

thead {
  background-color: var(--muted-background);
}

th,
td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
  color: var(--secondary-text);
}

th[scope="col"] {
  font-weight: 600;
  color: var(--primary-text);
}

th[scope="row"] {
  font-weight: 600;
  color: var(--primary-text);
}

tbody tr:last-child td {
  border-bottom: none;
}

.sections__note {
  font-size: 1rem;
  color: var(--secondary-text);
  max-width: 760px;
}

.overview__content {
  display: grid;
  gap: 1.5rem;
  font-size: 1.05rem;
}

.overview__gallery {
  display: grid;
  gap: 1.5rem;
}

.overview__image img {
  height: 210px;
}

.planning__grid {
  display: grid;
  gap: 1.5rem;
}

.planning__item {
  background: rgba(197, 154, 93, 0.14);
  border-radius: 1rem;
  padding: 1.75rem;
  border: 1px solid rgba(197, 154, 93, 0.32);
  box-shadow: 0 10px 24px rgba(27, 27, 31, 0.08);
  display: grid;
  gap: 1rem;
}

.planning__item h3 {
  margin: 0;
  font-size: 1.25rem;
  color: var(--primary-text);
}

.planning__item p {
  margin: 0;
  font-size: 1.02rem;
}

.planning__item strong {
  color: var(--primary-text);
}

@media (max-width: 640px) {
  main {
    padding: 0 1.25rem 3rem;
  }

  .section-surface {
    padding: 1.75rem;
  }

  .table-wrapper {
    border-radius: 0.75rem;
    max-width: 320px;
    margin-inline: auto;
  }

  table {
    width: auto;
    min-width: 0;
    font-size: 0.85rem;
  }

  th,
  td {
    padding: 0.6rem 0.75rem;
    word-break: normal;
    hyphens: auto;
  }

  th[scope="col"],
  th[scope="row"] {
    font-size: 0.92rem;
  }

  .overview__gallery {
    grid-template-columns: 1fr;
  }

  .image-card img {
    height: 200px;
  }
}

@media (min-width: 640px) {
  .about__intro {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .overview__gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .planning__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

