:root {
  --bg: #f4f0e7;
  --paper: rgba(255, 255, 255, 0.52);
  --panel: linear-gradient(180deg, #6e7d88 0%, #94a2ac 100%);
  --panel-line: rgba(255, 255, 255, 0.12);
  --ink: #151311;
  --muted: rgba(21, 19, 17, 0.68);
  --soft: rgba(21, 19, 17, 0.44);
  --accent: #4d616b;
  --accent-deep: #42545d;
  --shadow: 0 40px 80px rgba(72, 69, 63, 0.16);
  --shadow-soft: 0 18px 40px rgba(72, 69, 63, 0.1);
  --line: rgba(21, 19, 17, 0.1);
  --shell: 1320px;
  --radius-lg: 42px;
  --radius-md: 28px;
  --radius-sm: 18px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(110, 135, 146, 0.12), transparent 26%),
    linear-gradient(180deg, #f7f5f0 0%, var(--bg) 28%, #f6f3ee 100%);
  font-family: "Aptos", "Segoe UI Variable", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
}

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

img {
  max-width: 100%;
  display: block;
}

.shell {
  width: min(calc(100% - 48px), var(--shell));
  margin: 0 auto;
}

.site-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 84px;
  padding: 16px 20px;
  text-align: center;
  background:
    repeating-linear-gradient(
      -58deg,
      #171717 0 18px,
      #171717 18px 34px,
      #d3aa17 34px 52px,
      #f2cb37 52px 68px
    );
  color: #fff8dd;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.22);
}

.site-banner__icon {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1.5px solid rgba(255, 248, 221, 0.92);
  background: rgba(0, 0, 0, 0.2);
  color: #fff8dd;
  font-size: 18px;
  line-height: 1;
  flex-shrink: 0;
}

.site-banner__text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.62);
  border: 1px solid rgba(255, 248, 221, 0.24);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.28);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(247, 244, 239, 0.78);
  border-bottom: 1px solid rgba(21, 19, 17, 0.06);
}

.site-header__inner,
.site-footer__inner,
.section-header,
.contact-panel,
.about-panel,
.hero__grid {
  display: flex;
}

.site-header__inner {
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 23px;
  letter-spacing: 0.05em;
}

.brand__mark {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(21, 19, 17, 0.14);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.site-nav a {
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--muted);
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
  border: 1px solid transparent;
}

.site-nav a:hover,
.site-nav a.is-pill {
  color: var(--ink);
  border-color: rgba(21, 19, 17, 0.08);
  background: rgba(255, 255, 255, 0.42);
}

.hero {
  padding: 26px 0 56px;
}

.hero__panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--panel);
  min-height: 760px;
  box-shadow: var(--shadow);
  border: 1px solid var(--panel-line);
}

.hero__panel::before,
.hero__panel::after {
  content: "";
  position: absolute;
  inset: auto;
  pointer-events: none;
}

.hero__panel::before {
  width: 640px;
  height: 640px;
  left: -120px;
  top: 90px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0) 68%);
  filter: blur(8px);
}

.hero__panel::after {
  width: 700px;
  height: 700px;
  right: -170px;
  bottom: -180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0) 72%);
}

.hero__grid {
  position: relative;
  min-height: inherit;
  justify-content: space-between;
  gap: 40px;
  padding: 80px 42px 44px;
}

.hero__content,
.hero__visual {
  position: relative;
  z-index: 1;
}

