:root {
  --cream: #f5efe4;
  --paper: #fbf7ef;
  --sand: #dccbb2;
  --warm: #a6774d;
  --copper: #8c5d39;
  --navy: #0f2332;
  --navy-soft: #253a45;
  --olive: #70745f;
  --line: rgba(15, 35, 50, 0.14);
  --shadow: 0 26px 70px rgba(42, 29, 18, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--navy);
  background:
    radial-gradient(circle at 30% 0%, rgba(255, 255, 255, 0.75), transparent 34rem),
    linear-gradient(180deg, var(--paper), var(--cream));
  font-family: Avenir, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.55;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 20;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(15, 35, 50, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 35, 50, 0.035) 1px, transparent 1px);
  background-size: 3px 3px;
  mix-blend-mode: multiply;
}

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

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

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 10;
  width: min(calc(100% - 28px), 1160px);
  min-height: 62px;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 12px 14px 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  background: rgba(251, 247, 239, 0.78);
  box-shadow: 0 18px 54px rgba(31, 23, 15, 0.12);
  backdrop-filter: blur(18px);
}

.brand,
.nav-links,
.nav-cta,
.lang-button {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.brand-mark {
  width: 22px;
  height: 22px;
  border: 1px solid var(--navy);
  border-radius: 50%;
  position: relative;
}

.brand-mark::after {
  content: "";
  position: absolute;
  left: 4px;
  right: 4px;
  bottom: 4px;
  height: 7px;
  border-radius: 0 0 999px 999px;
  background: var(--navy);
}

.nav-links {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  color: rgba(15, 35, 50, 0.78);
}

.nav-links a {
  transition: color 180ms ease;
}

.nav-links a:hover {
  color: var(--copper);
}

.header-actions {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  padding: 3px;
  border: 1px solid rgba(15, 35, 50, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.36);
}

.lang-button {
  min-width: 38px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  color: rgba(15, 35, 50, 0.62);
  background: transparent;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
}

.lang-button.is-active {
  color: var(--paper);
  background: var(--navy);
}

.nav-cta {
  padding: 13px 18px;
  border-radius: 999px;
  color: var(--paper);
  background: var(--navy);
  white-space: nowrap;
}

.hero {
  min-height: 100svh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 106px clamp(22px, 7vw, 96px) 44px;
}

.hero-image,
.final-cta img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image {
  object-position: 66% 50%;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 35, 50, 0.82), rgba(15, 35, 50, 0.46) 42%, rgba(15, 35, 50, 0.08)),
    linear-gradient(180deg, rgba(15, 35, 50, 0.12), rgba(15, 35, 50, 0.42));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  color: var(--paper);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--warm);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero .eyebrow,
.final-cta .eyebrow {
  color: #dfc39a;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 20px;
  font-size: clamp(3.15rem, 6.7vw, 5.35rem);
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.35rem, 5.8vw, 5.5rem);
}

h3 {
  margin-bottom: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 1.08;
}

.hero-copy {
  max-width: 570px;
  margin-bottom: 18px;
  color: rgba(251, 247, 239, 0.86);
  font-size: clamp(1.02rem, 1.45vw, 1.2rem);
}

