/* R² Hospitality rebuild */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){ html { scroll-behavior: auto; } }

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(246, 241, 232, .72), rgba(251, 248, 241, 0) 26rem),
    var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: var(--step-0);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
.measure { max-width: var(--measure); }
.center { text-align: center; }
a { color: var(--gold-deep); text-underline-offset: .18em; }
a:hover { color: var(--green); }
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 4px;
}
sup { font-size: .58em; vertical-align: super; line-height: 0; }

.skip { position: absolute; left: -999px; }
.skip:focus {
  left: 1rem;
  top: 1rem;
  background: var(--green);
  color: var(--on-green);
  padding: .6rem 1rem;
  z-index: 99;
}

/* shared type */
.overline { font-size: var(--step--1); letter-spacing: .22em; text-transform: uppercase; color: var(--ink-faint); margin: 0 0 1rem; }
.overline--gold { color: var(--gold); }
.kicker { font-size: var(--step--1); letter-spacing: .26em; text-transform: uppercase; color: var(--gold); margin: 0 0 1.6rem; }
.h2 { font-family: var(--display); font-weight: 500; font-size: var(--h2); line-height: 1.08; margin: 0 0 1rem; }
p { margin: 0 0 1.1rem; color: var(--ink-soft); }
.section__intro {
  max-width: 42rem;
  margin: .2rem auto 0;
  font-family: var(--display);
  font-size: var(--step-1);
  line-height: 1.45;
  color: var(--ink-soft);
}

/* logo */
.logo { width: 68px; height: 68px; border-radius: 50%; object-fit: cover; display: block; flex: 0 0 auto; }

/* buttons */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 500;
  font-size: var(--step--1);
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: .92rem 1.85rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--gold);
  transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn--gold { background: var(--gold); color: var(--green-deep); border-color: var(--gold); }
