:root {
  color-scheme: light;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #F4EFEA;
  color: #5C7A4F;
  --bg: #F4EFEA;
  --surface: rgba(255,255,255,0.92);
  --surface-strong: #fff;
  --text: #8D7A8F;
  --green: #5C7A4F;
  --muted: #8D7A8F;
  --accent: #C9BDC9;
  --accent-strong: #A3C49A;
  --border: rgba(92, 122, 79, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a.button {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(246, 234, 227, 0.90);
  border-bottom: 1px solid rgba(47, 47, 47, 0.05);
  background-color: var(--accent-strong);
}

.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  color: #2F2F2F;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.nav-link {
  padding: 12px 16px;
  border-radius: 999px;
  color: var(--bg);
  transition: background 0.25s ease, color 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
  background: #fff;
  color: #2F2F2F;
}

main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 32px 24px 80px;
}

.hero-section {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  min-height: 88vh;
  padding-top: 36px;
}

.hero-copy {
  max-width: 620px;
}

.eyebrow {
  margin: 0 0 18px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: #8D7A8F;
  font-size: 0.85rem;
}

.hero-copy h1 {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 5vw, 4.5rem);
  line-height: 0.95;
}

.hero-titles {
  display: grid;
  gap: 10px;
  margin: 26px 0 24px;
}

.shadow-text {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 2px 2px;
  background: rgba(201, 189, 201, 0.14);
  color: #5C7A4F;
  font-weight: 600;
}

.hero-text {
  margin: 0 0 30px;
  max-width: 520px;
  color: #8D7A8F;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 24px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* .shadow-text {
  display: inline-block;
  font-weight: bold;
  background: #f2f2f2;
  border-radius: 4px;
  padding: 0 2px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
} */

.button.primary {
  background: #A3C49A;
  color: white;
  box-shadow: 0 18px 40px rgba(163, 196, 154, 0.24);
}

.button.secondary {
  background: rgba(255,255,255,0.92);
  color: #2F2F2F;
  border: 1px solid rgba(47, 47, 47, 0.08);
}

.button:hover {
  transform: translateY(-2px);
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 520px;
}

.hero-shape {
  position: absolute;
  width: 280px;
  height: 360px;
  border-radius: 48% 52% 42% 58% / 46% 49% 51% 54%;
  background: radial-gradient(circle at top left, rgba(201, 189, 201, 0.52), transparent 48%), radial-gradient(circle at bottom right, rgba(244, 239, 234, 0.6), transparent 42%);
  filter: blur(12px);
  transform: rotate(-12deg);
}

.portrait-frame {
  position: relative;
  width: min(420px, 100%);
  aspect-ratio: 4 / 5;
  border-radius: 36px;
  overflow: hidden;
  background: linear-gradient(180deg, #fff 0%, rgba(255,255,255,0.74) 100%);
  box-shadow: 0 40px 80px rgba(47, 47, 47, 0.12);
  border: 1px solid rgba(47, 47, 47, 0.08);
}

.portrait-glow {
  position: absolute;
  inset: 16px;
  background: radial-gradient(circle at 30% 30%, rgba(244, 239, 234, 0.7), transparent 35%);
}

.portrait-card {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.12),
      rgba(47, 47, 47, 0.04)
    ),
    url('./images/introimage.jpg') center/cover no-repeat;
}

.section-card,
.section-split,
.stats-section,
.quote-section {
  margin-top: 80px;
}

.section-card {
  padding: 42px 44px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 32px;
}

.section-card h2,
.section-split h2 {
  margin: 0 0 22px;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 2.7vw, 3rem);
}

.section-card p,
.split-copy p {
  color: #8D7A8F;
  font-size: 1rem;
}

.highlight-grid,
.project-grid,
.timeline-grid,
.row-grid {
  display: grid;
  gap: 24px;
}


.highlights .highlight-grid {
  grid-template-columns: repeat(2, 1fr);
}

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

.highlight-card,
.project-card,
.timeline-card,
.featured-project {
  background: white;
  border: 1px solid rgba(47, 47, 47, 0.08);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 20px 40px rgba(47, 47, 47, 0.05);
}

.highlight-card h3,
.project-card h3,
.timeline-card h3,
.featured-project h3 {
  margin-top: 0;
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
}

.experience-subsection {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(47, 47, 47, 0.08);
}

.experience-subsection h4 {
  margin: 0 0 6px;
  font-size: 1rem;
  color: var(--green);
}

.experience-subsection p {
  margin: 0 0 6px;
  font-size: 0.95rem;
}

.services-layout {
  display: grid;
  grid-template-columns: 1.5fr 0.85fr;
  gap: 24px;
  align-items: start;
}

