/* ===========================
   STEWARD — Landing Page Theme
   =========================== */

/* --- Variables --- */
:root {
  --bg: #F9F6F0;
  --bg-alt: #F0EBE0;
  --fg: #1A1A18;
  --fg-muted: #6B6760;
  --accent: #1B3D2F;
  --accent-light: #2A5C47;
  --gold: #C9A84C;
  --gold-light: #E8D5A0;
  --border: #E0D9CC;
  --card-bg: #FFFFFF;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --radius: 2px;
  --section-pad: clamp(60px, 8vw, 100px);
  --container: 1200px;
  --gap: clamp(40px, 6vw, 80px);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* --- Typography --- */
.font-display { font-family: var(--font-display); }
.section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
}

/* --- Layout Helpers --- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 60px);
}

/* ===========================
   HERO
   =========================== */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  align-items: center;
  min-height: 90vh;
  padding: clamp(60px, 8vw, 100px) clamp(24px, 5vw, 60px);
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(201,168,76,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 80% 80%, rgba(27,61,47,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.hero-text { position: relative; z-index: 1; }

.hero-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 28px;
  font-weight: 400;
}

.hero-headline {
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 300;
  color: var(--accent);
  margin-bottom: 28px;
  line-height: 1.05;
}

.hero-headline em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 380px;
  line-height: 1.6;
  margin-bottom: 40px;
  font-weight: 300;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-tags span {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border: 1px solid var(--border);
  color: var(--fg-muted);
  border-radius: var(--radius);
  font-weight: 400;
}

/* Hero Card (Right) */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px;
  width: 320px;
  box-shadow: 0 8px 40px rgba(26,26,24,0.08), 0 2px 8px rgba(26,26,24,0.04);
}

.card-top {
  border-bottom: 1px solid var(--border);
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.card-label {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.card-count {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}

.card-sub {
  font-size: 12px;
  color: var(--fg-muted);
}

.card-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  font-size: 13px;
  color: var(--fg-muted);
  border-bottom: 1px solid var(--border);
}

.card-item:last-child { border-bottom: none; }

.card-item.done { color: var(--fg); }

.card-item.in-progress { color: var(--accent-light); }

.check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  flex-shrink: 0;
}

.dot {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ===========================
   WHAT SECTION
   =========================== */
.what {
  background: var(--bg-alt);
  padding: var(--section-pad) clamp(24px, 5vw, 60px);
}

.what-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  align-items: start;
}

.what-left h2 {
  font-size: clamp(32px, 4vw, 48px);
  color: var(--accent);
  margin-top: 12px;
}

.what-right p {
  color: var(--fg-muted);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 16px;
  font-weight: 300;
}

/* ===========================
   HOW SECTION
   =========================== */
.how {
  padding: var(--section-pad) clamp(24px, 5vw, 60px);
  max-width: var(--container);
  margin: 0 auto;
}

.how-header {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 72px);
}

.how-header h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--accent);
  margin-top: 12px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 4vw, 48px);
}

.step {
  border-top: 1px solid var(--border);
  padding-top: 28px;
}

.step-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 300;
  color: var(--gold-light);
  margin-bottom: 16px;
  line-height: 1;
}

.step h3 {
  font-size: 22px;
  color: var(--accent);
  margin-bottom: 12px;
}

.step p {
  color: var(--fg-muted);
  font-size: 14px;
  line-height: 1.7;
  font-weight: 300;
}

/* ===========================
   SERVICES
   =========================== */
.services {
  background: var(--accent);
  padding: var(--section-pad) clamp(24px, 5vw, 60px);
}

.services-header {
  max-width: var(--container);
  margin: 0 auto 56px;
  text-align: center;
}

.services-header .section-label { color: var(--gold); }

.services-header h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  color: #fff;
  margin-top: 12px;
}

.services-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.service-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: clamp(24px, 3vw, 36px);
}

.service-icon {
  color: var(--gold);
  margin-bottom: 20px;
}

.service-item h3 {
  font-size: 20px;
  color: #fff;
  margin-bottom: 12px;
  font-weight: 400;
}

.service-item p {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  line-height: 1.7;
  font-weight: 300;
}

/* ===========================
   PRICING
   =========================== */
