/* ═══════════════════════════════════════════ RESET & VARIABLES */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:       #0A0A0A;
  --dark:        #111111;
  --white:       #FFFFFF;
  --page-bg:     #FFFFFF;
  --card-bg:     #F3F4F6;
  --card-bg-alt: #ECEEF1;
  --text-main:   #111111;
  --text-sub:    #555555;
  --text-muted:  #888888;
  --border:      rgba(0,0,0,0.07);
  --border-d:    rgba(255,255,255,0.08);
  --orange:      #FF6200;
  --orange-dk:   #E05500;
  --radius:      12px;
  --radius-lg:   24px;
  --radius-sm:   8px;
  --shadow-sm:   0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:   0 6px 24px rgba(0,0,0,0.10);
  --shadow-lg:   0 16px 48px rgba(0,0,0,0.14);
  --shadow-hover:0 20px 56px rgba(0,0,0,0.18);
  --transition:  0.28s cubic-bezier(0.4,0,0.2,1);
  --font:        'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --gutter:      1.25rem;
  --section-x:   1.5rem;
}

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

body {
  font-family: var(--font);
  background: var(--page-bg);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }
ul { list-style: none; }

/* ═══════════════════════════════════════════ UTILITIES */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--section-x);
}

.section { padding: 1.5rem 0; }

.eyebrow {
  display: inline-block;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.875rem;
}

.section-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 2.5rem;
  color: var(--text-main);
}
.section-title em { font-style: normal; color: var(--orange); }

/* ═══════════════════════════════════════════ BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--orange {
  background: var(--orange);
  color: #fff;
}
.btn--orange:hover {
  background: var(--orange-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,98,0,0.35);
}

.btn--outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.45);
}
.btn--outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1.5px solid var(--border);
}
.btn--ghost:hover { border-color: var(--text-sub); color: var(--text-main); }

.btn--ghost-dark {
  background: transparent;
  color: var(--text-main);
  border: 1.5px solid rgba(0,0,0,0.15);
}
.btn--ghost-dark:hover {
  border-color: var(--orange);
  color: var(--orange);
}

/* ═══════════════════════════════════════════ BENTO CARD */
.bento-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--border);
}
.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* ═══════════════════════════════════════════ SCROLL ANIMATION */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════ NAV */
.nav {
  position: fixed;
  top: 1rem; left: 1.5rem; right: 1.5rem;
  z-index: 1000;
  background: rgba(10,10,10,0.45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-d);
  border-radius: var(--radius-lg);
  transition: background var(--transition);
}

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--section-x);
  height: 68px;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__logo {
  flex-shrink: 0;
  width: 72px;
  height: 40px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--white);
  padding: 4px 6px;
}
.nav__logo img { object-fit: contain; }

.nav__links {
  display: flex;
  gap: 2rem;
  margin-left: auto;
}
.nav__links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}
.nav__links a:hover { color: #fff; }

.nav__cta { margin-left: 1rem; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: auto;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all var(--transition);
}

.nav__mobile {
  display: none;
  flex-direction: column;
  padding: 1.25rem var(--section-x) 1.5rem;
  border-top: 1px solid var(--border-d);
}
.nav__mobile.open { display: flex; }
.nav__mobile-link {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-d);
}
.nav__mobile-link:hover { color: #fff; }

/* ═══════════════════════════════════════════ HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin: 1rem 1.5rem;
  border-radius: var(--radius-lg);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(0,0,0,0.75) 0%,
    rgba(0,0,0,0.45) 55%,
    rgba(0,0,0,0.3) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 0 2rem 5rem 3rem;
  max-width: 580px;
  width: 100%;
}

.hero__eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.25rem;
}

.hero__headline {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 1.25rem;
}
.hero__headline em { font-style: normal; color: var(--orange); }

.hero__sub {
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.78);
  max-width: 520px;
  margin-bottom: 2.25rem;
  line-height: 1.7;
}

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

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
  animation: bounce 2.5s ease-in-out infinite;
}
.hero__scroll:hover { color: var(--orange); }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ═══════════════════════════════════════════ STATS */
.stats { padding: 1.5rem 0; }

.stats__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--gutter);
}

.stat {
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.25rem;
}
.stat:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.stat__number {
  font-size: clamp(2.4rem, 5vw, 3.25rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--text-main);
  line-height: 1;
}
.stat__suffix {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
}
.stat__label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.375rem;
}

/* ═══════════════════════════════════════════ ABOUT */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: stretch;
}

.about__text p {
  color: var(--text-sub);
  margin-bottom: 1rem;
  line-height: 1.75;
}

.about__highlights {
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.about__highlight {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-main);
}
.about__highlight svg { color: var(--orange); flex-shrink: 0; }

