* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Georgia', serif;
  color: #1a1a1a;
  background: #fafafa;
}

/* ── Nav ── */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(250, 250, 250, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #e8e8e8;
  z-index: 100;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  height: 60px;
  max-width: 980px;
  margin: 0 auto;
}

.nav-name {
  font-size: 1.3rem;
  font-weight: bold;
  letter-spacing: 0.04em;
  color: #111;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

nav ul li a {
  text-decoration: none;
  color: #666;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 0;
  border-bottom: 1.5px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
}

nav ul li a:hover,
nav ul li a.active {
  color: #111;
  border-bottom-color: #111;
}

/* ── Page shell ── */
main {
  padding-top: 60px;
}

.page {
  display: none;
  min-height: 100vh;
  padding: 5rem 2.5rem 6rem;
  max-width: 860px;
  margin: 0 auto;
}

.page.active {
  display: block;
}

/* ── About hero ── */
.about-hero {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: start;
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid #e8e8e8;
}

.about-location {
  font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 0.75rem;
}

.about-hero h1 {
  font-size: 3rem;
  font-weight: normal;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #111;
  margin-bottom: 1.25rem;
}

.about-tagline {
  font-size: 1.1rem;
  line-height: 1.75;
  color: #555;
  max-width: 480px;
  margin-bottom: 2rem;
}

.cta-btn {
  display: inline-block;
  padding: 0.65rem 1.4rem;
  background: #111;
  color: #fff !important;
  text-decoration: none;
  font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: none !important;
  border-radius: 3px;
  transition: background 0.2s;
}

.cta-btn:hover {
  background: #333 !important;
}

/* ── About photo ── */
.about-photo {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* ── Contact page ── */
#contact {
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  background: #fafafa;
}

#contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('Portfolio/ggbridge.jpg') center / cover no-repeat;
  /*opacity: 0.35;*/
  z-index: 0;
  pointer-events: none;
}

#contact.page.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-page-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  padding: 4rem 1.5rem 5rem;
  gap: 2.5rem;
}

#contact .contact {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
  width: 100%;
}

#contact .contact h2 {
  color: #fff;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

.contact-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.contact-card {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 0;
  gap: 1.25rem;
  text-align: center;
}

.contact-email {
  font-size: 2.8rem;
  font-family: 'Georgia', serif;
  font-weight: normal;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.02em;
  transition: opacity 0.2s;
  line-height: 1.1;
}

.contact-email:hover {
  opacity: 0.7;
}

.contact-location {
  font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
}

/* ── Footer ── */
footer {
  /* background: #252525; */
  background: #2E3F4A;
  padding: 2.5rem 2.5rem 2rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  max-width: 860px;
  margin: 0 auto;
}

.footer-location {
  font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  font-size: 0.88rem;
  color: #ccc;
  letter-spacing: 0.03em;
}

.footer-icons {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.footer-icon {
  color: #fff;
  transition: opacity 0.2s;
  display: flex;
  align-items: center;
  opacity: 0.85;
}

.footer-icon:hover {
  opacity: 1;
}

.footer-copy {
  font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  font-size: 0.78rem;
  color: #777;
  letter-spacing: 0.02em;
}

.about-tags {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 0.5rem;
}

.tag {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  background: #f0f0f0;
  border-radius: 20px;
  font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  font-size: 0.78rem;
  color: #555;
  white-space: nowrap;
}

/* ── About bio ── */
.about-bio {
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid #e8e8e8;
}

.about-bio p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #444;
  margin-bottom: 1.1rem;
}

.about-bio p:last-child {
  margin-bottom: 0;
}

/* ── Experience ── */
.experience h2 {
  font-size: 0.8rem;
  font-weight: normal;
  font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 2rem;
}

.exp-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.exp-item {
  padding: 1.75rem 0;
  border-bottom: 1px solid #e8e8e8;
}

.exp-item:first-child {
  border-top: 1px solid #e8e8e8;
}

