:root {
  --ink: #24292d;
  --bronze: #a4773d;
  --cream: #f5f0e7;
  --paper: #fffdf9;
  --line: #d8ccba;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Arial, sans-serif;
}
.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 78px;
  padding: 8px clamp(18px, 4vw, 64px);
  border-bottom: 1px solid #bbb09e;
  background: #fffdf9ee;
  backdrop-filter: blur(12px);
}
.site-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
}
.site-brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}
.site-brand span {
  display: flex;
  flex-direction: column;
}
.site-brand b {
  font:
    500 18px Georgia,
    serif;
  letter-spacing: 0.18em;
}
.site-brand small {
  font-size: 8px;
  letter-spacing: 0.22em;
}
.site-header nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 3vw, 40px);
}
.site-header nav a {
  color: #665d51;
  text-decoration: none;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.employee-login {
  padding: 13px 18px;
  border-radius: 5px;
  color: #fff;
  background: #252b2f;
  text-decoration: none;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.14em;
}
.public-hero {
  min-height: calc(100svh - 78px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(24px, 6vw, 90px);
  padding: clamp(34px, 7vw, 100px);
  background: linear-gradient(115deg, #eee5d7, #faf7f1 55%, #d8c09a);
}
.hero-logo {
  display: grid;
  place-items: center;
}
.hero-logo img {
  width: min(560px, 100%);
  filter: drop-shadow(0 25px 35px #33240d22);
}
.hero-title p,
.section-heading p {
  margin: 0;
  color: var(--bronze);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.22em;
}
.hero-title h1 {
  margin: 14px 0 32px;
  font:
    500 clamp(46px, 7vw, 92px) / 0.94 Georgia,
    serif;
  letter-spacing: -0.035em;
}
.hero-title a {
  color: #6b4c28;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.17em;
  text-decoration: none;
  border-bottom: 1px solid;
  padding-bottom: 5px;
}
.section-menu {
  scroll-margin-top: 78px;
  padding: clamp(54px, 8vw, 105px) clamp(22px, 7vw, 110px);
  border-bottom: 1px solid var(--line);
  background: #20272b;
}
.menu-heading {
  max-width: 720px;
  margin-bottom: clamp(28px, 5vw, 54px);
  color: #f7f0e5;
}
.menu-heading p {
  margin: 0;
  color: #d2a96e;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.22em;
}
.menu-heading h2 {
  margin: 10px 0 14px;
  font:
    500 clamp(36px, 5vw, 62px) / 1 Georgia,
    serif;
}
.menu-heading span {
  color: #c7beb0;
  font-size: 14px;
}
.section-button-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.section-button-grid a {
  min-height: 125px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 15px;
  padding: 20px;
  border: 1px solid #596166;
  border-radius: 7px;
  color: #f7f0e5;
  background: #2b3337;
  text-decoration: none;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}
.section-button-grid a:hover,
.section-button-grid a:focus-visible {
  transform: translateY(-3px);
  border-color: #d2a96e;
  background: #353e43;
  outline: none;
}
.section-button-grid b {
  align-self: start;
  color: #d2a96e;
  font:
    500 20px Georgia,
    serif;
}
.section-button-grid span {
  font:
    500 clamp(17px, 1.7vw, 24px) / 1.15 Georgia,
    serif;
}
.section-button-grid i {
  color: #d2a96e;
  font-style: normal;
  font-size: 22px;
}
.homepage-details {
  display: none;
}
.content-section,
.contact-section {
  position: relative;
  scroll-margin-top: 78px;
  padding: clamp(60px, 9vw, 130px) clamp(22px, 8vw, 130px);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.section-number {
  position: absolute;
  top: clamp(24px, 4vw, 54px);
  right: clamp(22px, 5vw, 70px);
  color: #c8b89e;
  font:
    500 46px Georgia,
    serif;
}
.section-heading {
  max-width: 820px;
  margin-bottom: clamp(30px, 5vw, 70px);
}
.section-heading h2 {
  margin: 9px 0 0;
  font:
    500 clamp(34px, 5vw, 66px) / 1 Georgia,
    serif;
}
.history-layout {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 45px;
}
.history-layout > .section-number,
.history-layout > .section-heading {
  grid-column: 1/-1;
}
.placeholder-block {
  padding: 28px;
  border: 1px solid var(--line);
  background: #faf6ef;
}
.placeholder-block > span {
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.15em;
}
.placeholder-lines {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}
.placeholder-lines i {
  height: 9px;
  background: #ded3c2;
}
.placeholder-lines i:nth-child(2),
.placeholder-lines i:nth-child(5) {
  width: 74%;
}
.archive-grid,
.project-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.archive-grid div,
.project-grid div,
.map-placeholder {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  color: #f7ead7;
  background: linear-gradient(145deg, #313a3f, #171c20);
  font-size: 9px;
  letter-spacing: 0.11em;
}
.archive-grid span {
  margin-top: 5px;
  color: #c9b99e;
}
.mission blockquote {
  margin: 0;
  padding: clamp(32px, 6vw, 70px);
  border-left: 7px solid var(--bronze);
  background: #eee3d2;
  font:
    500 clamp(28px, 5vw, 58px) Georgia,
    serif;
}
.service-grid,
.brand-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.service-grid div,
.brand-grid div {
  min-height: 120px;
  display: grid;
  place-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  color: #806c52;
  background: #faf6ef;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-align: center;
}
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.split-section article {
  position: relative;
  padding: clamp(60px, 8vw, 110px) clamp(22px, 6vw, 90px);
  border-bottom: 1px solid var(--line);
}
.split-section article + article {
  border-left: 1px solid var(--line);
  background: #e7dac5;
}
.structured-list {
  padding: 0;
  margin: 0;
  list-style: none;
}
.structured-list li {
  padding: 18px 4px;
  border-bottom: 1px solid #c8b99f;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.13em;
}
.map-placeholder {
  min-height: 220px;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.dark-section {
  color: #f7f0e5;
  background: #20272b;
}
.dark-section .section-heading p {
  color: #d2a96e;
}
.reason-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #556066;
}
.reason-grid div {
  min-height: 170px;
  padding: 25px;
  background: #2d363b;
}
.reason-grid b {
  display: block;
  color: #c8a16c;
  font:
    500 38px Georgia,
    serif;
}
.reason-grid span {
  display: block;
  margin-top: 46px;
  font-size: 9px;
  letter-spacing: 0.14em;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.team-grid article {
  display: flex;
  flex-direction: column;
}
.portrait-placeholder {
  aspect-ratio: 4/5;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: #bca887;
  background: #e9dfd0;
  font-size: 9px;
  letter-spacing: 0.13em;
}
.team-grid article > b {
  font:
    500 25px Georgia,
    serif;
}
.team-grid article > span {
  margin-top: 5px;
  color: var(--bronze);
  font-size: 9px;
  letter-spacing: 0.14em;
}
.team-grid article > p {
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: #81735f;
  font-size: 10px;
  letter-spacing: 0.1em;
}
.gallery-section {
  background: #ebe0d0;
}
.project-grid {
  grid-template-columns: repeat(3, 1fr);
}
.project-grid div {
  min-height: 230px;
  align-items: center;
  justify-content: center;
}
.timeline {
  padding: 0;
  margin: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}
.timeline li {
  display: grid;
  grid-template-columns: 140px 1fr;
  padding: 26px 5px;
  border-bottom: 1px solid var(--line);
}
.timeline b {
  color: var(--bronze);
  font:
    500 28px Georgia,
    serif;
}
.timeline span {
  align-self: center;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.13em;
}
.contact-section {
  color: #f6ecdd;
  background: #20272b;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: #596064;
}
.contact-grid div {
  min-height: 120px;
  padding: 25px;
  background: #2a3236;
}
.contact-grid span {
  display: block;
  color: #caa56f;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.16em;
}
.contact-grid b {
  display: block;
  margin-top: 18px;
  font:
    500 24px Georgia,
    serif;
}
footer {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px clamp(20px, 6vw, 90px);
  color: #eee2d0;
  background: #12171a;
}
footer img {
  width: 62px;
  height: 62px;
  object-fit: contain;
  background: #fff;
}
footer div {
  display: flex;
  flex: 1;
  flex-direction: column;
}
footer b {
  font:
    500 17px Georgia,
    serif;
  letter-spacing: 0.08em;
}
footer span {
  margin-top: 5px;
  color: #a99b87;
  font-size: 8px;
  letter-spacing: 0.16em;
}
footer a {
  color: #d6b37b;
  text-decoration: none;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.14em;
}
@media (max-width: 760px) {
  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 66px;
    padding: 6px 10px;
  }
  .site-brand img {
    width: 50px;
    height: 50px;
  }
  .site-brand b {
    font-size: 13px;
  }
  .site-header nav {
    display: none;
  }
  .employee-login {
    padding: 11px 10px;
    font-size: 7px;
  }
  .public-hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 35px 20px 60px;
    text-align: center;
  }
  .section-menu {
    scroll-margin-top: 66px;
    padding: 46px 16px;
  }
  .section-button-grid {
    grid-template-columns: 1fr;
    gap: 9px;
  }
  .section-button-grid a {
    min-height: 76px;
    padding: 15px 17px;
  }
  .section-button-grid span {
    font-size: 19px;
  }
  .content-section,
  .contact-section,
  .split-section article {
    scroll-margin-top: 66px;
  }
  .hero-logo img {
    width: min(330px, 82vw);
  }
  .hero-title h1 {
    font-size: 48px;
  }
  .history-layout,
  .split-section {
    grid-template-columns: 1fr;
  }
  .history-layout > .section-heading,
  .history-layout > .section-number {
    grid-column: auto;
  }
  .split-section article + article {
    border-left: 0;
  }
  .service-grid,
  .brand-grid,
  .project-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
  .reason-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .archive-grid {
    grid-template-columns: 1fr 1fr;
  }
  .timeline li {
    grid-template-columns: 90px 1fr;
  }
  footer {
    align-items: flex-start;
    flex-wrap: wrap;
  }
  footer a {
    width: 100%;
  }
}