.about__image {
  position: relative;
  min-height: 0;
  overflow: hidden;
}
.about__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ═══════════════════════════════════════════ SERVICES */
.services .eyebrow,
.services .section-title { text-align: center; }
.services .section-title { margin-bottom: 2.5rem; }

.services__bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gutter);
}

.services__card {
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.services__icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: rgba(255,98,0,0.08);
  border: 1px solid rgba(255,98,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
  margin-bottom: 0.25rem;
}

.services__card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: -0.01em;
}
.services__card p {
  font-size: 0.875rem;
  color: var(--text-sub);
  line-height: 1.7;
}

.services__list {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.services__list li {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  padding-left: 1.25rem;
  position: relative;
}
.services__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
}

/* ═══════════════════════════════════════════ PROJECTS */
.projects__rows {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: var(--gutter);
}

.project-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--gutter);
  height: 360px;
}

.project-row__photo {
  overflow: hidden;
  position: relative;
  border-radius: var(--radius-lg);
}
.project-row__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.project-row__photo:hover img { transform: scale(1.04); }

.project-row__info {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  overflow: visible;
  height: 100%;
}

.project-info__meta {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-wrap: wrap;
}

.project-info__tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.625rem;
  border-radius: 50px;
}
.project-info__tag--live {
  background: rgba(255,98,0,0.1);
  color: var(--orange);
  border: 1px solid rgba(255,98,0,0.2);
}

.project-info__location {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
}

.project-row__info h3 {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-main);
  line-height: 1.2;
}

.project-row__info p {
  font-size: 0.85rem;
  color: var(--text-sub);
  line-height: 1.65;
  flex: 1;
}

.project-info__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 0.875rem;
  border-top: 1px solid var(--border);
}

.project-info__stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.project-info__stat-val {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--orange);
}

.project-info__stat-lbl {
  font-size: 0.68rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════ CONTACT */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gutter);
  align-items: stretch;
  margin-top: 0.5rem;
}

.contact__left {
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.contact__person {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.contact__portrait {
  width: 150px;
  height: 200px;
  border-radius: 16px;
  object-fit: cover;
  object-position: 50% 0%;
  flex-shrink: 0;
  border: 3px solid var(--orange);
}

.contact__person-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.contact__person-info strong {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
}
.contact__person-info span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.contact__detail-row {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-sub);
  transition: color var(--transition);
}
.contact__detail-row:hover { color: var(--orange); }
.contact__detail-row svg { color: var(--orange); flex-shrink: 0; }

.contact__ctas {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.contact__ctas .btn { justify-content: center; }

.contact__right {
  padding: 2.25rem;
}

.contact__form-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.375rem;
  color: var(--text-main);
}

.contact__form-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

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

.contact__success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.875rem;
  padding: 2rem 0;
}
.contact__success h4 {
  font-size: 1.2rem;
  font-weight: 700;
}
.contact__success p { font-size: 0.875rem; color: var(--text-muted); }

/* ═══════════════════════════════════════════ FOOTER */
.footer {
  background: var(--dark);
  border-top: 1px solid var(--border-d);
  padding: 2.25rem 0;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer__logo {
  width: 56px;
  height: 32px;
  object-fit: contain;
  background: var(--white);
  padding: 3px 5px;
  border-radius: 6px;
}
.footer__copy { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.footer__links { display: flex; gap: 1.5rem; }
.footer__links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--orange); }

/* ═══════════════════════════════════════════ FORM SHARED */
.modal-form, .contact-form { display: flex; flex-direction: column; gap: 1rem; }

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

.form-group { display: flex; flex-direction: column; gap: 0.35rem; }
.form-group label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-sub);
}
.form-group input,
.form-group textarea {
  padding: 0.7rem 0.875rem;
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 0.875rem;
  color: var(--text-main);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,98,0,0.1);
}
.form-group textarea { resize: vertical; min-height: 80px; }

.form-actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin-top: 0.25rem;
}

/* ═══════════════════════════════════════════ MODAL */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.modal-overlay.open {
  display: flex;
  opacity: 1;
}
.modal-overlay.visible { opacity: 1; }

.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 580px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.modal--wide { max-width: 900px; }

.modal__close {
  position: absolute;
  top: 1.125rem;
  right: 1.125rem;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--card-bg);
  color: var(--text-sub);
  font-size: 1.2rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), color var(--transition);
  z-index: 1;
}
.modal__close:hover { background: var(--text-main); color: var(--white); }

.modal__header {
  padding: 2rem 2rem 1.375rem;
  border-bottom: 1px solid var(--border);
}
.modal__header h3 {
  font-size: 1.375rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}
.modal__header p { font-size: 0.85rem; color: var(--text-muted); }