.exp-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.3rem;
}

.exp-company {
  font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #888;
}

.exp-period {
  font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  font-size: 0.82rem;
  color: #bbb;
}

.exp-role {
  font-size: 1.05rem;
  font-weight: normal;
  color: #111;
  margin-bottom: 0.6rem;
}

.exp-detail {
  font-size: 0.92rem;
  line-height: 1.7;
  color: #666;
}

/* ── Agency ── */
.agency-hero {
  text-align: center;
  margin-bottom: 3.5rem;
}

.portfolio-header h1,
.agency-hero h1 {
  font-size: 3rem;
  font-weight: normal;
  letter-spacing: -0.02em;
  color: #111;
  margin-bottom: 0;
}

.agency-subtitle {
  font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  font-size: 0.9rem;
  color: #aaa;
  letter-spacing: 0.06em;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

.agency-intro {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  max-width: 640px;
  margin: 0 auto;
}

/* ── FAQ ── */
.faq {
  margin-bottom: 3rem;
}

.faq-item {
  border-bottom: 1px solid #e8e8e8;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 0;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  color: #111;
  text-align: left;
  font-family: 'Georgia', serif;
}

.faq-icon {
  font-size: 1.3rem;
  color: #bbb;
  transition: transform 0.2s;
  flex-shrink: 0;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 300;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding-bottom: 1.25rem;
}

.faq-answer p {
  font-size: 0.97rem;
  line-height: 1.75;
  color: #666;
}

.faq-item.open .faq-answer {
  display: block;
}

/* ── Pricing cards ── */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
}

.pricing-card {
  padding: 1.75rem;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
}

.pricing-label {
  display: block;
  font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.pricing-label.free,
.pricing-label.paid {
  color: #6b8f5e;
}

.pricing-label.duration {
  color: #6b8f5e;
  text-transform: none;
}

.pricing-card h3 {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #111;
}

.pricing-card p {
  font-size: 0.88rem;
  color: #777;
  line-height: 1.65;
}

/* ── Portfolio ── */
.portfolio-header {
  margin-bottom: 2.5rem;
  padding-bottom: 0;
  border-bottom: none;
}

/* ── Portfolio tab toggle ── */
.portfolio-tabs {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.ptab {
  background: none;
  border: none;
  border-bottom: 1.5px solid transparent;
  padding: 0.3rem 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #bbb;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}

.ptab.active,
.ptab:hover {
  color: #111;
  border-bottom-color: #111;
}

/* aurora inside list-view circles */
#aurora-l-2025,
#aurora-l-2026 {
  position: absolute;
  inset: 0;
  z-index: 0;
}

#aurora-l-2025 canvas,
#aurora-l-2026 canvas {
  width: 100% !important;
  height: 100% !important;
}

/* ── Portfolio Gallery Grid ── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.75rem 1.75rem;
}

.portfolio-card {
  cursor: pointer;
}

.portfolio-card:hover .portfolio-card-media {
  opacity: 0.82;
}

.portfolio-card-media {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #f0f0f0;
  overflow: hidden;
  margin-bottom: 0.7rem;
  position: relative;
  transition: opacity 0.25s;
}

.portfolio-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.aurora-card-fill {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.aurora-card-fill canvas {
  width: 100% !important;
  height: 100% !important;
}

.aurora-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Georgia', serif;
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.9);
  z-index: 1;
  pointer-events: none;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.35);
}

.luma-placeholder {
  background: linear-gradient(135deg, #ececec 0%, #d8d8d8 100%);
}

.portfolio-card-info {
  padding: 0;
}

.portfolio-card-cat {
  display: block;
  font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 0.2rem;
}

.portfolio-card h3 {
  font-size: 0.88rem;
  font-weight: normal;
  color: #111;
  line-height: 1.45;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
}

/* ── Portfolio Modal ── */
.portfolio-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 400;
  overflow-y: auto;
  padding: 60px 1.5rem 4rem;
}

