/* ----- Grayscale theme & base ----- */
:root {
  --black: #0a0a0a;
  --gray-900: #141414;
  --gray-800: #1f1f1f;
  --gray-700: #2d2d2d;
  --gray-600: #4a4a4a;
  --gray-500: #6b6b6b;
  --gray-400: #8a8a8a;
  --gray-300: #b0b0b0;
  --gray-200: #d4d4d4;
  --gray-100: #e8e8e8;
  --white: #f5f5f5;
  --font-mono: 'Geist Mono', 'Relative Mono', 'Space Mono', monospace;
}

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

body {
  margin: 0;
  min-height: 100vh;
  background: var(--white);
  color: var(--gray-800);
  line-height: 1.6;
  font-family: var(--font-mono) !important;
}

/* ----- Nav (inside hero, top) — Archivo Narrow ----- */
.hero-nav {
  flex-shrink: 0;
  padding: 1rem 2rem;
  position: relative;
  z-index: 2;
  background: transparent;
}

.hero-nav.nav {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.nav-logo-img {
  display: block;
  height: 3rem;
  width: auto;
}

.nav-logo-text {
  font-family: 'Archivo Narrow', sans-serif;
  font-weight: 600;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  color: var(--white);
}

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-links a {
  font-family: 'Archivo Narrow', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.nav-link-plain {
  color: var(--gray-300);
}

.nav-link-plain:hover {
  color: var(--white);
}

.nav-btn {
  color: var(--white);
  border: 1px solid var(--gray-400);
  padding: 0.5rem 1.25rem;
  border-radius: 2rem;
}

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

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

/* ----- Hero — full viewport, nav at top, split headlines, scroll indicator ----- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  background: var(--gray-700);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero-content {
  flex: 1;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 2rem 3rem;
}

/* Scrolling code texture – transform-based scroll for smooth mobile (no wobble) */
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.hero-bg-inner {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: calc(100% + 28px);
  opacity: 0.12;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='28' viewBox='0 0 300 28'%3E%3Ctext x='0' y='10' font-family='sans-serif' font-size='7' fill='%23fff' opacity='0.5'%3EWhere%20logic%20meets%20craft%20-%20Conceptmates%3C/text%3E%3Ctext x='150' y='10' font-family='sans-serif' font-size='7' fill='%23fff' opacity='0.5'%3EWhere%20logic%20meets%20craft%20-%20Conceptmates%3C/text%3E%3Ctext x='38' y='22' font-family='sans-serif' font-size='7' fill='%23fff' opacity='0.5'%3EWhere%20logic%20meets%20craft%20-%20Conceptmates%3C/text%3E%3Ctext x='188' y='22' font-family='sans-serif' font-size='7' fill='%23fff' opacity='0.5'%3EWhere%20logic%20meets%20craft%20-%20Conceptmates%3C/text%3E%3C/svg%3E");
  background-size: 300px 28px;
  background-repeat: repeat;
  background-position: 0 0;
  animation: hero-bg-scroll 6s linear infinite;
  will-change: transform;
  backface-visibility: hidden;
}

@keyframes hero-bg-scroll {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(0, -28px, 0); }
}

/* Logo-shaped “blank” on top: solid hero color only where the logo is */
.hero-bg-cutout {
  position: absolute;
  inset: 0;
  background-color: var(--gray-700);
  mask-image: url("CM LOGO ICON WHITE.svg");
  -webkit-mask-image: url("CM LOGO ICON WHITE.svg");
  mask-size: 70% auto;
  mask-position: center;
  mask-repeat: no-repeat;
  -webkit-mask-size: 70% auto;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  pointer-events: none;
  z-index: 0;
}

.hero-stripes {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent 0,
    transparent calc(100% / 12 - 1px),
    rgba(255, 255, 255, 0.04) calc(100% / 12 - 1px),
    rgba(255, 255, 255, 0.04) calc(100% / 12)
  );
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero-logo {
  display: block;
  height: clamp(8rem, 24vw, 14rem);
  width: auto;
  margin-bottom: 1.5rem;
}

.hero-headlines {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: end;
  margin-bottom: 2rem;
}

.hero-headline-left {
  text-align: left;
  transform: translateY(2rem);
}

.hero-headline-right {
  text-align: right;
  transform: translateY(-5rem);
}

.hero-title-line {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(3.25rem, 8vw, 6rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0;
  display: block;
  color: var(--gray-100);
}

.hero-headline-left .hero-title-line:first-child,
.hero-headline-right .hero-title-line:first-child {
  margin-bottom: 0.1em;
}

.hero-desc {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--white);
  max-width: 520px;
  margin: 0;
  line-height: 1.6;
}

.hero-scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--gray-400);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
}

