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

:root {
  --cream: #f5efe7;
  --warm-white: #fff8ef;
  --ink: #211a16;
  --clay: #9b5537;
  --sand: #d7b894;
  --blue: #263746;
  --soft-blue: #7891a2;
  --stone: #9a9084;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Inter", sans-serif;
  line-height: 1.68;
}

.hidden { display: none; }

.password-screen {
  min-height: 100vh;
  background: linear-gradient(rgba(30,14,8,.42), rgba(30,14,8,.68)), url("assets/hero-canyon.jpg") center/cover no-repeat;
  display: grid;
  place-items: center;
  padding: 2rem;
}

.password-card {
  width: min(440px, 92vw);
  background: rgba(245,239,231,.95);
  padding: 3rem;
  text-align: center;
  box-shadow: 0 30px 90px rgba(0,0,0,.28);
}

.password-card h1 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: 3.4rem;
  margin: .2rem 0 1rem;
}

.password-card input {
  width: 100%;
  padding: 1rem;
  border: 1px solid rgba(33,26,22,.22);
  margin: 1rem 0;
  background: #fffaf4;
}

.password-card button {
  width: 100%;
  border: 0;
  padding: 1rem;
  background: var(--ink);
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: .16em;
  cursor: pointer;
}

.password-error {
  color: #8b2e1f;
  min-height: 1.3rem;
  font-size: .9rem;
}

.hero {
  min-height: 100vh;
  color: var(--cream);
  background:
    linear-gradient(90deg, rgba(20,8,4,.82) 0%, rgba(20,8,4,.52) 36%, rgba(20,8,4,.10) 76%),
    url("assets/hero-canyon.jpg") center/cover no-repeat;
  position: relative;
}

.nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 2.2rem 3.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 2;
}

.brand,
.nav-links a {
  color: var(--cream);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: .76rem;
}

.brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem;
  letter-spacing: .28em;
}

.nav-links {
  display: flex;
  gap: 2.2rem;
}

.hero-copy {
  width: min(760px, 90vw);
  padding: 12.8rem 0 6rem 5.2rem;
}

.hero-copy h1 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  line-height: .86;
  letter-spacing: -.03em;
  font-size: clamp(5rem, 10vw, 9.5rem);
  margin: 0 0 1.7rem;
}

.hero-copy h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  line-height: 1.08;
  font-size: clamp(1.8rem, 3vw, 3rem);
  margin: 0 0 1.5rem;
}

.hero-copy h2::after {
  content: "";
  display: block;
  width: 84px;
  height: 1px;
  background: var(--cream);
  margin-top: 1.4rem;
}

.hero-copy p {
  max-width: 680px;
  font-size: 1rem;
  line-height: 1.7;
}

.button {
  display: inline-block;
  text-decoration: none;
  border: 0;
  padding: 1rem 2.1rem;
  margin-top: 1.1rem;
  text-transform: uppercase;
  letter-spacing: .17em;
  font-size: .78rem;
}

.button.light {
  background: var(--cream);
  color: var(--ink);
}

.microcopy {
  font-size: .88rem !important;
  margin-top: 1rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .72rem;
  color: var(--clay);
  margin: 0 0 1rem;
}

.about-panel {
  display: grid;
  grid-template-columns: 1.15fr .95fr;
  min-height: 540px;
  background: var(--warm-white);
}

.about-copy {
  padding: 5.6rem 7vw 5.6rem 12vw;
}

.about-copy h2,
.approach-copy h2,
.work-panel h2,
.contact-panel h2,
.reconnection h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -.015em;
}

.about-copy h2 {
  font-size: clamp(2.2rem, 4vw, 3.65rem);
  margin: 0 0 1.8rem;
}

.about-copy p {
  max-width: 620px;
  font-size: .98rem;
  line-height: 1.72;
}

.about-image-wrap {
  display: flex;
  align-items: stretch;
}

.about-image {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
  object-position: center;
}

.reconnection {
  min-height: 260px;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--cream);
  background:
    linear-gradient(rgba(20,29,38,.64), rgba(20,29,38,.78)),
    radial-gradient(circle at 50% 0%, rgba(120,145,162,.48), transparent 40%),
    linear-gradient(140deg, #263746, #14202a);
  padding: 3rem 2rem;
}

.reconnection h2 {
  color: #d7c4ae;
  font-size: clamp(2.4rem, 4.7vw, 4.2rem);
  margin: 0;
}

.small-rule {
  width: 70px;
  height: 1px;
  background: #d7c4ae;
  margin: 1.3rem auto;
}