.portfolio-modal.open {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.portfolio-modal-inner {
  background: #fff;
  max-width: 660px;
  width: 100%;
  padding: 2.5rem;
  position: relative;
  margin-top: 0;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: none;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  color: #bbb;
  padding: 0.25rem;
  transition: color 0.15s;
  line-height: 1;
}

.modal-close:hover {
  color: #111;
}

#modal-body .modal-media {
  width: 100%;
  margin-bottom: 1.75rem;
  overflow: hidden;
  background: #f5f5f5;
}

#modal-body .modal-media img {
  width: 100%;
  height: auto;
  display: block;
}

#modal-body .modal-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.45rem;
}

#modal-body .modal-type {
  font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6b8f5e;
}

#modal-body .modal-year {
  font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  font-size: 0.78rem;
  color: #bbb;
}

#modal-body h3 {
  font-size: 1.25rem;
  font-weight: normal;
  color: #111;
  margin-bottom: 1.25rem;
  line-height: 1.4;
}

#modal-body p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: #555;
  margin-bottom: 1rem;
}

#modal-body a:not(.cs-doc-link):not(.modal-link) {
  color: #6b8f5e;
  text-decoration: none;
}

#modal-body a:not(.cs-doc-link):not(.modal-link):hover {
  text-decoration: underline;
}

.modal-links {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.modal-link {
  display: inline-block;
  font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  font-size: 0.85rem;
  color: #6b8f5e;
  text-decoration: none;
  transition: color 0.2s;
}

.modal-link:hover {
  color: #4a6a40;
}

@media (max-width: 720px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1.25rem;
  }
}

@media (max-width: 480px) {
  .portfolio-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 1rem;
  }
}

.case-studies {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.case-study {
  padding: 2rem 0;
  border-bottom: 1px solid #e8e8e8;
}

.case-study:last-child {
  border-bottom: none;
}

.cs-media {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #f2f2f2;
  overflow: hidden;
  border-radius: 6px;
  margin-bottom: 1.25rem;
}

.cs-media img,
.cs-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: none;
}

/* Full screenshot / poster — no 16:9 crop */
.cs-media--natural {
  aspect-ratio: auto;
}

.cs-media--natural img,
.cs-media--natural video {
  height: auto;
  object-fit: contain;
}

/* Live iframes use % height + scale(); they need a definite box — auto aspect breaks that */
.cs-media--natural:has(iframe) {
  aspect-ratio: 16 / 9;
}

.cs-media iframe {
  width: 200%;
  height: 200%;
  border: none;
  display: block;
  transform: scale(0.5);
  transform-origin: top left;
  pointer-events: none;
}

.cs-content {
  padding: 0;
}

.case-study-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.6rem;
}

.cs-type {
  font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6b8f5e;
}

.cs-year {
  font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  font-size: 0.8rem;
  color: #bbb;
}

.case-study h3 {
  font-size: 1.15rem;
  font-weight: normal;
  color: #111;
  margin-bottom: 0.7rem;
  line-height: 1.4;
}

.case-study p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: #555;
  margin-bottom: 1rem;
}

@keyframes orb-shift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.cs-version-circles {
  display: flex;
  gap: 3rem;
  justify-content: center;
  align-items: center;
  padding: 3rem 0;
  border-bottom: 1px solid #e8e8e8;
}

.version-circle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  gap: 0.3rem;
  background-size: 300% 300%;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.version-circle:hover {
  transform: scale(1.04);
}

.v2025 {
  width: 190px;
  height: 190px;
  background: #0d0d1a;
  box-shadow: 0 4px 24px rgba(130, 100, 220, 0.4);
  position: relative;
  overflow: hidden;
  animation: none;
}

#aurora-2025 {
  position: absolute;
  inset: 0;
  z-index: 0;
}

#aurora-2025 canvas {
  width: 100% !important;
  height: 100% !important;
}