.pricing {
  padding: var(--section-pad) clamp(24px, 5vw, 60px);
  background: var(--bg);
}

.pricing-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto clamp(40px, 5vw, 64px);
}

.pricing-header h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--accent);
  margin-top: 12px;
  margin-bottom: 16px;
}

.pricing-note {
  color: var(--fg-muted);
  font-size: 15px;
  font-weight: 300;
}

.pricing-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.plan {
  background: var(--card-bg);
  border: 1px solid var(--border);
  padding: 36px 32px;
  border-radius: 4px;
  position: relative;
}

.plan.featured {
  background: var(--accent);
  border-color: var(--accent);
  padding-top: 56px;
}

.plan-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--gold);
  color: #fff;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
}

.plan-tier {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.plan.featured .plan-tier { color: var(--gold); }

.plan-price {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.plan.featured .plan-price { color: #fff; }

.plan-price span {
  font-size: 18px;
  color: var(--fg-muted);
}

.plan.featured .plan-price span { color: rgba(255,255,255,0.5); }

.plan-tag {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--fg-muted);
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.plan.featured .plan-tag { color: rgba(255,255,255,0.6); border-color: rgba(255,255,255,0.12); }

.plan-features {
  margin-bottom: 28px;
}

.plan-features li {
  font-size: 14px;
  color: var(--fg-muted);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 300;
}

.plan-features li::before {
  content: '';
  display: block;
  width: 14px;
  height: 14px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 3px;
  opacity: 0.7;
}

.plan.featured .plan-features li { color: rgba(255,255,255,0.8); border-color: rgba(255,255,255,0.12); }

.plan-note {
  font-size: 12px;
  color: var(--fg-muted);
  font-style: italic;
  font-weight: 300;
  line-height: 1.5;
}

.plan.featured .plan-note { color: rgba(255,255,255,0.5); }

/* ===========================
   CLIENT TYPES
   =========================== */
.clients {
  background: var(--bg-alt);
  padding: var(--section-pad) clamp(24px, 5vw, 60px);
}

.clients-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--gap);
  align-items: start;
}

.clients-copy h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  color: var(--accent);
  margin-top: 12px;
  line-height: 1.2;
}

.client-types {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.client-type {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 24px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.client-icon {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.client-type strong {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 6px;
}

.client-type p {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.6;
  font-weight: 300;
}

/* ===========================
   MANIFESTO
   =========================== */
.manifesto {
  background: var(--accent);
  padding: var(--section-pad) clamp(24px, 5vw, 60px);
}

.manifesto-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.manifesto blockquote {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 40px);
  font-style: italic;
  font-weight: 300;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 32px;
}

.manifesto-body {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  font-weight: 300;
}

/* ===========================
   CLOSING
   =========================== */
.closing {
  background: var(--bg);
  padding: var(--section-pad) clamp(24px, 5vw, 60px);
}

.closing-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.closing h2 {
  font-size: clamp(36px, 5vw, 60px);
  color: var(--accent);
  margin-bottom: 20px;
}

.closing p {
  font-size: 18px;
  color: var(--fg-muted);
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 28px;
}

.closing-detail {
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 300;
  line-height: 1.8;
  opacity: 0.7;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px clamp(24px, 5vw, 60px);
  background: var(--bg);
}

.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--accent);
  font-weight: 400;
}

.footer-tagline {
  font-size: 12px;
  color: var(--fg-muted);
  margin-left: 12px;
  font-style: italic;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  font-size: 12px;
  color: var(--fg-muted);
  font-weight: 300;
}

.footer-copy {
  font-size: 11px;
  color: var(--fg-muted);
  opacity: 0.6;
  width: 100%;
  text-align: center;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  margin-top: 8px;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 80px; }
  .hero-visual { display: none; }
  .what-inner { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .clients-inner { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-links { align-items: flex-start; }
}

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .hero-tags { gap: 8px; }
  .hero-tags span { font-size: 10px; }
  .manifesto blockquote { font-size: 24px; }
  .closing h2 { font-size: 32px; }
}

/* ===========================
   BOOKING FORM
   =========================== */
.form-header {
  border-bottom: 1px solid var(--border);
  padding: 20px clamp(24px, 5vw, 60px);
  background: var(--bg);
}