.btn--gold:hover { background: var(--gold-deep); border-color: var(--gold-deep); color: #fff; }
.btn--ghost { background: transparent; color: var(--on-green); border-color: rgba(194,162,95,.6); }
.btn--ghost:hover { background: rgba(194,162,95,.14); color: var(--on-green); }

/* nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(251, 248, 241, .94);
  border-bottom: 1px solid rgba(216, 205, 189, .8);
  backdrop-filter: blur(14px);
}
.nav__inner { min-height: var(--nav-height); display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding: .45rem 0; }
.brand { display: inline-flex; text-decoration: none; line-height: 0; }
.brand:focus-visible { outline-offset: 6px; border-radius: 50%; }
.nav__links { display: flex; align-items: center; justify-content: flex-end; gap: clamp(.8rem, 1.8vw, 1.55rem); }
.nav__links a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: .72rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  white-space: nowrap;
}
.nav__links a:hover { color: var(--green); }
.nav__links a.nav__cta {
  color: var(--green-deep);
  background: var(--gold);
  border: 1px solid var(--gold);
  padding: .64rem 1.05rem;
  border-radius: var(--radius-pill);
  font-weight: 500;
}
.nav__links a.nav__cta:hover { color: #fff; background: var(--gold-deep); border-color: var(--gold-deep); }
@media (max-width: 900px){
  .nav__links { display: none; }
  .nav__inner { min-height: 72px; justify-content: center; padding: .55rem 0; }
  .logo { width: 56px; height: 56px; }
}

.mobile-contact { display: none; }
@media (max-width: 900px){
  body { padding-bottom: calc(4.6rem + env(safe-area-inset-bottom)); }
  .mobile-contact {
    position: fixed;
    left: max(1rem, env(safe-area-inset-left));
    right: max(1rem, env(safe-area-inset-right));
    bottom: max(.8rem, env(safe-area-inset-bottom));
    z-index: 60;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .6rem;
    padding: .55rem;
    background: rgba(7, 21, 17, .92);
    border: 1px solid rgba(216, 205, 189, .36);
    border-radius: var(--radius-pill);
    box-shadow: 0 14px 34px rgba(7, 21, 17, .28);
    backdrop-filter: blur(16px);
  }
  .mobile-contact a {
    min-height: 2.8rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-pill);
    color: var(--on-green);
    text-decoration: none;
    font-size: var(--step--1);
    font-weight: 500;
    letter-spacing: .11em;
    text-transform: uppercase;
  }
  .mobile-contact a:first-child { background: var(--gold); color: var(--green-deep); }
  .mobile-contact a:last-child { border: 1px solid rgba(216, 205, 189, .38); }
  .mobile-contact a:first-child:hover { color: var(--green-deep); background: var(--gold-soft); }
  .mobile-contact a:last-child:hover { color: var(--on-green); background: rgba(216, 205, 189, .12); }
}

/* hero: green */
.hero {
  background:
    radial-gradient(circle at 74% 42%, rgba(185, 154, 91, .12), rgba(185, 154, 91, 0) 28rem),
    linear-gradient(90deg, rgba(7,21,17,.97) 0%, rgba(13,36,28,.89) 48%, rgba(13,36,28,.46) 100%),
    url("img/links-sunset.jpg") center 60% / cover no-repeat;
  color: var(--on-green);
  padding: clamp(4.6rem,3.2rem + 5.8vw,8.8rem) 0 clamp(3.8rem,2.7rem + 4.6vw,7.4rem);
}
.hero__content { max-width: 52rem; }
.hero__h1 { font-family: var(--display); font-weight: 500; font-size: var(--h1); line-height: 1.02; color: var(--cream); margin: 0 0 1.35rem; }
.hero__h1 span { display: block; }
.hero__brand {
  margin: 0 0 .85rem;
  color: var(--gold);
  font-family: var(--sans);
  font-size: var(--step--1);
  font-weight: 500;
  letter-spacing: .22em;
  line-height: 1.35;
  text-transform: uppercase;
}
.hero__lead { font-family: var(--display); font-weight: 400; font-size: clamp(1.5rem, 1.2rem + 1.05vw, 1.95rem); line-height: 1.42; color: var(--cream-2); max-width: 40ch; margin: 0 0 2.1rem; }
.hero__cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__proof {
  list-style: none;
  max-width: 56rem;
  margin: clamp(1.8rem, 1.4rem + 1.6vw, 2.6rem) 0 0;
  padding: 1rem 0 0;
  border-top: 1px solid rgba(216, 205, 189, .26);
  display: flex;
  flex-wrap: wrap;
  gap: .65rem 0;
  color: var(--on-green-soft);
  font-size: var(--step--1);
  letter-spacing: .12em;
  text-transform: uppercase;
}
.hero__proof li { display: inline-flex; align-items: center; }
.hero__proof li + li::before {
  content: "";
  width: 4px;
  height: 4px;
  margin: 0 .85rem;
  border-radius: 50%;
  background: var(--gold);
  opacity: .85;
}
@media (max-width: 520px){
  .hero__cta { flex-direction: column; align-items: flex-start; }
  .hero__cta .btn { width: min(100%, 16rem); text-align: center; }
  .hero__proof { display: grid; grid-template-columns: 1fr 1fr; gap: .55rem 1rem; letter-spacing: .1em; }
  .hero__proof li + li::before { display: none; }
}

/* sections */
.section { padding: var(--section-y) 0; }
.section--alt { background: var(--cream); border-block: 1px solid var(--line); }
.offer-facts .feature-cards { margin-top: 1.8rem; }
.standout {
  margin-top: 1.4rem;
  color: var(--green);
  font-family: var(--display);
  font-size: var(--step-1);
  line-height: 1.35;
}
.section-cta { margin-top: 1.8rem; }

/* offset anchored sections so the sticky header never covers their headings */
section[id], #top { scroll-margin-top: calc(var(--nav-height) + 1.5rem); }
@media (max-width: 900px){ section[id], #top { scroll-margin-top: 5.5rem; } }

/* network proof */
.network-proof { padding-top: 0; }
.network-proof .section-head { padding-top: clamp(2.5rem, 5vw, 4rem); border-top: 1px solid var(--line); }
.network-proof .feature-cards { margin-top: 1.7rem; }

/* founder: editorial trust anchor */
.founder { display: grid; grid-template-columns: minmax(0, 1fr) clamp(280px, 32vw, 390px); gap: clamp(2rem, 5vw, 5.5rem); align-items: center; }
.founder__body { max-width: var(--measure); }
.founder__body > :first-child { margin-top: 0; }
.founder__card {
  width: 100%;
  justify-self: end;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(246, 241, 232, .58);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.founder__portrait { display: block; width: 100%; }
.founder__portrait img {
  width: 100%;
  height: clamp(22rem, 35vw, 31rem);
  object-fit: cover;
  object-position: 50% 34%;
  display: block;
}
.founder__caption {
  padding: 1.2rem 1.35rem 1.35rem;
  border-top: 1px solid var(--line);
}
.founder__caption p {
  margin: 0;
  font-size: var(--step--1);
  color: var(--ink-faint);
}
.founder__caption p + p { margin-top: .35rem; }
.founder__caption .founder__name {
  font-family: var(--display);
  font-size: 1.5rem;
  line-height: 1.1;
  color: var(--green);
}
@media (max-width: 760px){
  .founder { grid-template-columns: 1fr; gap: 2rem; }
  .founder__card { max-width: 360px; justify-self: start; }
  .founder__portrait img { height: 24rem; }
}
@media (max-width: 420px){ .founder__portrait img { height: 22rem; } }

/* faq */
.faq { margin-top: 1.5rem; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; list-style: none; padding: 1.1rem 2rem 1.1rem 0; font-family: var(--display); font-size: 1.3rem; color: var(--green); position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: .2rem; top: 50%; transform: translateY(-50%); color: var(--gold); font-size: 1.5rem; }
.faq details[open] summary::after { content: "–"; }
.faq details p { margin: 0 0 1.2rem; }

/* cta / contact: green */
.cta { background: var(--green); color: var(--on-green); padding: var(--section-y) 0; }
.cta .h2 { color: var(--cream); }
.cta__lead { color: var(--on-green-soft); font-size: var(--step-1); }
.contact-lines { margin-top: 1.8rem; display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.addr { margin-top: 1.6rem; font-size: var(--step--1); letter-spacing: .12em; text-transform: uppercase; color: var(--on-green-soft); }

/* footer: light band, centred seal */
.foot { background: var(--paper); padding: 4rem 0; border-top: 1px solid var(--line); }
.foot__inner { display: flex; flex-direction: column; gap: .9rem; align-items: center; text-align: center; }
.foot__logo { display: inline-block; line-height: 0; }
.foot__logo img { width: 120px; height: 120px; border-radius: 50%; display: block; }

/* ── cards (experiences) ── */
.cards { list-style: none; margin: 2.5rem 0 0; padding: 0; display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.card {
  min-height: 12rem;
  background:
    linear-gradient(180deg, rgba(255, 250, 241, .72), rgba(251, 248, 241, 0)),
    var(--paper);
  padding: 2rem 1.7rem;
  transition: background-color .2s ease, transform .2s ease;
}
.card:hover { background-color: #fffaf1; transform: translateY(-2px); }
.card h3 { font-family: var(--display); font-size: 1.55rem; line-height: 1.08; font-weight: 500; color: var(--green); margin: 0 0 .7rem; }
.card p { margin: 0; color: var(--ink-soft); font-size: var(--step--1); line-height: 1.65; }
.card__tag { display: inline-block; margin-top: .8rem; font-size: .66rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-deep); }
.cards__note { margin: 1.6rem 0 0; font-size: var(--step--1); color: var(--ink-faint); }
.cards__note a { color: var(--gold-deep); }
@media (max-width: 820px){ .cards { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px){ .cards { grid-template-columns: 1fr; } }

/* ── process ── */
.process {
  background:
    linear-gradient(180deg, rgba(13, 36, 28, .035), rgba(13, 36, 28, 0) 18rem),
    var(--paper);
}
.section-head { max-width: 48rem; }
.steps {
  counter-reset: steps;
  list-style: none;
  margin: 2.5rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--line);
  gap: 1px;
}
.step {
  background: var(--cream);
  padding: clamp(1.65rem, 2.5vw, 2.25rem);
}
.step__number {
  width: 2.4rem;
  height: 2.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 1.25rem;
  border: 1px solid var(--gold-soft);
  border-radius: 50%;
  color: var(--gold-deep);
  font-size: var(--step--1);
  letter-spacing: .08em;
}
.step h3 {
  margin: 0 0 .7rem;
  font-family: var(--display);
  font-size: 1.55rem;
  line-height: 1.08;
  font-weight: 500;
  color: var(--green);
}
.step p {
  margin: 0;
  font-size: var(--step--1);
  line-height: 1.65;
}
@media (max-width: 820px){ .steps { grid-template-columns: 1fr; } }

/* ── support cards ── */
.feature-cards {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  overflow: hidden;
}
.feature-cards li {
  min-height: 10rem;
  padding: clamp(1.45rem, 2.5vw, 1.9rem);
  background:
    linear-gradient(180deg, rgba(255, 250, 241, .78), rgba(251, 248, 241, 0)),
    var(--paper);
}
.feature-cards h3,
.feature-cards h4 {
  margin: 0 0 .65rem;
  font-family: var(--display);
  font-size: 1.45rem;
  line-height: 1.08;
  font-weight: 500;
  color: var(--green);
}
.feature-cards p {
  margin: 0;
  font-size: var(--step--1);
  line-height: 1.65;
}
.feature-cards--dark {
  margin: 1.6rem 0 0;
  border-color: rgba(185, 154, 91, .28);
  background: rgba(185, 154, 91, .28);
}
.feature-cards--dark li {
  min-height: auto;
  padding: 1.15rem;
  background: rgba(246, 241, 232, .055);
}
.feature-cards--dark h4 {
  font-size: 1.2rem;
  color: var(--cream);
}
.feature-cards--dark p { color: var(--on-green-soft); }
@media (max-width: 860px){ .feature-cards { grid-template-columns: 1fr; } }

/* ── events (green section) ── */
.events { background: var(--green); color: var(--on-green); padding: var(--section-y) 0; }
.event-feature { display: grid; grid-template-columns: minmax(0, 1fr) minmax(28rem, .9fr); border: 1px solid rgba(185,154,91,.34); border-radius: var(--radius); overflow: hidden; box-shadow: 0 22px 48px rgba(7, 21, 17, .2); }
.event-feature__img { width: 100%; height: 100%; min-height: 320px; object-fit: cover; display: block; }
.event-feature__body { background: var(--green-deep); padding: clamp(1.8rem,3.2vw,3rem); display: flex; flex-direction: column; justify-content: center; }
.event-feature__tag { font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin: 0 0 .8rem; }
.event-feature__h { font-family: var(--display); font-size: clamp(2.1rem, 1.5rem + 2vw, 3.2rem); line-height: 1.02; font-weight: 500; color: var(--cream); margin: 0 0 .8rem; }
.event-feature__body p { color: var(--on-green-soft); }
.event-feature .btn { align-self: flex-start; margin-top: 1.5rem; }
@media (max-width: 900px){ .event-feature { grid-template-columns: 1fr; } .event-feature__img { min-height: 260px; } }
@media (max-width: 520px){ .event-feature__img { min-height: 220px; } }

.btn--on-green { color: var(--on-green); border-color: rgba(194,162,95,.6); }
.btn--on-green:hover { background: rgba(194,162,95,.14); color: var(--on-green); }

/* ── faq / contact polish ── */
.faq-layout {
  display: grid;
  grid-template-columns: minmax(14rem, .42fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.faq__intro { max-width: 26rem; }
.faq__intro p:last-child {
  font-size: var(--step--1);
  line-height: 1.7;
}
.contact-details {
  margin: 1.3rem 0 0;
  display: flex;
  justify-content: center;
  gap: .65rem 1rem;
  flex-wrap: wrap;
  color: var(--on-green-soft);
}
.contact-details a,
.contact-details span {
  color: var(--on-green-soft);
  font-size: var(--step--1);
}
.contact-details span::before {
  content: "·";
  margin-right: 1rem;
  color: var(--gold);
}
@media (max-width: 760px){
  .faq-layout { grid-template-columns: 1fr; gap: 1.5rem; }
  .contact-details { flex-direction: column; align-items: center; }
  .contact-details span::before { display: none; }
}