.hero-scroll:hover {
  border-color: var(--white);
}

.hero-scroll-arrow {
  width: 0.4rem;
  height: 0.4rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
}

/* ----- Section titles — Oswald (strong, impact) ----- */
.section-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  letter-spacing: 0.02em;
  color: var(--black);
  margin: 0 0 2rem 0;
  text-transform: uppercase;
}

/* ----- Services — DM Sans (friendly, cards) ----- */
.services {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}

.services-stripes {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent 0,
    transparent calc(100% / 12 - 1px),
    rgba(0, 0, 0, 0.025) calc(100% / 12 - 1px),
    rgba(0, 0, 0, 0.025) calc(100% / 12)
  );
  pointer-events: none;
}

.services .section-title,
.services-grid {
  position: relative;
  z-index: 1;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  padding: 2rem;
}

.service-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 1.125rem;
  color: var(--gray-800);
  margin: 0 0 0.5rem 0;
}

.service-card p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9375rem;
  color: var(--gray-600);
  margin: 0;
  line-height: 1.5;
}

/* ----- About — Source Sans 3 (body reading) ----- */
.about {
  background: var(--gray-800);
  color: var(--white);
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}

.about-stripes {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent 0,
    transparent calc(100% / 10 - 1px),
    rgba(255, 255, 255, 0.03) calc(100% / 10 - 1px),
    rgba(255, 255, 255, 0.03) calc(100% / 10)
  );
  pointer-events: none;
}

.about .section-title,
.about .about-content {
  position: relative;
  z-index: 1;
}

.about .section-title {
  color: var(--white);
}

.about-tagline {
  font-family: 'Archivo Narrow', sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin: -0.5rem auto 1.5rem;
  max-width: 640px;
  position: relative;
  z-index: 1;
}

.about-content {
  max-width: 640px;
  margin: 0 auto;
}

.about-headline {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  line-height: 1.25;
  letter-spacing: 0.02em;
  color: var(--white);
  margin: 0 0 1.5rem 0;
}

.about-lead {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600;
  font-size: 1.125rem;
  margin: 0 0 1rem 0;
  color: var(--gray-100);
}

.about-body {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem;
  color: var(--gray-300);
  margin: 0 0 1rem 0;
  line-height: 1.6;
}

.about-body:last-of-type {
  margin-bottom: 0;
}

.about-why-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 1.375rem;
  letter-spacing: 0.02em;
  color: var(--white);
  margin: 2.5rem 0 1.25rem 0;
}

.about-why-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.about-why-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.about-why-label {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: var(--gray-100);
}

.about-why-desc {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.9375rem;
  color: var(--gray-400);
  line-height: 1.5;
}

/* ----- Work — aligned like About (full-width section, content wrapper) ----- */
.work {
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}

.work-stripes {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent 0,
    transparent calc(100% / 12 - 1px),
    rgba(0, 0, 0, 0.025) calc(100% / 12 - 1px),
    rgba(0, 0, 0, 0.025) calc(100% / 12)
  );
  pointer-events: none;
}

.work .section-title,
.work-content {
  position: relative;
  z-index: 1;
}

.work-content {
  max-width: 1200px;
  margin: 0 auto;
}

.work-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.work-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--gray-200);
  align-items: start;
}

.work-item:last-child {
  border-bottom: none;
}

.work-client {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 1.125rem;
  letter-spacing: 0.02em;
  color: var(--black);
}

.work-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.55;
}

/* ----- Contact — two-column booking (white, no stripes, stable height) ----- */
.contact {
  background: var(--white);
  color: var(--gray-800);
  padding: 3rem 2rem;
  position: relative;
}

.contact-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-info {
  padding-top: 0;
}

.contact-headline {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: var(--black);
  margin: 0 0 0.75rem 0;
}

.contact-desc {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.5;
  margin: 0 0 1rem 0;
}

.contact-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-checklist li {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.9375rem;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.contact-list-icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-800);
}

.contact-list-icon svg {
  display: block;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-200);
}

