:root {
  --paper: #f4f1ec;
  --paper-deep: #ece6de;
  --surface: #f8f5f0;
  --surface-strong: #ffffff;
  --surface-tint: #fcfaf7;
  --text: #2f2b28;
  --muted: #6a6159;
  --line: #ddd4ca;
  --accent: #b7a390;
  --accent-dark: #8f7a66;
  --accent-ink: #5e4e41;
  --accent-soft: rgba(183, 163, 144, 0.16);
  --warm-glow: rgba(183, 163, 144, 0.24);
  --shadow: 0 18px 40px rgba(47, 43, 40, 0.08);
  --shadow-soft: 0 10px 26px rgba(47, 43, 40, 0.08);
  --shadow-strong: 0 24px 44px rgba(47, 43, 40, 0.14);
  --radius: 28px;
  --radius-sm: 14px;
  --max: 1220px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background:
    radial-gradient(90rem 44rem at 8% -8%, var(--warm-glow), transparent 52%),
    radial-gradient(54rem 30rem at 92% 4%, rgba(183, 163, 144, 0.1), transparent 56%),
    linear-gradient(180deg, #f9f6f1 0%, var(--paper) 62%, #f7f3ee 100%);
  color: var(--text);
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: var(--text);
  color: #fff;
  transition: top 0.2s ease;
}

.skip-link:focus { top: 1rem; }

.container {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}

.container.narrow { max-width: 820px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(248, 244, 238, 0.86);
  border-bottom: 1px solid rgba(221, 212, 202, 0.78);
  box-shadow: 0 10px 28px rgba(47, 43, 40, 0.06);
}

.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.15rem, 2.1vw, 1.55rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  white-space: nowrap;
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  color: var(--muted);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
}

.nav-links a {
  position: relative;
  padding-bottom: 0.15rem;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.1rem;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-links a:hover::after,
.nav-links a.nav-cta::after { transform: scaleX(1); }

.nav-links .nav-cta {
  color: var(--text);
  font-weight: 600;
  padding: 0.5rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-links .nav-cta::after {
  display: none;
}

.nav-links .nav-cta:hover {
  border-color: var(--accent-dark);
  background: #fff;
  transform: translateY(-1px);
}

h1, h2, h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  line-height: 1.08;
  margin: 0 0 1rem;
  letter-spacing: -0.005em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.6rem, 6vw, 5rem); }
h2 { font-size: clamp(1.9rem, 3.4vw, 3rem); }

h3 {
  font-size: 1.35rem;
  letter-spacing: 0.02em;
}

.eyebrow {
  font-family: "Manrope", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  color: var(--accent-dark);
  font-weight: 600;
  margin: 0 0 1rem;
}

.lead {
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 66ch;
  margin: 0 0 2rem;
}

.hero {
  padding: clamp(4.8rem, 9vw, 7rem) 0 clamp(3.6rem, 7vw, 5rem);
  position: relative;
}

