:root {
  --ink: #17231d;
  --pine: #244f3b;
  --moss: #6c7f46;
  --clay: #b75f3c;
  --gold: #d6a84f;
  --paper: #f7f8f4;
  --mist: #e7ece3;
  --line: #cfd8ce;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(23, 35, 29, 0.16);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 52px);
  color: var(--white);
  transition: background 200ms ease, box-shadow 200ms ease, color 200ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(247, 248, 244, 0.96);
  color: var(--ink);
  box-shadow: 0 10px 35px rgba(23, 35, 29, 0.12);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0;
}

.brand img {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  object-fit: cover;
}

.site-header.is-scrolled .brand img,
.site-header.is-open .brand img {
  border-color: var(--line);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  text-decoration: none;
}

.nav-cta {
  padding: 10px 16px;
  border: 1px solid currentColor;
  border-radius: var(--radius);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  background: transparent;
  color: inherit;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(23, 35, 29, 0.82) 0%, rgba(23, 35, 29, 0.54) 42%, rgba(23, 35, 29, 0.12) 100%),
    linear-gradient(0deg, rgba(23, 35, 29, 0.66) 0%, rgba(23, 35, 29, 0.08) 45%);
}

.hero-content {
  position: relative;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 130px 0 70px;
}

.eyebrow,
.section-kicker,
.label {
  margin: 0 0 12px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--gold);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(58px, 11vw, 132px);
  font-weight: 500;
  overflow-wrap: break-word;
}

h2 {
  max-width: 820px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 500;
}

h3 {
  font-size: 24px;
}

.hero-copy {
  max-width: 620px;
  font-size: 20px;
  overflow-wrap: break-word;
}

.hero-address {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: var(--radius);
  text-decoration: none;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button.primary {
  background: var(--clay);
  color: var(--white);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.stats-band {
  width: min(var(--max), calc(100% - 40px));
  margin: -34px auto 0;
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.stat {
  padding: 26px;
  border-right: 1px solid var(--line);
}

.stat:last-child {
  border-right: 0;
}

.stat strong {
  display: block;
  color: var(--pine);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 44px;
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 8px;
  color: #4d5a50;
  font-weight: 700;
}

.section {
  padding: clamp(72px, 9vw, 128px) 0;
}

section[id] {
  scroll-margin-top: 96px;
}

.section-muted {
  background: var(--mist);
}

.present-section {
  background: var(--white);
}

.intro-belief {
  background: var(--paper);
}

.section-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: clamp(36px, 6vw, 72px);
  align-items: start;
}

.present-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.65fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.belief-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(420px, 1fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
}

.present-note,
.outline-panel,
.family-story,
.materials-note,
.curriculum-card,
.article-excerpt {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: clamp(22px, 4vw, 32px);
}

.present-note p {
  margin: 0;
  color: #536158;
  font-size: 18px;
}

.family-story {
  background: var(--white);
  box-shadow: 0 12px 35px rgba(23, 35, 29, 0.08);
}

.family-story h3 {
  margin-top: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 500;
}

.family-story p {
  color: #536158;
}

.family-photo {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(36, 79, 59, 0.14);
  background: #111;
}

.family-photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1280 / 446;
  object-fit: cover;
  cursor: zoom-in;
}

.outline-panel {
  margin: 30px 0 0;
}

.outline-panel h3 {
  margin-bottom: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 500;
}

.outline-columns {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 22px;
}

.outline-columns p {
  font-size: 16px;
}

.outline-columns ol {
  margin: 0;
  padding-left: 22px;
}

.curriculum-section {
  background: var(--white);
}

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

.curriculum-card {
  background: var(--paper);
}

.curriculum-card h3,
.materials-note h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 500;
}

.curriculum-card p,
.materials-note p {
  color: #536158;
}

.curriculum-card ul {
  display: grid;
  gap: 8px;
  margin: 22px 0 0;
  padding-left: 20px;
}

.article-excerpt {
  margin: 24px 0 0;
  background: var(--pine);
  color: var(--white);
}

.article-panel {
  display: grid;
  gap: 22px;
  margin-top: 34px;
}

.article-intro {
  max-width: 900px;
}

.article-intro h3 {
  margin-top: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 500;
}

.article-intro p {
  color: #536158;
  font-size: 18px;
}

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

.article-point {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.article-point p {
  margin-top: 10px;
  color: #536158;
}

.article-excerpt p {
  margin-bottom: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.18;
}

.article-excerpt cite {
  color: rgba(255, 255, 255, 0.78);
  font-style: normal;
}

.materials-note {
  margin-bottom: 34px;
  background: var(--white);
  box-shadow: 0 12px 35px rgba(23, 35, 29, 0.08);
}

.copy-block p {
  max-width: 760px;
  font-size: 18px;
}

.feature-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 28px;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--moss);
}

