/* Design DNA: Haifa Cowork | soft-pastel stacked hero | blush header | pill-bottom cookie */
/* Fonts: "Fraunces", serif + "Outfit", sans-serif */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,400&family=Outfit:wght@300;400;500;600&display=swap');

:root {
  --hc-peach: #F6C7B3;
  --hc-mist: #E8F1F5;
  --hc-ink: #2B2A28;
  --hc-coral: #E07A5F;
  --hc-white: #FFFFFF;
  --hc-font-serif: 'Fraunces', Georgia, serif;
  --hc-font-sans: 'Outfit', sans-serif;
  --hc-max: 1140px;
  --hc-radius: 8px;
  --hc-radius-lg: 24px;
  --hc-shadow: 0 12px 40px rgba(43, 42, 40, 0.08);
  --hc-shadow-soft: 0 6px 24px rgba(224, 122, 95, 0.1);
  --hc-transition: 0.3s ease;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--hc-font-sans);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--hc-ink);
  background: var(--hc-mist);
}

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

a {
  color: var(--hc-coral);
  text-decoration: none;
  transition: color var(--hc-transition);
}

a:hover {
  color: var(--hc-ink);
}

h1, h2, h3, h4 {
  font-family: var(--hc-font-serif);
  font-weight: 500;
  line-height: 1.25;
  color: var(--hc-ink);
}

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); }

p + p { margin-top: 1rem; }

/* ── Header ── */
.hc-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(246, 199, 179, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(224, 122, 95, 0.12);
}

.hc-header__inner {
  max-width: var(--hc-max);
  margin: 0 auto;
  padding: 1.1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hc-logo {
  font-family: var(--hc-font-serif);
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--hc-ink);
  letter-spacing: 0.02em;
}

.hc-logo span {
  color: var(--hc-coral);
}

.hc-nav {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.hc-nav a {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--hc-ink);
}

.hc-nav a:hover,
.hc-nav a.hc-active {
  color: var(--hc-coral);
}

/* Burger */
.hc-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hc-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--hc-ink);
  transition: var(--hc-transition);
}

.hc-burger.hc-open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hc-burger.hc-open span:nth-child(2) {
  opacity: 0;
}

.hc-burger.hc-open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ── Hero (stacked) ── */
.hc-hero {
  padding: 7rem 1.5rem 5rem;
  text-align: center;
  background: linear-gradient(165deg, var(--hc-peach) 0%, var(--hc-mist) 55%, var(--hc-white) 100%);
}

.hc-hero__photo {
  max-width: 920px;
  margin: 0 auto 2.5rem;
  border-radius: var(--hc-radius-lg);
  overflow: hidden;
  box-shadow: var(--hc-shadow);
  aspect-ratio: 16/9;
  object-fit: cover;
  width: 100%;
}

.hc-hero__brand {
  font-family: var(--hc-font-serif);
  font-size: clamp(2.8rem, 7vw, 4.5rem);
  font-weight: 500;
  color: var(--hc-ink);
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}

.hc-hero__tagline {
  font-family: var(--hc-font-sans);
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  font-weight: 300;
  color: rgba(43, 42, 40, 0.75);
  margin-bottom: 2rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Buttons ── */
.hc-btn {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  font-family: var(--hc-font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 2px solid var(--hc-coral);
  background: transparent;
  color: var(--hc-coral);
  cursor: pointer;
  border-radius: 999px;
  transition: var(--hc-transition);
}

.hc-btn:hover {
  background: var(--hc-coral);
  color: var(--hc-white);
}

.hc-btn--solid {
  background: var(--hc-coral);
  color: var(--hc-white);
}

.hc-btn--solid:hover {
  background: var(--hc-ink);
  border-color: var(--hc-ink);
  color: var(--hc-white);
}

/* ── Sections ── */
.hc-section {
  padding: 5rem 1.5rem;
}

.hc-section--alt {
  background: var(--hc-white);
}

.hc-section--peach {
  background: linear-gradient(180deg, var(--hc-peach) 0%, rgba(246, 199, 179, 0.35) 100%);
}

.hc-container {
  max-width: var(--hc-max);
  margin: 0 auto;
}

.hc-section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}

.hc-section__header p {
  margin-top: 1rem;
  color: rgba(43, 42, 40, 0.78);
  font-size: 1.05rem;
}

.hc-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--hc-coral);
  margin-bottom: 0.75rem;
}

