/* ── Reset & tokens ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink:        #0c1220;
  --ink-soft:   #1a2332;
  --cream:      #f4efe6;
  --cream-dark: #e8e0d4;
  --white:      #faf8f5;
  --coral:      #e05a3a;
  --coral-light:#f07055;
  --teal:       #1f7a6e;
  --teal-light: #2a9d8f;
  --muted:      #6b7280;
  --border:     rgba(12, 18, 32, 0.1);

  --font-serif: 'Instrument Serif', Georgia, serif;
  --font-sans:  'DM Sans', system-ui, sans-serif;

  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  32px;

  --shadow:     0 24px 64px rgba(12, 18, 32, 0.12);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --advertorial-height: 2rem;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
address { font-style: normal; }

.container {
  width: min(1200px, 92vw);
  margin-inline: auto;
}

.section {
  padding-block: clamp(4rem, 10vw, 7rem);
}

.section-dark {
  background: var(--ink);
  color: var(--cream);
}

.section-cream {
  background: var(--cream);
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 1rem;
}

.section-dark .section-tag { color: var(--coral-light); }

.section-intro {
  max-width: 680px;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-intro h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.eyebrow {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1.25rem;
}

.item-num {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--coral);
  line-height: 1;
}

.section-dark .item-num { color: var(--coral-light); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  border-radius: 100px;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 500;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background: var(--coral);
  color: var(--white);
  border-color: var(--coral);
}

.btn-primary:hover {
  background: var(--coral-light);
  border-color: var(--coral-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(224, 90, 58, 0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.btn-full { width: 100%; }

/* ── Advertorial bar ── */
.advertorial-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 101;
  height: var(--advertorial-height);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.85);
  background: var(--ink-soft);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* ── Header ── */
.header {
  position: fixed;
  top: var(--advertorial-height);
  left: 0;
  right: 0;
  z-index: 100;
  padding-block: 1rem;
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(12, 18, 32, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding-block: 0.75rem;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  color: var(--white);
}

.logo-img {
  display: block;
  height: 3.5rem;
  width: auto;
  scale: 1.5;
}

.footer-brand .logo-img {
  height: 4rem;
  scale: 1.5;
}

.footer-brand .logo { margin-bottom: 1rem; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  transition: color var(--transition);
}

.nav-links a:hover { color: var(--white); }

.nav-cta {
  padding: 0.5rem 1.25rem !important;
  background: var(--coral);
  color: var(--white) !important;
  border-radius: 100px;
}

.nav-cta:hover { background: var(--coral-light) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-block: clamp(6rem, 14vw, 10rem) clamp(3rem, 6vw, 5rem);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(12, 18, 32, 0.55) 0%, rgba(12, 18, 32, 0.85) 60%, rgba(12, 18, 32, 0.95) 100%),
    radial-gradient(ellipse at 80% 20%, rgba(224, 90, 58, 0.15) 0%, transparent 50%);
}

.hero-grid {
  position: relative;
  z-index: 1;
}

.hero-content { max-width: 720px; }

.hero-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6.5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.hero-content h1 em {
  font-style: italic;
  color: var(--coral-light);
}

.hero-lead {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.7);
  max-width: 520px;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ── Tension ── */
.tension-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.tension-visual {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.tension-visual img {
  aspect-ratio: 4/5;
  object-fit: cover;
  width: 100%;
}

.tension-visual figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 1.25rem;
  background: linear-gradient(transparent, rgba(12, 18, 32, 0.7));
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

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

.tension-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  padding-block: 1.75rem;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

.tension-item:first-child { padding-top: 0; }
.tension-item:last-child { border-bottom: none; }

.tension-item p {
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--ink-soft);
}

