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

:root {
  --bg:       #faf9f7;
  --surface:  #ffffff;
  --surface2: #f3f1ee;
  --border:   #e8e4df;
  --accent:   #ff7a4a;
  --accent-d: #e8623a;
  --accent-l: #fff0eb;
  --text:     #1a1815;
  --muted:    #7a746e;
  --radius:   12px;
}

body.dark {
  --bg:       #141412;
  --surface:  #1e1d1b;
  --surface2: #252320;
  --border:   #2e2c29;
  --accent-l: rgba(255,122,74,0.1);
  --text:     #f0ede8;
  --muted:    #8a8480;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background 0.3s, color 0.3s;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2.5rem;
  background: rgba(250,249,247,0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s, border-color 0.3s;
}

body.dark nav { background: rgba(20,20,18,0.92); }

.logo {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--text);
  text-decoration: none;
}

.logo span { color: var(--accent); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
}

nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.2s;
}

nav a:hover { color: var(--text); }

.nav-cta {
  background: var(--accent) !important;
  color: #fff !important;
  padding: 0.5rem 1.2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.88rem;
  transition: background 0.2s, transform 0.2s !important;
}

.nav-cta:hover { background: var(--accent-d) !important; transform: translateY(-1px); }

.nav-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.theme-toggle {
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--muted);
  cursor: pointer;
  font-size: 1rem;
  padding: 0.4rem 0.6rem;
  line-height: 1;
  transition: border-color 0.2s, color 0.2s;
}

.theme-toggle:hover { border-color: var(--accent); color: var(--accent); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  padding: 7px;
  transition: border-color 0.2s;
}

.hamburger:hover { border-color: var(--accent); }

.hamburger span {
  display: block;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 190;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-nav.open { opacity: 1; pointer-events: all; }

.mobile-nav a {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
}

.mobile-nav a:hover { color: var(--accent); }

.mobile-nav .mob-cta {
  background: var(--accent);
  color: #fff !important;
  padding: 0.75rem 2.5rem;
  border-radius: 10px;
  font-size: 1.4rem;
}

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 7rem 1.5rem 5rem;
  position: relative;
  overflow: hidden;
}

/* Subtle radial glow */
#hero::before {
  content: '';
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(255,122,74,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(255,122,74,0.35);
  background: var(--accent-l);
  padding: 0.35rem 1rem;
  border-radius: 99px;
  margin-bottom: 2rem;
  animation: fadeUp 0.7s ease both;
}

.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.7); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.1;
  max-width: 640px;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.7s 0.1s ease both;
}

h1 em {
  font-style: normal;
  color: var(--accent);
  position: relative;
}

h1 em::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 0;
  width: 100%; height: 8px;
  background: rgba(255,122,74,0.18);
  border-radius: 4px;
  z-index: -1;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
  font-weight: 400;
  animation: fadeUp 0.7s 0.2s ease both;
}

.btn-group {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeUp 0.7s 0.3s ease both;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.8rem 1.6rem;
  border-radius: 10px;
  border: none;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
}

.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 4px 20px rgba(255,122,74,0.3); }
.btn-primary:hover { background: var(--accent-d); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(255,122,74,0.4); }

.btn-ghost { border: 1px solid var(--border); color: var(--text); background: var(--surface); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

/* Logos strip */
.social-proof {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  animation: fadeUp 0.7s 0.4s ease both;
}

.proof-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.proof-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.proof-stat {
  text-align: center;
}

.proof-stat strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text);
}

.proof-stat span {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 400;
}

/* ── TICKER ── */
.ticker {
  background: var(--accent);
  padding: 0.65rem 0;
  overflow: hidden;
}

.ticker-track {
  display: flex;
  gap: 3.5rem;
  animation: marquee 22s linear infinite;
  white-space: nowrap;
}

.ticker-track span {
  color: #fff;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.sep {
  opacity: 0.4;
  font-size: 0.6rem;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── SERVICES ── */
#services {
  padding: 7rem 1.5rem;
  max-width: 1120px;
  margin: 0 auto;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section-tag::before {
  content: '';
  display: block;
  width: 20px; height: 2px;
  background: var(--accent);
  border-radius: 1px;
}

h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.3px;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.section-sub {
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 3.5rem;
  font-size: 0.95rem;
  line-height: 1.75;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.service-card {
  background: var(--surface);
  padding: 2rem 1.75rem;
  transition: background 0.25s;
  position: relative;
}

.service-card:hover { background: var(--surface2); }

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width 0.35s ease;
}

.service-card:hover::after { width: 100%; }

.s-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--accent-l);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1.1rem;
}

.service-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: 0px;
}

.service-card p { color: var(--muted); font-size: 0.875rem; line-height: 1.7; }


/* ── WHY ── */
#why {
  background: var(--surface2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 7rem 1.5rem;
}

.why-inner { max-width: 1120px; margin: 0 auto; }

