/* =========================================================
   Lotus Enterprises — Mobile-first stylesheet
   Base rules target small phones. Progressive enhancement
   happens only inside min-width media queries below, in this
   order: 481px (large phones) -> 640px (small tablets) ->
   768px (tablets) -> 1024px (desktop) -> 1200px (wide desktop)
   ========================================================= */

/* ===== Design tokens ===== */
:root {
  --pink: #E6007E;
  --rose: #C2185B;
  --plum: #7B1450;
  --ink: #221B2E;
  --bg: #FFFFFF;
  --bg-soft: #FAF7F9;
  --grey: #6B6470;
  --gold: #C9A227;
  --border: #EDE3E9;

  --font-head: "Fraunces", "Playfair Display", Georgia, serif;
  --font-body: "Inter", "Source Sans 3", -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 1160px;
  --radius: 10px;
  --shadow: 0 10px 30px -12px rgba(123, 20, 80, 0.18);

  /* Fluid section rhythm — smaller on phones, larger on desktop */
  --section-pad: 56px;
  --gap: 20px;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--ink);
  margin: 0 0 0.5em;
  line-height: 1.2;
  font-weight: 600;
}

p { margin: 0 0 1em; color: var(--ink); }

a { color: var(--rose); text-decoration: none; }
a:hover { color: var(--pink); }

/* Comfortable minimum tap target on touch devices */
a, button { min-height: 0; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 18px;
}

section { padding: var(--section-pad) 0; position: relative; }
.section-soft { background: var(--bg-soft); }

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 700;
  margin-bottom: 12px;
}

.section-head {
  max-width: 640px;
  margin: 0 auto 36px;
  text-align: center;
}

.section-head h2 { font-size: 1.55rem; }
.section-head p { color: var(--grey); font-size: 1rem; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: linear-gradient(135deg, var(--pink), var(--rose));
  color: #fff;
  box-shadow: 0 8px 20px -6px rgba(230, 0, 126, 0.45);
}
.btn-primary:hover { color: #fff; box-shadow: 0 12px 26px -6px rgba(230, 0, 126, 0.55); }

.btn-outline {
  background: transparent;
  border-color: var(--plum);
  color: var(--plum);
}
.btn-outline:hover { background: var(--plum); color: #fff; }

.btn-light {
  background: #fff;
  color: var(--plum);
}
.btn-light:hover { color: var(--rose); }

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

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
}
.brand img { height: 34px; width: auto; flex: none; }
.brand-word {
  font-family: var(--font-head);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--plum);
  line-height: 1.15;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.brand-word span {
  display: none;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
}

/* Nav is a slide-down panel on mobile, inline on desktop */
.main-nav { display: none; }

.header-cta { display: flex; align-items: center; gap: 8px; flex: none; }
.call-pill { display: none; }

.btn-call-label { display: none; }

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  padding: 8px;
  flex: none;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--plum);
  margin: 3px 0;
  transition: 0.2s;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 8px 0 16px;
  border-top: 1px solid var(--border);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 12px 4px;
  color: var(--ink);
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  min-height: 44px;
  display: flex;
  align-items: center;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 44px 0 52px;
  background: var(--bg-soft);
}

.hero-petal-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.06;
  background-image: url("../assets/logo.png");
  background-repeat: no-repeat;
  background-position: 105% -10%;
  background-size: 320px;
}

.hero-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero h1 {
  font-size: 1.9rem;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.hero h1 .accent { color: var(--pink); }

.hero-sub {
  font-size: 1rem;
  color: var(--grey);
  max-width: 540px;
  margin-bottom: 26px;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 30px; }
.hero-ctas .btn { flex: 1 1 auto; min-width: 150px; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}
.hero-stats .stat:last-child { grid-column: 1 / -1; }
.hero-stats .stat-num {
  font-family: var(--font-head);
  font-size: 1.4rem;
  color: var(--plum);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 4px;
}
.hero-stats .stat-label {
  font-size: 0.8rem;
  color: var(--grey);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-visual-card {
  background: #fff;
  border-radius: 18px;
  padding: 28px 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  text-align: center;
  width: 100%;
  max-width: 360px;
}
.hero-visual-card img { width: 100px; margin: 0 auto 16px; }
.hero-visual-card p {
  color: var(--plum);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  margin: 0;
}

/* ===== About ===== */
.about-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.about-portrait {
  background: linear-gradient(155deg, var(--plum), var(--rose));
  border-radius: 20px;
  padding: 3px;
}
.about-portrait-inner {
  border-radius: 18px;
  padding: 38px 26px;
  text-align: center;
  color: #fff;
  background: linear-gradient(160deg, var(--plum) 0%, var(--rose) 100%);
}
.about-portrait-inner .portrait-photo {
  width: 128px;
  height: 128px;
  margin: 0 auto 16px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(255,255,255,0.35);
  box-shadow: 0 8px 24px -6px rgba(0,0,0,0.35);
}
.about-portrait-inner .portrait-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-portrait-inner h3 { color: #fff; margin-bottom: 4px; font-size: 1.15rem; }
.about-portrait-inner .role { color: rgba(255,255,255,0.8); font-size: 0.88rem; margin-bottom: 18px; }
.about-portrait-inner .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 0.8rem;
  color: #fff;
}

.about-copy .eyebrow { margin-bottom: 10px; }
.about-copy h2 { font-size: 1.5rem; }
.about-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  gap: 14px;
}
.about-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.94rem;
  color: var(--ink);
}
.about-list li .dot {
  flex: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  color: var(--rose);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 2px;
}