/* ── Grid ── */
.hc-grid {
  display: grid;
  gap: 2rem;
}

.hc-grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

.hc-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

/* ── Feature blocks (no card styling) ── */
.hc-feature {
  text-align: center;
}

.hc-feature__img {
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
  margin-bottom: 1.25rem;
}

.hc-feature h3 {
  margin-bottom: 0.5rem;
}

.hc-feature p {
  font-size: 0.95rem;
  color: rgba(43, 42, 40, 0.78);
}

/* ── Split ── */
.hc-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.hc-split__img {
  border-radius: var(--hc-radius-lg);
  object-fit: cover;
  width: 100%;
  aspect-ratio: 4/3;
  box-shadow: var(--hc-shadow-soft);
}

.hc-split__text h2 {
  margin-bottom: 1.25rem;
}

/* ── Membership tiers (rounded cards) ── */
.hc-tier {
  background: var(--hc-white);
  border-radius: var(--hc-radius-lg);
  padding: 2.25rem 2rem;
  box-shadow: var(--hc-shadow);
  text-align: center;
  transition: transform var(--hc-transition), box-shadow var(--hc-transition);
}

.hc-tier:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(43, 42, 40, 0.12);
}

.hc-tier--featured {
  border: 2px solid var(--hc-coral);
  position: relative;
}

.hc-tier__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--hc-coral);
  color: var(--hc-white);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 999px;
}

.hc-tier h3 {
  margin-bottom: 0.5rem;
}

.hc-tier__price {
  font-family: var(--hc-font-serif);
  font-size: 2rem;
  color: var(--hc-coral);
  margin: 1rem 0;
}

.hc-tier__price span {
  font-size: 0.9rem;
  font-family: var(--hc-font-sans);
  font-weight: 400;
  color: rgba(43, 42, 40, 0.55);
}

.hc-tier ul {
  list-style: none;
  text-align: left;
  margin: 1.5rem 0 2rem;
}

.hc-tier li {
  padding: 0.45rem 0;
  font-size: 0.92rem;
  color: rgba(43, 42, 40, 0.82);
  border-bottom: 1px solid rgba(232, 241, 245, 0.8);
}

.hc-tier li::before {
  content: "✓";
  color: var(--hc-coral);
  margin-right: 0.6rem;
  font-weight: 600;
}

/* ── Space detail ── */
.hc-space {
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(246, 199, 179, 0.45);
}

.hc-space:first-child {
  padding-top: 0;
}

.hc-space:last-child {
  border-bottom: none;
}

.hc-space__meta {
  font-size: 0.78rem;
  color: var(--hc-coral);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.hc-space__img {
  border-radius: var(--hc-radius-lg);
  object-fit: cover;
  width: 100%;
  aspect-ratio: 16/9;
  margin-top: 1.5rem;
  box-shadow: var(--hc-shadow-soft);
}

/* ── Quote band ── */
.hc-band {
  background: var(--hc-ink);
  color: var(--hc-peach);
  text-align: center;
  padding: 4rem 1.5rem;
}

.hc-band blockquote {
  font-family: var(--hc-font-serif);
  font-size: clamp(1.35rem, 3vw, 1.9rem);
  font-style: italic;
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.5;
}

/* ── Contact ── */
.hc-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.hc-form label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--hc-ink);
  margin-bottom: 0.4rem;
}

.hc-form input,
.hc-form textarea,
.hc-form select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(246, 199, 179, 0.7);
  background: var(--hc-white);
  font-family: var(--hc-font-sans);
  font-size: 0.95rem;
  color: var(--hc-ink);
  margin-bottom: 1.25rem;
  border-radius: var(--hc-radius);
  transition: border-color var(--hc-transition);
}

.hc-form input:focus,
.hc-form textarea:focus,
.hc-form select:focus {
  outline: none;
  border-color: var(--hc-coral);
}

.hc-form textarea {
  min-height: 140px;
  resize: vertical;
}

.hc-info-item {
  margin-bottom: 1.75rem;
}

.hc-info-item h4 {
  font-family: var(--hc-font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--hc-coral);
  margin-bottom: 0.35rem;
}

.hc-info-item p,
.hc-info-item a {
  color: var(--hc-ink);
  font-size: 1rem;
}

/* ── Page hero (inner) ── */
.hc-page-hero {
  padding: 9rem 1.5rem 4rem;
  text-align: center;
  background: linear-gradient(180deg, var(--hc-peach) 0%, var(--hc-mist) 100%);
}