.v2025 .version-circle-year,
.v2025 .version-circle-stack,
.v2025 .version-circle-cta {
  position: relative;
  z-index: 1;
}

.v2026 {
  width: 220px;
  height: 220px;
  background: #1a0a0a;
  box-shadow: 0 6px 40px rgba(249, 107, 107, 0.45), 0 2px 20px rgba(240, 147, 251, 0.35);
  position: relative;
  overflow: hidden;
  animation: none;
}

.v2026:hover {
  box-shadow: 0 8px 50px rgba(249, 107, 107, 0.6), 0 4px 24px rgba(240, 147, 251, 0.5);
}

#aurora-2026 {
  position: absolute;
  inset: 0;
  z-index: 0;
}

#aurora-2026 canvas {
  width: 100% !important;
  height: 100% !important;
}

.v2026 .version-circle-year,
.v2026 .version-circle-stack,
.v2026 .version-circle-cta {
  position: relative;
  z-index: 1;
}

.version-circle-year {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  font-family: 'Georgia', serif;
  text-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.version-circle-stack {
  font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.85);
  text-align: center;
  padding: 0 0.75rem;
  line-height: 1.4;
}

.version-circle-cta {
  font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.95);
  margin-top: 0.2rem;
  font-weight: 500;
}

.cs-stack {
  font-size: 0.88rem;
  line-height: 1.7;
  color: #777;
  margin-bottom: 1rem;
}

.cs-links {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.cs-doc-link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  width: 160px;
  flex-shrink: 0;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.cs-doc-link:hover {
  border-color: #6b8f5e;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.cs-doc-thumb {
  width: 100%;
  height: 110px;
  overflow: hidden;
  background: #f5f5f5;
  position: relative;
}

.cs-doc-thumb embed {
  width: 250%;
  height: 350px;
  transform: scale(0.4);
  transform-origin: top left;
  pointer-events: none;
  display: block;
}

.cs-doc-info {
  padding: 0.5rem 0.65rem;
  border-top: 1px solid #f0f0f0;
}

.cs-doc-title {
  display: block;
  font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: #111;
}

.cs-doc-meta {
  display: block;
  font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  font-size: 0.7rem;
  color: #6b8f5e;
  margin-top: 0.15rem;
}

.cs-link {
  display: inline-block;
  font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  font-size: 0.82rem;
  color: #6b8f5e;
  text-decoration: none;
  margin-bottom: 1rem;
  transition: color 0.2s;
}

.cs-link:hover {
  color: #4a6a40;
}

.cs-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.cs-tags span {
  padding: 0.25rem 0.65rem;
  background: #f2f2f2;
  border-radius: 20px;
  font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  font-size: 0.75rem;
  color: #777;
}

/* ── Contact form ── */
.contact {
  margin-top: 3.5rem;
  padding-top: 3.5rem;
  border-top: 1px solid #e8e8e8;
}

.contact h2 {
  font-size: 1.4rem;
  font-weight: normal;
  letter-spacing: -0.01em;
  color: #111;
  margin-bottom: 1.75rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  display: block;
  font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #888;
}

.form-group input,
.form-group textarea {
  padding: 0.7rem 0.9rem;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-family: 'Georgia', serif;
  font-size: 0.95rem;
  color: #222;
  background: #fff;
  transition: border-color 0.2s;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #999;
}

.form-submit {
  align-self: flex-start;
  padding: 0.65rem 1.4rem;
  background: #5b9bd5;
  color: #fff;
  border: none;
  border-radius: 3px;
  font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}

.form-submit:hover {
  background: #4a8ac4;
}

.form-note {
  font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  font-size: 0.88rem;
  color: #6b8f5e;
  margin: 0 !important;
}

/* ── Responsive ── */
@media (max-width: 640px) {
  .about-hero {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-tags {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .about-hero h1 {
    font-size: 2.2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .page {
    padding: 3rem 1.25rem 4rem;
  }

  .nav-inner {
    padding: 0 1.25rem;
  }
}