.why-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.why-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.why-item-icon {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: var(--accent-l);
  border: 1px solid rgba(255,122,74,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.why-item h4 { font-weight: 700; font-size: 0.95rem; margin-bottom: 0.2rem; }
.why-item p  { color: var(--muted); font-size: 0.875rem; line-height: 1.65; }

.why-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.75rem;
  transition: border-color 0.2s, transform 0.2s;
}

.stat-card:hover { border-color: rgba(255,122,74,0.4); transform: translateY(-3px); }

.stat-card .num {
  font-family: 'Outfit', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.stat-card .lbl { font-size: 0.82rem; color: var(--muted); font-weight: 500; }

/* ── OWNER ── */
#owner {
  background: var(--surface2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 7rem 1.5rem;
}

.owner-wrap {
  max-width: 780px;
  margin: 0 auto;
}

.owner-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 3rem;
  margin-top: 3rem;
  position: relative;
  overflow: hidden;
}

.owner-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), #ffb347);
}

.owner-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}


.owner-meta { flex: 1; }


.owner-title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
}

.owner-available {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: #22c55e;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.25);
  padding: 0.3rem 0.75rem;
  border-radius: 99px;
  white-space: nowrap;
}

.owner-available::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
  animation: pulse 2s infinite;
}

.owner-available.away {
  color: #f59e0b;
  background: rgba(245,158,11,0.1);
  border-color: rgba(245,158,11,0.25);
}

.owner-available.away::before { animation: none; }

.owner-available.offline {
  color: var(--muted);
  background: var(--surface2);
  border-color: var(--border);
}

.owner-available.offline::before { animation: none; }

.owner-quote {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.9;
  font-weight: 400;
  font-style: italic;
  margin-bottom: 2rem;
}

.owner-quote::before {
  content: '"';
  font-family: 'Outfit', sans-serif;
  font-size: 3.5rem;
  color: var(--accent);
  opacity: 0.3;
  line-height: 0;
  vertical-align: -1rem;
  margin-right: 0.3rem;
}

.owner-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
  background: var(--surface2);
  border: 1px solid var(--border);
  padding: 0.4rem 0.9rem;
  border-radius: 99px;
  transition: border-color 0.2s, color 0.2s;
}

.chip:hover { border-color: var(--accent); color: var(--accent); }

@media (max-width: 640px) {
  #owner { padding: 5rem 1.25rem; }
  .owner-card { padding: 2rem 1.5rem; }
  .owner-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  }

/* ── CONTACT ── */
#contact {
  padding: 7rem 1.5rem;
  max-width: 640px;
  margin: 0 auto;
}

form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-top: 3rem;
  box-shadow: 0 8px 40px rgba(0,0,0,0.06);
}

body.dark form { box-shadow: none; }

.form-row { display: flex; gap: 1rem; }
.form-row .field { flex: 1; }

.field { display: flex; flex-direction: column; gap: 0.4rem; }

label {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.05em;
}

input, textarea, select {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  padding: 0.7rem 0.9rem;
  font-size: 0.9rem;
  font-family: 'DM Sans', sans-serif;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
}

input:focus, textarea:focus, select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255,122,74,0.12);
}

textarea { resize: vertical; min-height: 120px; }
select option { background: var(--surface); }
form .btn { align-self: flex-start; width: 100%; justify-content: center; }

/* ── FOOTER ── */
footer {
  background: var(--surface2);
  border-top: 1px solid var(--border);
  padding: 3rem 2.5rem;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-brand {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.footer-brand span { color: var(--accent); }

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--text); }

.footer-copy {
  color: var(--muted);
  font-size: 0.82rem;
  width: 100%;
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  margin-top: 0.5rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-layout { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 640px) {
  nav { padding: 0.85rem 1.25rem; }
  nav ul { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }

  #hero { padding: 6.5rem 1.25rem 4rem; }
  h1 { font-size: 2rem; letter-spacing: -0.5px; }
  .hero-sub { font-size: 1rem; }
  .btn-group { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }
  .proof-stats { gap: 1.5rem; }

  #services { padding: 5rem 1.25rem; }
  .services-grid { grid-template-columns: 1fr; border-radius: 12px; }

  #why { padding: 5rem 1.25rem; }
  .why-stats { grid-template-columns: 1fr 1fr; }

  #contact { padding: 5rem 1.25rem; }
  form { padding: 1.75rem 1.25rem; }
  .form-row { flex-direction: column; }

  footer { padding: 2rem 1.25rem; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .footer-links { flex-wrap: wrap; gap: 1rem; }
}

@media (max-width: 380px) {
  h1 { font-size: 2rem; }
  .why-stats { grid-template-columns: 1fr; }
}

/* mob-link — styled via .mobile-nav a */
.mob-link { text-decoration: none; }

/* owner-info wrapper */
.owner-info { display: flex; flex-direction: column; gap: 0.2rem; }