.services-side-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  aspect-ratio: 1 / 1;
  padding: 28px;
  background: white;
  border: 1px solid rgba(47, 47, 47, 0.08);
  border-radius: 28px;
  box-shadow: 0 20px 40px rgba(47, 47, 47, 0.05);
}

.services-side-card p {
  margin: 0 0 12px;
}

.services-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.service-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--accent-strong);
  color: white;
  font-size: 0.95rem;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(163, 196, 154, 0.2);
}

.services-divider {
  height: 2px;
  margin: 28px 0 20px;
  background: linear-gradient(90deg, transparent, #C9BDC9 50%, transparent);
}

.inline-link {
  margin-top: 0;
  padding: 0;
  background: none;
  color: var(--green);
  box-shadow: none;
}

.gallery-section {
  margin-top: 32px;
}

.gallery-header {
  margin-bottom: 20px;
}

.gallery-header p {
  margin: 0;
  color: #8D7A8F;
}

.gallery-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.gallery-item {
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(244,239,234,0.95));
  border: 1px solid rgba(92, 122, 79, 0.12);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 22px 44px rgba(47, 47, 47, 0.08);
}

.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.gallery-item figcaption {
  margin: 0;
  padding: 16px;
  color: #5C7A4F;
  font-size: 0.95rem;
  font-weight: 600;
}

.featured-project {
  grid-column: span 2;
}

.featured-project .project-tag {
  display: inline-flex;
  margin-bottom: 18px;
  color: #8D7A8F;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.section-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.split-image {
  display: grid;
}

.image-placeholder {
  min-height: 700px;
  border-radius: 32px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.12),
      rgba(47, 47, 47, 0.04)
    ),
    url('./images/aboutmeimage.jpg') center/cover no-repeat;
}

.timeline-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.timeline-card p {
  margin: 12px 0 0;
}

.timeline-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 24px;
}

.timeline-list li {
  position: relative;
  padding-left: 24px;
}

.timeline-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #C9BDC9;
}

.awards-grid {
  display: grid;
  gap: 20px;
}

.award-card {
  background: rgba(244, 239, 234, 0.24);
  border: 1px solid rgba(92, 122, 79, 0.12);
  border-radius: 28px;
  padding: 26px;
  box-shadow: 0 24px 50px rgba(47, 47, 47, 0.08);
}

.award-card p {
  margin: 0;
  color: #8D7A8F;
}

.stats-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  margin-top: 80px;
}

.stat-card {
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(47, 47, 47, 0.08);
  border-radius: 28px;
  padding: 28px 24px;
  text-align: center;
}

.stat-card span {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  line-height: 1;
  color: #2F2F2F;
}

.stat-card p {
  margin: 16px 0 0;
  color: #8D7A8F;
}

.quote-section {
  margin-top: 80px;
  padding: 42px 42px;
  background: rgba(255,255,255,0.84);
  border: 1px solid rgba(92, 122, 79, 0.12);
  border-radius: 32px;
  text-align: center;
}

.quote-section p {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: #5C7A4F;
  line-height: 1.1;
}

.contact-surface {
  display: grid;
  grid-template-columns: 1.3fr 0.85fr;
  gap: 32px;
  align-items: center;
}

.contact-surface h2 {
  margin-top: 0;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.contact-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  padding: 14px 20px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(47, 47, 47, 0.08);
  color: #2F2F2F;
  font-weight: 600;
}

.contact-visual {
  min-height: 300px;
  border-radius: 32px;
  background:
    radial-gradient(
      circle at top left,
      rgba(244, 239, 234, 0.8),
      transparent 30%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(201, 189, 201, 0.4),
      transparent 35%
    ),
    url('./images/excitedcristina.jpg') left/cover no-repeat;
}

.site-footer {
  text-align: center;
  padding: 28px 24px 36px;
  color: #8D7A8F;
  font-size: 0.95rem;
}

@media (max-width: 980px) {
  .hero-section,
  .section-split,
  .contact-surface {
    grid-template-columns: 1fr;
  }

  .featured-project {
    grid-column: span 1;
  }

  .services-layout {
    grid-template-columns: 1fr;
  }

  .services-side-card {
    aspect-ratio: auto;
  }
}

@media (max-width: 720px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-section {
    gap: 28px;
    min-height: auto;
  }

  .hero-text,
  .section-card p,
  .split-copy p,
  .stat-card p {
    font-size: 0.98rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .nav-link {
    padding: 10px 14px;
  }

  .image-placeholder,
  .contact-visual {
    min-height: 260px;
  }
}