/* ── Services ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--ink-soft);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
}

.service-card:hover {
  border-color: rgba(224, 90, 58, 0.3);
  transform: translateY(-4px);
}

.service-header {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1rem;
}

.service-header h3 {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 400;
  line-height: 1.2;
}

.service-card > p {
  font-size: 0.9375rem;
  color: rgba(244, 239, 230, 0.65);
  margin-bottom: 1.5rem;
}

.service-card ul {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.service-card li {
  font-size: 0.875rem;
  color: rgba(244, 239, 230, 0.85);
  padding-left: 1.25rem;
  position: relative;
}

.service-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--coral);
}

/* ── Method ── */
.method-header {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.method-sub {
  margin-top: 1rem;
  font-size: 1.0625rem;
  color: var(--muted);
  max-width: 540px;
}

.method-visual {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.method-visual img {
  aspect-ratio: 5/4;
  object-fit: cover;
  width: 100%;
}

.method-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.method-track::before {
  content: '';
  position: absolute;
  top: 2rem;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--coral), var(--teal));
  opacity: 0.25;
}

.method-step {
  padding: 1.5rem 1.25rem;
  text-align: center;
  position: relative;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--cream-dark);
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--coral);
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}

.method-step h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
}

.method-step p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.55;
}

.method-cta {
  text-align: center;
  margin-top: 3rem;
}

/* ── Applications ── */
.applications-lead {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.applications-hero {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 2rem;
  min-height: 280px;
}

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

.applications-hero-text {
  position: relative;
  z-index: 1;
  padding: clamp(2rem, 5vw, 3.5rem);
  background: linear-gradient(135deg, rgba(12, 18, 32, 0.88) 0%, rgba(12, 18, 32, 0.6) 100%);
  min-height: 280px;
  display: flex;
  align-items: flex-end;
}

.applications-hero-text h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.375rem, 3vw, 2rem);
  font-weight: 400;
  color: var(--white);
  max-width: 640px;
  line-height: 1.25;
}

.applications-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.app-card {
  display: grid;
  grid-template-columns: 140px 1fr;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(12, 18, 32, 0.06);
  transition: var(--transition);
}

.app-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.app-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 160px;
}

.app-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.app-card-body h4 {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.app-card-body p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ── Governance ── */
.governance-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.governance-visual {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.governance-visual img {
  aspect-ratio: 5/4;
  object-fit: cover;
  width: 100%;
}

.governance-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.governance-content > p {
  color: var(--muted);
  margin-bottom: 1.75rem;
  font-size: 1.0625rem;
}

.governance-list {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.governance-list li {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  font-size: 0.9375rem;
  font-weight: 500;
}

.governance-list li::before {
  content: '✓';
  display: grid;
  place-items: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: rgba(31, 122, 110, 0.12);
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ── Contact ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.contact-intro h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.contact-intro > p {
  color: rgba(244, 239, 230, 0.65);
  font-size: 1.0625rem;
}

.contact-form {
  background: var(--ink-soft);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.form-row label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(244, 239, 230, 0.7);
}

.form-row input,
.form-row textarea,
.form-row select {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--cream);
  transition: border-color var(--transition);
}

.form-row select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23f4efe6' stroke-opacity='0.5' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-row select option {
  background: var(--ink-soft);
  color: var(--cream);
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: rgba(244, 239, 230, 0.35);
}

.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  outline: none;
  border-color: var(--coral);
}

.form-row textarea { resize: vertical; min-height: 100px; }

.label-optional {
  font-weight: 400;
  color: rgba(244, 239, 230, 0.45);
}

/* Homepage lead form */
.contact-form-home {
  padding: 2rem 2rem 2.25rem;
}

.form-header {
  padding-bottom: 1.25rem;
  margin-bottom: 0.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.form-header-title {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  color: var(--cream);
  margin-bottom: 0.375rem;
}

.form-header-text {
  font-size: 0.875rem;
  color: rgba(244, 239, 230, 0.55);
  line-height: 1.5;
}

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

/* General contact form */
.contact-form-general {
  gap: 1rem;
}

.form-general-title {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.form-success {
  text-align: center;
  color: var(--teal-light);
  font-size: 0.9375rem;
  padding: 0.5rem;
}

/* ── Footer ── */
.footer {
  background: var(--ink);
  color: rgba(244, 239, 230, 0.65);
  padding-top: clamp(3rem, 6vw, 5rem);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}

.footer-brand > p {
  font-size: 0.875rem;
  line-height: 1.6;
  max-width: 280px;
}

.footer-col h5 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 1rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-col a {
  font-size: 0.875rem;
  transition: color var(--transition);
}

.footer-col a:hover { color: var(--coral-light); }

.footer-contact address {
  font-size: 0.875rem;
  line-height: 1.7;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-block: 1.5rem;
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: rgba(244, 239, 230, 0.4);
}

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }
.reveal[data-delay="4"] { transition-delay: 0.4s; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr; }
  .method-track { grid-template-columns: repeat(2, 1fr); }
  .method-track::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    inset: 0;
    top: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    background: rgba(12, 18, 32, 0.97);
    backdrop-filter: blur(20px);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
  }

  .nav-links a { font-size: 1.125rem; }

  .logo-img {
    height: 2.875rem;
  }

  .tension-layout,
  .method-header,
  .governance-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .method-track { grid-template-columns: 1fr; }

  .method-step {
    text-align: left;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0 1.25rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--border);
  }

  .step-num {
    grid-row: span 2;
    width: 3rem;
    height: 3rem;
    font-size: 1rem;
    margin-bottom: 0;
  }

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

  .app-card { grid-template-columns: 100px 1fr; }

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .btn-primary:hover,
  .service-card:hover,
  .app-card:hover {
    transform: none;
  }
}

