:root {
  color-scheme: light;
  --bg: #efe8dd;
  --ink: #2b2b2b;
  --muted: #6a645b;
  --accent: #c01722;
  --accent-soft: rgba(192, 23, 34, 0.12);
  --surface: rgba(255, 251, 245, 0.82);
  --surface-strong: rgba(255, 255, 255, 0.92);
  --line: rgba(43, 43, 43, 0.12);
  --shadow: 0 18px 55px rgba(0, 0, 0, 0.1);
  --max: 1200px;
  --radius: 6px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(1200px 700px at 20% 10%, rgba(255, 255, 255, 0.65), transparent 55%),
    radial-gradient(900px 650px at 85% 0%, rgba(255, 255, 255, 0.35), transparent 55%),
    repeating-linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.025) 0,
      rgba(0, 0, 0, 0.025) 1px,
      transparent 1px,
      transparent 7px
    ),
    var(--bg);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  overflow-x: hidden;
}

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

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

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding-inline: 18px;
}

.announcement {
  border-bottom: 1px solid rgba(43, 43, 43, 0.08);
  background: rgba(239, 232, 221, 0.82);
}

.announcement__inner {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
  padding: 10px 18px;
  font-size: 0.88rem;
  color: rgba(43, 43, 43, 0.78);
}

.site-header {
  position: relative;
  z-index: 10;
  border-bottom: 1px solid rgba(43, 43, 43, 0.08);
  background: rgba(239, 232, 221, 0.7);
  backdrop-filter: blur(10px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand img {
  width: auto;
  height: 58px;
  object-fit: contain;
}

.brand__text {
  display: grid;
  line-height: 1.05;
}

.brand__text strong {
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand__text span {
  margin-top: 3px;
  font-size: 0.82rem;
  color: var(--muted);
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav__link {
  position: relative;
  padding-bottom: 2px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
  color: rgba(43, 43, 43, 0.88);
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav__link:hover::after,
.nav__link:focus-visible::after,
.nav__link.is-active::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-icons a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.4);
}

.social-icons svg,
.footer-social svg,
.social-list svg {
  width: 17px;
  height: 17px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-icons svg path,
.footer-social svg path,
.social-list svg path {
  fill: currentColor;
  stroke: none;
}

.social-icons svg rect,
.social-icons svg circle,
.footer-social svg rect,
.footer-social svg circle,
.social-list svg rect,
.social-list svg circle {
  fill: none;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.4);
  padding: 10px 12px;
  cursor: pointer;
}

.menu-panel {
  display: none;
  border-top: 1px solid var(--line);
  background: rgba(239, 232, 221, 0.95);
}

.menu-panel.is-open {
  display: block;
}

.page-title-strip {
  --page-title-height: 72px;
  --page-title-radius-left: 18px;
  --page-title-radius-right: 18px;
  padding: 0;
  margin-top: -1px;
}

.page-title-strip__inner {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.page-title-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 420px);
  min-height: var(--page-title-height);
  padding: 12px 28px 16px;
  border-radius: 0 0 var(--page-title-radius-right) var(--page-title-radius-left);
  background: #4c8b57;
  box-shadow: 0 12px 28px rgba(76, 139, 87, 0.16);
  text-align: center;
}

.page-title-pill__text {
  margin: 0;
  color: #fffdf8;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  line-height: 1.1;
}

.menu-panel__inner {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.menu-panel__links {
  display: grid;
  gap: 14px;
}

.menu-panel__links a {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
}

.site-main {
  padding-bottom: 34px;
}

.hero,
.page-hero,
.project-hero {
  padding: 28px 0 10px;
}

.hero--cinematic {
  position: relative;
  min-height: clamp(700px, 86vh, 940px);
  padding-top: 0;
  overflow: hidden;
}

.hero--cinematic::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.12), transparent 28%),
    radial-gradient(circle at 82% 12%, rgba(192, 23, 34, 0.11), transparent 22%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.18) 52%, rgba(0, 0, 0, 0.38));
}

.hero__grid,
.page-hero__grid,
.project-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.9fr);
  gap: 28px;
  align-items: stretch;
}

.hero--cinematic .hero__grid {
  position: relative;
  z-index: 2;
  min-height: inherit;
  grid-template-columns: minmax(0, 760px);
  align-items: end;
  justify-content: start;
  padding-top: 34px;
  padding-bottom: 34px;
}

.hero__copy,
.page-hero__copy,
.project-hero__copy {
  padding-top: 12px;
}

.hero--cinematic .hero__copy {
  align-self: end;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 251, 245, 0.72);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.hero--cinematic .hero__copy h1 {
  max-width: 12ch;
}

.hero--cinematic .hero__copy .lead {
  max-width: 50ch;
}

.hero__note {
  max-width: 48ch;
  margin: 18px 0 0;
  font-size: 0.84rem;
  line-height: 1.5;
  color: rgba(43, 43, 43, 0.68);
}

.hero__background {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__background .hero-media__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.14));
}

.eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.82rem;
  color: rgba(43, 43, 43, 0.6);
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 36px;
  height: 1px;
  margin-right: 10px;
  vertical-align: middle;
  background: currentColor;
}

h1,
h2,
h3,
blockquote {
  margin: 0;
  font-weight: 400;
  line-height: 0.95;
}

h1 {
  max-width: 11ch;
  font-size: clamp(42px, 6vw, 48px);
}

