/* ============================================
   Three Day Weekend — brand tokens
   ============================================ */
:root {
  --wine:        #661C33;
  --wine-deep:   #4a1425;
  --orange:      #F7704A;
  --fuchsia:     #FF96FC;
  --magenta:     #FAC7EB;
  --olive:       #92983E;
  --lime:        #D8EF70;
  --lime-dark:   #b8cf3f;
  --beige:       #F5F0EA;
  --ink:         #1a1a1a;

  --font-display: "Archivo Black", sans-serif;
  --font-serif:   "Instrument Serif", serif;
  --font-body:    "DM Sans", sans-serif;

  --wrap: 1180px;
  --edge-shadow: 6px 6px 0 var(--wine);
}

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

body {
  margin: 0;
  background: var(--beige);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 28px;
}

h1, h2, h3 { margin: 0; }

/* subtle grain overlay for texture */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.035;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============================================
   Decorative squiggles / blobs
   ============================================ */
.deco {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  fill: none;
}

.deco-squiggle-orange { top: 6%; left: -2%; width: 140px; stroke: var(--orange); stroke-width: 7; stroke-linecap: round; }
.deco-blob-lime       { top: 2%; right: -3%; width: 220px; fill: var(--lime); }
.deco-coil-fuchsia    { bottom: 12%; left: 4%; width: 70px; stroke: var(--fuchsia); stroke-width: 7; stroke-linecap: round; }
.deco-spark-olive     { bottom: 4%; right: 8%; width: 90px; fill: var(--olive); }

.deco-blob-magenta    { top: -6%; right: -5%; width: 260px; opacity: .9; fill: var(--magenta); }
.deco-coil-lime       { bottom: 8%; left: -2%; width: 90px; stroke: var(--lime); stroke-width: 7; stroke-linecap: round; }

/* On narrow screens the text column fills the full width, so there's no side
   gutter for these to float in without crossing the copy — tuck them further
   into the corners and shrink them instead of just scaling in place. */
@media (max-width: 720px) {
  .deco { transform: scale(0.4); }
  .deco-squiggle-orange { top: 1%; left: -10%; }
  .deco-blob-lime       { top: -10%; right: -12%; }
  .deco-coil-fuchsia    { bottom: 2%; left: -12%; }
  .deco-spark-olive     { bottom: 1%; right: -6%; }
  .deco-blob-magenta    { top: -12%; right: -12%; }
  .deco-coil-lime       { bottom: 1%; left: -12%; }
}

/* ============================================
   Reveal-on-scroll
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.3,1);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: .02em;
  padding: 16px 28px;
  border-radius: 100px;
  border: 3px solid var(--wine);
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}
.btn-primary {
  background: var(--wine);
  color: var(--lime);
  box-shadow: 5px 5px 0 var(--ink);
}
.btn-primary:hover { transform: translate(-2px,-2px); box-shadow: 7px 7px 0 var(--ink); }
.btn-ghost {
  background: transparent;
  color: var(--wine);
  border-color: var(--wine);
}
.btn-ghost:hover { background: var(--wine); color: var(--beige); }
.btn-block { width: 100%; }

/* ============================================
   Header
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245,240,234,.88);
  backdrop-filter: blur(8px);
  border-bottom: 3px solid var(--ink);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.logo {
  display: flex;
  flex-direction: column;
  font-family: var(--font-display);
  color: var(--wine);
  font-size: 13px;
  line-height: 1;
  letter-spacing: .02em;
}
.logo-line:nth-child(2) { color: var(--orange); }
.logo-line:nth-child(3) { color: var(--olive); }

.site-nav { display: flex; align-items: center; gap: 32px; }
.site-nav a {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  position: relative;
}
.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 3px;
  background: var(--fuchsia);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.site-nav a:not(.nav-cta):hover::after { transform: scaleX(1); }
.nav-cta {
  background: var(--wine);
  color: var(--lime) !important;
  font-family: var(--font-display);
  font-size: 13px;
  padding: 12px 20px;
  border-radius: 100px;
}
.nav-cta:hover { background: var(--wine-deep); }

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
}
.menu-toggle span { display: block; height: 3px; background: var(--wine); border-radius: 2px; }

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px 28px 20px;
  border-top: 3px solid var(--ink);
}
.mobile-nav a { padding: 12px 4px; font-weight: 600; border-bottom: 1px solid rgba(0,0,0,.08); }
.mobile-nav .nav-cta { text-align: center; margin-top: 10px; border-bottom: none; border-radius: 100px; }

.site-header.nav-open .mobile-nav { display: flex; }

@media (max-width: 860px) {
  .site-nav { display: none; }
  .menu-toggle { display: flex; }
}

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: calc(100svh - var(--header-h, 80px));
  display: flex;
  align-items: center;
  padding: 70px 0;
}
.hero-inner { position: relative; z-index: 2; max-width: 820px; }

@media (max-height: 700px) {
  .hero { min-height: auto; padding: 110px 0 90px; }
}

.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 13px;
  color: var(--orange);
  margin: 0 0 18px;
}

.hero-title {
  font-family: var(--font-display);
  color: var(--wine);
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: -.01em;
  margin: 0 0 26px;
  display: flex;
  flex-direction: column;
}
.hero-title-pop {
  color: var(--wine);
  background: var(--lime);
  display: inline-block;
  width: fit-content;
  padding: 0 .18em;
  transform: rotate(-1.5deg);
  margin-top: .08em;
}

.hero-sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  color: var(--ink);
  max-width: 620px;
  margin: 0 0 38px;
}

.hero-actions { display: flex; gap: 18px; flex-wrap: wrap; }

@media (max-width: 600px) {
  .hero-sub { font-size: 1.4rem; }
}

/* ============================================
   Marquee
   ============================================ */