.modal__body { padding: 1.5rem 2rem 2rem; }

.modal__success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.5rem 2rem;
  gap: 0.875rem;
}
.modal__success h4 {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.modal__success p { font-size: 0.875rem; color: var(--text-muted); }
.modal__success a { color: var(--orange); font-weight: 600; }

/* ═══════════════════════════════════════════ CALENDAR BOOKING */
.modal__body--calendar {
  display: grid;
  grid-template-columns: 240px 1fr 180px;
  gap: 1.5rem;
  padding: 1.5rem 1.75rem;
  min-height: 400px;
}

.cal-section-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

/* Left column: form */
.cal-form {
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--border);
  padding-right: 1.5rem;
}
.cal-form form { display: flex; flex-direction: column; gap: 0.75rem; flex: 1; }

.cal-selected-slot {
  margin-top: 0.75rem;
  padding: 0.625rem 0.875rem;
  background: var(--card-bg);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-sub);
  border: 1.5px solid var(--border);
  text-align: center;
}
.cal-selected-slot.active {
  background: rgba(255,98,0,0.06);
  border-color: rgba(255,98,0,0.3);
  color: var(--orange);
}

/* Center column: calendar grid */
.cal-grid {
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--border);
  padding-right: 1.5rem;
}

.cal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.cal-nav__btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--card-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-sub);
  transition: background var(--transition), color var(--transition);
  border: 1px solid var(--border);
}
.cal-nav__btn:hover { background: var(--orange); color: #fff; border-color: var(--orange); }

.cal-nav__label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-main);
}

.cal-days-header {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 0.375rem;
}
.cal-days-header span {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.25rem 0;
}

.cal-days-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
}

.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 0.825rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  color: var(--text-main);
  border: 1.5px solid transparent;
}
.cal-day:hover:not(.cal-day--disabled):not(.cal-day--empty) {
  background: var(--card-bg);
  border-color: rgba(255,98,0,0.3);
  color: var(--orange);
}
.cal-day--disabled, .cal-day--empty {
  color: rgba(0,0,0,0.2);
  cursor: default;
  pointer-events: none;
}
.cal-day--weekend { color: rgba(0,0,0,0.25); cursor: default; pointer-events: none; }
.cal-day--today { font-weight: 800; }
.cal-day--selected {
  background: var(--orange) !important;
  color: #fff !important;
  border-color: var(--orange) !important;
  font-weight: 700;
}
.cal-day--empty { background: transparent; cursor: default; }

/* Right column: time slots */
.cal-slots { display: flex; flex-direction: column; }
.cal-slots__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}
.cal-slots__placeholder {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
  text-align: center;
  margin-top: 1rem;
}
.cal-time-pill {
  width: 100%;
  padding: 0.55rem 0.875rem;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-main);
  cursor: pointer;
  transition: all var(--transition);
  background: var(--white);
  text-align: center;
}
.cal-time-pill:hover { border-color: var(--orange); color: var(--orange); }
.cal-time-pill.selected {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

/* ═══════════════════════════════════════════ RESPONSIVE */
@media (max-width: 1024px) {
  .services__bento { grid-template-columns: 1fr; }
  .project-row { height: auto; }
  .about__grid { grid-template-columns: 1fr; }
  .about__image { height: 300px; }
}

@media (max-width: 900px) {
  .modal--wide { max-width: 98vw; }
  .modal__body--calendar {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .cal-form { border-right: none; padding-right: 0; border-bottom: 1px solid var(--border); padding-bottom: 1.25rem; }
  .cal-grid { border-right: none; padding-right: 0; border-bottom: 1px solid var(--border); padding-bottom: 1.25rem; }
}

@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }

  .hero__headline { font-size: clamp(2.5rem, 10vw, 4rem); }

  .stats__grid {
    grid-template-columns: 1fr;
    gap: var(--gutter);
  }

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

  /* Projects: single column on mobile — photo on top, info below */
  .project-row {
    grid-template-columns: 1fr;
    height: auto;
  }
  .project-row__photo {
    height: 260px;
  }
  .project-row__photo--secondary {
    display: none;
  }
  .project-row__info {
    height: auto;
  }
  .project-info__stats {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Contact: stack on mobile */
  .contact__grid { grid-template-columns: 1fr; }

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

  .footer__inner {
    flex-direction: column;
    text-align: center;
  }
  .footer__links { justify-content: center; }
}

@media (max-width: 480px) {
  .section { padding: 3.5rem 0; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .modal { border-radius: var(--radius); }
  .modal__header, .modal__body { padding-left: 1.25rem; padding-right: 1.25rem; }
  .project-info__stats { grid-template-columns: 1fr 1fr; }
}
