/* FWRD Pilates — static site
   Palette: soft blush / warm ivory / deep espresso / muted gold
*/

:root {
  --bg: #fbf7f4;
  --paper: #fffdfb;
  --blush: #ead7d8;
  --blush-2: #f4e8e8;
  --rose: #b78387;
  --espresso: #2b2424;
  --muted: #6e6262;
  --gold: #b79a62;
  --line: rgba(43,36,36,.14);
  --shadow: 0 24px 70px rgba(61, 42, 42, .10);
  --radius-lg: 34px;
  --radius-md: 22px;
  --max: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--espresso);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.announcement {
  padding: 9px 20px;
  text-align: center;
  background: var(--espresso);
  color: #fffaf7;
  font-size: 12px;
  letter-spacing: .10em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 22px 0;
  background: rgba(251,247,244,.86);
  backdrop-filter: blur(14px);
}
.brand { display: inline-flex; align-items: baseline; gap: 8px; }
.brand-image-link {
  display: inline-flex;
  align-items: center;
}
.brand-logo {
  display: block;
  width: 150px;
  height: auto;
}
.footer-logo {
  width: 175px;
}
.brand-main {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -.03em;
}
.brand-sub {
  font-size: 9px;
  letter-spacing: .32em;
  font-weight: 600;
}
.site-nav { display: flex; align-items: center; gap: 28px; font-size: 13px; }
.site-nav > a:not(.nav-cta) { color: #4a4040; }
.nav-cta {
  border: 1px solid var(--espresso);
  border-radius: 999px;
  padding: 12px 18px;
  transition: .2s ease;
}
.nav-cta:hover { background: var(--espresso); color: white; }
.nav-toggle { display: none; border: 0; background: transparent; font-size: 22px; }

.section {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 105px 0;
}
.eyebrow {
  margin: 0 0 18px;
  color: var(--rose);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .20em;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  letter-spacing: -.045em;
  line-height: .98;
}
h1 { font-size: clamp(58px, 8vw, 110px); margin-bottom: 30px; }
h1 em { color: var(--rose); font-weight: 500; }
h2 { font-size: clamp(42px, 5.4vw, 72px); margin-bottom: 24px; }
h3 { font-family: "Playfair Display", Georgia, serif; font-size: 30px; margin-bottom: 12px; }
p { color: var(--muted); }

.hero {
  min-height: 760px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 70px;
  align-items: center;
  padding-top: 70px;
}
.hero-text { max-width: 650px; font-size: 18px; line-height: 1.7; }
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 38px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .02em;
}
.button:hover { transform: translateY(-2px); }
.button.primary { background: var(--espresso); color: white; }
.button.outline { border-color: var(--espresso); color: var(--espresso); background: transparent; }
.button.outline:hover { background: var(--espresso); color: white; }
.button.full { width: 100%; }
.text-link { font-size: 13px; border-bottom: 1px solid var(--line); padding-bottom: 5px; }
.text-link span { margin-left: 8px; }