.hero:not(.hero-bg)::before {
  content: "";
  position: absolute;
  inset: 1.8rem 0 auto;
  height: 20rem;
  background:
    radial-gradient(36rem 14rem at 20% 14%, rgba(183, 163, 144, 0.2), transparent 70%),
    radial-gradient(26rem 11rem at 78% 22%, rgba(183, 163, 144, 0.13), transparent 72%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 { max-width: 18ch; }

.hero-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.06em;
  font-size: 0.92rem;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

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

.btn-primary {
  background: linear-gradient(145deg, var(--text), #3f3a35 52%, var(--accent-ink));
  color: var(--paper);
  box-shadow: 0 12px 22px rgba(47, 43, 40, 0.16);
}

.btn-primary:hover {
  background: linear-gradient(145deg, #3a3430, #4a433d 54%, var(--accent-dark));
  box-shadow: 0 16px 28px rgba(47, 43, 40, 0.24);
}

.btn-ghost {
  border-color: rgba(143, 122, 102, 0.36);
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
}

.btn-ghost:hover {
  border-color: var(--accent-dark);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.section {
  padding: 5.5rem 0;
  position: relative;
}

.section.alt {
  background: linear-gradient(180deg, rgba(236, 230, 222, 0.88) 0%, rgba(232, 224, 215, 0.92) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section.alt::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.25) 0,
    rgba(255, 255, 255, 0.25) 1px,
    transparent 1px,
    transparent 16px
  );
  opacity: 0.2;
  pointer-events: none;
}

.section.alt > .container {
  position: relative;
  z-index: 1;
}

.section-head {
  margin-bottom: 3rem;
  max-width: 720px;
}

.section-head h2 {
  margin-bottom: 0.7rem;
}

.ventures-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.venture-card {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, var(--surface-tint) 100%);
  border: 1px solid rgba(221, 212, 202, 0.9);
  border-radius: var(--radius);
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.venture-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong);
  border-color: var(--accent-dark);
  background: linear-gradient(180deg, #ffffff 0%, #f9f4ee 100%);
}

.venture-card-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--paper-deep);
}

.venture-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.03);
  transition: transform 0.55s ease, filter 0.4s ease;
}

.venture-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(47, 43, 40, 0.02) 40%, rgba(47, 43, 40, 0.2) 100%);
  pointer-events: none;
}

.venture-card:hover .venture-card-media img {
  transform: scale(1.05);
  filter: saturate(1.1) contrast(1.05);
}

.venture-card-body {
  padding: 1.75rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.venture-card .eyebrow { margin-bottom: 0.6rem; }
.venture-card h3 { margin-bottom: 0.5rem; }

.venture-card p {
  color: var(--muted);
  margin: 0 0 1.5rem;
  flex-grow: 1;
}

.venture-link {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.venture-link::after {
  content: "\2192";
  transition: transform 0.2s ease;
}

.venture-card:hover .venture-link::after { transform: translateX(4px); }

.venture-card .external-tag {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 2;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-ink);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(6px);
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid rgba(221, 212, 202, 0.88);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: center;
}

.about-grid p {
  color: var(--muted);
  font-size: 1.05rem;
}

.about-media {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--paper-deep);
  box-shadow: var(--shadow-soft);
}

.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  z-index: -2;
  opacity: 0.62;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(244, 241, 236, 0.26) 0%, rgba(244, 241, 236, 0.93) 88%),
    radial-gradient(circle at 20% 30%, rgba(244, 241, 236, 0.08), rgba(244, 241, 236, 0.84) 70%);
  z-index: -1;
}

.contact-block {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.contact-card {
  background: linear-gradient(180deg, #ffffff 0%, var(--surface-tint) 100%);
  border: 1px solid rgba(221, 212, 202, 0.9);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--accent);
}

.contact-card .name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  margin: 0 0 0.25rem;
}

.contact-card .role {
  color: var(--muted);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 1.25rem;
}

.contact-card a {
  font-weight: 600;
  color: var(--accent-dark);
  word-break: break-all;
  text-decoration: underline;
  text-decoration-color: rgba(143, 122, 102, 0.35);
  text-underline-offset: 0.14em;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.contact-card a:hover {
  color: var(--text);
  text-decoration-color: rgba(47, 43, 40, 0.5);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.service-card {
  background: linear-gradient(180deg, #ffffff 0%, var(--surface-tint) 100%);
  border: 1px solid rgba(221, 212, 202, 0.9);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--accent);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.6rem;
}

.service-card p {
  color: var(--muted);
  margin: 0;
}

.metrics-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.metric-card {
  background: linear-gradient(180deg, #ffffff 0%, var(--surface-tint) 100%);
  border: 1px solid rgba(221, 212, 202, 0.9);
  border-radius: var(--radius);
  padding: 1.3rem 1.35rem 1.2rem;
  box-shadow: var(--shadow-soft);
}

.metric-value {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4.2vw, 2.7rem);
  line-height: 1;
  margin: 0 0 0.55rem;
  color: var(--accent-ink);
}

.metric-label {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 1.1rem;
}

.showcase-stack {
  display: grid;
  gap: 1.1rem;
}

.showcase-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(221, 212, 202, 0.84);
  box-shadow: var(--shadow-soft);
  min-height: 260px;
  isolation: isolate;
}

.showcase-feature {
  min-height: 545px;
}

.showcase-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.showcase-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(47, 43, 40, 0.06) 34%, rgba(47, 43, 40, 0.72) 100%);
  z-index: 1;
}

