:root{
  --brand:#C2185B;
  --dark:#111;
  --bg:#F7F7F7;
  --text:#1b1b1b;
  --muted:#555;
  --card:#ffffff;
  --border:rgba(0,0,0,.08);
}

*{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  font-family:'Poppins', sans-serif;
  color:var(--text);
  line-height:1.6;
  background:#fff;
}

.container{
  width:90%;
  max-width:1200px;
  margin:auto;
}

/* ===== Topbar ===== */
.topbar{
  background:#0c0c0c;
  color:#fff;
  font-size:13px;
}
.topbar__inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:10px 0;
  gap:12px;
}
.topbar a{ color:rgba(255,255,255,.78); text-decoration:none; }
.topbar a:hover{ color:#fff; }
.sep{ margin:0 10px; color:rgba(255,255,255,.35); }
@media (max-width:768px){
  .topbar__inner{ flex-direction:column; align-items:flex-start; }
}

/* ===== Header ===== */
.header{
  background:rgba(17,17,17,.92);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav-container{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:14px 0;
  position:relative;
}

.brand{
  display:flex;
  align-items:baseline;
  gap:6px;
  text-decoration:none;
  color:#fff;
  white-space:nowrap;
}
.brand__amy, .brand__stitches{
  font-family:'Playfair Display', serif;
  font-weight:700;
  font-size:24px;
}
.brand__stitches{ color:var(--brand); }
.brand__tag{
  margin-left:10px;
  font-size:12px;
  color:rgba(255,255,255,.72);
  font-weight:400;
}

.nav a{
  color:#fff;
  opacity:.9;
  margin-left:22px;
  text-decoration:none;
  font-weight:400;
}
.nav a:hover{ opacity:1; }

.btn-nav{
  background:var(--brand);
  padding:10px 16px;
  border-radius:10px;
}

.menu-toggle{
  display:none;
  font-size:26px;
  color:#fff;
  cursor:pointer;
}

@media (max-width: 900px){
  .brand__tag{ display:none; }
  .menu-toggle{ display:block; }

  .nav{
    display:none;
    flex-direction:column;
    gap:10px;
    background:#111;
    position:absolute;
    top:60px;
    right:0;
    padding:16px;
    width:220px;
    border-radius:14px;
    border:1px solid rgba(255,255,255,.08);
  }
  .nav a{ margin:0; }
}

/* ===== Buttons ===== */
.hero-buttons{ display:flex; gap:14px; flex-wrap:wrap; margin-top:20px; }
.btn-primary{
  background:var(--brand);
  padding:12px 22px;
  color:#fff;
  text-decoration:none;
  border-radius:10px;
  display:inline-block;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn-primary:hover{
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(194,24,91,.28);
}

.btn-outline{
  border:2px solid rgba(255,255,255,.75);
  padding:10px 20px;
  color:#fff;
  text-decoration:none;
  border-radius:10px;
  display:inline-block;
  transition: transform .2s ease, background .2s ease;
}
.btn-outline:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.12);
}

.section-title{
  font-family:'Playfair Display', serif;
  font-size:40px;
  text-align:center;
  margin-bottom:18px;
}
.section-subtitle{
  text-align:center;
  color:var(--muted);
  margin:0 auto 40px;
  max-width:70ch;
}

/* ===== Home Hero ===== */
.hero{
  min-height: 88vh;
  background:
    linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.55)),
    url('../images/hero.jpg') center/cover no-repeat;
  display:flex;
  align-items:center;
  color:#fff;
}
.hero-content h1{
  font-family:'Playfair Display', serif;
  font-size:56px;
  line-height:1.05;
  max-width:18ch;
}
.hero-content p{
  margin-top:12px;
  max-width:60ch;
  opacity:.92;
}

@media(max-width:900px){
  .hero-content h1{ font-size:40px; }
}

/* ===== Trust Strip ===== */
.trust-strip{
  background:#0f0f0f;
  color:#fff;
  padding:16px 0;
}
.trust-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:10px;
  text-align:center;
}
.trust-item{ font-size:14px; opacity:.9; }
@media (max-width: 900px){
  .trust-grid{ grid-template-columns: repeat(2, 1fr); }
}

/* ===== Services Cards ===== */
.services{
  padding:80px 0;
  background:var(--bg);
}
.services-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap:24px;
}
.service-card{
  background:var(--card);
  padding:18px;
  border-radius:16px;
  border:1px solid var(--border);
  overflow:hidden;
  transition:.25s ease;
}
.service-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0,0,0,.10);
}
.service-card img{
  width:100%;
  height:170px;
  object-fit:cover;
  border-radius:14px;
  margin-bottom:14px;
}
.service-card h3{ margin-bottom:8px; font-size:18px; }
.service-card p{ color:var(--muted); }

/* ===== Why Us ===== */
.why-us{ padding:80px 0; }
.why-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap:22px;
  margin-top:22px;
}
.why-card{
  border:1px solid var(--border);
  border-radius:16px;
  padding:20px;
  background:#fff;
}
.why-card h4{ margin-bottom:6px; }
.why-card p{ color:var(--muted); }

/* ===== CTA Band ===== */
.cta-band{
  background: #111;
  color:#fff;
  padding:60px 0;
  text-align:center;
}
.cta-band p{ opacity:.88; margin:10px auto 18px; max-width:70ch; }

