
/* ════════════════════════════════════════════
   DESIGN TOKENS
════════════════════════════════════════════ */
:root {
  --coral:         #FB926B;
  --coral-bg:      #fddfd8;
  --mint:          #BAFAEE;
  --mint-bg:       #dffdf7;
  --periwinkle:    #BFCCFB;
  --periwinkle-bg: #dee5fd;
  --cream:         #FEECC2;
  --cream-grid:    #fbefd3;
  --rose:          #FFCEEC;
  --rose-mid:      #FF9DB8;
  --ink:           #161616;
  --ink-dark:      #2a2a2a;
  --ink-mid:       #555555;
  --ink-soft:      #888888;
  --body-bg:       #f2f2f2;
  --white:         #F2F2F2;
  --border:        #161616;
  --mid:           #c8c8c8;
  --display: 'Bricolage Grotesque', system-ui, sans-serif;
  --sans: 'Lato', system-ui, sans-serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--body-bg);
  color: var(--ink);
  cursor: none;
  overflow-x: hidden;
  font-size: 17px;
  line-height: 1.7;
}

/* ── CURSOR ── */
#cur {
  width: 9px; height: 9px;
  background: var(--coral); border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  transition: transform .12s, background .2s;
  mix-blend-mode: multiply;
}
#cur-r {
  width: 32px; height: 32px;
  border: 1.5px solid rgba(251,146,107,.4); border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%);
  transition: transform .3s cubic-bezier(.23,1,.32,1);
  opacity: .5;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 3rem;
  background: #f2f2f2;
  border-bottom: 1.5px solid var(--mid);
  transition: padding .3s;
}
.logo { font-family: var(--sans); font-size: 1.25rem; font-weight: 700; color: var(--ink); text-decoration: none; letter-spacing: -.03em; }
.logo em { font-style: normal; color: var(--coral); }
.nav-menu { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-menu a {
  text-decoration: none; font-size: .82rem; font-weight: 600;
  letter-spacing: .07em; text-transform: uppercase;
  color: var(--ink-mid); transition: color .2s; position: relative;
}
.nav-menu a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
  height: 1.5px; background: var(--coral);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s cubic-bezier(.23,1,.32,1);
}
.nav-menu a:hover, .nav-menu a.active { color: var(--ink); }
.nav-menu a:hover::after, .nav-menu a.active::after { transform: scaleX(1); }
.nav-right-wrap { display: flex; flex-direction: column; align-items: flex-end; gap: .35rem; }
.nav-secondary { display: flex; gap: 1.2rem; align-items: center; }
.nav-secondary a { text-decoration: none; font-size: .78rem; font-weight: 500; color: rgba(22,22,22,.45); transition: color .2s; }
.nav-secondary a:hover { color: var(--coral); }
.nav-btn {
  background: var(--coral) !important; color: #fff !important;
  padding: .55rem 1.4rem !important; border: 1.5px solid var(--coral) !important;
  font-weight: 600 !important; font-size: .82rem !important; transition: background .18s !important;
}
.nav-btn::after { display: none !important; }
.nav-btn:hover { background: var(--ink) !important; border-color: var(--ink) !important; }

/* ── SHARED ── */
.breadcrumb {
  display: flex; align-items: center; gap: .4rem;
  font-size: .78rem; font-weight: 500; letter-spacing: .07em; text-transform: uppercase;
  color: rgba(22,22,22,.5); margin-bottom: 2rem;
}
.breadcrumb a { text-decoration: none; color: inherit; }
.breadcrumb a:hover { color: var(--ink); }
.section-kicker {
  font-size: .85rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--coral); display: flex; align-items: center; gap: .6rem; margin-bottom: 1rem;
}
.section-kicker::before { content: ''; width: 22px; height: 2px; background: var(--coral); }
::-webkit-scrollbar{width:5px} ::-webkit-scrollbar-track{background:var(--body-bg)} ::-webkit-scrollbar-thumb{background:var(--mid)} ::-webkit-scrollbar-thumb:hover{background:var(--coral)}

