/* ============================================
   RESET BUILDERS — Global Stylesheet
   ============================================ */

/* --- VARIABLES --- */
:root {
  --green:   #1B3A2D;
  --cream:   #F9F7F3;
  --gold:    #C4A882;
  --dark:    #2C2C2C;
  --white:   #FFFFFF;
  --light:   rgba(249,247,243,0.75);

  --font-display: 'Cormorant Garamond', serif;
  --font-body:    'EB Garamond', serif;
  --font-ui:      'Inter', sans-serif;
}

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--cream);
  color: var(--dark);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- NAVBAR --- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 60px;
  background: var(--green);
}
.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo-img {
  height: 72px;
  width: auto;
  object-fit: contain;
  display: block;
}
.nav-logo-text {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--cream);
}
.logo-thin { font-weight: 300; }
.nav-links {
  display: flex;
  gap: 48px;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--cream);
  letter-spacing: 0.02em;
  transition: opacity 0.2s;
}
.nav-links a:hover { opacity: 0.7; }

/* --- BUTTONS & LINKS --- */
.btn-outline {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--cream);
  border: 1px solid var(--cream);
  padding: 14px 32px;
  letter-spacing: 0.02em;
  transition: background 0.2s, color 0.2s;
}
.btn-outline:hover {
  background: var(--cream);
  color: var(--green);
}
.btn-outline-dark {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--dark);
  border: 1px solid var(--dark);
  padding: 14px 32px;
  letter-spacing: 0.02em;
  transition: background 0.2s, color 0.2s;
}
.btn-outline-dark:hover {
  background: var(--dark);
  color: var(--cream);
}
.link-arrow {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.05em;
  display: inline-block;
  margin-top: 8px;
  transition: opacity 0.2s;
}
.link-arrow:hover { opacity: 0.7; }

/* --- EYEBROW --- */
.eyebrow {
  display: block;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.eyebrow-white {
  color: rgba(249,247,243,0.6);
}

/* --- CONTAINERS --- */
.container-centered {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.container-wide {
  max-width: 1100px;
  margin: 0 auto;
}

/* ============================================
   HOMEPAGE
   ============================================ */

/* HERO */
.section-hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(27,58,45,0.5) 0%, rgba(27,58,45,0.7) 100%);
  z-index: 1;
}
.section-hero > img,
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 40px;
  max-width: 900px;
}
.hero-heading {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 400;
  line-height: 1.05;
  color: var(--cream);
  letter-spacing: 0.04em;
  margin-bottom: 28px;
}
.hero-sub {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--light);
  margin-bottom: 40px;
  line-height: 1.7;
}

/* PHILOSOPHY */
.section-philosophy {
  background: var(--cream);
  padding: 120px 60px;
}
.section-philosophy h2 {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 32px;
}
.section-philosophy p {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--dark);
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
}

/* MORGAN FEATURED */
.section-morgan {
  background: var(--green);
}
.morgan-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
.morgan-text {
  padding: 100px 80px 100px 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.morgan-text h2 {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 24px;
}
.morgan-text p {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--light);
  line-height: 1.8;
  margin-bottom: 32px;
}
.morgan-image {
  overflow: hidden;
  min-height: 500px;
  background: rgba(27,58,45,0.5);
}

/* ELLIS */
.section-ellis {
  background: var(--cream);
}
.ellis-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}
.ellis-image {
  overflow: hidden;
  min-height: 400px;
  background: #d9d4cc;
}
.ellis-text {
  padding: 100px 100px 100px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ellis-text h2 {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 400;
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 20px;
}
.ellis-text p {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--dark);
  line-height: 1.8;
  margin-bottom: 24px;
}

/* SERVICES */
.section-services {
  background: var(--green);
  padding: 120px 60px;
}
.section-services .eyebrow { color: var(--gold); }
.section-services h2 {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 60px;
  max-width: 600px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.service-card h3 {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--cream);
  margin-bottom: 16px;
}
.service-card p {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--light);
  line-height: 1.7;
}