/* ===== Testimonials ===== */
.testimonials{
  background:#111;
  color:#fff;
  padding:80px 0;
}
.testimonial-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap:22px;
  margin-top:30px;
}
.testimonial-card{
  background:#1b1b1b;
  border:1px solid rgba(255,255,255,.08);
  padding:22px;
  border-radius:16px;
  transition:.25s ease;
}
.testimonial-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,.35);
}
.stars{ letter-spacing:2px; color:#FFD166; margin-bottom:10px; }

/* ===== Footer ===== */
.footer{
  background:#0c0c0c;
  color:#fff;
  padding:55px 0 20px;
}
.footer-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap:26px;
}
.footer a{
  display:block;
  color:rgba(255,255,255,.75);
  text-decoration:none;
  margin-top:8px;
}
.footer a:hover{ color:#fff; }
.footer-bottom{
  text-align:center;
  margin-top:30px;
  font-size:14px;
  color:rgba(255,255,255,.7);
}

/* ===== Page Hero (inner pages) ===== */
.page-hero{
  background: var(--bg);
  padding: 70px 0;
}
.page-hero__inner{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:40px;
  align-items:center;
}
.kicker{
  text-transform:uppercase;
  letter-spacing:2px;
  font-size:12px;
  color:#666;
  margin-bottom:10px;
}
.page-hero h1{
  font-family:'Playfair Display', serif;
  font-size:52px;
  line-height:1.05;
  margin-bottom:14px;
  color:#111;
}
.lead{ font-size:16px; color:#444; max-width:52ch; }
.page-hero__media img{
  width:100%;
  border-radius:16px;
  height:420px;
  object-fit:cover;
  box-shadow: 0 18px 50px rgba(0,0,0,.12);
}

/* ===== Mini links ===== */
.mini-links{
  padding: 18px 0;
  background:#fff;
  border-top:1px solid rgba(0,0,0,.06);
  border-bottom:1px solid rgba(0,0,0,.06);
}
.mini-links__grid{
  display:grid;
  grid-template-columns: repeat(4,1fr);
  gap:12px;
}
.mini-links a{
  background:#fafafa;
  border:1px solid rgba(0,0,0,.06);
  padding:14px 16px;
  border-radius:12px;
  text-decoration:none;
  color:#111;
  font-weight:500;
}
.mini-links a:hover{
  border-color: rgba(194,24,91,.35);
  transform: translateY(-2px);
  transition:.2s ease;
}

/* ===== Split sections ===== */
.split{ padding: 80px 0; background:#fff; }
.split:nth-of-type(even){ background:#fbfbfb; }

.split__grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:44px;
  align-items:center;
}
.split--reverse .split__grid{ direction: rtl; }
.split--reverse .split__text,
.split--reverse .split__media{ direction:ltr; }

.split__text h2{
  font-family:'Playfair Display', serif;
  font-size:36px;
  margin-bottom:12px;
  color:#111;
}
.split__text p{ color:#444; margin-bottom:18px; }

.split__media img{
  width:100%;
  border-radius:16px;
  height:420px;
  object-fit:cover;
  box-shadow: 0 18px 50px rgba(0,0,0,.10);
}

.callout{
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  border-left:4px solid var(--brand);
  padding:16px;
  border-radius:12px;
  margin: 16px 0 22px;
}
.callout ul{ margin:10px 0 0 18px; }
.callout li{ margin:6px 0; color:#333; }

/* ===== Forms ===== */
.form{
  background:#fff;
  border:1px solid var(--border);
  border-radius:16px;
  padding:22px;
  max-width:720px;
  margin: 0 auto;
}
.form .row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
}
.form label{ font-weight:500; font-size:14px; }
.form input, .form select, .form textarea{
  width:100%;
  margin-top:6px;
  padding:12px 12px;
  border-radius:12px;
  border:1px solid rgba(0,0,0,.15);
  outline:none;
  font-family:inherit;
}
.form textarea{ min-height:120px; resize:vertical; }
.form .full{ grid-column: 1 / -1; }
.form .help{ color:var(--muted); font-size:13px; margin-top:10px; }

/* ===== Scroll animations ===== */
.fade-in{
  opacity:0;
  transform: translateY(40px);
  transition: all .8s ease-in-out;
}
.fade-in.active{
  opacity:1;
  transform: translateY(0);
}

/* Floating WhatsApp */
.whatsapp-float{
  position:fixed;
  bottom:18px;
  right:18px;
  background:#25D366;
  color:#fff;
  width:54px;
  height:54px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  font-size:22px;
  box-shadow: 0 10px 25px rgba(0,0,0,.25);
  transition:.2s ease;
}
.whatsapp-float:hover{ transform: scale(1.07); }

/* Responsive */
@media (max-width: 900px){
  .page-hero__inner{ grid-template-columns:1fr; }
  .page-hero h1{ font-size:40px; }
  .page-hero__media img{ height:320px; }

  .mini-links__grid{ grid-template-columns:1fr; }
  .split__grid{ grid-template-columns:1fr; }
  .split__media img{ height:320px; }
  .form .row{ grid-template-columns:1fr; }
}