/* ════════════════════════════════════════════
   PAGE — CONTACT
════════════════════════════════════════════ */
#contact-page { padding-top: 64px; }
.contact-hero {
  background: var(--mint);
  border-bottom: 1.5px solid var(--border);
  padding: 4rem 0 4rem;
  position: relative; overflow: hidden;
}
.contact-hero-grid {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(22,22,22,.1) 1.5px, transparent 1.5px);
  background-size: 36px 36px;
  animation: gridMove 30s linear infinite;
}
@keyframes gridMove { from{background-position:0 0} to{background-position:36px 36px} }
.contact-hero-inner { position: relative; z-index: 2; max-width: 1240px; margin: 0 auto; padding: 0 3rem; }
h1.contact-title { font-size: clamp(2.8rem,5vw,5.5rem); font-weight: 700; letter-spacing: -.05em; line-height: 1.0; margin-bottom: .8rem; }
h1.contact-title em { font-style: italic; font-weight: 300; color: var(--ink-dark); }
.contact-hero-sub { font-size: 1rem; line-height: 1.8; color: rgba(22,22,22,.6); max-width: 50ch; }

.contact-body { max-width: 1240px; margin: 0 auto; padding: 5rem 3rem 7rem; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }

/* Form */
.cf-form { display: flex; flex-direction: column; gap: 1.4rem; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.cf-field { display: flex; flex-direction: column; gap: .5rem; }
.cf-label { font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft); }
.cf-input, .cf-select, .cf-textarea {
  background: #fff; border: 1.5px solid var(--border);
  padding: .88rem 1rem; font-family: var(--sans); font-size: .95rem;
  color: var(--ink); outline: none; transition: border-color .2s; width: 100%;
}
.cf-input:focus, .cf-select:focus, .cf-textarea:focus { border-color: var(--coral); box-shadow: 3px 3px 0 rgba(251,146,107,.15); }
.cf-input::placeholder, .cf-textarea::placeholder { color: var(--ink-soft); }
.cf-textarea { resize: vertical; min-height: 130px; line-height: 1.65; }
.cf-select { cursor: pointer; }
.cf-checkbox { display: flex; align-items: flex-start; gap: .75rem; cursor: pointer; }
.cf-checkbox input { width: 16px; height: 16px; flex-shrink: 0; margin-top: .2rem; accent-color: var(--coral); }
.cf-checkbox span { font-size: .85rem; line-height: 1.65; color: var(--ink-mid); }
.cf-checkbox a { color: var(--coral); }
.cf-submit {
  background: var(--coral); color: #fff; border: 1.5px solid var(--border);
  padding: 1rem 2.5rem; font-family: var(--sans); font-size: .95rem; font-weight: 700;
  cursor: pointer; transition: background .18s; align-self: flex-start;
  display: inline-flex; align-items: center; gap: .6rem;
}
.cf-submit:hover { background: var(--ink); }
.cf-submit svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* Contact infos */
.ci-cards-list { display: flex; flex-direction: column; gap: 1rem; }
.ci-card {
  background: var(--white); border: 1.5px solid var(--border);
  padding: 1.8rem; box-shadow: 3px 3px 0 rgba(0,0,0,.08);
  transition: transform .25s cubic-bezier(.23,1,.32,1), box-shadow .25s;
}
.ci-card:hover { transform: translateY(-2px); box-shadow: 5px 6px 0 rgba(0,0,0,.08); }
.ci-top { display: flex; align-items: center; gap: 1rem; margin-bottom: .9rem; }
.ci-icon { width: 38px; height: 38px; background: var(--coral-bg); border: 1.5px solid var(--coral); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ci-icon svg { width: 16px; height: 16px; stroke: var(--coral); fill: none; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.ci-name { font-size: .95rem; font-weight: 700; letter-spacing: -.01em; }
.ci-role { font-size: .78rem; color: var(--ink-soft); margin-top: .1rem; }
.ci-txt { font-size: .88rem; line-height: 1.72; color: var(--ink-mid); }
.ci-txt a { color: var(--coral); text-decoration: none; font-weight: 600; }
.ci-txt a:hover { color: var(--ink); }
.map-placeholder { background: var(--periwinkle); border: 1.5px solid var(--border); height: 180px; display: flex; align-items: center; justify-content: center; margin-top: 1rem; }
.map-placeholder svg { width: 32px; height: 32px; stroke: rgba(22,22,22,.3); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }

/* ════ FOOTER ════ */
footer{background:var(--ink)!important;color:rgba(255,255,255,.85)!important;padding: 4.5rem 0 2rem}
.container { max-width: 1240px; margin: 0 auto; padding: 0 3rem; }
.footer-top { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.3fr; gap: 3.5rem; margin-bottom: 3.5rem; padding-bottom: 3.5rem; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-brand .logo { color: rgba(255,255,255,.85); display: block; margin-bottom: 1.1rem; }
.footer-brand p { font-size: .85rem; line-height: 1.75; color: rgba(255,255,255,.35); max-width: 28ch; margin-bottom: 1.6rem; }
.footer-social { display: flex; gap: .6rem; }
.social-btn { width: 32px; height: 32px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; text-decoration: none; transition: background .2s; }
.social-btn:hover { background: var(--coral); border-color: var(--coral); }
.social-btn svg { width: 14px; height: 14px; stroke: #fff; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.footer-col h4 { font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 1.1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.footer-col ul a { text-decoration: none; font-size: .95rem; color: rgba(255,255,255,.5); transition: color .2s; }
.footer-col ul a:hover { color: var(--coral); }
.footer-newsletter input { width: 100%; background: rgba(255,255,255,.06); border: 1.5px solid rgba(255,255,255,.1); padding: .9rem 1.1rem; color: #fff; font-family: var(--sans); font-size: .95rem; margin-bottom: .7rem; outline: none; transition: border-color .2s; }
.footer-newsletter input::placeholder { color: rgba(255,255,255,.25); }
.footer-newsletter input:focus { border-color: var(--coral); }
.footer-newsletter .btn-nl { width: 100%; background: var(--coral); color: #fff; border: 1.5px solid var(--coral); padding: 1rem; font-family: var(--sans); font-size: .95rem; font-weight: 600; cursor: pointer; transition: background .2s; }
.footer-newsletter .btn-nl:hover { background: #e07555; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.footer-copy { font-size: .75rem; color: rgba(255,255,255,.25); }
.footer-legal { display: flex; gap: 2rem; }
.footer-legal a { font-size: .75rem; color: rgba(255,255,255,.25); text-decoration: none; transition: color .2s; }
.footer-legal a:hover { color: rgba(255,255,255,.6); }

/* ════════════════════════════════════════════
   HAMBURGER MOBILE
════════════════════════════════════════════ */
.hamburger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; width: 36px; height: 36px; cursor: pointer;
  background: none; border: none; padding: 4px; z-index: 300;
}
.hamburger span { display: block; height: 2px; background: var(--ink); transition: transform .3s, opacity .3s, width .3s; transform-origin: center; }
.hamburger span:nth-child(1) { width: 24px; }
.hamburger span:nth-child(2) { width: 18px; }
.hamburger span:nth-child(3) { width: 24px; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); width: 24px; }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); width: 24px; }
.mobile-menu {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--body-bg); z-index: 250; padding: 6rem 2rem 3rem;
  flex-direction: column; gap: 0; overflow-y: auto;
  transform: translateX(100%); transition: transform .35s cubic-bezier(.23,1,.32,1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a { display: block; text-decoration: none; color: var(--ink); font-size: 1.6rem; font-weight: 700; letter-spacing: -.03em; padding: .9rem 0; border-bottom: 1px solid var(--mid); transition: color .2s; }
.mobile-menu a:hover { color: var(--coral); }
.mobile-menu .mob-secondary { margin-top: 2rem; display: flex; flex-direction: column; gap: .3rem; }
.mobile-menu .mob-secondary a { font-size: .95rem; font-weight: 500; letter-spacing: 0; color: var(--ink-mid); border-bottom: none; padding: .5rem 0; }
.mobile-menu .mob-cta { margin-top: 2rem; display: inline-flex; align-items: center; background: var(--coral); color: #fff !important; padding: 1rem 2rem; font-size: 1rem !important; font-weight: 700 !important; border: none !important; }

/* ════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════ */
@media (max-width: 1024px) {
  nav { padding: 1rem 1.5rem; }
  .nav-menu { display: none; }
  .nav-right-wrap { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }
  body { cursor: auto; }
  #cur, #cur-r { display: none; }

  .contact-hero-inner { padding: 0 1.5rem; }
  .contact-body { padding: 3rem 1.5rem 5rem; gap: 3rem; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-newsletter { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  nav { padding: .9rem 1.2rem; }
  #contact-page { padding-top: 58px; }

  .contact-hero { padding: 3rem 0; }
  .contact-hero-inner { padding: 0 1.2rem; }
  .breadcrumb { font-size: .7rem; margin-bottom: 1rem; }
  h1.contact-title { font-size: 2.4rem; }
  .contact-hero-sub { font-size: .9rem; }

  /* Stack form + info vertically */
  .contact-body { grid-template-columns: 1fr; padding: 2.5rem 1.2rem 4rem; gap: 3rem; }
  .cf-row { grid-template-columns: 1fr; }
  .cf-submit { width: 100%; justify-content: center; }

  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: .8rem; }
  footer{background:var(--ink)!important;color:rgba(255,255,255,.85)!important;padding: 3rem 0 2rem; }
  .container { padding: 0 1.2rem; }
}