/* CTA */
.section-cta {
  background: var(--green);
  padding: 120px 60px;
  border-top: 1px solid rgba(249,247,243,0.1);
}
.section-cta h2 {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 20px;
}
.section-cta p {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--light);
  margin-bottom: 40px;
}

/* FOOTER */
.footer {
  background: var(--green);
  padding: 80px 60px 48px;
  border-top: 1px solid rgba(249,247,243,0.15);
}
.footer-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.footer-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
}
.footer-logo-img {
  height: 80px;
  width: auto;
  object-fit: contain;
  display: block;
}
.footer-tagline {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.4;
  margin-bottom: 32px;
}
.footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(249,247,243,0.2);
  margin-bottom: 32px;
}
.footer-social {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 32px;
}
.footer-social a { opacity: 0.8; transition: opacity 0.2s; }
.footer-social a:hover { opacity: 1; }
.footer-copy {
  font-family: var(--font-ui);
  font-size: 12px;
  color: rgba(249,247,243,0.5);
  letter-spacing: 0.05em;
}

/* BACK TO TOP */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  background: rgba(27,58,45,0.85);
  border: 1px solid rgba(249,247,243,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 99;
  transition: background 0.2s;
}
.back-to-top:hover { background: var(--green); }

/* ============================================
   ABOUT PAGE
   ============================================ */
.section-about-hero {
  background: var(--green);
  padding: 160px 60px 120px;
  text-align: center;
}
.section-about-hero h1 {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.1;
  max-width: 800px;
  margin: 0 auto 24px;
}
.section-about-hero p {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-about-intro {
  background: var(--cream);
  padding: 0;
}
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 700px;
}
.about-text-col {
  padding: 100px 80px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: sticky;
  top: 80px;
  align-self: flex-start;
}
.about-text-col .section-label {
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.about-text-col h2 {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 400;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 24px;
}
.about-text-col p {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--dark);
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-photo-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.about-photo-col .photo-wrapper {
  flex: 1;
  overflow: hidden;
  min-height: 380px;
  max-height: 760px;
  background: #d9d4cc;
}
.about-photo-col .photo-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.about-photo-col .photo-gap {
  height: 4px;
  background: var(--cream);
}

.section-about-approach {
  background: var(--green);
  padding: 120px 60px;
  text-align: center;
}
.section-about-approach h2 {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.2;
  max-width: 700px;
  margin: 0 auto 24px;
}
.section-about-approach p {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--light);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.8;
}

.section-about-difference {
  background: var(--cream);
  padding: 120px 60px;
  text-align: center;
}
.section-about-difference h2 {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 400;
  color: var(--dark);
  line-height: 1.2;
  max-width: 700px;
  margin: 0 auto 24px;
}
.section-about-difference p {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--dark);
  max-width: 620px;
  margin: 0 auto 16px;
  line-height: 1.8;
}

.section-about-fit {
  background: var(--green);
  padding: 120px 60px;
  text-align: center;
}
.section-about-fit h2 {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.2;
  max-width: 700px;
  margin: 0 auto 24px;
}
.section-about-fit p {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--light);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.section-contact-hero {
  background: var(--green);
  padding: 160px 60px 120px;
  text-align: center;
}
.contact-hero-container {
  max-width: 800px;
  margin: 0 auto;
}
.section-contact-hero h1 {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 24px;
}
.section-contact-hero p {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--light);
  margin-bottom: 40px;
  line-height: 1.7;
}
.btn-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.microcopy {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(249,247,243,0.6);
  line-height: 1.6;
}

.section-contact-form {
  background: var(--cream);
  padding: 100px 60px;
}
.contact-form-container {
  max-width: 680px;
  margin: 0 auto;
}
.form-label {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--dark);
  margin-bottom: 6px;
  margin-top: 20px;
}
.form-label:first-of-type { margin-top: 0; }
.role-label {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--dark);
  margin-bottom: 10px;
  display: block;
}
.role-row {
  display: flex;
  gap: 32px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.role-row label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--dark);
  cursor: pointer;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--dark);
  background: var(--white);
  border: 1px solid #ddd;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--green);
}
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%232C2C2C' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.form-textarea { min-height: 120px; resize: vertical; }
.form-submit {
  display: inline-block;
  margin-top: 28px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--dark);
  background: transparent;
  border: 1px solid var(--dark);
  padding: 14px 32px;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: background 0.2s, color 0.2s;
}
.form-submit:hover { background: var(--dark); color: var(--cream); }

