/* ============================================
   YPONOMOS DIRECT — Landing page styles
   Boutique premium, family-office feel
   Palette: navy + warm gold + cream + ivory
   Fonts: Cormorant Garamond (headers), Inter (body)
   ============================================ */

:root {
  --navy-900: #0F1A3A;
  --navy-800: #1B2A4E;
  --navy-700: #253966;
  --gold: #C9A961;
  --gold-dark: #B08E45;
  --gold-soft: #E9DCB9;
  --cream: #F7F2E7;
  --cream-warm: #EFE7D2;
  --ivory: #FBF9F4;
  --ink: #1A1A1A;
  --text-muted: #5B5F6B;
  --border: #E5E1D6;
  --white: #FFFFFF;

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --max-w: 1200px;
  --max-w-narrow: 780px;

  --radius: 4px;
  --radius-lg: 8px;

  --shadow-sm: 0 2px 8px rgba(15, 26, 58, 0.06);
  --shadow: 0 8px 24px rgba(15, 26, 58, 0.08);
  --shadow-lg: 0 16px 48px rgba(15, 26, 58, 0.12);
}

/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 { margin: 0 0 0.75em; font-weight: 500; line-height: 1.2; }
h1 { font-family: var(--serif); font-weight: 500; }
h2 { font-family: var(--serif); font-weight: 500; font-size: 2.5rem; letter-spacing: -0.01em; }
h3 { font-family: var(--serif); font-weight: 600; font-size: 1.5rem; }
p { margin: 0 0 1em; color: var(--ink); }
p:last-child { margin-bottom: 0; }
a { color: var(--navy-800); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold); }
strong { font-weight: 600; color: var(--navy-900); }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}
.container-narrow {
  max-width: var(--max-w-narrow);
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1.5px solid transparent;
  text-align: center;
  white-space: nowrap;
  line-height: 1.2;
}
.btn-primary {
  background: var(--navy-800);
  color: var(--white);
  border-color: var(--navy-800);
}
.btn-primary:hover {
  background: var(--navy-900);
  border-color: var(--navy-900);
  color: var(--gold-soft);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}
.btn-ghost {
  background: transparent;
  color: var(--navy-800);
  border-color: var(--navy-800);
}
.btn-ghost:hover {
  background: var(--navy-800);
  color: var(--white);
}
.btn-lg { padding: 16px 36px; font-size: 1.02rem; }
.btn-block { display: flex; width: 100%; }

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 249, 244, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--navy-800);
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  border-radius: var(--radius);
  line-height: 1;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.brand-name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--navy-900);
  letter-spacing: 0.01em;
}
.brand-parent {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 2px;
}
.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  font-size: 0.95rem;
  color: var(--navy-800);
  font-weight: 500;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}
.nav-actions .btn { padding: 10px 20px; font-size: 0.9rem; }

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 100px 0 120px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--ivory) 0%, var(--cream) 100%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 10%, rgba(201, 169, 97, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 80% 90%, rgba(27, 42, 78, 0.05) 0%, transparent 40%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  text-align: center;
  max-width: 940px;
}
.hero-label {
  display: inline-block;
  padding: 8px 18px;
  background: var(--white);
  border: 1px solid var(--gold);
  color: var(--navy-900);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 100px;
  margin-bottom: 32px;
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.1;
  margin: 0 0 32px;
  color: var(--navy-900);
}
.hero-serif { display: block; }
.hero-accent { color: var(--gold-dark); font-style: italic; }
.hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 720px;
  margin: 0 auto 40px;
  line-height: 1.65;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
  letter-spacing: 0.02em;
}

/* ============ SECTIONS ============ */
.section {
  padding: 100px 0;
}
.section-cream { background: var(--cream); }
.section-navy {
  background: var(--navy-900);
  color: var(--cream);
}
.section-navy p { color: rgba(247, 242, 231, 0.85); }
.section-navy strong { color: var(--gold); }
.section-navy a { color: var(--gold); }

.section-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 60px;
}
.section-head-light .section-title { color: var(--cream); }
.section-head-light .section-label { color: var(--gold); }
.section-label {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--navy-900);
  margin-bottom: 20px;
}
.section-lead {
  font-size: 1.08rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}
.section-navy .section-lead { color: rgba(247, 242, 231, 0.75); }

/* ============ TWO COL (thesis) ============ */
.two-col {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: start;
}
.col-text p { font-size: 1.04rem; color: #2a2f3a; line-height: 1.75; }
.col-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  padding: 28px 22px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.stat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.stat-num {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--navy-900);
  line-height: 1.1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  line-height: 1.4;
}