h2 {
  font-size: clamp(28px, 3.6vw, 44px);
}

h3 {
  font-size: 26px;
}

.lead {
  max-width: 62ch;
  margin: 18px 0 0;
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(43, 43, 43, 0.78);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
  cursor: pointer;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn--primary {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
}

.btn--secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.42);
  border-color: var(--line);
}

.btn--small {
  min-height: 38px;
  padding: 10px 14px;
  font-size: 0.78rem;
}

.hero__meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.hero__meta div,
.stat,
.info-card,
.text-card,
.quote-card,
.contact-card,
.detail-card,
.legal-article,
.cta-panel,
.panel {
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero__meta div {
  padding: 14px 16px;
}

.hero__meta span,
.stat span,
.project-meta span,
.social-list a,
.detail-card .eyebrow,
.contact-card .eyebrow,
.info-card .eyebrow,
.text-card .eyebrow,
.quote-card .eyebrow {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: rgba(43, 43, 43, 0.54);
}

.hero__meta strong {
  display: block;
  margin-top: 6px;
  font-weight: 400;
  line-height: 1.35;
}

.panel {
  position: relative;
  overflow: hidden;
  min-height: 420px;
}

.panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media {
  background: #1a1a1a;
}

.hero__background .hero-media__frame {
  position: absolute;
  inset: 0;
}

.hero-media__frame,
.hero-media__video,
.hero-media__image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.hero-media__video,
.hero-media__image {
  object-fit: cover;
  object-position: center center;
  transform: scale(1.02);
}

.hero-media__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.34)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.08), transparent 45%);
}

.panel__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 8px 12px;
  border: 1px solid rgba(43, 43, 43, 0.12);
  background: rgba(255, 255, 255, 0.82);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
}

.panel__caption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 16px 18px;
  border: 1px solid rgba(43, 43, 43, 0.12);
  background: rgba(239, 232, 221, 0.84);
}

.panel__caption strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1rem;
}

.strip {
  margin-top: 18px;
}

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

.stat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
}

.stat strong {
  font-size: 2rem;
  font-weight: 400;
  color: var(--accent);
}

.section {
  padding: 28px 0;
}

.section__heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.section__heading h2 {
  max-width: 14ch;
}

.text-link {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
}

.card-grid,
.project-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.project-card {
  display: block;
}

.project-card__media {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.4);
}

.project-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 250ms ease;
}

.project-card:hover .project-card__media img,
.project-card:focus-visible .project-card__media img {
  transform: scale(1.05);
}

.project-card__badge {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 7px 11px;
  border: 1px solid rgba(43, 43, 43, 0.14);
  background: rgba(255, 255, 255, 0.82);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.72rem;
}

.project-card__body {
  padding-top: 14px;
}

.project-card__body h3 {
  font-size: 1.45rem;
  margin-bottom: 6px;
}

.project-card__body p {
  margin: 0;
  color: rgba(43, 43, 43, 0.72);
  line-height: 1.55;
}

.cta-panel,
.info-card,
.text-card,
.quote-card,
.contact-card,
.detail-card,
.legal-article {
  padding: 26px;
}

.cta-panel {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.cta-panel__copy {
  max-width: 66ch;
}

.cta-panel__copy p {
  color: rgba(43, 43, 43, 0.72);
  line-height: 1.6;
}

.info-grid,
.text-grid,
.quote-grid,
.contact-grid,
.project-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

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

.info-card p,
.text-card p,
.quote-card p,
.contact-card p,
.detail-card p,
.legal-article p {
  line-height: 1.65;
  color: rgba(43, 43, 43, 0.72);
}

.quote-card blockquote {
  margin-top: 12px;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.08;
}

.quote-card--image {
  padding: 0;
  overflow: hidden;
  min-height: 320px;
}

.quote-card--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.social-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.social-list a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
}

.map-card {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  gap: 0;
  padding: 0;
  overflow: hidden;
}

.map-card__frame {
  min-height: 360px;
  background: #ded5c8;
}

.map-card__frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  border: 0;
  filter: grayscale(0.15) contrast(0.95) saturate(0.88);
}

.map-card__body {
  align-self: center;
  padding: clamp(24px, 4vw, 42px);
}

.map-card__body h2 {
  margin-top: 8px;
}

.page-hero--narrow .container {
  max-width: 900px;
}

.gallery-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 1fr);
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 6px;
  scrollbar-width: thin;
}

.gallery-card {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.35);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 250ms ease;
}

.gallery-card:hover img {
  transform: scale(1.05);
}

.gallery-card__label {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(43, 43, 43, 0.12);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
}

.gallery-rail--detail {
  grid-auto-columns: minmax(260px, 1fr);
}

.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.project-meta__item {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.45);
  padding: 12px 14px;
  min-width: 150px;
}

.project-meta__item strong {
  display: block;
  margin-top: 6px;
  font-weight: 400;
}

.project-hero__panel {
  min-height: 400px;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  background: rgba(255, 251, 245, 0.95);
  box-shadow: var(--shadow);
}

.cookie-banner[hidden] {
  display: none !important;
}

.cookie-banner__copy strong {
  display: block;
  margin-bottom: 4px;
}