.hero__content {
  width: min(100%, 470px);
  color: #f8f4ee;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero__kicker,
.eyebrow,
.hero__meta-label {
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 12px;
}

.hero__kicker {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 22px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.hero__content h1 {
  margin: 0;
  font-size: clamp(74px, 11vw, 116px);
  line-height: 0.9;
  letter-spacing: -0.05em;
}

.hero__subtitle {
  margin: 28px 0 0;
  max-width: 290px;
  font-size: 24px;
  line-height: 1.18;
}

.hero__body,
.about-copy,
.contact-copy {
  color: rgba(248, 244, 238, 0.82);
}

.hero__body {
  margin: 28px 0 0;
  max-width: 430px;
  font-size: 18px;
}

.hero__actions,
.contact-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

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

.button--ghost {
  color: #f8f4ee;
  background: rgba(255, 255, 255, 0.05);
}

.hero__visual {
  width: min(100%, 500px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero__frame {
  width: 100%;
  min-height: 450px;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero__meta {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 18px 20px;
  border-radius: 24px;
  background: rgba(245, 241, 234, 0.96);
  color: var(--ink);
  box-shadow: var(--shadow-soft);
}

.hero__meta strong {
  display: block;
  margin-top: 8px;
  font-size: 16px;
  line-height: 1.4;
}

.section {
  padding: 48px 0 28px;
}

.section--compact {
  padding-bottom: 72px;
}

.section-header,
.contact-panel,
.about-panel {
  justify-content: space-between;
  gap: 28px;
}

.section-header {
  align-items: end;
  margin-bottom: 22px;
}

.section-header--compact {
  max-width: 860px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--soft);
}

.section-heading {
  margin: 0;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
}

.link-arrow::after {
  content: "\2197";
}

.project-grid,
.journal-grid,
.service-grid {
  display: grid;
  gap: 18px;
}

.project-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.project-card,
.journal-card,
.about-panel,
.contact-panel {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.project-card,
.journal-card {
  padding: 22px;
  border-radius: var(--radius-md);
}

.project-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.project-card__media {
  aspect-ratio: 4 / 3;
  border-radius: 22px;
  background:
    linear-gradient(160deg, rgba(110, 135, 146, 0.34), rgba(255, 255, 255, 0.08)),
    #ccd5da;
}

.project-card__media--quiet-civic-interior {
  background:
    linear-gradient(135deg, rgba(32, 40, 42, 0.08), rgba(255, 255, 255, 0.18)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.42) 0 28px, rgba(91, 111, 120, 0.18) 28px 30px),
    linear-gradient(180deg, #c8d2d5, #eef0ed);
}

.project-card__media--residential-atmosphere-study {
  background:
    linear-gradient(160deg, rgba(41, 57, 63, 0.2), rgba(255, 255, 255, 0.1)),
    radial-gradient(circle at 74% 26%, rgba(236, 196, 118, 0.45), transparent 20%),
    linear-gradient(180deg, #8fa0a7, #d4d6cd);
}

.project-card__media--cultural-hall-preview {
  background:
    linear-gradient(130deg, rgba(255, 255, 255, 0.36), rgba(87, 101, 108, 0.18)),
    repeating-linear-gradient(-18deg, rgba(73, 91, 99, 0.22) 0 16px, transparent 16px 52px),
    #d6d8d1;
}

.project-card__title,
.journal-card h3 {
  margin: 0;
  font-size: 24px;
  letter-spacing: -0.03em;
}

.project-card__meta,
.journal-card p,
.about-panel__quote span,
.contact-copy {
  color: var(--muted);
}

.project-card__meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.project-card__desc {
  margin: 0;
  font-size: 16px;
  color: var(--muted);
}

.about-panel,
.contact-panel {
  padding: 28px;
  border-radius: 32px;
}

.about-panel__quote {
  width: min(100%, 360px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 12px 18px 12px 0;
}

.about-panel__quote p {
  margin: 0;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.about-panel__body {
  width: min(100%, 700px);
}

.about-copy {
  columns: 2;
  column-gap: 24px;
  color: var(--muted);
}

.about-copy p {
  margin-top: 0;
}

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

.service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
  min-height: 230px;
  padding: 24px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.service-card h3 {
  margin: 0 0 18px;
  font-size: 25px;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.service-card p {
  margin: 0;
  color: var(--muted);
}

.journal-card {
  min-height: 220px;
}

.journal-card time {
  display: block;
  margin-bottom: 32px;
  color: var(--soft);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 12px;
}

.contact-panel {
  align-items: center;
}

.contact-copy {
  width: min(100%, 430px);
}

.site-footer {
  padding: 0 0 34px;
}

.site-footer__inner {
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.page-hero {
  padding: 76px 0 28px;
}

.page-hero__inner {
  max-width: 980px;
}

.page-hero h1 {
  margin: 0;
  max-width: 900px;
  font-size: clamp(52px, 7vw, 92px);
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.page-hero p:not(.eyebrow) {
  max-width: 620px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 19px;
}

.page-hero--journal h1 {
  max-width: 1040px;
}

.project-list,
.article-list {
  display: grid;
  gap: 22px;
}

.feature-project {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 28px;
  align-items: center;
  padding: 24px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.feature-project--reverse {
  grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.15fr);
}

.feature-project--reverse .visual {
  order: 2;
}

.feature-project h2,
.article-preview h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.feature-project p:not(.eyebrow),
.article-preview p {
  color: var(--muted);
  font-size: 18px;
}

.visual {
  min-height: 460px;
  border-radius: 26px;
  border: 1px solid rgba(21, 19, 17, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.visual--civic {
  background:
    linear-gradient(180deg, transparent 0 62%, rgba(244, 240, 231, 0.72) 62%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.54) 0 42px, rgba(81, 98, 106, 0.16) 42px 45px),
    linear-gradient(135deg, #aebec6, #edf0eb);
}

.visual--housing {
  background:
    radial-gradient(circle at 78% 22%, rgba(241, 196, 118, 0.58), transparent 17%),
    linear-gradient(180deg, rgba(77, 97, 107, 0.12) 0 48%, rgba(245, 241, 234, 0.84) 48%),
    repeating-linear-gradient(0deg, rgba(31, 39, 41, 0.14) 0 18px, transparent 18px 62px),
    #a8b6bd;
}

.visual--hall {
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.05)),
    repeating-linear-gradient(-28deg, rgba(77, 97, 107, 0.2) 0 22px, transparent 22px 64px),
    radial-gradient(circle at 20% 20%, rgba(239, 231, 211, 0.7), transparent 24%),
    #c4ccd0;
}

.article-preview {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 28px;
  padding: 28px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.article-preview time {
  color: var(--soft);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
}

@media (max-width: 1100px) {
  .hero__grid,
  .about-panel,
  .contact-panel {
    flex-direction: column;
  }

  .hero__content,
  .hero__visual,
  .about-panel__quote,
  .about-panel__body,
  .contact-copy {
    width: 100%;
  }

  .project-grid,
  .journal-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .feature-project,
  .feature-project--reverse,
  .article-preview {
    grid-template-columns: 1fr;
  }

  .feature-project--reverse .visual {
    order: 0;
  }

  .about-copy {
    columns: 1;
  }
}

@media (max-width: 720px) {
  .shell {
    width: min(calc(100% - 28px), var(--shell));
  }

  .site-header__inner {
    min-height: 58px;
  }

  .site-banner {
    gap: 8px;
    min-height: 66px;
    padding: 12px 10px;
    font-size: 12px;
    letter-spacing: 0.12em;
  }

  .site-banner__icon {
    width: 24px;
    height: 24px;
    font-size: 14px;
  }

  .site-banner__text {
    min-height: 36px;
    padding: 6px 12px;
  }

  .brand {
    font-size: 18px;
  }

  .site-nav {
    display: none;
  }

  .hero {
    padding-top: 16px;
  }

  .hero__panel {
    min-height: auto;
    border-radius: 28px;
  }

  .hero__grid {
    padding: 28px 18px 18px;
    gap: 28px;
  }

  .hero__subtitle,
  .hero__body {
    max-width: none;
  }

  .hero__meta {
    position: static;
    margin-top: 16px;
    grid-template-columns: 1fr;
  }

  .hero__frame {
    min-height: 320px;
  }

  .about-panel,
  .contact-panel,
  .project-card,
  .journal-card,
  .service-card,
  .feature-project,
  .article-preview {
    padding: 20px;
  }

  .page-hero {
    padding-top: 42px;
  }

  .visual {
    min-height: 320px;
  }

  .site-footer__inner,
  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }
}