/* ===== Services ===== */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 22px;
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.service-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
  border-color: transparent;
}
.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--rose);
}
.service-icon svg { width: 24px; height: 24px; }
.service-card h3 { font-size: 1.06rem; margin-bottom: 8px; }
.service-card p { color: var(--grey); font-size: 0.92rem; margin: 0; }

/* ===== Why Us ===== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.why-card {
  text-align: center;
  padding: 22px 16px;
}
.why-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--pink), var(--plum));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.why-icon svg { width: 24px; height: 24px; }
.why-card h3 { font-size: 1rem; margin-bottom: 8px; }
.why-card p { color: var(--grey); font-size: 0.9rem; margin: 0; }

/* ===== Process ===== */
.process-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  position: relative;
}
.process-step {
  text-align: center;
  padding: 0 12px;
  position: relative;
}
.process-step::after { content: none; }
.process-num {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--rose);
  color: var(--rose);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  position: relative;
  z-index: 1;
}
.process-step h3 { font-size: 0.98rem; margin-bottom: 6px; }
.process-step p { color: var(--grey); font-size: 0.88rem; margin: 0; }

/* ===== Contact ===== */
.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-info {
  background: linear-gradient(160deg, var(--plum), var(--rose));
  color: #fff;
  border-radius: 20px;
  padding: 32px 26px;
}
.contact-info h2 { color: #fff; font-size: 1.4rem; }
.contact-info p { color: rgba(255,255,255,0.85); }
.contact-links { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 16px; }
.contact-links a {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 600;
  font-size: 0.98rem;
  min-height: 44px;
  word-break: break-word;
}
.contact-links .icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.contact-links .icon-circle svg { width: 19px; height: 19px; }
.contact-note {
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.25);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
}

.contact-form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 22px;
  box-shadow: var(--shadow);
}
.contact-form-card h2 { font-size: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 0; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-body);
  /* 16px prevents iOS Safari from auto-zooming on focus */
  font-size: 16px;
  color: var(--ink);
  background: var(--bg-soft);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(194, 24, 91, 0.12);
  background: #fff;
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-status {
  margin-top: 14px;
  font-size: 0.9rem;
  display: none;
}
.form-status.show { display: block; }
.form-status.ok { color: #1c7d3f; }

/* ===== Footer ===== */
.site-footer {
  background: var(--plum);
  color: rgba(255,255,255,0.85);
  padding: 48px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer-brand img { height: 34px; }
.footer-brand span {
  font-family: var(--font-head);
  font-weight: 700;
  color: #fff;
  font-size: 1.05rem;
}
.site-footer p { color: rgba(255,255,255,0.72); font-size: 0.92rem; }
.site-footer h4 { color: #fff; font-size: 0.92rem; margin-bottom: 14px; letter-spacing: 0.02em; }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer-links a { color: rgba(255,255,255,0.78); font-size: 0.92rem; display: inline-flex; align-items: center; min-height: 36px; }
.footer-links a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 20px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}

/* ===== WhatsApp floating button ===== */
.whatsapp-float {
  position: fixed;
  bottom: 18px;
  right: 18px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px -8px rgba(0,0,0,0.35);
  z-index: 90;
  transition: transform 0.15s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 26px; height: 26px; fill: #fff; }

/* =========================================================
   Progressive enhancement — larger screens
   ========================================================= */

/* Large phones: show tagline under wordmark, breathe a little more */
@media (min-width: 481px) {
  .brand-word span { display: block; }
  .hero h1 { font-size: 2.15rem; }
  .service-icon, .why-icon { }
}

/* Small tablets */
@media (min-width: 640px) {
  :root { --section-pad: 72px; }

  .hero-ctas .btn { flex: 0 1 auto; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .process-strip { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr 1fr; gap: 18px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}

/* Tablets / small laptops */
@media (min-width: 768px) {
  .container { padding: 0 24px; }

  .header-inner { padding: 14px 0; }
  .brand img { height: 42px; }
  .brand-word { font-size: 1.28rem; white-space: normal; }
  .brand-word span { font-size: 0.66rem; }

  .call-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: var(--plum);
    font-size: 0.95rem;
  }
  .btn-call-label { display: inline; }

  .hero { padding: 80px 0 88px; }
  .hero-petal-bg { background-size: 500px; }
  .hero h1 { font-size: 2.6rem; }
  .hero-sub { font-size: 1.08rem; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); }
  .hero-stats .stat:last-child { grid-column: auto; }
  .hero-visual-card { padding: 40px 32px; max-width: 420px; }
  .hero-visual-card img { width: 140px; }

  .section-head h2 { font-size: 2rem; }

  .about-portrait-inner { padding: 48px 30px; }
  .about-portrait-inner .portrait-photo { width: 160px; height: 160px; }

  .services-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }

  .contact-info { padding: 40px 34px; }
  .contact-form-card { padding: 36px 32px; }
}

/* Desktop */
@media (min-width: 1024px) {
  .main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
  }
  .main-nav a { color: var(--ink); font-weight: 500; font-size: 0.96rem; }
  .main-nav a:hover { color: var(--rose); }

  .nav-toggle, .mobile-nav { display: none !important; }

  .hero-inner {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 56px;
    align-items: center;
  }
  .hero h1 { font-size: clamp(2.4rem, 3.6vw, 3.15rem); }

  .about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 56px;
    align-items: center;
  }

  .why-grid { grid-template-columns: repeat(4, 1fr); }

  .process-strip { grid-template-columns: repeat(4, 1fr); }
  .process-step::after {
    content: "";
    position: absolute;
    top: 25px;
    right: -10%;
    width: 20%;
    height: 2px;
    background: var(--border);
  }
  .process-step:last-child::after { content: none; }

  .contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 48px;
  }

  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
}

/* Wide desktop */
@media (min-width: 1200px) {
  .hero-visual-card { max-width: none; }
}