.cookie-banner__copy p {
  margin: 0;
  color: rgba(43, 43, 43, 0.74);
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.site-footer {
  margin-top: 16px;
  border-top: 1px solid rgba(43, 43, 43, 0.08);
  background: rgba(239, 232, 221, 0.78);
}

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

.site-footer__column strong {
  display: block;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
}

.site-footer__column a,
.site-footer__column p {
  display: block;
  margin: 0 0 8px;
  color: rgba(43, 43, 43, 0.78);
  line-height: 1.6;
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(43, 43, 43, 0.1);
  padding: 18px 18px 24px;
  color: rgba(43, 43, 43, 0.62);
  font-size: 0.88rem;
}

.site-footer__credits {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.site-footer__credits a {
  color: inherit;
  text-decoration: none;
}

.site-footer__credits a:hover,
.site-footer__credits a:focus-visible {
  color: currentColor;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.legal-article h2 {
  margin-top: 20px;
  margin-bottom: 8px;
  font-size: 1.35rem;
  line-height: 1.15;
}

.legal-article p {
  max-width: 75ch;
}

.admin-page {
  padding-bottom: 42px;
}

.admin-hero {
  padding: 28px 0 18px;
}

.admin-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.7fr);
  gap: 24px;
  align-items: start;
}

.admin-auth,
.admin-panel {
  border: 1px solid var(--line);
  background: var(--surface-strong);
  box-shadow: var(--shadow);
}

.admin-auth {
  padding: 24px;
}

.admin-auth h2 {
  margin-bottom: 8px;
  font-size: clamp(28px, 3vw, 36px);
}

.admin-auth p {
  color: rgba(43, 43, 43, 0.74);
}

.admin-auth__form {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.admin-auth__form label,
.admin-editor__form label,
.admin-select {
  display: grid;
  gap: 8px;
  font-size: 0.9rem;
  color: rgba(43, 43, 43, 0.82);
}

.admin-auth__form input,
.admin-editor__form input,
.admin-editor__form textarea,
.admin-select select,
.admin-settings__form input {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.74);
  padding: 12px 14px;
  color: var(--ink);
  font: inherit;
  border-radius: var(--radius);
}

.admin-settings__form {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

.admin-message {
  min-height: 1.25em;
  color: var(--accent);
}

.admin-layout {
  display: grid;
  grid-template-columns: minmax(240px, 300px) minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.admin-sidebar {
  display: grid;
  gap: 18px;
  position: sticky;
  top: 18px;
}

.admin-content {
  display: grid;
  gap: 18px;
}

.admin-panel {
  padding: 22px;
}

.admin-note {
  margin-top: 14px;
  font-size: 0.8rem;
  line-height: 1.55;
  color: rgba(43, 43, 43, 0.66);
}

.admin-links {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.admin-links a {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
}

.admin-kpi-grid {
  display: grid;
  gap: 12px;
}

.admin-kpi {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: rgba(239, 232, 221, 0.4);
}

.admin-kpi span,
.admin-select,
.admin-muted {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.74rem;
}

.admin-kpi strong {
  font-size: 2rem;
  font-weight: 400;
}

.admin-kpi small,
.admin-muted {
  color: rgba(43, 43, 43, 0.62);
}

.admin-help {
  margin: -6px 0 0;
  font-size: 0.8rem;
  line-height: 1.45;
  color: rgba(43, 43, 43, 0.64);
}

.admin-media-preview {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  margin-top: 18px;
  padding: 14px;
  border: 1px solid var(--line);
  background: rgba(239, 232, 221, 0.42);
}

.admin-media-preview img {
  width: 96px;
  height: 72px;
  object-fit: cover;
  border: 1px solid rgba(43, 43, 43, 0.08);
}

.admin-media-preview strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.92rem;
}

.admin-media-preview p {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.45;
  color: rgba(43, 43, 43, 0.68);
}

.admin-media-preview small {
  display: block;
  margin-top: 6px;
  font-size: 0.76rem;
  color: rgba(43, 43, 43, 0.52);
  word-break: break-word;
}

.table-wrap {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table th,
.admin-table td {
  padding: 14px 10px;
  text-align: left;
  border-bottom: 1px solid rgba(43, 43, 43, 0.1);
  vertical-align: top;
}

.admin-table th {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  color: rgba(43, 43, 43, 0.58);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border: 1px solid rgba(43, 43, 43, 0.12);
  background: rgba(255, 255, 255, 0.78);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
}

.admin-editor__top {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

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

.admin-editor__form textarea {
  resize: vertical;
  min-height: 112px;
}

.admin-span-2 {
  grid-column: span 2;
}

.admin-inquiry-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.admin-inquiry {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.66);
}

.admin-inquiry__head,
.admin-inquiry__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.admin-inquiry__head p,
.admin-inquiry__foot time,
.admin-inquiry__project {
  margin: 0;
  color: rgba(43, 43, 43, 0.68);
}

.admin-inquiry__project {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.76rem;
}

@media (max-width: 1080px) {
  .hero__grid,
  .page-hero__grid,
  .project-hero__grid {
    grid-template-columns: 1fr;
  }

  .card-grid,
  .project-list,
  .text-grid,
  .info-grid,
  .quote-grid,
  .contact-grid,
  .project-detail-grid,
  .site-footer__inner,
  .strip__grid,
  .hero__meta {
    grid-template-columns: 1fr 1fr;
  }

  .cta-panel {
    flex-direction: column;
    align-items: flex-start;
  }

  .admin-hero__grid,
  .admin-layout,
  .admin-inquiry-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .announcement__inner {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .nav,
  .header-actions .social-icons,
  .header-actions .btn {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-header__inner {
    align-items: center;
  }

  .hero__meta,
  .strip__grid,
  .card-grid,
  .project-list,
  .text-grid,
  .info-grid,
  .quote-grid,
  .contact-grid,
  .project-detail-grid,
  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .section__heading {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .map-card__frame {
    min-height: 280px;
  }

  .hero--cinematic {
    min-height: 640px;
  }

  .hero--cinematic .hero__grid {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .hero--cinematic .hero__copy {
    padding: 22px;
  }

  .admin-media-preview {
    grid-template-columns: 1fr;
  }

  .admin-media-preview img {
    width: 100%;
    height: 180px;
  }

  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    flex-direction: column;
    align-items: flex-start;
  }

  .admin-editor__form {
    grid-template-columns: 1fr;
  }

  .admin-span-2 {
    grid-column: span 1;
  }

  .admin-sidebar {
    position: static;
  }
}

/* Premium real estate direction */
:root {
  --bg: #f7f3ed;
  --ink: #242321;
  --muted: #746f66;
  --accent: #8b6f45;
  --accent-soft: rgba(139, 111, 69, 0.14);
  --surface: rgba(255, 253, 248, 0.9);
  --surface-strong: #fffdf8;
  --line: rgba(36, 35, 33, 0.13);
  --shadow: 0 24px 70px rgba(36, 35, 33, 0.09);
  --max: 1240px;
}

body {
  background: var(--bg);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

h1,
h2,
h3,
blockquote,
.hero__slogan {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

.announcement {
  background: #f1ebe2;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(247, 243, 237, 0.72);
  border-bottom: 1px solid rgba(36, 35, 33, 0.06);
  backdrop-filter: blur(14px);
  transition:
    background 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.site-header.is-scrolled,
body.is-menu-open .site-header {
  background: rgba(255, 253, 248, 0.96);
  border-color: rgba(36, 35, 33, 0.12);
  box-shadow: 0 16px 40px rgba(36, 35, 33, 0.08);
}

.site-header__inner {
  padding-block: 12px;
}

.brand img {
  width: 132px;
  height: 64px;
  object-fit: contain;
  object-position: center;
}

.nav__link {
  color: rgba(36, 35, 33, 0.78);
  transition: color 180ms ease;
}

.nav__link:hover,
.nav__link:focus-visible,
.nav__link.is-active {
  color: var(--ink);
}

.social-icons a,
.footer-social {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
}

.social-icons a {
  border-color: rgba(36, 35, 33, 0.14);
  background: rgba(255, 253, 248, 0.62);
  color: var(--ink);
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.social-icons a:hover,
.social-icons a:focus-visible {
  border-color: rgba(139, 111, 69, 0.52);
  background: var(--surface-strong);
  transform: translateY(-1px);
}

.btn {
  min-height: 46px;
  padding-inline: 20px;
  border-radius: 4px;
  font-weight: 500;
}

.btn--primary {
  background: #2f2d29;
  border-color: #2f2d29;
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background: #161512;
  border-color: #161512;
}

.btn--secondary {
  background: rgba(255, 253, 248, 0.54);
  border-color: rgba(36, 35, 33, 0.16);
}

.home-manifesto {
  min-height: clamp(620px, 76vh, 820px);
  padding-top: 0;
}

.hero--cinematic::before {
  background:
    linear-gradient(90deg, rgba(247, 243, 237, 0.9), rgba(247, 243, 237, 0.62) 42%, rgba(36, 35, 33, 0.18)),
    linear-gradient(180deg, rgba(247, 243, 237, 0.18), rgba(36, 35, 33, 0.24));
}

.hero-media__scrim,
.hero__background .hero-media__frame::after {
  background:
    linear-gradient(90deg, rgba(247, 243, 237, 0.86), rgba(247, 243, 237, 0.48) 44%, rgba(36, 35, 33, 0.16)),
    linear-gradient(180deg, rgba(247, 243, 237, 0.08), rgba(36, 35, 33, 0.2));
}

.hero--cinematic .hero__grid {
  grid-template-columns: minmax(0, 760px) minmax(280px, 360px);
  align-items: end;
  justify-content: space-between;
  gap: 42px;
  padding-top: 80px;
  padding-bottom: 54px;
}

.hero--cinematic .hero__copy {
  align-self: end;
  padding: 0;
  border: 0;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
}

.hero--cinematic .hero__copy h1 {
  max-width: 12ch;
  font-size: clamp(62px, 9vw, 126px);
  line-height: 0.9;
}

.hero__slogan {
  margin: 18px 0 0;
  font-size: clamp(30px, 4vw, 56px);
  line-height: 1;
  color: #5f513b;
}

.hero--cinematic .hero__copy .lead,
.hero__intro {
  max-width: 64ch;
}

.hero__intro {
  margin: 18px 0 0;
  color: rgba(36, 35, 33, 0.76);
}

.hero__facts {
  display: grid;
  gap: 1px;
  border: 1px solid rgba(255, 253, 248, 0.32);
  background: rgba(36, 35, 33, 0.36);
  color: #fffdf8;
  backdrop-filter: blur(10px);
}

.hero__facts div {
  padding: 20px;
  background: rgba(36, 35, 33, 0.28);
}

.hero__facts span,
.project-card__meta,
.brand-visual__frame figcaption span,
.land-lead__points span {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
}

.hero__facts span {
  color: rgba(255, 253, 248, 0.66);
}

.hero__facts strong {
  display: block;
  margin-top: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.28rem;
  font-weight: 400;
  line-height: 1.25;
}

.section,
.section--quiet {
  padding: clamp(54px, 7vw, 104px) 0;
}

.brand-visual {
  background: #fffdf8;
}

.brand-visual__frame {
  position: relative;
  min-height: clamp(360px, 58vw, 680px);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(36, 35, 33, 0.1);
  background: #ddd4c7;
}

.brand-visual__frame img {
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.brand-visual__frame figcaption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  max-width: 520px;
  padding: 20px 22px;
  background: rgba(255, 253, 248, 0.9);
  border: 1px solid rgba(36, 35, 33, 0.12);
}

.brand-visual__frame figcaption span {
  color: var(--accent);
}

.brand-visual__frame figcaption strong {
  display: block;
  margin-top: 6px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 400;
  line-height: 1.06;
}

.intro-editorial {
  background: #f7f3ed;
}

.intro-editorial__grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(420px, 1fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
}

.intro-editorial h2 {
  max-width: 12ch;
  font-size: clamp(40px, 5.1vw, 76px);
  line-height: 0.95;
}

.intro-editorial__copy {
  display: grid;
  gap: 16px;
}

.intro-editorial__copy p,
.section__heading p,
.land-lead__copy p,
.land-lead__points p {
  margin: 0;
  color: rgba(36, 35, 33, 0.72);
}

.intro-editorial__card {
  position: relative;
  display: grid;
  gap: 18px;
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid rgba(36, 35, 33, 0.11);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.92), rgba(245, 238, 228, 0.72));
  box-shadow: 0 24px 70px rgba(36, 35, 33, 0.07);
}

.intro-editorial__card::before {
  content: "";
  position: absolute;
  top: 28px;
  left: -42px;
  width: 84px;
  height: 1px;
  background: var(--accent);
}

.intro-editorial__card p {
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.75;
}

.intro-editorial__values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(36, 35, 33, 0.1);
  background: rgba(36, 35, 33, 0.1);
}

.intro-editorial__values span {
  padding: 16px 14px;
  background: rgba(255, 253, 248, 0.62);
  color: rgba(36, 35, 33, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.72rem;
  line-height: 1.45;
}

.trust-strip {
  margin-top: 0;
  background: #fffdf8;
}

.stat {
  min-height: 132px;
  align-items: flex-end;
  border: 0;
  border-top: 1px solid rgba(36, 35, 33, 0.16);
  background: transparent;
  box-shadow: none;
}

.stat strong {
  color: var(--accent);
  font-family: Georgia, "Times New Roman", serif;
}

.projects-showcase {
  background: #f7f3ed;
}

.section__heading {
  margin-bottom: clamp(28px, 4vw, 54px);
}

.section__heading h2 {
  max-width: none;
  font-size: clamp(34px, 5vw, 68px);
}

.card-grid,
.project-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.2vw, 30px);
}

.project-card {
  position: relative;
  display: grid;
  min-height: 100%;
  border-top: 1px solid rgba(36, 35, 33, 0.14);
  color: var(--ink);
}

.project-card__media {
  margin-top: 16px;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(36, 35, 33, 0.1);
}

.project-card__badge {
  top: 12px;
  left: 12px;
  right: auto;
  background: rgba(255, 253, 248, 0.9);
  color: #3b3328;
}

.project-card__body {
  display: grid;
  gap: 10px;
  padding: 18px 0 0;
}

.project-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: rgba(36, 35, 33, 0.54);
}

.project-card__body h3 {
  margin: 0;
  font-size: clamp(28px, 3vw, 42px);
}

.project-card__body p {
  color: rgba(36, 35, 33, 0.68);
}

.project-card__link {
  width: fit-content;
  margin-top: 8px;
  border-bottom: 1px solid currentColor;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.76rem;
}

.project-card:hover .project-card__link,
.project-card:focus-visible .project-card__link {
  color: var(--ink);
}

.land-lead {
  background: #ded5c8;
  padding-bottom: 0;
}

.land-lead__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.85fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: center;
}

.land-lead__copy h2 {
  max-width: 13ch;
  font-size: clamp(42px, 5.8vw, 82px);
}

.land-lead__copy p {
  max-width: 62ch;
  margin-top: 22px;
}

.land-lead__points {
  display: grid;
  gap: 1px;
  border: 1px solid rgba(36, 35, 33, 0.12);
  background: rgba(36, 35, 33, 0.12);
}

.land-lead__points article {
  padding: 24px;
  background: rgba(255, 253, 248, 0.72);
}

.land-lead__points span {
  color: var(--accent);
}

.land-lead__points strong {
  display: block;
  margin-top: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 400;
}

.land-lead__points p {
  margin-top: 8px;
}

.site-footer {
  margin-top: 0;
  background: #242321;
  color: #f7f3ed;
  border-top: 1px solid rgba(247, 243, 237, 0.2);
}

.site-footer__inner {
  grid-template-columns: minmax(260px, 1.35fr) repeat(4, minmax(150px, 0.7fr));
  gap: clamp(18px, 3vw, 38px);
  padding-block: clamp(20px, 3vw, 32px);
}

.site-footer__column strong {
  color: #fffdf8;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 400;
}

.site-footer__brand strong {
  font-size: clamp(24px, 3vw, 34px);
}

.site-footer__column a,
.site-footer__column p {
  color: rgba(247, 243, 237, 0.72);
}

.site-footer__column a:hover,
.site-footer__column a:focus-visible {
  color: #fffdf8;
}

.site-footer__socials {
  display: grid;
  gap: 6px;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-social::first-letter {
  text-transform: uppercase;
}

.footer-social span {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-style: normal;
}

.site-footer__bottom {
  border-color: rgba(247, 243, 237, 0.16);
  padding-top: 12px;
  padding-bottom: 16px;
  color: rgba(247, 243, 237, 0.56);
}

.project-template {
  background: #fffdf8;
}

.project-hero__copy h1 {
  font-size: clamp(52px, 7vw, 104px);
}

.project-hero__panel,
.detail-card,
.text-card,
.gallery-card {
  border-color: rgba(36, 35, 33, 0.12);
}

.project-template__info {
  background: #f7f3ed;
}

.js-ready [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 620ms ease,
    transform 620ms ease;
}

.js-ready [data-reveal].is-visible,
[data-reveal] {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .js-ready [data-reveal],
  .project-card__media img,
  .btn,
  .site-header,
  .social-icons a {
    transition: none;
  }

  .js-ready [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1080px) {
  .hero--cinematic .hero__grid,
  .intro-editorial__grid,
  .land-lead__grid {
    grid-template-columns: 1fr;
  }

  .intro-editorial h2 {
    max-width: 14ch;
  }

  .intro-editorial__card::before {
    left: 28px;
    top: -1px;
    width: 96px;
  }

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

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

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

@media (max-width: 760px) {
  .page-title-strip {
    margin-top: -1px;
  }

  .page-title-pill {
    padding-inline: 20px;
    padding-bottom: 14px;
  }

  .site-header__inner {
    padding-block: 10px;
  }

  .brand img {
    width: 150px;
    height: 54px;
  }

  .menu-toggle {
    display: inline-flex;
    position: relative;
    z-index: 40;
  }

  .menu-panel {
    position: fixed;
    inset: 73px 0 auto 0;
    display: block;
    border-top: 1px solid rgba(36, 35, 33, 0.1);
    background: rgba(255, 253, 248, 0.98);
    box-shadow: 0 24px 70px rgba(36, 35, 33, 0.14);
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition:
      transform 240ms ease,
      opacity 240ms ease;
  }

  .menu-panel.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .menu-panel__inner {
    padding-block: 24px;
  }

  .menu-panel__links {
    gap: 18px;
  }

  .menu-panel__links a {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.6rem;
    letter-spacing: 0;
    text-transform: none;
  }

  .home-manifesto {
    min-height: auto;
  }

  .hero--cinematic .hero__grid {
    padding-top: 58px;
    padding-bottom: 42px;
  }

  .hero--cinematic .hero__copy h1 {
    font-size: clamp(54px, 18vw, 82px);
  }

  .hero__facts,
  .strip__grid,
  .card-grid,
  .project-list,
  .intro-editorial__values,
  .land-lead__points,
  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .map-card__frame {
    min-height: 300px;
  }

  .brand-visual__frame figcaption {
    position: static;
    max-width: none;
    border-inline: 0;
    border-bottom: 0;
  }

  .project-card__media {
    aspect-ratio: 5 / 4;
  }

  .project-card__meta {
    flex-direction: column;
    gap: 4px;
  }
}

.admin-inline-toolbar {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border: 1px solid rgba(36, 35, 33, 0.14);
  background: rgba(255, 253, 248, 0.96);
  box-shadow: 0 18px 50px rgba(36, 35, 33, 0.16);
  backdrop-filter: blur(12px);
}

.admin-inline-toolbar__status {
  padding-left: 8px;
  color: rgba(36, 35, 33, 0.68);
  font-size: 0.84rem;
}

.admin-session-pill {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  display: inline-grid;
  gap: 1px;
  min-width: 104px;
  padding: 8px 12px;
  border: 1px solid rgba(36, 35, 33, 0.14);
  background: rgba(255, 253, 248, 0.96);
  color: #242321;
  text-decoration: none;
  box-shadow: 0 14px 36px rgba(36, 35, 33, 0.14);
  backdrop-filter: blur(12px);
}

.admin-session-pill span {
  color: rgba(36, 35, 33, 0.62);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.62rem;
  line-height: 1.1;
}

.admin-session-pill strong {
  font-size: 0.9rem;
  line-height: 1.15;
}

.admin-session-pill:hover,
.admin-session-pill:focus-visible {
  border-color: rgba(139, 111, 69, 0.42);
  background: #fffdf8;
  color: #161512;
}

.is-inline-editing .is-inline-editable {
  outline: 1px dashed rgba(139, 111, 69, 0.72);
  outline-offset: 4px;
  background: rgba(255, 253, 248, 0.56);
  cursor: text;
}

.is-inline-editing .is-inline-editable:focus {
  outline: 2px solid rgba(139, 111, 69, 0.9);
  background: rgba(255, 253, 248, 0.86);
}

@media (max-width: 760px) {
  .admin-inline-toolbar {
    left: 12px;
    right: 12px;
    bottom: 12px;
    justify-content: space-between;
  }

  .admin-session-pill {
    top: 8px;
    left: 8px;
    min-width: 92px;
    padding: 7px 10px;
  }
}

/* Portfolio refresh */
body {
  background: #f7f6f2;
}

.portfolio-page,
.project-detail-page,
.land-page,
.contact-page,
.about-page {
  background: #f7f6f2;
}

.page-hero--portfolio,
.page-hero--land,
.page-hero--contact {
  background: #f7f6f2;
}

.portfolio-section {
  background: #f7f6f2;
}

.portfolio-section--quiet {
  background: #ffffff;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 34px);
}

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

.portfolio-tile {
  display: grid;
  min-height: 100%;
  color: #171717;
  border-top: 1px solid rgba(0, 0, 0, 0.18);
  background: transparent;
}

a.portfolio-tile:hover .portfolio-tile__media img,
a.portfolio-tile:focus-visible .portfolio-tile__media img {
  transform: scale(1.04);
}

a.portfolio-tile:hover .portfolio-tile__body strong,
a.portfolio-tile:focus-visible .portfolio-tile__body strong {
  color: #000;
}

.portfolio-tile__media {
  position: relative;
  margin-top: 16px;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: #dedbd2;
}

.portfolio-grid--current .portfolio-tile__media {
  aspect-ratio: 16 / 10;
}

.portfolio-tile__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.1);
  transition: transform 260ms ease;
}

.portfolio-tile__badge {
  position: absolute;
  left: 14px;
  top: 14px;
  padding: 8px 11px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.12);
  color: #111;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.68rem;
}

.portfolio-tile__body {
  display: grid;
  gap: 8px;
  padding-top: 18px;
}

.portfolio-tile__body span,
.portfolio-tile__body strong {
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.72rem;
}

.portfolio-tile__body span {
  color: rgba(0, 0, 0, 0.55);
}

.portfolio-tile__body h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4vw, 58px);
  font-weight: 400;
  line-height: 0.95;
}

.portfolio-tile__body p {
  margin: 0;
  color: rgba(0, 0, 0, 0.62);
}

.portfolio-tile__body strong {
  width: fit-content;
  margin-top: 8px;
  border-bottom: 1px solid currentColor;
  color: rgba(0, 0, 0, 0.62);
}

.portfolio-empty {
  grid-column: 1 / -1;
  padding: 28px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #fff;
}

.project-sales-section {
  padding-top: 0;
  background: #fff;
}

.project-sales-grid,
.lead-form-grid,
.contact-form-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
}

.project-highlight-card {
  min-height: 180px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(0, 0, 0, 0.14);
  background: #f7f6f2;
}

.project-highlight-card--dark {
  background: #171717;
  color: #fff;
}

.project-highlight-card h2 {
  margin: 10px 0 0;
  font-size: clamp(30px, 3.5vw, 54px);
}

.project-gallery-viewer {
  display: grid;
  gap: 16px;
}

.project-gallery-stage {
  position: relative;
  display: grid;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #dedbd2;
}

.project-gallery-stage__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-gallery-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 50%;
  background: rgba(23, 23, 23, 0.58);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.project-gallery-nav:hover,
.project-gallery-nav:focus-visible {
  background: rgba(23, 23, 23, 0.82);
  transform: translateY(-50%) scale(1.04);
}

.project-gallery-nav--prev {
  left: 16px;
}

.project-gallery-nav--next {
  right: 16px;
}

.project-gallery-thumbs {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(132px, 1fr);
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
}

.project-gallery-thumb {
  position: relative;
  padding: 0;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #dedbd2;
  cursor: pointer;
}

.project-gallery-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 3px solid transparent;
  pointer-events: none;
  transition: border-color 180ms ease;
}

.project-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.16);
  transition:
    filter 180ms ease,
    transform 180ms ease;
}