.showcase-card-body {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  padding: 1.2rem 1.3rem 1.25rem;
}

.showcase-card-body .eyebrow {
  margin-bottom: 0.5rem;
  color: rgba(255, 245, 232, 0.88);
}

.showcase-card h3 {
  color: #fff;
  margin-bottom: 0.35rem;
}

.showcase-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.96rem;
  line-height: 1.5;
}

.showcase-card:hover img {
  transform: scale(1.04);
}

.process-strip {
  margin-top: 1.1rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
}

.process-step {
  text-align: center;
  background: linear-gradient(180deg, rgba(183, 163, 144, 0.25), rgba(183, 163, 144, 0.12));
  border: 1px solid rgba(221, 212, 202, 0.92);
  color: var(--text);
  border-radius: 999px;
  padding: 0.62rem 0.85rem;
  font-size: 0.83rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(180deg, rgba(183, 163, 144, 0.22), rgba(183, 163, 144, 0.12));
  border: 1px solid rgba(221, 212, 202, 0.92);
  color: var(--text);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}

.social-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.social-row a {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.62);
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  color: var(--muted);
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.social-row a:hover {
  border-color: var(--accent-dark);
  background: #fff;
  color: var(--text);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 2.5rem 0;
  color: var(--muted);
  font-size: 0.9rem;
  background: linear-gradient(180deg, rgba(248, 244, 238, 0) 0%, rgba(236, 230, 222, 0.4) 100%);
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-wrap nav {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.footer-wrap nav a {
  position: relative;
}

.footer-wrap nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.18rem;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.footer-wrap nav a:hover::after {
  transform: scaleX(1);
}

@media (prefers-reduced-motion: no-preference) {
  .hero .container > * {
    opacity: 0;
    transform: translateY(12px);
    animation: rise-in 0.65s ease forwards;
  }

  .hero .container > *:nth-child(1) { animation-delay: 0.03s; }
  .hero .container > *:nth-child(2) { animation-delay: 0.1s; }
  .hero .container > *:nth-child(3) { animation-delay: 0.17s; }
  .hero .container > *:nth-child(4) { animation-delay: 0.24s; }
  .hero .container > *:nth-child(5) { animation-delay: 0.31s; }
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .ventures-grid,
  .contact-block,
  .service-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-grid { gap: 1.5rem; }
  .hero { padding: 4.5rem 0 3rem; }
  .section { padding: 4rem 0; }
  .nav-links { gap: 1rem; font-size: 0.85rem; }

  .venture-card-body,
  .service-card,
  .contact-card { padding: 1.5rem; }

  .metrics-row,
  .process-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .showcase-feature {
    min-height: 380px;
  }
}

@media (max-width: 560px) {
  .brand {
    letter-spacing: 0.16em;
    font-size: 1.05rem;
  }

  .nav-links a:not(.nav-cta) { display: none; }

  .nav-links .nav-cta {
    padding: 0.45rem 0.8rem;
    font-size: 0.82rem;
  }

  .btn {
    width: 100%;
  }

  .metrics-row,
  .showcase-stack,
  .process-strip {
    grid-template-columns: 1fr;
  }

  .showcase-card {
    min-height: 220px;
  }

  .showcase-feature {
    min-height: 280px;
  }
}