.hero-services {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.hero-services span {
  padding: 9px 12px;
  border: 1px solid rgba(251, 247, 239, 0.28);
  border-radius: 999px;
  color: rgba(251, 247, 239, 0.9);
  background: rgba(15, 35, 50, 0.26);
  backdrop-filter: blur(14px);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 15px 22px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover,
.package-card a:hover,
.nav-cta:hover {
  transform: translateY(-2px);
}

.button-light {
  color: var(--navy);
  background: var(--paper);
}

.button-dark {
  color: var(--paper);
  border: 1px solid rgba(251, 247, 239, 0.34);
  background: rgba(15, 35, 50, 0.34);
  backdrop-filter: blur(16px);
}

.intro-strip {
  padding: clamp(46px, 8vw, 88px) clamp(22px, 7vw, 96px);
  background: var(--navy);
  color: var(--paper);
}

.intro-strip p {
  width: min(1120px, 100%);
  margin: 0 auto;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 5rem);
  line-height: 1.03;
}

.section-shell {
  width: min(1160px, calc(100% - 44px));
  margin: 0 auto;
  padding: clamp(64px, 8vw, 108px) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.48fr);
  gap: 18px clamp(30px, 6vw, 76px);
  align-items: end;
  margin-bottom: clamp(30px, 5vw, 56px);
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.section-heading h2 {
  grid-column: 1 / 2;
  margin: 0;
}

.section-heading p:not(.eyebrow) {
  grid-column: 2 / 3;
  margin-bottom: 0;
  color: rgba(15, 35, 50, 0.72);
  font-size: 1.05rem;
}

.centered {
  display: block;
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
}

.centered p:not(.eyebrow) {
  max-width: 620px;
  margin: 0 auto;
}

.project-feature {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.project-feature img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.project-note {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.project-note span,
.experience-list span {
  padding: 10px 13px;
  border: 1px solid rgba(251, 247, 239, 0.34);
  border-radius: 999px;
  color: var(--paper);
  background: rgba(15, 35, 50, 0.54);
  backdrop-filter: blur(14px);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.foundation-grid,
.project-grid,
.process-grid,
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.project-grid {
  margin-top: 16px;
}

.foundation-grid article,
.project-grid article,
.process-grid article,
.quote-card,
.package-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(251, 247, 239, 0.68);
  box-shadow: 0 18px 56px rgba(43, 30, 19, 0.06);
}

.foundation-grid article,
.project-grid article,
.process-grid article,
.quote-card {
  padding: 28px;
}

.foundation-grid article {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0)),
    rgba(251, 247, 239, 0.72);
}

.foundation-grid span,
.project-grid span,
.process-grid span {
  display: inline-block;
  margin-bottom: 36px;
  color: var(--warm);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.foundation-grid p,
.project-grid p,
.process-grid p,
.package-card p,
.about-copy p,
.experience-copy p,
.quote-card span {
  color: rgba(15, 35, 50, 0.68);
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.65fr);
  gap: clamp(30px, 8vw, 100px);
  align-items: start;
}

.about-panel {
  padding-top: 8px;
}

.about-copy {
  border-left: 1px solid var(--line);
  padding-left: clamp(24px, 4vw, 54px);
  font-size: 1.1rem;
}

.identity {
  background:
    linear-gradient(rgba(15, 35, 50, 0.03), rgba(15, 35, 50, 0.03)),
    #efe4d2;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.package-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 30px;
}

.package-label {
  margin-bottom: 20px;
  color: var(--warm);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.package-card ul {
  display: grid;
  gap: 12px;
  margin: 22px 0 28px;
  padding: 0;
  list-style: none;
}

.package-card li {
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(15, 35, 50, 0.1);
  color: rgba(15, 35, 50, 0.82);
}

.package-card a {
  display: inline-flex;
  justify-content: center;
  margin-top: auto;
  padding: 14px 18px;
  border-radius: 999px;
  color: var(--paper);
  background: var(--navy);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
  transition: transform 180ms ease;
}

.featured-card {
  color: var(--paper);
  background: var(--navy);
  transform: translateY(-14px);
}

.featured-card p,
.featured-card li {
  color: rgba(251, 247, 239, 0.72);
}

.featured-card li {
  border-bottom-color: rgba(251, 247, 239, 0.14);
}

.featured-card h3 {
  color: var(--paper);
}

.featured-card a {
  color: var(--navy);
  background: var(--paper);
}

.process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.experience {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.65fr);
  gap: clamp(28px, 7vw, 90px);
  align-items: center;
  padding: clamp(66px, 8vw, 108px) clamp(22px, 7vw, 96px);
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(15, 35, 50, 0.96), rgba(37, 58, 69, 0.92)),
    var(--navy);
}

.experience-copy {
  max-width: 780px;
}

.experience-copy p:not(.eyebrow) {
  max-width: 590px;
  color: rgba(251, 247, 239, 0.72);
  font-size: 1.1rem;
}