.project-gallery-thumb:hover img,
.project-gallery-thumb:focus-visible img,
.project-gallery-thumb.is-active img {
  filter: grayscale(0);
  transform: scale(1.03);
}

.project-gallery-thumb.is-active::after {
  border-color: #171717;
}

.site-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(0, 0, 0, 0.14);
  background: #fff;
}

.site-form label {
  display: grid;
  gap: 8px;
  color: rgba(0, 0, 0, 0.7);
  font-size: 0.92rem;
}

.site-form input,
.site-form select,
.site-form textarea {
  width: 100%;
  min-height: 54px;
  padding: 14px 15px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 0;
  background: #f9f8f4;
  color: #111;
  font: inherit;
}

.site-form textarea {
  resize: vertical;
  line-height: 1.5;
}

.contact-side {
  display: grid;
  gap: 12px;
  padding: clamp(24px, 4vw, 42px);
  background: #171717;
  color: #fff;
}

.contact-side h2 {
  margin: 0;
}

.contact-side a,
.contact-side p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-side .social-list a {
  color: #fff;
}

.mobile-quick-contact {
  display: none;
}

.mobile-quick-contact__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #fff;
  color: #171717;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 700;
}

.mobile-quick-contact__link--primary {
  background: #171717;
  color: #fff;
}