.hero-visual { display: flex; justify-content: flex-end; }
.arch-card {
  position: relative;
  width: min(100%, 470px);
  aspect-ratio: .78;
  overflow: hidden;
  background:
    radial-gradient(circle at 65% 22%, rgba(255,255,255,.9) 0 8%, transparent 9%),
    linear-gradient(160deg, #ebd5d5 0%, #f5e8e4 46%, #d3b7ad 100%);
  border-radius: 240px 240px 34px 34px;
  box-shadow: var(--shadow);
}
.sun-orb {
  position: absolute;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: rgba(255,248,237,.74);
  top: 115px; right: 70px;
  box-shadow: 0 0 70px rgba(255,245,228,.5);
}
.mat {
  position: absolute;
  width: 52%;
  height: 14%;
  border-radius: 999px;
  transform: rotate(-18deg);
  box-shadow: 0 14px 30px rgba(76,54,54,.12);
}
.mat-one { background: #f6efec; left: 11%; bottom: 25%; }
.mat-two { background: #b9888c; right: 6%; bottom: 12%; }
.hero-stamp {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 32px;
  display: flex;
  justify-content: space-between;
  color: rgba(43,36,36,.7);
  font-size: 9px;
  letter-spacing: .13em;
}

.manifesto {
  background: var(--espresso);
  padding: 95px 20px;
}
.manifesto-inner { width: min(100%, var(--max)); margin: 0 auto; }
.manifesto .eyebrow { color: #d9b9ba; }
.manifesto-line {
  color: #f8f0eb;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(38px, 5vw, 66px);
  line-height: 1.12;
  margin-bottom: 8px;
}
.manifesto-line.accent { color: #d8b9b8; font-style: italic; }

.section-heading { max-width: 760px; margin-bottom: 58px; }
.section-heading > p:last-child { max-width: 640px; font-size: 17px; }
.centered { text-align: center; margin-left: auto; margin-right: auto; }
.centered > p:last-child { margin-left: auto; margin-right: auto; }

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.timeline-card {
  min-height: 360px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.38);
  display: flex;
  flex-direction: column;
}
.timeline-card.featured { background: var(--blush); border-color: transparent; transform: translateY(-18px); }
.step {
  display: inline-flex;
  width: 38px; height: 38px;
  align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(43,36,36,.25);
  font-size: 11px;
  margin-bottom: auto;
}
.mini-label {
  margin: 26px 0 10px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .17em;
  color: var(--rose);
}
.timeline-card h3 { font-size: 27px; }
.timeline-card p:last-child { font-size: 14px; }

.why { padding-top: 70px; }
.why-panel {
  padding: 68px;
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 90px;
}
.benefits { display: grid; gap: 0; }
.benefit {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.benefit:first-child { padding-top: 0; }
.benefit:last-child { border-bottom: 0; padding-bottom: 0; }
.benefit > span { color: var(--gold); font-size: 11px; margin-top: 6px; }
.benefit h3 { font-family: "DM Sans", sans-serif; font-size: 17px; margin-bottom: 6px; }
.benefit p { margin: 0; font-size: 14px; }

.universities { padding-top: 120px; }
.package-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; max-width: 980px; margin: 0 auto; }
.package-card {
  padding: 45px;
  border-radius: var(--radius-lg);
  background: var(--paper);
  border: 1px solid var(--line);
}
.package-card.soft { background: var(--blush-2); border-color: transparent; }
.package-card h3 { font-size: 38px; }
.price { font-size: 16px; margin-bottom: 28px; }
.price strong { color: var(--espresso); }
.package-card ul { list-style: none; padding: 0; margin: 30px 0 34px; }
.package-card li {
  padding: 11px 0 11px 26px;
  position: relative;
  border-bottom: 1px solid rgba(43,36,36,.08);
  color: #514646;
  font-size: 14px;
}
.package-card li:before {
  content: "✓";
  position: absolute; left: 0;
  color: var(--rose);
}
.fine-print { text-align: center; font-size: 11px; margin: 24px 0 0; }

.quote-band {
  padding: 95px 20px;
  background: var(--blush);
  text-align: center;
}
.quote-band p {
  max-width: 1000px;
  margin: 0 auto;
  color: var(--espresso);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(38px, 5vw, 70px);
  font-style: italic;
  line-height: 1.08;
}

.about {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 90px;
  align-items: center;
}
.about-mark { display: flex; justify-content: center; }
.roundel {
  width: 320px; height: 320px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center; justify-content: center;
  background: radial-gradient(circle at center, #fffdfb 0%, #f5e9e5 100%);
  box-shadow: var(--shadow);
}
.roundel span { font-family: "Playfair Display", Georgia, serif; font-size: 64px; }
.roundel small { letter-spacing: .32em; margin-left: .32em; }
.about-copy { max-width: 620px; }
.about-copy p:not(.eyebrow) { font-size: 17px; }

.contact {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 75px;
  align-items: start;
}
.contact-copy { position: sticky; top: 130px; }
.contact-copy > p:not(.eyebrow) { font-size: 17px; }
.contact-note {
  display: flex; align-items: center; gap: 10px;
  margin-top: 28px; color: var(--muted); font-size: 13px;
}
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--rose); }

.inquiry-form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 38px;
  box-shadow: 0 18px 50px rgba(61, 42, 42, .06);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label { display: block; font-size: 12px; font-weight: 600; margin-bottom: 16px; color: #4d4242; }
input, textarea {
  width: 100%;
  margin-top: 8px;
  border: 1px solid var(--line);
  background: #fffaf7;
  color: var(--espresso);
  border-radius: 14px;
  padding: 14px 15px;
  outline: none;
  transition: border .2s ease, box-shadow .2s ease;
}
input:focus, textarea:focus { border-color: var(--rose); box-shadow: 0 0 0 3px rgba(183,131,135,.12); }
textarea { resize: vertical; min-height: 130px; }
.form-status { min-height: 20px; margin: 12px 0 0; text-align: center; font-size: 12px; }

.payment-strip {
  width: min(calc(100% - 40px), var(--max));
  margin: 30px auto 100px;
  border-radius: var(--radius-lg);
  background: var(--blush);
  padding: 46px 54px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.payment-strip h2 { font-size: clamp(35px, 4vw, 54px); margin: 0; }

footer {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  border-top: 1px solid var(--line);
  padding: 42px 0 60px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  align-items: end;
}
.footer-copy p { margin: 4px 0; font-size: 11px; }
.footer-links { display: flex; justify-content: flex-end; gap: 22px; font-size: 12px; }

@media (max-width: 980px) {
  .site-nav {
    position: absolute;
    left: 0; right: 0; top: 79px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--paper);
    box-shadow: var(--shadow);
  }
  .site-nav.open { display: flex; }
  .nav-toggle { display: block; }
  .hero { grid-template-columns: 1fr; gap: 30px; }
  .hero-copy { max-width: 780px; }
  .hero-visual { justify-content: center; }
  .arch-card { width: min(76vw, 470px); }
  .timeline { grid-template-columns: 1fr 1fr; }
  .timeline-card.featured { transform: none; }
  .why-panel, .contact, .about { grid-template-columns: 1fr; gap: 50px; }
  .contact-copy { position: static; }
  .about-mark { order: 2; }
}

@media (max-width: 700px) {
  .brand-logo { width: 130px; }
  .footer-logo { width: 155px; }
  .section { width: min(calc(100% - 28px), var(--max)); padding: 78px 0; }
  .site-header { width: min(calc(100% - 28px), var(--max)); }
  h1 { font-size: clamp(52px, 18vw, 82px); }
  h2 { font-size: 46px; }
  .hero { min-height: auto; padding-top: 45px; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .timeline { grid-template-columns: 1fr; }
  .timeline-card { min-height: 290px; }
  .why-panel { padding: 38px 26px; }
  .package-grid { grid-template-columns: 1fr; }
  .package-card { padding: 34px 26px; }
  .package-card h3 { font-size: 34px; }
  .roundel { width: 250px; height: 250px; }
  .roundel span { font-size: 52px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .inquiry-form { padding: 26px 20px; }
  .payment-strip { width: min(calc(100% - 28px), var(--max)); flex-direction: column; align-items: flex-start; padding: 38px 28px; }
  footer { width: min(calc(100% - 28px), var(--max)); grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; flex-wrap: wrap; }
}