.hc-page-hero h1 {
  margin-bottom: 0.75rem;
}

.hc-page-hero p {
  max-width: 560px;
  margin: 0 auto;
  color: rgba(43, 42, 40, 0.78);
  font-size: 1.05rem;
}

/* ── Privacy ── */
.hc-prose {
  max-width: 760px;
  margin: 0 auto;
}

.hc-prose h2 {
  margin: 2.5rem 0 1rem;
  font-size: 1.5rem;
}

.hc-prose h3 {
  margin: 1.75rem 0 0.75rem;
  font-size: 1.15rem;
}

.hc-prose ul {
  margin: 0.75rem 0 0.75rem 1.5rem;
}

.hc-prose li {
  margin-bottom: 0.4rem;
}

/* ── Footer ── */
.hc-footer {
  background: var(--hc-ink);
  color: rgba(246, 199, 179, 0.88);
  padding: 4rem 1.5rem 2rem;
}

.hc-footer__grid {
  max-width: var(--hc-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}

.hc-footer h4 {
  font-family: var(--hc-font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hc-peach);
  margin-bottom: 1.25rem;
}

.hc-footer ul {
  list-style: none;
}

.hc-footer li {
  margin-bottom: 0.55rem;
}

.hc-footer a {
  color: rgba(246, 199, 179, 0.75);
  font-size: 0.9rem;
}

.hc-footer a:hover {
  color: var(--hc-white);
}

.hc-footer__brand {
  font-family: var(--hc-font-serif);
  font-size: 1.4rem;
  color: var(--hc-white);
  margin-bottom: 0.75rem;
}

.hc-footer__bottom {
  max-width: var(--hc-max);
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(246, 199, 179, 0.15);
  text-align: center;
  font-size: 0.8rem;
  color: rgba(246, 199, 179, 0.55);
}

/* ── Cookie banner ── */
.hc-cookie {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  max-width: 640px;
  width: calc(100% - 2rem);
  padding: 1rem 1.5rem;
  background: var(--hc-white);
  border: 1px solid rgba(246, 199, 179, 0.6);
  border-radius: 999px;
  box-shadow: var(--hc-shadow);
  transition: transform 0.5s ease;
}

.hc-cookie.hc-cookie--visible {
  transform: translateX(-50%) translateY(0);
}

.hc-cookie p {
  font-size: 0.82rem;
  color: var(--hc-ink);
  flex: 1;
  line-height: 1.5;
}

.hc-cookie p a {
  color: var(--hc-coral);
  text-decoration: underline;
}

.hc-cookie__actions {
  display: flex;
  gap: 0.6rem;
  flex-shrink: 0;
}

.hc-cookie__btn {
  padding: 0.5rem 1.2rem;
  font-family: var(--hc-font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: var(--hc-transition);
}

.hc-cookie__btn--accept {
  background: var(--hc-coral);
  color: var(--hc-white);
}

.hc-cookie__btn--accept:hover {
  background: var(--hc-ink);
}

.hc-cookie__btn--decline {
  background: transparent;
  color: var(--hc-ink);
  border: 1px solid rgba(246, 199, 179, 0.7);
}

.hc-cookie__btn--decline:hover {
  border-color: var(--hc-ink);
}

/* ── Utilities ── */
.hc-text-center { text-align: center; }
.hc-mt-2 { margin-top: 2rem; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .hc-grid--3,
  .hc-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hc-split,
  .hc-contact-grid,
  .hc-grid--2 {
    grid-template-columns: 1fr;
  }

  .hc-split__img {
    order: -1;
  }
}

@media (max-width: 768px) {
  .hc-burger {
    display: flex;
  }

  .hc-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    flex-direction: column;
    background: var(--hc-peach);
    padding: 5rem 2rem 2rem;
    gap: 1.5rem;
    box-shadow: -4px 0 24px rgba(43, 42, 40, 0.1);
    transition: right var(--hc-transition);
  }

  .hc-nav.hc-nav--open {
    right: 0;
  }

  .hc-cookie {
    flex-direction: column;
    border-radius: 20px;
    text-align: center;
    padding: 1.25rem;
  }

  .hc-cookie__actions {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 540px) {
  .hc-grid--3,
  .hc-footer__grid {
    grid-template-columns: 1fr;
  }

  .hc-section {
    padding: 3.5rem 1.25rem;
  }

  .hc-hero {
    padding-top: 6rem;
  }
}