/* ============ MODEL GRID ============ */
.model-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.model-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.model-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.model-icon {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}
.model-card h3 {
  font-size: 1.3rem;
  color: var(--navy-900);
  margin-bottom: 12px;
}
.model-card p {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============ DEALS ============ */
.deals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 32px;
}
.deal-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.deal-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.deal-tag {
  padding: 12px 24px;
  background: var(--navy-900);
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}
.deal-card h3 {
  font-family: var(--serif);
  font-size: 1.7rem;
  color: var(--navy-900);
  padding: 24px 24px 4px;
  margin: 0;
}
.deal-sub {
  padding: 0 24px 20px;
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold-dark);
  font-size: 1.08rem;
  line-height: 1.4;
  margin: 0;
}
.deal-body {
  padding: 0 24px 24px;
  flex-grow: 1;
}
.deal-body p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 12px;
}
.deal-meta {
  background: var(--cream);
  padding: 20px 24px;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
}
.deal-meta-item {
  font-size: 0.85rem;
  color: var(--navy-900);
  line-height: 1.4;
}
.deal-meta-item span {
  display: block;
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 3px;
  font-weight: 600;
}
.deals-footnote {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-style: italic;
  max-width: 800px;
  margin: 24px auto 0;
  line-height: 1.55;
}

/* ============ STEPS ============ */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}
.step {
  text-align: center;
  padding: 40px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--gold);
  color: var(--navy-900);
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 20px;
  line-height: 1;
}
.step h3 {
  font-size: 1.35rem;
  color: var(--navy-900);
  margin-bottom: 12px;
}
.step p {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

/* ============ TEAM ============ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 60px;
}
.team-card {
  padding: 32px 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 169, 97, 0.2);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-lg);
}
.team-card h3 {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 4px;
}
.team-role {
  font-size: 0.88rem;
  color: rgba(247, 242, 231, 0.7);
  font-style: italic;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.team-card p {
  font-size: 0.95rem;
  line-height: 1.65;
}
.team-parent {
  text-align: center;
  font-size: 1.02rem;
  color: rgba(247, 242, 231, 0.75);
  max-width: 720px;
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid rgba(201, 169, 97, 0.2);
  font-style: italic;
}

/* ============ FAQ ============ */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.faq-item[open] {
  box-shadow: var(--shadow-sm);
  border-color: var(--gold);
}
.faq-item summary {
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 500;
  color: var(--navy-900);
  font-size: 1.02rem;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  line-height: 1.4;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--serif);
  font-size: 1.75rem;
  color: var(--gold);
  transition: transform 0.25s ease;
  flex-shrink: 0;
  line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-answer {
  padding: 0 24px 22px;
  border-top: 1px solid var(--border);
  padding-top: 18px;
}
.faq-answer p {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.7;
  margin: 0;
}

/* ============ FORMS ============ */
.access-form, .contact-form {
  background: var(--white);
  padding: 44px 48px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 22px;
}
.form-row label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-row label.full { grid-column: 1 / -1; }
.form-row label span {
  font-size: 0.85rem;
  color: var(--navy-900);
  font-weight: 500;
  letter-spacing: 0.01em;
}
.form-row input,
.form-row select,
.form-row textarea {
  font-family: var(--sans);
  font-size: 0.98rem;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--ivory);
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
  resize: vertical;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.15);
}
.form-row label.checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  grid-column: 1 / -1;
}
.form-row label.checkbox input {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  accent-color: var(--gold-dark);
  flex-shrink: 0;
}
.form-row label.checkbox span {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 400;
  line-height: 1.55;
}
.form-note {
  margin-top: 20px;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
  text-align: center;
  line-height: 1.55;
}
.contact-form .btn { min-width: 180px; }
.contact-direct {
  text-align: center;
  margin-top: 28px;
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* ============ FOOTER ============ */
.site-footer {
  background: var(--navy-900);
  color: rgba(247, 242, 231, 0.7);
  padding: 60px 0 30px;
  font-size: 0.88rem;
  line-height: 1.65;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(201, 169, 97, 0.2);
}
.footer-brand .brand-mark { background: var(--gold); color: var(--navy-900); }
.footer-brand .brand-name { color: var(--cream); }
.footer-brand .brand-parent { color: rgba(247, 242, 231, 0.55); }
.footer-legal p {
  color: rgba(247, 242, 231, 0.65);
  margin-bottom: 14px;
  font-size: 0.82rem;
  line-height: 1.65;
}
.footer-legal strong { color: var(--gold); }
.footer-copy {
  padding-top: 20px;
  border-top: 1px solid rgba(201, 169, 97, 0.15);
  text-align: center;
  font-size: 0.8rem;
  color: rgba(247, 242, 231, 0.5);
  letter-spacing: 0.02em;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .model-grid { grid-template-columns: 1fr 1fr; }
  .deals-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .section { padding: 70px 0; }
  .hero { padding: 60px 0 80px; }
  h2 { font-size: 2rem; }
}
@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .nav-actions .btn { padding: 8px 14px; font-size: 0.82rem; }
  .header-inner { height: 68px; gap: 12px; }
  .brand-parent { display: none; }
  .brand-mark { width: 40px; height: 40px; font-size: 1.35rem; }
  .brand-name { font-size: 1.05rem; }
  .hero-title { font-size: 2.2rem; }
  .hero-sub { font-size: 1rem; }
  .model-grid { grid-template-columns: 1fr; }
  .col-stats { grid-template-columns: 1fr 1fr; }
  .access-form, .contact-form { padding: 28px 22px; }
  .form-row { grid-template-columns: 1fr; gap: 16px; }
  .deal-meta { grid-template-columns: 1fr; }
  .btn-lg { padding: 14px 26px; font-size: 0.95rem; }
}