.chapter-list {
  display: grid;
  gap: 1px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  background: rgba(0, 0, 0, 0.14);
}

.chapter-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.45fr) minmax(0, 1fr);
  gap: clamp(20px, 4vw, 64px);
  padding: clamp(26px, 4vw, 48px);
  background: #fff;
}

.chapter-card h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 58px);
}

.chapter-card p:last-child {
  margin: 0;
  color: rgba(0, 0, 0, 0.68);
  line-height: 1.7;
}

.personnel-section {
  background: #fff;
}

.personnel-grid {
  display: grid;
  gap: 18px;
}

.person-card {
  position: relative;
  display: grid;
  grid-template-columns: 156px minmax(0, 1fr);
  gap: 26px;
  align-items: center;
  max-width: 920px;
  padding: 18px 26px 18px 18px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: #f2f2f0;
}

.person-card::after {
  content: "";
  position: absolute;
  right: 22px;
  top: 50%;
  width: 240px;
  height: 120px;
  background: url("./Webimages/Logo.png") center / contain no-repeat;
  opacity: 0.035;
  transform: translateY(-50%);
  pointer-events: none;
}

.person-card__photo {
  position: relative;
  z-index: 1;
  width: 150px;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 50%;
  background:
    linear-gradient(rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.04)),
    url("./Webimages/Logo.png") center / 72% no-repeat,
    #d8d8d4;
}