.media-stack {
  display: grid;
  gap: 16px;
}

.image-frame {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 12px 35px rgba(23, 35, 29, 0.08);
}

.image-frame img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  background: var(--paper);
  cursor: zoom-in;
}

.image-frame.wide img {
  aspect-ratio: auto;
}

.image-frame.large img {
  aspect-ratio: auto;
}

.image-frame figcaption {
  padding: 12px 14px;
  color: #536158;
  font-size: 13px;
  font-weight: 700;
}

.section-heading {
  display: grid;
  gap: 8px;
  margin-bottom: 42px;
}

.property-section {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  padding: 34px 0;
  border-top: 1px solid rgba(23, 35, 29, 0.16);
}

.property-copy {
  position: sticky;
  top: 110px;
}

.property-copy p,
.card-body p {
  color: #536158;
}

.gallery {
  display: grid;
  gap: 14px;
  align-items: start;
}

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

.gallery-mixed .large {
  grid-column: span 2;
}

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

.gallery-grid .wide {
  grid-column: span 3;
}

.building-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 34px;
}

.building-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(23, 35, 29, 0.08);
}

.card-media img {
  display: block;
  width: 100%;
  height: 250px;
  object-fit: contain;
  background: var(--paper);
  cursor: zoom-in;
}

.card-body {
  padding: 22px 22px 14px;
}

.thumb-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 0 22px 22px;
}

.thumb-row img {
  width: 100%;
  height: 96px;
  object-fit: contain;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  cursor: zoom-in;
}

.grounds-section {
  background: var(--white);
}

.grounds-gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 14px;
  align-items: start;
}

.grounds-gallery .hero-photo {
  grid-row: span 2;
}

.grounds-gallery .hero-photo img {
  aspect-ratio: auto;
}

.utilities-section {
  background: #edf2f1;
}

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

.utility-panel,
.legal-note {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(22px, 4vw, 34px);
  box-shadow: 0 12px 35px rgba(23, 35, 29, 0.08);
}

.panel-images {
  display: grid;
  gap: 12px;
}

.panel-images img,
.waterline img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  object-fit: contain;
  background: var(--paper);
  cursor: zoom-in;
}

.panel-images.compact {
  grid-template-columns: 1fr;
}

.callout {
  margin: 20px 0 0;
  padding: 16px;
  border-left: 4px solid var(--moss);
  background: var(--mist);
  font-weight: 800;
}

.legal-note {
  margin-top: 24px;
}

.legal-note p {
  color: #3f4c44;
}

.waterline {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 18px;
  align-items: center;
  margin-top: 20px;
}

.source-note {
  font-size: 13px;
}

.portfolio-section {
  background: var(--mist);
}

.portfolio-shell {
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  gap: 20px;
}

.portfolio-tabs {
  display: grid;
  gap: 10px;
  align-content: start;
}

.project-tab {
  position: relative;
  width: 100%;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(23, 35, 29, 0.06);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.project-tab:hover,
.project-tab.is-active {
  transform: translateY(-1px);
  border-color: rgba(183, 95, 60, 0.58);
  background: #fffaf6;
}

.project-tab.is-active::before {
  content: "";
  position: absolute;
  inset: 14px auto 14px 0;
  width: 4px;
  border-radius: 0 4px 4px 0;
  background: var(--clay);
}

.project-tab strong {
  display: block;
  font-size: 18px;
  line-height: 1.2;
}

.project-tab span {
  display: block;
  margin-top: 8px;
  color: #59665d;
  font-size: 13px;
  font-weight: 700;
}

.portfolio-viewer {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.portfolio-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 26px 28px 20px;
}

.portfolio-meta h3 {
  margin-bottom: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 500;
}

.portfolio-meta p:last-child {
  margin-bottom: 0;
  color: #536158;
}

.portfolio-meta [data-project-description] {
  max-width: 760px;
  line-height: 1.65;
}

.photo-count {
  flex: 0 0 auto;
  padding: 10px 12px;
  border-radius: var(--radius);
  background: var(--mist);
  color: var(--pine);
  font-weight: 800;
}

.portfolio-stage {
  position: relative;
  background: #101713;
}

.portfolio-stage > img {
  width: 100%;
  height: min(68vh, 680px);
  min-height: 460px;
  object-fit: scale-down;
  object-position: center;
  image-rendering: auto;
  background: #101713;
  cursor: zoom-in;
}

.slide-button {
  position: absolute;
  z-index: 2;
  top: 50%;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: var(--radius);
  background: rgba(16, 23, 19, 0.64);
  color: var(--white);
  font-size: 34px;
  line-height: 1;
  transform: translateY(-50%);
  cursor: pointer;
}

.slide-button.prev {
  left: 18px;
}

.slide-button.next {
  right: 18px;
}

.slide-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--white);
  font-weight: 800;
}

