
:root {
  --background: #FAF6EE;
  --foreground: #3A3C3D;
  --card: #FFFFFF;
  --primary: #85203B;
  --primary-foreground: #FAF6EE;
  --secondary: #E8DED0;
  --muted: #E8DED0;
  --muted-foreground: #6B6B6B;
  --accent: #85203B;
  --border: rgba(58, 60, 61, 0.15);
  --ring: #85203B;
  --radius: 10px;
  --container: 1200px;
  --shadow: 0 12px 30px rgba(0,0,0,0.08);
}

* { box-sizing: border-box; }
html, body { margin:0; padding:0; }
body {
  background: var(--background);
  color: var(--foreground);
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.6;
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 1rem; }
.section { padding: 5rem 0; }
.section.alt { background: color-mix(in srgb, var(--muted) 30%, white); }

/* Header */
.header {
  position: sticky; top: 0; z-index: 1000;
  background: color-mix(in srgb, var(--background) 95%, transparent);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 0;
}
.brand { display:flex; align-items:center; gap: .75rem; }
.brand img { width: 72px; height: 72px; object-fit: contain; }
.brand .name { display:flex; flex-direction: column; }
.brand .name .title { font-weight: 600; }
.brand .name .title .big { color: var(--primary); text-decoration: underline; font-weight: 800; font-style: italic; }
.brand .name .tag { color: var(--muted-foreground); font-size: .9rem; }

nav.primary { display:none; gap: 1.25rem; align-items:center; }
nav.primary a, nav.primary button {
  background:none; border:none; color: inherit; cursor:pointer; font: inherit;
}
nav.primary a:hover, nav.primary button:hover { color: var(--primary); }

/* Mobile nav toggle */
.menu-btn { display: inline-flex; background:none; border:none; cursor:pointer; }
@media (min-width: 768px) { nav.primary{display:flex;} .menu-btn{display:none;} }

.mobile-nav { display:none; flex-direction: column; gap: 1rem; padding-bottom:1rem; }
.mobile-nav.open { display:flex; }
.btn { background: var(--primary); color: var(--primary-foreground); border: none; padding: .75rem 1.25rem; border-radius: 10px; cursor:pointer; }
.btn.outline { background: transparent; color: var(--primary); border: 1px solid var(--primary); }

/* Hero */
.hero { padding-top: 7rem; }
.hero-grid { display:flex; flex-direction: column; gap: 2rem; align-items:center; }
@media (min-width: 1024px){ .hero-grid{ flex-direction: row; align-items: center; } }
.hero .rock { flex-shrink: 0; }
.hero .rock img { width: 14rem; height: 14rem; object-fit: contain; }
.pill { display:inline-block; padding: .5rem 1rem; border:1px solid var(--accent); color: var(--accent); background: color-mix(in srgb, var(--accent) 10%, white); border-radius: 999px; margin-bottom: 1rem; }
h1 { font-size: clamp(2rem, 4vw, 3.5rem); line-height: 1.15; margin: 0 0 1rem; }
.lead { color: var(--muted-foreground); max-width: 48ch; }

.grid { display:grid; gap: 1.25rem; }
.grid-4 { grid-template-columns: repeat(1, 1fr); }
@media (min-width: 768px){ .grid-4{ grid-template-columns: repeat(2, 1fr);} }
@media (min-width: 1024px){ .grid-4{ grid-template-columns: repeat(4, 1fr);} }

.card { background: var(--card); border:1px solid var(--border); border-radius: var(--radius); padding: 1.25rem; box-shadow: var(--shadow); }
.card .icon { width: 48px; height: 48px; border-radius: 12px; background: var(--primary); color: var(--primary-foreground); display:flex; align-items:center; justify-content:center; margin-bottom: .75rem; }

/* Showcase image */
.responsive-img { width:100%; height:auto; border-radius: var(--radius); box-shadow: var(--shadow); }

/* Process */
.step { position: relative; padding-top: .25rem; }
.step-num { font-size: 3rem; opacity:.2; font-weight: 700; line-height: 1; margin-bottom: .25rem; }
.step-title { display:flex; gap: .5rem; align-items:center; font-weight: 600; }
.step-title .check { width: 24px; height: 24px; color: var(--primary); }

/* Contact */
.form-grid { display:grid; gap: 1rem; }
@media (min-width: 768px){ .form-grid { grid-template-columns: 1fr 1fr; } }
.input, .textarea {
  width: 100%; padding: .75rem 1rem; border-radius: 10px;
  border:1px solid var(--border); background: #fff; font: inherit; color: inherit;
}
label { display:block; margin-bottom: .5rem; font-weight: 600; }
.info-item { display:flex; gap: .75rem; align-items:flex-start; }
.info-item .icon { width: 40px; height: 40px; border-radius: 10px; background: var(--primary); color: var(--primary-foreground); display:flex; align-items:center; justify-content:center; }
.small { font-size: .9rem; color: var(--muted-foreground); }

/* Footer */
.footer { background: color-mix(in srgb, var(--muted) 50%, white); border-top: 1px solid var(--border); }
.footer .top { display:grid; gap: 1.5rem; }
@media (min-width: 768px){ .footer .top { grid-template-columns: 2fr 1fr 1fr; } }
.footer .brand img { width: 56px; height:56px; }
.footer small { color: var(--muted-foreground); }
.footer .socials a { display:inline-flex; width:36px; height:36px; border-radius:10px; align-items:center; justify-content:center; background: var(--muted); color: inherit; text-decoration:none; margin-right:.5rem; }
.footer .socials a:hover { background: var(--foreground); color: var(--background); }

hr.sep { border: 0; border-top: 1px solid var(--border); margin-top:2rem; }
.center { text-align:center; }
.spacer { height: 1rem; }

/* --- Mobile refinements for hero section and devices --- */
@media (max-width: 600px){
  .hero-mockup {
    width: 95%;
    max-width: 360px;
    margin-top: 0.8rem;
    margin-bottom: 0.8rem;
    box-shadow: 0 3px 8px rgba(0,0,0,.1);
  }
  .hero {
    padding: 3rem 1rem 2rem;
  }
  .hero h2 {
    font-size: 1.6rem;
    line-height: 1.2;
  }
  .hero p {
    font-size: 0.95rem;
    line-height: 1.4;
  }
}