.experience-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-content: center;
}

.experience-list span {
  color: var(--navy);
  border-color: rgba(251, 247, 239, 0.3);
  background: var(--paper);
}

.testimonials {
  padding-top: clamp(64px, 8vw, 108px);
}

.quote-card p {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  line-height: 1.08;
}

.quote-card span {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.final-cta {
  position: relative;
  min-height: 82svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 110px clamp(22px, 7vw, 96px);
  color: var(--paper);
}

.final-cta img {
  object-position: 58% 50%;
}

.final-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 35, 50, 0.84), rgba(15, 35, 50, 0.48) 45%, rgba(15, 35, 50, 0.16)),
    linear-gradient(180deg, rgba(15, 35, 50, 0.08), rgba(15, 35, 50, 0.44));
}

.final-content {
  position: relative;
  z-index: 1;
  width: min(820px, 100%);
}

.final-content h2 {
  margin-bottom: 32px;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(22px, 7vw, 96px);
  color: rgba(15, 35, 50, 0.66);
  background: var(--paper);
  font-size: 0.86rem;
}

footer p {
  margin: 0;
}

.section-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 680ms ease, transform 680ms ease;
}

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

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: auto auto;
    border-radius: 26px;
  }

  .nav-links {
    display: none;
  }

  .header-actions {
    justify-self: end;
  }

  .hero {
    min-height: 92svh;
  }

  .hero-shade,
  .final-overlay {
    background: linear-gradient(180deg, rgba(15, 35, 50, 0.72), rgba(15, 35, 50, 0.58));
  }

  .section-heading,
  .about,
  .experience {
    grid-template-columns: 1fr;
  }

  .project-grid,
  .foundation-grid,
  .package-grid,
  .process-grid,
  .testimonials {
    grid-template-columns: 1fr;
  }

  .featured-card {
    transform: none;
  }

  .about-copy {
    border-left: 0;
    padding-left: 0;
  }
}

@media (max-width: 560px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    min-height: 56px;
    padding: 10px;
  }

  .brand,
  .nav-cta,
  .lang-button {
    font-size: 0.68rem;
    letter-spacing: 0.06em;
  }

  .brand {
    gap: 8px;
  }

  .nav-cta {
    padding: 11px 12px;
  }

  .header-actions {
    gap: 6px;
  }

  .language-switch {
    padding: 2px;
  }

  .lang-button {
    min-width: 32px;
    height: 30px;
  }

  .nav-cta {
    max-width: 112px;
    white-space: normal;
    text-align: center;
    line-height: 1.05;
  }

  .hero {
    align-items: flex-end;
    padding: 96px 20px 46px;
  }

  h1 {
    font-size: clamp(3rem, 17vw, 4.7rem);
  }

  h2 {
    font-size: clamp(2.15rem, 12vw, 3.7rem);
  }

  .button {
    width: 100%;
  }

  .section-shell {
    width: min(100% - 34px, 1160px);
  }

  .project-feature,
  .project-feature img {
    min-height: 430px;
  }

  .project-feature img {
    object-position: 55% 50%;
  }

  .project-note {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .project-note span,
  .experience-list span {
    font-size: 0.67rem;
  }

  .package-card,
  .foundation-grid article,
  .project-grid article,
  .process-grid article,
  .quote-card {
    padding: 24px;
  }

  .final-cta {
    min-height: 76svh;
    padding: 90px 20px 54px;
    align-items: flex-end;
  }

  footer {
    display: block;
  }

  footer p + p {
    margin-top: 6px;
  }
}

@media (max-height: 760px) and (min-width: 760px) {
  .hero {
    padding-top: 96px;
    padding-bottom: 34px;
  }

  h1 {
    font-size: clamp(3rem, 5.7vw, 4.55rem);
  }

  .hero-copy {
    max-width: 640px;
    margin-bottom: 14px;
    font-size: 1rem;
  }

  .hero-services {
    margin-bottom: 22px;
  }

  .hero-services span {
    padding: 8px 11px;
    font-size: 0.68rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
  }
}