.play-button {
  min-height: 40px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font: inherit;
  font-size: 13px;
  cursor: pointer;
}

.portfolio-thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 14px;
  border-top: 1px solid var(--line);
  scrollbar-color: var(--moss) var(--mist);
}

.portfolio-thumb {
  flex: 0 0 86px;
  height: 64px;
  padding: 0;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 6px;
  background: var(--paper);
  cursor: pointer;
}

.portfolio-thumb.is-active {
  border-color: var(--clay);
}

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

.contact-section {
  background: var(--pine);
  color: var(--white);
}

.contact-section .section-kicker,
.contact-section .phone {
  color: var(--gold);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(30px, 6vw, 70px);
  align-items: start;
}

.contact-copy h2 {
  color: var(--white);
}

.phone {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 38px;
  line-height: 1.1;
}

.phone a {
  text-decoration: none;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

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

label {
  display: grid;
  gap: 8px;
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 6px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  font: inherit;
}

textarea {
  resize: vertical;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--gold);
  font-weight: 700;
}

.site-footer {
  padding: 34px 20px;
  background: #15201b;
  color: rgba(255, 255, 255, 0.78);
  text-align: center;
}

.site-footer p {
  margin: 4px 0;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(10, 14, 12, 0.86);
}

.lightbox.is-open {
  display: flex;
}

.lightbox img {
  max-width: min(1120px, 92vw);
  max-height: 86vh;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .site-nav {
    position: fixed;
    top: 76px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    color: var(--ink);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 13px 12px;
  }

  .nav-toggle {
    display: block;
  }

  .stats-band,
  .two-column,
  .present-grid,
  .belief-grid,
  .curriculum-grid,
  .article-points,
  .property-section,
  .utilities-grid,
  .contact-grid,
  .portfolio-shell {
    grid-template-columns: 1fr;
  }

  .stats-band {
    width: min(var(--max), calc(100% - 40px));
    margin-top: -24px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-radius: var(--radius);
  }

  .stat {
    border-bottom: 1px solid var(--line);
  }

  .stat:nth-child(even) {
    border-right: 0;
  }

  .stat:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .property-copy {
    position: static;
  }

  .building-grid {
    grid-template-columns: 1fr;
  }

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

  .grounds-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .grounds-gallery .hero-photo {
    grid-column: span 2;
  }
}

@media (max-width: 680px) {
  .hero {
    min-height: auto;
    align-items: start;
  }

  .hero-content {
    width: calc(100% - 28px);
    max-width: var(--max);
    padding: 132px 0 58px;
  }

  h1 {
    max-width: 340px;
    font-size: 48px;
  }

  h2 {
    font-size: 34px;
  }

  .hero-copy {
    font-size: 18px;
    max-width: 100%;
    line-height: 1.55;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .section {
    padding: 58px 0;
  }

  section[id] {
    scroll-margin-top: 86px;
  }

  .stats-band {
    width: 100%;
    margin-top: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-radius: 0;
  }

  .stat {
    padding: 22px 24px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stat:nth-child(odd) {
    border-right: 1px solid var(--line);
  }

  .stat:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .stat:last-child {
    border-bottom: 0;
  }

  .stat strong {
    font-size: 36px;
  }

  .section-inner {
    width: min(100% - 28px, var(--max));
  }

  .copy-block p {
    font-size: 17px;
  }

  .outline-panel h3 {
    font-size: 26px;
  }

  .present-note,
  .outline-panel,
  .family-story,
  .materials-note,
  .curriculum-card,
  .article-excerpt,
  .article-point {
    padding: 22px;
  }

  .curriculum-card h3,
  .materials-note h3 {
    font-size: clamp(24px, 7.4vw, 31px);
  }

  .article-intro h3,
  .portfolio-meta h3 {
    font-size: clamp(30px, 9vw, 40px);
  }

  .article-excerpt p {
    font-size: clamp(22px, 7.5vw, 30px);
  }

  .gallery-mixed,
  .gallery-grid,
  .grounds-gallery,
  .field-row,
  .waterline,
  .outline-columns {
    grid-template-columns: 1fr;
  }

  .gallery-mixed .large,
  .gallery-grid .wide,
  .grounds-gallery .hero-photo {
    grid-column: auto;
    grid-row: auto;
  }

  .thumb-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .phone {
    font-size: 30px;
  }

  .portfolio-tabs {
    grid-template-columns: 1fr;
  }

  .portfolio-meta {
    display: grid;
    padding: 22px;
  }

  .portfolio-stage > img {
    height: clamp(300px, 62vh, 420px);
    min-height: 300px;
  }

  .slide-button {
    width: 42px;
    height: 42px;
  }

  .slide-button.prev {
    left: 10px;
  }

  .slide-button.next {
    right: 10px;
  }

  .slide-caption {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
