/* JFT Real Property — Cloudflare static site styles (v2 with banner logo sizing) */

:root {
  --bg: #0b1014;
  --bg-alt: #111827;
  --bg-muted: #0f172a;
  --accent: #c5562e;
  --accent-soft: rgba(197, 86, 46, 0.16);
  --text-main: #f9fafb;
  --text-muted: #9ca3af;
  --border: #1f2933;

  --radius-lg: 18px;
  --radius-xl: 24px;
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.6);
  --shadow-subtle: 0 12px 30px rgba(0, 0, 0, 0.45);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #111827 0, #020617 55%, #000 100%);
  color: var(--text-main);
  line-height: 1.6;
}

/* Layout */

.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: linear-gradient(
    to bottom,
    rgba(11, 15, 23, 0.98),
    rgba(11, 15, 23, 0.8),
    transparent
  );
  border-bottom: 1px solid rgba(15, 23, 42, 0.9);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.4rem 0;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

/* Bigger banner logo on dark background */
.brand-logo {
  height: 120px;      /* increase overall logo size */
  width: auto;
  display: block;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.18s ease-out;
  white-space: nowrap;
}

.btn-primary {
  background: radial-gradient(circle at 20% 0, #f59e63, var(--accent));
  color: #111827;
  box-shadow: var(--shadow-subtle);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.75);
  filter: brightness(1.03);
}

.btn-outline {
  border-color: rgba(148, 163, 184, 0.7);
  color: var(--text-main);
  background: rgba(15, 23, 42, 0.85);
}

.btn-outline:hover {
  border-color: var(--accent);
  background: rgba(15, 23, 42, 1);
}

.btn-full {
  width: 100%;
}

/* Hero */

.hero {
  padding: 3.25rem 0 2.5rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.2fr);
  gap: 2rem;
  align-items: flex-start;
}

.eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.hero h1 {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: clamp(2rem, 2.7vw, 2.6rem);
  line-height: 1.2;
  margin: 0 0 0.75rem;
}

.hero-subtitle {
  font-size: 0.98rem;
  color: var(--text-muted);
  max-width: 34rem;
  margin-bottom: 1.5rem;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}

.hero-email {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-decoration: none;
}

.hero-email strong {
  color: var(--text-main);
}

.hero-email:hover strong {
  color: var(--accent);
}

.hero-cred {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.8rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Hero card */

.hero-card {
  background: radial-gradient(circle at top left, #1f2937, #020617);
  border-radius: var(--radius-xl);
  padding: 1.4rem 1.5rem;
  border: 1px solid rgba(30, 64, 175, 0.55);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -60%;
  background: radial-gradient(circle at top right, rgba(248, 250, 252, 0.18), transparent 60%);
  opacity: 0.35;
  pointer-events: none;
}

.hero-card h2 {
  position: relative;
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 1.1rem;
}

.hero-card ul {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0 0 0.9rem;
  font-size: 0.9rem;
  color: var(--text-main);
}

.hero-card li {
  padding-left: 1.2rem;
  margin-bottom: 0.4rem;
  position: relative;
}

.hero-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
}

.hero-card-footer {
  position: relative;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

/* Sections */

.section {
  padding: 2.75rem 0;
}

.section-muted {
  background: radial-gradient(circle at top, #020617, #020617 40%, #000 100%);
}

/* Steps */

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.step {
  background: radial-gradient(circle at top, #020617, #020617);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.2rem 1.3rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-subtle);
}

.step-number {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: var(--accent-soft);
  border: 1px solid rgba(197, 86, 46, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.step h3 {
  margin: 0 0 0.4rem;
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 1rem;
}

.step p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Values */

.values {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: flex-start;
}

.values-text h2 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-family: "Georgia", "Times New Roman", serif;
}

.values-text p {
  margin: 0 0 0.75rem;
  font-size: 0.94rem;
}

.values-text ul {
  margin: 0 0 0.75rem;
  padding-left: 1.15rem;
  font-size: 0.92rem;
}

.values-card {
  background: linear-gradient(145deg, #020617, #020617);
  border-radius: var(--radius-xl);
  padding: 1.4rem 1.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-subtle);
}

.values-card h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-family: "Georgia", "Times New Roman", serif;
}

.values-card ul {
  margin: 0 0 0.8rem;
  padding-left: 1.15rem;
  font-size: 0.9rem;
}

.values-note {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Contact */

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.3fr);
  gap: 1.9rem;
  align-items: flex-start;
}

.contact-text h2 {
  margin-top: 0;
  margin-bottom: 0.6rem;
  font-family: "Georgia", "Times New Roman", serif;
}

.contact-text p {
  margin: 0;
  font-size: 0.94rem;
  color: var(--text-muted);
}

.contact-form-card {
  background: radial-gradient(circle at top left, #020617, #020617);
  border-radius: var(--radius-xl);
  padding: 1.4rem 1.5rem 1.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.form-group {
  margin-bottom: 0.9rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 0.25rem;
  color: #e5e7eb;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.55rem 0.65rem;
  border-radius: 0.6rem;
  border: 1px solid #1f2937;
  background: rgba(15, 23, 42, 0.9);
  color: var(--text-main);
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.16s ease-out, box-shadow 0.16s ease-out, background 0.16s ease-out;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(197, 86, 46, 0.6);
  background: rgba(15, 23, 42, 1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-footnote {
  margin-top: 0.65rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Footer */

.site-footer {
  border-top: 1px solid rgba(15, 23, 42, 0.9);
  padding: 1.4rem 0 1.6rem;
  background: linear-gradient(to bottom, #020617, #020617 60%, #000 100%);
}

.footer-inner {
  text-align: center;
}

.footer-inner p {
  margin: 0;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.footer-meta {
  margin-top: 0.3rem;
}

/* Responsive */

@media (max-width: 900px) {
  .hero-inner,
  .values,
  .contact,
  .steps {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    padding-top: 2.5rem;
  }

  .brand-logo {
    height: 90px; /* slightly smaller on tablets/phones */
  }
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 1.85rem;
  }

  .hero-card {
    margin-top: 0.75rem;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-email {
    font-size: 0.84rem;
  }

  .section {
    padding: 2.25rem 0;
  }

  .brand-logo {
    height: 80px; /* compact on small screens */
  }
}