.contact-link {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-family: 'Source Sans 3', sans-serif;
  color: var(--gray-700);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-link:hover {
  color: var(--black);
}

.contact-link:hover .contact-link-value {
  color: var(--black);
}

.contact-link-text {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.contact-link-label {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-500);
}

.contact-link:hover .contact-link-label {
  color: var(--gray-700);
}

.contact-link-value {
  font-size: 0.9375rem;
  color: var(--gray-800);
  word-break: break-all;
}

.contact-link-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-600);
  flex-shrink: 0;
}

.contact-link:hover .contact-link-icon {
  color: var(--black);
}

.contact-link-icon svg {
  display: block;
}

/* Widget card — dark style with window bar; fixed height so it doesn’t jump between steps */
.contact-widget {
  background: rgba(17, 17, 17, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 1.5rem;
  overflow: hidden;
  height: 420px;
  max-width: 28rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
}

.contact-widget-bar {
  flex-shrink: 0;
  height: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
}

.contact-widget-dots {
  display: flex;
  gap: 0.375rem;
  opacity: 0.8;
}

.contact-widget-dots .dot-red {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ef4444;
}
.contact-widget-dots .dot-yellow {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #eab308;
}
.contact-widget-dots .dot-green {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22c55e;
}

.contact-widget-bar-label {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-500);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.contact-form {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  padding: 1.25rem 1.5rem 1.5rem;
  overflow: hidden;
}

.contact-botcheck {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.contact-step {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex: 1;
  min-height: 0;
}

.contact-step[hidden] {
  display: none !important;
}

.contact-step-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.125rem;
}

.contact-step-icon {
  font-size: 1.25rem;
}

.contact-step-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 1.0625rem;
  letter-spacing: 0.02em;
  color: var(--white);
  margin: 0;
  display: block;
}

.contact-back {
  background: none;
  border: none;
  color: var(--gray-400);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

.contact-back:hover {
  color: var(--white);
}

/* Calendar — header row (icon + title + month | chevrons) */
.calendar-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.65rem;
}

.calendar-header-left {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.calendar-icon-box {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.calendar-icon-box svg {
  width: 16px;
  height: 16px;
}

.calendar-header-left .calendar-month-label {
  display: block;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gray-400);
  margin-top: 0;
}

.calendar-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.calendar-prev,
.calendar-next {
  background: none;
  border: none;
  color: var(--gray-500);
  padding: 0.45rem;
  cursor: pointer;
  border-radius: 0.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.calendar-prev svg,
.calendar-next svg {
  width: 18px;
  height: 18px;
}

.calendar-prev:hover,
.calendar-next:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.calendar-weekdays {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.625rem;
  font-weight: 700;
  color: var(--gray-500);
  letter-spacing: 0.05em;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.3rem;
  margin-bottom: 0.45rem;
  text-align: center;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.45rem;
  margin-bottom: 0;
}

.calendar-day {
  min-height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--gray-500);
  background: transparent;
  border: none;
  border-radius: 0.4rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.calendar-day:disabled {
  cursor: default;
  color: var(--gray-600);
  opacity: 0.45;
}

.calendar-day.available {
  color: var(--gray-300);
}

.calendar-day.available:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.calendar-day.selected {
  background: var(--white);
  color: var(--black);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

.calendar-day.blank {
  cursor: default;
  visibility: hidden;
}

/* Calendar footer (Start date / CTA) */
.calendar-footer {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.02);
  padding: 1rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.calendar-footer-label {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-500);
  display: block;
}

.calendar-footer-date {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--white);
}

.calendar-footer-cta {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.75rem;
  color: var(--gray-500);
}

/* Time slots — dark widget */
.contact-widget .contact-selected-date {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.875rem;
  color: var(--gray-400);
  margin: 0 0 0.5rem 0;
}

.time-slots {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.contact-widget .time-slot {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.5rem 0.65rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.45rem;
  color: var(--gray-200);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.875rem;
  cursor: pointer;
  text-align: left;
}

.contact-widget .time-slot:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.12);
}

.contact-widget .time-slot.selected {
  background: var(--white);
  border-color: var(--white);
  color: var(--black);
}

.contact-widget .contact-timezone-note {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.75rem;
  color: var(--gray-500);
  margin: 0 0 0.5rem 0;
}

/* Your details step — dark widget */
.contact-widget .contact-selected-datetime {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.8125rem;
  color: var(--gray-400);
  margin: 0 0 0.35rem 0;
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  margin-bottom: 0.35rem;
}

