:root {
  --sand: #f6efe6;
  --sun: #e7b35b;
  --leaf: #1f4f46;
  --lagoon: #1b7b84;
  --ink: #1c1c1c;
  --cloud: #f9f7f2;
  --rose: #efc5a7;
  --shadow: rgba(17, 29, 41, 0.18);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Work Sans", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 10% 10%, #fff4de, var(--sand) 40%)
      fixed,
    linear-gradient(135deg, #fdfbf6 0%, #f3efe5 100%) fixed;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 24px 56px;
}

.hero {
  padding-bottom: 72px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 56px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand-mark {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: linear-gradient(140deg, var(--sun), var(--rose));
  box-shadow: 0 14px 30px var(--shadow);
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand-title {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 20px;
}

.brand-subtitle {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(28, 28, 28, 0.6);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-link {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

.nav-cta {
  border: none;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--leaf);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 18px 30px rgba(31, 79, 70, 0.25);
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px;
  align-items: center;
}

.hero-copy h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.05;
  margin: 18px 0 18px;
}

.lead {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(28, 28, 28, 0.75);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(31, 79, 70, 0.08);
  color: var(--leaf);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin: 26px 0 30px;
}

.primary,
.ghost {
  padding: 14px 24px;
  border-radius: 16px;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.primary {
  background: var(--lagoon);
  color: #fff;
  box-shadow: 0 16px 30px rgba(27, 123, 132, 0.3);
}

.ghost {
  background: transparent;
  border: 1px solid rgba(28, 28, 28, 0.2);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.hero-stats div {
  background: rgba(255, 255, 255, 0.65);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.stat-number {
  display: block;
  font-weight: 700;
  font-size: 18px;
}

.stat-label {
  font-size: 13px;
  color: rgba(28, 28, 28, 0.6);
}

.hero-visual {
  position: relative;
  min-height: 420px;
  overflow: hidden;
}

.image-slot {
  background: linear-gradient(140deg, rgba(31, 79, 70, 0.1), rgba(231, 179, 91, 0.35));
  border: 1px dashed rgba(28, 28, 28, 0.2);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: rgba(28, 28, 28, 0.6);
  text-align: center;
  padding: 0;
  overflow: hidden;
}

.image-slot.photo {
  border: none;
  background: transparent;
}

.image-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-visual .large {
  width: 100%;
  height: 360px;
}

.hero-visual .small {
  position: absolute;
  width: 150px;
  height: 120px;
  background: linear-gradient(140deg, rgba(231, 179, 91, 0.3), rgba(31, 79, 70, 0.2));
}

.hero-visual .small.top {
  top: 16px;
  right: 28px;
}

.hero-visual .small.bottom {
  bottom: 16px;
  left: 28px;
}

.section {
  padding: 72px 0;
}

.section-header {
  max-width: 620px;
}

.section-header h2,
.experience-copy h2,
.contact-card h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 3vw, 40px);
  margin: 12px 0;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(28, 28, 28, 0.6);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 36px;
}

.card {
  background: #fff;
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.07);
}

.card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.card p {
  color: rgba(28, 28, 28, 0.7);
  line-height: 1.6;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
  align-items: center;
}

.feature-list {
  list-style: none;
  display: grid;
  gap: 14px;
  margin-top: 20px;
  color: rgba(28, 28, 28, 0.75);
}

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

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--sun);
}

.experience-visual {
  display: grid;
  gap: 20px;
}

.image-slot.tall {
  height: 320px;
}

.image-slot.wide {
  height: 180px;
  padding: 16px;
}

.image-slot.wide.photo {
  padding: 0;
}

.contact {
  padding-bottom: 0;
}

.contact-card {
  background: linear-gradient(135deg, #fff, #f3e9db);
  padding: 36px;
  border-radius: 28px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 26px;
  align-items: center;
  box-shadow: 0 28px 50px rgba(0, 0, 0, 0.12);
}

.contact-info {
  display: grid;
  gap: 18px;
}

.info-block {
  background: rgba(255, 255, 255, 0.75);
  padding: 16px;
  border-radius: 16px;
  display: grid;
  gap: 6px;
  font-weight: 600;
}

.info-title {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(28, 28, 28, 0.6);
}

.contact-image {
  height: 220px;
}

.contact-image img {
  object-position: center 30%;
}

.experience-visual .image-slot.tall img {
  object-position: center 25%;
}

.footer {
  padding: 28px 0 12px;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: rgba(28, 28, 28, 0.6);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  .hero-grid,
  .experience-grid,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-actions {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .hero-visual {
    min-height: 360px;
  }

  .hero-visual .small.top {
    top: 12px;
    right: 24px;
  }

  .hero-visual .small.bottom {
    bottom: 12px;
    left: 24px;
  }

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

  .footer {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 600px) {
  .page {
    padding: 24px 16px 40px;
  }

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

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-visual .large {
    height: 280px;
  }

  .hero-visual .small {
    display: none;
  }
}