/* ── Inner pages ── */
body.page-inner .header {
  background: rgba(12, 18, 32, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

.page-hero {
  padding-top: clamp(7rem, 12vw, 9rem);
  padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
  background: var(--ink);
  color: var(--cream);
}

.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 720px;
}

.page-hero-lead {
  margin-top: 1rem;
  font-size: 1.125rem;
  color: rgba(244, 239, 230, 0.65);
  max-width: 560px;
}

.page-prose {
  padding-block: clamp(3rem, 6vw, 5rem);
}

.prose {
  max-width: 720px;
}

.prose > p {
  font-size: 1.0625rem;
  color: var(--ink-soft);
  margin-bottom: 1.25rem;
}

.prose h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--ink);
}

.prose-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.prose-list li {
  font-size: 1.0625rem;
  color: var(--ink-soft);
  padding-left: 1.25rem;
  position: relative;
}

.prose-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--coral);
}

.prose-cta {
  margin-top: 2.5rem;
}

.legal-content a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-content a:hover {
  color: var(--coral);
}

/* ── Contact page ── */
.contact-page {
  background: var(--cream);
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.contact-info-block h2 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 400;
  margin-bottom: 2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 0.25rem;
}

.contact-detail p {
  font-size: 1.0625rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

.contact-detail a {
  color: var(--teal);
  transition: color var(--transition);
}

.contact-detail a:hover {
  color: var(--coral);
}

.contact-form-light {
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.contact-form-light .form-row label {
  color: var(--muted);
}

.contact-form-light .form-row input,
.contact-form-light .form-row textarea,
.contact-form-light .form-row select {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  color: var(--ink);
}

.contact-form-light .form-row input::placeholder,
.contact-form-light .form-row textarea::placeholder {
  color: var(--muted);
  opacity: 0.7;
}

.contact-form-light .form-row input:focus,
.contact-form-light .form-row textarea:focus,
.contact-form-light .form-row select:focus {
  border-color: var(--coral);
}

.contact-form-light .form-success {
  color: var(--teal);
}

@media (max-width: 768px) {
  .contact-page-grid {
    grid-template-columns: 1fr;
  }

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