.contact-widget .contact-field-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  color: var(--gray-400);
}

.contact-widget .contact-input {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.875rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.4rem 0.55rem;
  border-radius: 0.4rem;
  width: 100%;
}

.contact-widget .contact-input::placeholder {
  color: var(--gray-500);
}

.contact-widget .contact-input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.2);
}

.contact-widget .booking-summary {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0.4rem;
  padding: 0.45rem 0.55rem;
  margin: 0.35rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.8125rem;
  color: var(--gray-300);
}

.contact-widget .booking-summary strong {
  color: var(--white);
}

.contact-step-buttons {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.25rem;
}

.contact-widget-btn {
  font-family: 'Archivo Narrow', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  padding: 0.5rem 1.25rem;
  border: none;
  border-radius: 0.45rem;
  cursor: pointer;
  background: var(--gray-200);
  color: var(--gray-800);
}

.contact-step[data-step="3"] .contact-widget-btn--submit {
  padding: 0.4rem 1rem;
  font-size: 0.8125rem;
}

.contact-widget-btn:hover:not(:disabled) {
  background: var(--gray-300);
}

.contact-widget-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.contact-widget-btn--next:not(:disabled),
.contact-widget-btn--submit {
  background: var(--black);
  color: var(--white);
}

.contact-widget-btn--submit:hover:not(:disabled) {
  background: var(--gray-800);
}

.contact-widget-btn--submit:disabled {
  opacity: 0.6;
}

.contact-message {
  padding: 0.75rem;
  border-radius: 6px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.875rem;
  color: var(--gray-800);
  margin-top: 0.75rem;
}

.contact-message--success {
  background: var(--gray-100);
  border: 1px solid var(--gray-300);
}

.contact-message--error {
  background: var(--gray-100);
  border: 1px solid var(--gray-400);
}

.contact-message[hidden] {
  display: none !important;
}

/* ----- Footer — grayscale theme, basic links ----- */
.site-footer {
  background: var(--black);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent 0,
    transparent calc(100% / 8 - 1px),
    rgba(255, 255, 255, 0.02) calc(100% / 8 - 1px),
    rgba(255, 255, 255, 0.02) calc(100% / 8)
  );
  pointer-events: none;
}

.footer-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2rem;
}

.footer-nav a {
  font-family: 'Archivo Narrow', sans-serif;
  font-weight: 500;
  font-size: 0.9375rem;
  letter-spacing: 0.04em;
  color: var(--gray-400);
  text-decoration: none;
}

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

.footer-copy {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--gray-600);
  margin: 0;
}

/* ----- Responsive ----- */
@media (max-width: 768px) {
  .hero {
    min-height: 95vh;
  }

  .hero-bg-cutout {
    mask-size: 90% auto;
    -webkit-mask-size: 90% auto;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-headlines {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: start;
  }

  .hero-headline-left,
  .hero-headline-right {
    transform: none;
    text-align: left;
  }

  .hero-headline-right {
    order: -1;
    display: flex;
    flex-wrap: nowrap;
    gap: 0.25rem;
    margin-bottom: 0.75rem;
  }

  .hero-headline-right .hero-title-line {
    display: inline-block;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: flex-end;
  }
}

@media (max-width: 640px) {
  .hero-bg-cutout {
    mask-size: 100% auto;
    -webkit-mask-size: 100% auto;
  }

  .hero-stripes {
    background: repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent calc(100% / 6 - 1px),
      rgba(255, 255, 255, 0.04) calc(100% / 6 - 1px),
      rgba(255, 255, 255, 0.04) calc(100% / 6)
    );
  }

  .services-stripes {
    background: repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent calc(100% / 6 - 1px),
      rgba(0, 0, 0, 0.025) calc(100% / 6 - 1px),
      rgba(0, 0, 0, 0.025) calc(100% / 6)
    );
  }

  .about-stripes {
    background: repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent calc(100% / 5 - 1px),
      rgba(255, 255, 255, 0.03) calc(100% / 5 - 1px),
      rgba(255, 255, 255, 0.03) calc(100% / 5)
    );
  }

  .work-stripes {
    background: repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent calc(100% / 6 - 1px),
      rgba(0, 0, 0, 0.025) calc(100% / 6 - 1px),
      rgba(0, 0, 0, 0.025) calc(100% / 6)
    );
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .nav-links {
    display: none;
  }

  .work-item {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }
}