.person-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  mix-blend-mode: multiply;
}

.person-card__body {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
}

.person-card__body h3 {
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.person-card__roles {
  margin: 0;
  color: rgba(0, 0, 0, 0.78);
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.2;
}

.person-card__contact {
  position: relative;
  width: fit-content;
  padding-left: 36px;
  color: rgba(0, 0, 0, 0.76);
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.2;
}

.person-card__contact::before {
  position: absolute;
  left: 0;
  top: 50%;
  color: #df1f2d;
  font-size: 24px;
  transform: translateY(-50%);
}

.person-card__contact--phone::before {
  content: "☎";
}

.person-card__contact--mail::before {
  content: "✉";
}

@media (max-width: 980px) {
  .portfolio-grid,
  .portfolio-grid--current,
  .project-sales-grid,
  .lead-form-grid,
  .contact-form-grid,
  .chapter-card,
  .person-card {
    grid-template-columns: 1fr;
  }

  .person-card {
    max-width: none;
    justify-items: start;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 76px;
    font-size: 17px;
    line-height: 1.65;
  }

  .container {
    padding-inline: 16px;
  }

  .announcement__inner {
    gap: 10px;
    padding-block: 8px;
    font-size: 0.9rem;
  }

  .brand img {
    width: 116px;
    height: auto;
    max-height: 56px;
  }

  .page-title-pill {
    width: 100%;
    padding-inline: 18px;
  }

  .page-title-pill__text {
    font-size: 1.35rem;
  }

  .hero--cinematic {
    min-height: auto;
  }

  .hero--cinematic .hero__grid,
  .page-hero__grid,
  .project-hero__grid {
    gap: 28px;
    padding-top: 34px;
    padding-bottom: 38px;
  }

  .hero--cinematic .hero__copy h1,
  .page-hero__copy h1,
  .project-hero__copy h1 {
    font-size: clamp(42px, 14vw, 64px);
    line-height: 0.96;
  }

  .hero__slogan {
    font-size: clamp(26px, 9vw, 38px);
  }

  .lead,
  .hero__intro {
    font-size: 1rem;
    line-height: 1.7;
  }

  .button-row,
  .contact-form-grid .site-form {
    gap: 10px;
  }

  .button-row,
  .project-hero__copy .button-row {
    flex-direction: column;
    align-items: stretch;
  }

  .btn,
  .site-form button[type="submit"] {
    width: 100%;
    min-height: 52px;
    padding: 14px 16px;
    white-space: normal;
    text-align: center;
  }

  .project-meta {
    display: grid;
    grid-template-columns: 1fr;
  }

  .project-meta__item {
    min-width: 0;
  }

  .portfolio-grid,
  .portfolio-grid--current {
    gap: 30px;
  }

  .portfolio-tile__body h3 {
    font-size: clamp(30px, 11vw, 46px);
    line-height: 1;
  }

  .portfolio-tile__badge {
    max-width: calc(100% - 28px);
    white-space: normal;
  }

  .project-gallery-stage {
    aspect-ratio: 4 / 3;
  }

  .project-gallery-nav {
    width: 40px;
    height: 40px;
    font-size: 1.7rem;
  }

  .project-gallery-nav--prev {
    left: 10px;
  }

  .project-gallery-nav--next {
    right: 10px;
  }

  .project-gallery-thumbs {
    grid-auto-columns: minmax(96px, 42vw);
  }

  .site-form,
  .contact-side {
    padding: 20px;
  }

  .site-form input,
  .site-form select,
  .site-form textarea {
    min-height: 56px;
    font-size: 1rem;
  }

  .contact-side {
    gap: 10px;
  }

  .contact-side h2 {
    font-size: clamp(28px, 10vw, 42px);
  }

  .person-card {
    padding: 18px;
  }

  .person-card__photo {
    width: 132px;
  }

  .mobile-quick-contact {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 45;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    padding: 10px;
    border-top: 1px solid rgba(0, 0, 0, 0.12);
    background: rgba(247, 246, 242, 0.94);
    box-shadow: 0 -12px 34px rgba(0, 0, 0, 0.14);
    backdrop-filter: blur(12px);
  }

  .cookie-banner {
    bottom: 82px;
  }
}