.marquee {
  background: var(--wine);
  overflow: hidden;
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  padding: 14px 0;
}
.marquee-track {
  display: flex;
  white-space: nowrap;
  width: max-content;
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--lime);
  letter-spacing: .04em;
}
.marquee-group {
  display: flex;
  flex-shrink: 0;
  gap: 22px;
  padding-right: 22px;
}
.marquee-group span:nth-child(4n+2),
.marquee-group span:nth-child(4n) { color: var(--fuchsia); }
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none !important; }
}

/* ============================================
   Section shared
   ============================================ */
section { padding: 100px 0; position: relative; }

.section-kicker {
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 13px;
  color: var(--orange);
  margin: 0 0 14px;
}
.section-kicker.light { color: var(--lime); }

.section-title {
  font-family: var(--font-display);
  color: var(--wine);
  font-size: clamp(1.9rem, 4.2vw, 3rem);
  line-height: 1.08;
  max-width: 760px;
  margin: 0 0 20px;
}
.section-title.light { color: var(--beige); }

.section-lede {
  font-size: 1.05rem;
  max-width: 560px;
  color: var(--ink);
  opacity: .85;
}
.section-lede.light { color: var(--magenta); opacity: 1; }

/* ============================================
   Services
   ============================================ */
.service-grid {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.service-card {
  background: #fff;
  border: 3px solid var(--ink);
  border-radius: 18px;
  padding: 30px 26px 28px;
  box-shadow: 6px 6px 0 var(--accent, var(--wine));
  transition: transform .2s ease, box-shadow .2s ease;
}
.service-card:hover { transform: translate(-3px,-3px); box-shadow: 9px 9px 0 var(--accent, var(--wine)); }
.service-num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 13px;
  color: #fff;
  background: var(--accent, var(--wine));
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--wine);
  margin-bottom: 10px;
  line-height: 1.2;
}
.service-card p { margin: 0; font-size: .96rem; color: var(--ink); opacity: .82; }

.services-footnote {
  margin-top: 40px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--wine);
}

@media (max-width: 600px) {
  .services-footnote { font-size: 1.3rem; }
}

@media (max-width: 940px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .service-grid { grid-template-columns: 1fr; }
}

/* ============================================
   How it works
   ============================================ */
.how { background: var(--magenta); }
.how-steps {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.how-step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 3px solid var(--wine);
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--wine);
  margin-bottom: 20px;
  background: var(--beige);
}
.how-step h3 {
  font-family: var(--font-display);
  color: var(--wine);
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.how-step p { margin: 0; opacity: .85; }

@media (max-width: 780px) {
  .how-steps { grid-template-columns: 1fr; gap: 34px; }
}

/* ============================================
   About
   ============================================ */
.about {
  background: var(--wine);
  color: var(--beige);
  isolation: isolate;
  overflow: hidden;
}
.about-inner { position: relative; z-index: 2; max-width: 760px; }
.about .section-title { color: var(--lime); }
.about-copy {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  color: var(--magenta);
  max-width: 640px;
  margin: 0 0 24px;
}

@media (max-width: 600px) {
  .about-copy { font-size: 1.3rem; }
}

/* ============================================
   Contact
   ============================================ */
.contact { background: var(--olive); color: var(--beige); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact .section-lede { color: var(--beige); opacity: .9; }

.contact-form {
  background: var(--beige);
  border: 3px solid var(--ink);
  border-radius: 20px;
  padding: 34px;
  box-shadow: 7px 7px 0 var(--wine-deep);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-row { display: flex; flex-direction: column; gap: 8px; }
.form-row label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--wine);
}
.form-row input,
.form-row textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 12px 14px;
  border: 2px solid var(--ink);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  resize: vertical;
}
.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--wine);
  box-shadow: 0 0 0 3px var(--lime);
}
.form-note {
  text-align: center;
  font-weight: 600;
  color: var(--wine);
  margin: 0;
}

@media (max-width: 860px) {
  .contact-inner { grid-template-columns: 1fr; }
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
  background: var(--ink);
  color: var(--beige);
  padding: 40px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--lime);
  letter-spacing: .04em;
}
.footer-nav { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-nav a { font-size: .9rem; opacity: .85; }
.footer-nav a:hover { opacity: 1; color: var(--fuchsia); }
/* keep all footer links on the default arrow cursor, so the discreet proposals link doesn't stand out */
.site-footer a { cursor: default; }
.footer-meta { font-size: .82rem; opacity: .6; margin: 0; width: 100%; text-align: center; order: 3; }

@media (min-width: 700px) {
  .footer-meta { width: auto; text-align: right; order: 0; margin-left: auto; }
}
