:root {
  --black: #050505;
  --charcoal: #111111;
  --soft-black: #181818;
  --silver: #c9c9c9;
  --silver-dark: #8f8f8f;
  --white: #ffffff;
  --muted: #d8d8d8;
  --line: rgba(255, 255, 255, 0.16);
  --glass: rgba(10, 10, 10, 0.68);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 6vw;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.24));
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brand { display: flex; align-items: center; gap: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.82rem; }
.brand img { width: 44px; height: 44px; }

.nav-links { display: flex; gap: 28px; font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.nav-links a { transition: color 0.2s ease; }
.nav-links a:hover { color: var(--white); }

.hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 120px 24px 80px;
  background:
    linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.70)),
    url("images/hero_photo.jpg") center/cover no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(255,255,255,0.08), rgba(0,0,0,0.5) 42%, rgba(0,0,0,0.92) 100%),
    linear-gradient(to bottom, rgba(0,0,0,0.28), rgba(0,0,0,0.72));
}

.hero-content { position: relative; z-index: 2; max-width: 980px; }
.hero-logo { width: 154px; margin: 0 auto 26px; filter: drop-shadow(0 20px 35px rgba(0,0,0,0.8)); }

.eyebrow, .section-kicker {
  color: var(--silver);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.76rem;
  font-weight: 600;
  margin-bottom: 16px;
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  margin: 0;
  font-weight: 600;
  line-height: 1.05;
}

h1 { font-size: clamp(3rem, 8vw, 7rem); max-width: 980px; margin: 0 auto 24px; }
h2 { font-size: clamp(2.4rem, 5vw, 4.8rem); }
h3 { font-size: 1.75rem; margin-bottom: 12px; }

.hero-text { max-width: 760px; margin: 0 auto 34px; color: var(--muted); font-size: clamp(1rem, 2vw, 1.25rem); }

.hero-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: 0 26px;
  border-radius: 999px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
  border: 1px solid var(--line);
}
.button:hover { transform: translateY(-2px); }
.primary { background: linear-gradient(135deg, #ffffff, #a8a8a8); color: #050505; border-color: rgba(255,255,255,0.4); }
.secondary { background: rgba(0,0,0,0.28); color: var(--white); }

.section { padding: 110px 6vw; }
.split-layout { display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr); gap: 72px; align-items: start; max-width: 1180px; margin: 0 auto; }
.copy-block { color: var(--muted); font-size: 1.02rem; }
.copy-block p { margin-top: 0; margin-bottom: 22px; }

.about-section { background: linear-gradient(180deg, #050505, #101010); }
.dark-section { background: #0b0b0b; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.dark-section > h2, .dark-section > .section-kicker { max-width: 1180px; margin-left: auto; margin-right: auto; }
.dark-section > h2 { max-width: 860px; margin-left: calc((100% - min(1180px, 88vw)) / 2); margin-bottom: 46px; }

.card-grid { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.experience-card {
  min-height: 260px;
  padding: 30px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}
.experience-card span { color: var(--silver-dark); letter-spacing: 0.2em; font-size: 0.75rem; }
.experience-card p { color: var(--muted); margin-bottom: 0; }

.retreat-section {
  min-height: 720px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(rgba(0,0,0,0.58), rgba(0,0,0,0.86)),
    url("images/hero_photo.jpg") center/cover fixed no-repeat;
}
.glass-panel {
  max-width: 760px;
  padding: clamp(34px, 6vw, 72px);
  background: var(--glass);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 30px 100px rgba(0,0,0,0.55);
  backdrop-filter: blur(16px);
}
.glass-panel p { color: var(--muted); font-size: 1.08rem; margin-bottom: 28px; }

.contact-section { background: linear-gradient(180deg, #0b0b0b, #050505); }
.contact-layout { align-items: stretch; }
.contact-intro { color: var(--muted); max-width: 520px; }
.contact-details { margin-top: 32px; color: var(--muted); }
.contact-details a { border-bottom: 1px solid var(--silver-dark); }
.contact-form {
  padding: 34px;
  background: rgba(255,255,255,0.045);
  border: 1px solid var(--line);
}
.contact-form label { display: block; margin-bottom: 8px; color: var(--silver); font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; }
.contact-form input, .contact-form textarea {
  width: 100%;
  margin-bottom: 18px;
  padding: 14px 15px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(0,0,0,0.42);
  color: var(--white);
  font: inherit;
  border-radius: 0;
}
.contact-form input:focus, .contact-form textarea:focus { outline: 1px solid var(--silver); }
.contact-form button { width: 100%; margin-top: 8px; }

.footer {
  padding: 46px 6vw;
  text-align: center;
  color: var(--silver-dark);
  border-top: 1px solid var(--line);
  background: #030303;
}
.footer img { width: 78px; margin: 0 auto 18px; }
.footer p { margin: 4px 0; }

@media (max-width: 900px) {
  .site-header { position: absolute; align-items: flex-start; gap: 18px; }
  .nav-links { display: none; }
  .split-layout { grid-template-columns: 1fr; gap: 34px; }
  .card-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 84px 6vw; }
}

@media (max-width: 620px) {
  .brand span { font-size: 0.68rem; }
  .hero { padding-top: 125px; }
  .hero-logo { width: 124px; }
  .card-grid { grid-template-columns: 1fr; }
  .experience-card { min-height: auto; }
  .button { width: 100%; }
  .glass-panel, .contact-form { padding: 28px; }
}
.footer {
  padding: 70px 20px 58px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at center top, rgba(255, 255, 255, 0.08), transparent 38%),
    #020202;
}

.footer-brand-mark img {
  width: 150px;
  max-width: 70vw;
  display: block;
  margin: 0 auto 22px;
}

.footer-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0 auto 18px;
  color: #c8b88a;
}

.footer-divider span {
  width: 90px;
  height: 1px;
  background: rgba(200, 184, 138, 0.5);
}

.footer-divider strong {
  font-size: 18px;
  line-height: 1;
}

.footer-name {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #ffffff;
  margin: 0 0 8px;
}

.footer-tagline {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
  margin: 0;
}

/* ===== FOUNDER SECTION ===== */

.founder-section {
    padding: 120px 8%;
    background: #050505;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.founder-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 80px;
    align-items: center;
}

.founder-image img {
    width: 100%;
    max-width: 420px;
    border-radius: 28px;
    display: block;
    object-fit: cover;
    box-shadow: 0 30px 60px rgba(0,0,0,0.45);
    margin: 0 auto;
}
.founder-image {
    display: flex;
    justify-content: center;
    align-items: center;
}
.founder-content h2 {
    font-size: clamp(2.6rem, 5vw, 4.5rem);
    line-height: 1.05;
    margin-bottom: 28px;
    color: #f5efe7;
}

.founder-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: rgba(255,255,255,0.78);
    margin-bottom: 24px;
    max-width: 720px;
}

.credentials {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    color: #d7c6a0;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* MOBILE */

@media (max-width: 900px) {

    .founder-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .founder-image {
        max-width: 420px;
        margin: 0 auto;
    }

    .founder-content {
        text-align: center;
    }

    .founder-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .credentials {
        align-items: center;
    }
}