.what-happens-next {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(44,44,44,0.1);
}
.what-happens-next h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--green);
  margin-bottom: 16px;
}
.what-happens-next p {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--dark);
  line-height: 1.7;
  margin-bottom: 10px;
}
.trust-line {
  margin-top: 32px;
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(44,44,44,0.6);
  line-height: 1.7;
}

/* ============================================
   PROJECTS PAGE
   ============================================ */
.section-projects-hero {
  background: var(--green);
  padding: 160px 60px 120px;
  text-align: center;
}
.section-projects-hero h1 {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.1;
  max-width: 700px;
  margin: 0 auto 24px;
}
.section-projects-hero p {
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--light);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-projects-grid {
  background: var(--cream);
  padding: 100px 60px;
}
.projects-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Morgan Card — Featured */
.project-card-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  margin-bottom: 48px;
  background: var(--green);
}
.project-card-featured .card-image {
  overflow: hidden;
  background: #2a4a38;
  min-height: 400px;
}
.project-card-featured .card-text {
  padding: 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.project-card-featured .card-text h2 {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 20px;
}
.project-card-featured .card-text p {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--light);
  line-height: 1.8;
  margin-bottom: 28px;
}

/* Ellis Card — Secondary */
.project-card-secondary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
  margin-bottom: 48px;
  background: var(--white);
  border: 1px solid rgba(44,44,44,0.08);
}
.project-card-secondary .card-image {
  overflow: hidden;
  background: #d9d4cc;
  min-height: 360px;
}
.project-card-secondary .card-text {
  padding: 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.project-card-secondary .card-text h2 {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 400;
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 16px;
}
.project-card-secondary .card-text p {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--dark);
  line-height: 1.8;
  margin-bottom: 24px;
}

/* Third tier — two column */
.project-cards-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.project-card-small {
  background: var(--white);
  border: 1px solid rgba(44,44,44,0.08);
  overflow: hidden;
}
.project-card-small .card-image {
  height: 280px;
  overflow: hidden;
  background: #d9d4cc;
}
.project-card-small .card-text {
  padding: 36px 40px 40px;
}
.project-card-small .card-text h3 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 12px;
}
.project-card-small .card-text p {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--dark);
  line-height: 1.7;
  margin-bottom: 16px;
  opacity: 0.8;
}

/* ============================================
   PAGE HERO PADDING (accounts for fixed nav)
   ============================================ */
.page-top-pad { padding-top: 80px; }

/* ============================================
   FORM SUCCESS STATE
   ============================================ */
.form-success {
  display: none;
  text-align: center;
  padding: 60px 0;
}
.form-success.active { display: block; }
.form-success h3 {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--green);
  margin-bottom: 12px;
}
.form-success p {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--dark);
}

/* ============================================
   RESPONSIVE — TABLET (max 1024px)
   ============================================ */
@media (max-width: 1024px) {
  .navbar { padding: 16px 40px; }
  .morgan-text { padding: 80px 60px 80px 60px; }
  .ellis-text { padding: 80px 60px 80px 60px; }
  .about-text-col { padding: 80px 60px; }
  .section-philosophy { padding: 100px 40px; }
  .section-services { padding: 100px 40px; }
  .section-cta { padding: 100px 40px; }
  .section-contact-hero { padding: 140px 40px 100px; }
  .section-contact-form { padding: 80px 40px; }
  .section-projects-hero { padding: 140px 40px 100px; }
  .section-projects-grid { padding: 80px 40px; }
}

/* ============================================
   RESPONSIVE — MOBILE (max 768px)
   ============================================ */