.form-header-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.back-link {
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 400;
  transition: color 0.15s;
}

.back-link:hover { color: var(--accent); }

.booking-main {
  min-height: calc(100vh - 61px);
  display: flex;
  align-items: flex-start;
  padding: clamp(48px, 6vw, 80px) clamp(24px, 5vw, 60px);
  background: var(--bg-alt);
}

.booking-container {
  max-width: 640px;
  margin: 0 auto;
  width: 100%;
}

.booking-intro {
  margin-bottom: 40px;
}

.booking-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 300;
  color: var(--accent);
  line-height: 1.1;
  margin: 12px 0 16px;
}

.booking-sub {
  font-size: 16px;
  color: var(--fg-muted);
  font-weight: 300;
  line-height: 1.6;
}

.form-error {
  background: #FEF2F2;
  border: 1px solid #FECACA;
  border-radius: 4px;
  padding: 12px 16px;
  font-size: 14px;
  color: #DC2626;
  margin-bottom: 24px;
}

.booking-form {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: clamp(28px, 4vw, 40px);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { margin-bottom: 0; }

.form-group label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.required { color: var(--gold); }
.optional { text-transform: none; letter-spacing: 0; font-weight: 300; font-size: 11px; }

.booking-form input,
.booking-form select,
.booking-form textarea {
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--fg);
  background: var(--bg);
  transition: border-color 0.15s;
  width: 100%;
  -webkit-appearance: none;
}

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

.booking-form input::placeholder,
.booking-form textarea::placeholder { color: var(--fg-muted); opacity: 0.6; }

.booking-form select {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B6760' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.form-actions {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 14px 32px;
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.15s;
}

.btn-primary:hover { background: var(--accent-light); }

.form-note {
  font-size: 12px;
  color: var(--fg-muted);
  font-weight: 300;
  line-height: 1.5;
}

.whatsapp-cta {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.whatsapp-cta p {
  font-size: 14px;
  color: var(--fg-muted);
  font-weight: 300;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  padding: 10px 20px;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 500;
  transition: background 0.15s;
}

.whatsapp-btn:hover { background: #20BD5A; }

.whatsapp-btn-large {
  padding: 14px 28px;
  font-size: 14px;
}

/* ===========================
   BOOKING SUCCESS
   =========================== */
.success-card {
  max-width: 540px;
  margin: 0 auto;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: clamp(40px, 5vw, 56px);
  text-align: center;
}

.success-icon { margin: 0 auto 24px; width: 40px; }

.success-card .booking-title { margin-bottom: 16px; }

.success-body {
  font-size: 16px;
  color: var(--fg-muted);
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 32px;
}

.success-details {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 20px 24px;
  text-align: left;
  margin-bottom: 24px;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.detail-row:last-child { border-bottom: none; }

.detail-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.detail-value {
  font-size: 14px;
  color: var(--fg);
  font-weight: 400;
}

.status-pending {
  color: var(--gold);
  font-weight: 500;
}

.success-note {
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 20px;
}

.return-link {
  display: inline-block;
  margin-top: 20px;
  font-size: 13px;
  color: var(--fg-muted);
  transition: color 0.15s;
}

.return-link:hover { color: var(--accent); }

/* ===========================
   PLAN CTA BUTTONS
   =========================== */
.plan-cta {
  display: block;
  text-align: center;
  margin-top: 24px;
  padding: 11px 20px;
  border: 1px solid var(--border);
  border-radius: 2px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  transition: background 0.15s, color 0.15s;
}

.plan-cta:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.plan-cta-primary {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

.plan-cta-primary:hover {
  background: #B8962E;
  border-color: #B8962E;
}

/* ===========================
   CLOSING CTAs
   =========================== */
.closing-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.closing-cta-primary {
  background: var(--accent);
  color: #fff;
  padding: 14px 28px;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.15s;
}

.closing-cta-primary:hover { background: var(--accent-light); }

.closing-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  color: var(--fg-muted);
  padding: 14px 28px;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 400;
  transition: border-color 0.15s, color 0.15s;
}

.closing-cta-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

@media (max-width: 480px) {
  .form-row { grid-template-columns: 1fr; }
  .closing-actions { flex-direction: column; align-items: center; }
}