.reconnection p {
  margin: 0;
  color: #f5efe7;
}

.approach-panel {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  background: var(--warm-white);
  min-height: 550px;
}

.approach-image img {
  width: 100%;
  height: 100%;
  min-height: 550px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.approach-copy {
  padding: 5.2rem 8vw 4.6rem 6vw;
}

.approach-copy h2 {
  font-size: clamp(2.25rem, 3.8vw, 3.65rem);
  max-width: 630px;
  margin: 0 0 2rem;
}

.approach-copy p {
  max-width: 700px;
  font-size: .98rem;
  line-height: 1.75;
  margin: 0 0 1.15rem;
}

.approach-copy p:last-child {
  margin-bottom: 0;
}

.texture-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 115px;
}

.texture-sky {
  background: linear-gradient(160deg, #7590a4, #d9c3aa 58%, #f5efe7);
}

.texture-sand {
  background:
    radial-gradient(circle at 18% 30%, rgba(155,85,55,.12), transparent 30%),
    linear-gradient(135deg, #efe1cf, #d2b59b);
}

.texture-shadow {
  background:
    radial-gradient(circle at 24% 25%, rgba(33,26,22,.18), transparent 24%),
    linear-gradient(135deg, #d8cbbb, #8d847b);
}

.work-panel {
  background: var(--cream);
  text-align: center;
  padding: 4.2rem 8vw 4.8rem;
}

.work-panel h2 {
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  margin: .2rem 0 2.4rem;
}

.work-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.work-grid article {
  padding: 0 2rem;
  border-right: 1px solid rgba(33,26,22,.18);
}

.work-grid article:last-child {
  border-right: 0;
}

.work-icon {
  width: 42px;
  height: 42px;
  margin: 0 auto 1.15rem;
  color: var(--clay);
}

.work-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.work-grid h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 1.35rem;
  line-height: 1.1;
  margin: 0 0 .85rem;
}

.work-grid p {
  font-size: .9rem;
  line-height: 1.62;
  margin: 0;
}

.exchange-panel {
  background: var(--warm-white);
  text-align: center;
  padding: 4.8rem 1.5rem;
}

.exchange-panel h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -.015em;
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  max-width: 760px;
  margin: 0 auto 1.6rem;
}

.exchange-panel h2 strong {
  font-weight: 500;
}

.exchange-panel p {
  max-width: 760px;
  margin: .9rem auto 0;
  font-size: .98rem;
  line-height: 1.72;
}

.exchange-panel .support-note {
  max-width: 700px;
  margin-top: 2rem;
  color: rgba(33,26,22,.62);
  font-size: .82rem;
}

.contact-panel {
  color: var(--cream);
  text-align: center;
  padding: 3rem 1.5rem 2.3rem;
  background:
    linear-gradient(rgba(18,28,38,.70), rgba(18,28,38,.78)),
    linear-gradient(160deg, #4e6170, #14202a);
}

.contact-panel h2 {
  font-size: clamp(2rem, 3.5vw, 3.4rem);
  margin: 0;
}

.contact-panel p {
  margin: .75rem auto;
  max-width: 680px;
  line-height: 1.7;
}

footer {
  display: flex;
  justify-content: space-between;
  padding: 1.2rem 3.5rem;
  background: var(--cream);
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .72rem;
}

@media (max-width: 900px) {
  .nav {
    position: relative;
    padding: 1.3rem;
    background: rgba(33,26,22,.78);
    flex-direction: column;
    gap: .8rem;
  }

  .nav-links {
    gap: .9rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-links a {
    font-size: .68rem;
  }

  .hero-copy {
    padding: 5rem 1.5rem 4rem;
  }

  .hero-copy h1 {
    font-size: clamp(4rem, 18vw, 6.6rem);
  }

  .about-panel,
  .approach-panel,
  .work-grid,
  .texture-strip {
    grid-template-columns: 1fr;
  }

  .about-copy,
  .approach-copy {
    padding: 3.8rem 1.5rem;
  }

  .about-image,
  .approach-image img {
    min-height: auto;
    aspect-ratio: 4 / 5;
  }

  .texture-strip {
    height: auto;
  }

  .texture {
    min-height: 95px;
  }

  .work-grid article {
    border-right: 0;
    border-bottom: 1px solid rgba(33,26,22,.16);
    padding: 2rem 1.2rem;
  }

  .work-grid article:last-child {
    border-bottom: 0;
  }

  footer {
    flex-direction: column;
    gap: .5rem;
    padding: 1.5rem;
    text-align: center;
  }
}