@media (max-width: 768px) {

  /* NAV */
  .navbar {
    padding: 14px 24px;
    flex-wrap: wrap;
    gap: 12px;
  }
  .nav-logo-img { height: 48px; }
  .nav-links { gap: 24px; }
  .nav-links a { font-size: 14px; }

  /* HERO */
  .hero-heading { font-size: 42px; }
  .hero-sub { font-size: 15px; }

  /* PHILOSOPHY */
  .section-philosophy { padding: 80px 24px; }
  .section-philosophy h2 { font-size: 32px; }
  .section-philosophy p { font-size: 15px; }

  /* MORGAN — stack on mobile */
  .morgan-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }
  .morgan-text {
    padding: 60px 24px;
    order: 2;
  }
  .morgan-text h2 { font-size: 40px; }
  .morgan-image {
    order: 1;
    min-height: 300px;
    max-height: 420px;
  }

  /* ELLIS — stack on mobile */
  .ellis-grid {
    grid-template-columns: 1fr;
  }
  .ellis-image {
    min-height: 300px;
    max-height: 400px;
  }
  .ellis-text {
    padding: 60px 24px;
  }
  .ellis-text h2 { font-size: 36px; }

  /* SERVICES */
  .section-services { padding: 80px 24px; }
  .section-services h2 { font-size: 32px; }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  /* CTA */
  .section-cta { padding: 80px 24px; }
  .section-cta h2 { font-size: 36px; }

  /* FOOTER */
  .footer { padding: 60px 24px 40px; }

  /* ABOUT HERO */
  .section-about-hero { padding: 120px 24px 80px; }
  .section-about-hero h1 { font-size: 38px; }

  /* ABOUT INTRO — stack on mobile */
  .about-intro-grid {
    grid-template-columns: 1fr;
  }
  .about-text-col {
    padding: 60px 24px 40px;
    position: static; /* disable sticky on mobile */
  }
  .about-text-col h2 { font-size: 32px; }
  .about-photo-col .photo-wrapper {
    min-height: 400px;
    max-height: 540px;
  }

  /* ABOUT SECTIONS */
  .section-about-approach,
  .section-about-difference,
  .section-about-fit { padding: 80px 24px; }
  .section-about-approach h2,
  .section-about-difference h2,
  .section-about-fit h2 { font-size: 34px; }

  /* CONTACT HERO */
  .section-contact-hero { padding: 120px 24px 80px; }
  .section-contact-hero h1 { font-size: 34px; }
  .btn-row { flex-direction: column; align-items: center; }
  .btn-row .btn-outline { width: 100%; text-align: center; }

  /* CONTACT FORM */
  .section-contact-form { padding: 60px 24px; }

  /* PROJECTS HERO */
  .section-projects-hero { padding: 120px 24px 80px; }
  .section-projects-hero h1 { font-size: 42px; }

  /* PROJECTS GRID */
  .section-projects-grid { padding: 60px 24px; }

  /* Morgan featured card — stack */
  .project-card-featured {
    grid-template-columns: 1fr;
  }
  .project-card-featured .card-image {
    min-height: 280px;
    max-height: 380px;
  }
  .project-card-featured .card-text {
    padding: 48px 32px;
  }
  .project-card-featured .card-text h2 { font-size: 38px; }

  /* Ellis secondary card — stack */
  .project-card-secondary {
    grid-template-columns: 1fr;
  }
  .project-card-secondary .card-image {
    min-height: 260px;
    max-height: 340px;
  }
  .project-card-secondary .card-text {
    padding: 40px 28px;
  }
  .project-card-secondary .card-text h2 { font-size: 32px; }

  /* Third tier — single column on mobile */
  .project-cards-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .project-card-small .card-image { height: 220px; }
  .project-card-small .card-text { padding: 28px 24px 32px; }
}

/* ============================================
   RESPONSIVE — SMALL MOBILE (max 480px)
   ============================================ */
@media (max-width: 480px) {
  .nav-links { gap: 16px; }
  .nav-links a { font-size: 13px; }
  .hero-heading { font-size: 34px; }
  .section-about-hero h1 { font-size: 32px; }
  .section-contact-hero h1 { font-size: 28px; }
  .section-projects-hero h1 { font-size: 34px; }
  .morgan-text h2 { font-size: 34px; }
}
