@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500;1,600&family=Cormorant+SC:wght@500;600&family=Inter:wght@400;500;600&display=swap');

:root {
  --cream: #f5f0e8;
  --sand: #BFAC95;
  --linen: #faf7f2;
  --sage: #B6C1B0;
  --pebble: #AFBCC5;
  --saltwater: #D0E2F2;
  --clay: #537179;
  --deep-green: #1c3440;
  --navy: #1c3440;
  --ink: #1c3440;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(28, 52, 64, 0.1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--ink);
  background: var(--linen);
  line-height: 1.7;
}

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

.site-header {
  width: min(1180px, calc(100% - 40px));
  margin: 24px auto 0;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(250, 247, 242, 0.88);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(28, 52, 64, 0.1);
  border-radius: 999px;
  position: sticky;
  top: 16px;
  z-index: 10;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 72px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.92rem;
  font-weight: 500;
}

.nav-button {
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--deep-green);
  color: var(--linen);
}

.hero {
  width: min(1180px, calc(100% - 40px));
  min-height: 78vh;
  margin: 32px auto 0;
  padding: 76px 64px;
  display: grid;
  grid-template-columns: 1.45fr 0.75fr;
  gap: 44px;
  align-items: center;
  background:
    radial-gradient(circle at top right, rgba(175, 188, 197, 0.45), transparent 40%),
    radial-gradient(circle at bottom left, rgba(208, 226, 242, 0.3), transparent 40%),
    linear-gradient(135deg, var(--cream), #e8ddd0);
  border-radius: 42px;
  box-shadow: var(--shadow);
}

.eyebrow {
  color: var(--clay);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 600;
  font-family: "Cormorant SC", serif;
  margin-bottom: 16px;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", serif;
  color: var(--deep-green);
  line-height: 1.05;
}

h1 {
  font-size: clamp(3.2rem, 8vw, 6.8rem);
  max-width: 860px;
  letter-spacing: -0.05em;
}

.hero-text {
  max-width: 690px;
  margin-top: 26px;
  font-size: 1.08rem;
  color: rgba(31, 37, 35, 0.76);
}

.hero-buttons {
  margin-top: 34px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.primary-button,
.secondary-button {
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 600;
}

.primary-button {
  background: var(--deep-green);
  color: var(--linen);
}

.secondary-button {
  border: 1px solid rgba(38, 60, 53, 0.25);
}

.hero-card {
  align-self: end;
  padding: 34px;
  background: rgba(251, 248, 242, 0.74);
  border: 1px solid rgba(38, 60, 53, 0.12);
  border-radius: 32px;
  box-shadow: 0 18px 50px rgba(31, 37, 35, 0.08);
}

.card-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--clay);
  font-weight: 600;
  font-family: "Cormorant SC", serif;
  margin-bottom: 16px;
}

.hero-card h2 {
  font-size: 2.2rem;
  margin-bottom: 18px;
}

.intro {
  width: 100%;
  margin: 0;
  padding: 96px 20px;
  text-align: center;
  background: linear-gradient(135deg, var(--saltwater), #e8eff7);
}

.intro p {
  max-width: 860px;
  margin: 0 auto;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.12;
  color: var(--navy);
  font-style: italic;
}

.services,
.portfolio,
.about,
.contact {
  width: min(1180px, calc(100% - 40px));
  margin: 96px auto;
}

.section-heading {
  max-width: 690px;
  margin-bottom: 34px;
}

.section-heading h2,
.about h2,
.contact h2 {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  letter-spacing: -0.03em;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card {
  padding: 30px;
  background: var(--white);
  border: 1px solid rgba(38, 60, 53, 0.1);
  border-radius: 28px;
  min-height: 310px;
}

.service-card span {
  display: inline-block;
  margin-bottom: 56px;
  color: var(--pebble);
  font-weight: 600;
  font-family: "Cormorant SC", serif;
  letter-spacing: 0.1em;
}

.service-card h3 {
  font-size: 1.8rem;
  margin-bottom: 14px;
}

.service-card p,
.portfolio-item p,
.about p,
.contact p {
  color: rgba(31, 37, 35, 0.72);
}

.project {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 96px;
  padding-bottom: 96px;
  border-bottom: 1px solid rgba(28, 52, 64, 0.1);
}

.project:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.project-reverse {
  direction: rtl;
}

.project-reverse > * {
  direction: ltr;
}

.project-images {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.project-img-main {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 24px;
  display: block;
}

.project-img-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.project-img-strip img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.project-text {
  padding-top: 8px;
}

.project-text h3 {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.project-desc {
  color: rgba(28, 52, 64, 0.72);
  font-size: 1rem;
  margin-bottom: 16px;
  line-height: 1.75;
}

.project-impact {
  margin-top: 28px;
  padding: 24px;
  background: var(--saltwater);
  border-radius: 20px;
}

.project-impact .eyebrow {
  margin-bottom: 10px;
}

.project-impact p:last-child {
  color: var(--navy);
  font-size: 0.96rem;
  line-height: 1.7;
}

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  padding: 64px;
  background: var(--deep-green);
  border-radius: 42px;
}

.about h2,
.about .eyebrow {
  color: var(--linen);
}

.about p {
  color: rgba(251, 248, 242, 0.78);
  font-size: 1.05rem;
}

.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: start;
}

.contact-form {
  background: var(--white);
  padding: 34px;
  border-radius: 32px;
  border: 1px solid rgba(38, 60, 53, 0.1);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  font-weight: 600;
  color: var(--deep-green);
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(38, 60, 53, 0.18);
  border-radius: 18px;
  padding: 14px 16px;
  font: inherit;
  background: var(--linen);
  color: var(--ink);
}

textarea {
  resize: vertical;
}

button {
  width: 100%;
  border: 0;
  border-radius: 999px;
  padding: 15px 20px;
  background: var(--deep-green);
  color: var(--linen);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.footer {
  width: min(1180px, calc(100% - 40px));
  margin: 90px auto 28px;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(31, 37, 35, 0.66);
  border-top: 1px solid rgba(38, 60, 53, 0.12);
}

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

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

  .project,
  .project-reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 32px;
  }

  .project-img-strip {
    grid-template-columns: repeat(4, 1fr);
  }

  .hero {
    padding: 58px 34px;
  }
}

@media (max-width: 680px) {
  .site-header {
    align-items: flex-start;
    border-radius: 28px;
    flex-direction: column;
    gap: 14px;
  }

  .nav-links {
    width: 100%;
    flex-wrap: wrap;
    gap: 12px;
  }

  .hero {
    padding: 48px 24px;
    border-radius: 28px;
  }

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

  .project-img-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .about {
    padding: 38px 26px;
  }

  .footer {
    flex-direction: column;
  }
}
