:root{
  --bg: #fbf8f6;           /* softer warm cream */
  --text: #3f3328;         /* warm dark brown */

  --brand: #9a896e;        /* gold/taupe */
  --brand-dark: #6f644f;   /* darker taupe */
  --brand-soft: #f3e3e6;   /* blush pink */
  --brand-soft-2: #ead7d9; /* slightly deeper blush */

  --muted: #6a5e53;
  --border: #dfd2cb;
  --card: #ffffff;         /* keep cards white */
  --radius: 14px;
}

*{ box-sizing: border-box; }

body{
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.5;
  color: var(--text);
  background: var(--bg);

  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main{ flex: 1; }

.container{
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Links */
a{ color: var(--brand); }
a:hover{ color: var(--brand-dark); }

/* Header */
.site-header{
  position: sticky;
  top: 0;
  background: var(--brand);
  border-bottom: 1px solid rgba(255,255,255,0.2);
  z-index: 1000;
}

.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
  padding: 6px 0;
}

/* Brand (logo + name) */
.brand{
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #fff;
}

.logo{
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 14px;
  background: var(--brand-soft);
  padding: 6px;
}

.brand-name{
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.2px;
  color: #fff;
}

/* Nav */
.nav{
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav a{
  text-decoration: none;
  padding: 9px 12px;
  border-radius: 12px;
  color: #fff;
  font-weight: 600;
}

.nav a.active{
  background: rgba(255,255,255,0.22);
  color: #fff;
  font-weight: 800;
}

.nav a:hover{
  background: rgba(255,255,255,0.14);
}

/* Buttons */
.button, button, .btn-primary{
  display: inline-block;
  padding: 12px 20px;
  border-radius: 999px;
  background: #8a7a60;
  color: #fff;
  text-decoration: none;
  border: none;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(111, 100, 79, 0.15);
}

.button:hover, button:hover, .btn-primary:hover{
  background: var(--brand-dark);
}

/* Base card + grid (used on multiple pages) */
.grid{
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
  padding: 18px 0 46px;
}

.card{
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  background: #fffdfd;
  box-shadow: 0 8px 30px rgba(111, 100, 79, 0.08);
}

.card h2{ margin-top: 0; }

/* Footer */
.site-footer{
  background: var(--brand);
  border-top: 1px solid rgba(255,255,255,0.15);
  padding: 8px 0;
  font-size: 13px;
  color: #fff;
}

.site-footer p,
.site-footer a{
  color: #fff;
  margin: 0;
  line-height: 1.2;
}

.footer-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
  min-height: 32px;
}

.footer-links{
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a{
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.social-icon{
  width: 18px;
  height: 18px;
  object-fit: contain;
  display: block;
}

.tiktok-icon{
  width: 20px;
  height: 20px;
}

.admin-link{
  font-size: 10px;
  opacity: 0.35;
  text-decoration: none;
  margin-left: 4px;
  line-height: 1;
}

.admin-link:hover{
  opacity: 1;
}

/* -----------------------------
   HOME PAGE
-------------------------------- */
.hero{
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  background: #f7ecee;
  padding: 80px 60px;
  border-radius: 32px;
  margin: 50px 0 80px;
}

.hero-content h1{
  font-size: 44px;
  line-height: 1.2;
  margin: 0 0 16px;
  color: #3a2f25;
}

.hero-content p{
  font-size: 18px;
  color: var(--muted);
  max-width: 520px;
  margin: 0 0 28px;
}

.hero-image img{
  width: 100%;
  height: 420px;
  border-radius: 24px;
  object-fit: cover;
  filter: contrast(1.03) saturate(1.05);
}

/* Inner page hero (gallery, services) — single column, full width */
.page-hero{
  background: #f7ecee;
  border-radius: 32px;
  padding: 60px;
  margin: 50px 0 40px;
  display: block;
  width: 100%;
}

.page-hero h1{
  font-size: 44px;
  line-height: 1.2;
  margin: 0 0 16px;
  color: #3a2f25;
}

.page-hero p{
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 12px;
}

.page-hero p:last-child{
  margin-bottom: 0;
}

.section-soft{
  background: #f7ecee;
  border-radius: 32px;
  padding: 60px 40px;
  margin: 80px 0;
}

.about{
  text-align: center;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

.about h2{
  font-size: 32px;
  margin: 0 0 12px;
}

.about p{
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

.home-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin: 70px 0;
}

.home-card{
  border: 1px solid var(--border);
  border-radius: 22px;
  background: #fffdfd;
  padding: 22px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 8px 30px rgba(111, 100, 79, 0.08);
}

.home-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.home-card img{
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 16px;
  filter: contrast(1.03) saturate(1.05);
}

.home-card h2{
  margin: 0 0 8px;
  font-size: 22px;
}

.home-card p{
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.5;
}

.home-link{
  color: var(--brand);
  font-weight: 600;
  text-decoration: underline;
}

.cta{
  margin-bottom: 90px;
}

.cta-inner{
  display: flex;
  gap: 30px;
  justify-content: space-between;
  align-items: center;
}

.cta h2{
  font-size: 30px;
  margin: 0 0 10px;
}

.cta p{
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  max-width: 700px;
}

/* -----------------------------
   GALLERY
-------------------------------- */
.gallery-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  padding: 10px 0 60px;
}

.gallery-item{ margin: 0; }

.gallery-item img{
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 14px;
  transition: transform 0.3s ease;
  filter: contrast(1.03) saturate(1.05);
}

.gallery-item:hover img{
  transform: scale(1.04);
}

.gallery-item figcaption{
  text-align: center;
  margin-top: 10px;
  font-weight: 700;
  color: #111;
}

/* -----------------------------
   SERVICES / PRICING
-------------------------------- */
.container-wide{
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 28px;
}

.pricing-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  padding: 10px 0 40px;
}

.pricing-card{
  border: 1px solid var(--border);
  border-radius: 22px;
  background: #fffdfd;
  padding: 26px;
  box-shadow: 0 8px 30px rgba(111, 100, 79, 0.08);
}

.pricing-card h2{
  margin: 0 0 14px;
  font-size: 28px;
}

.pricing-img{
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 18px;
  display: block;
  border: 1px solid var(--border);
  margin: 0 0 16px;
  filter: contrast(1.03) saturate(1.05);
}

.pricing-sub{
  margin: 0 0 14px;
  font-weight: 700;
  font-size: 18px;
  color: var(--brand-dark);
  opacity: 0.85;
}

.pricing-list{
  margin: 0;
  padding-left: 20px;
  font-size: 18px;
  line-height: 1.7;
}

.pricing-card-featured{
  background: #fbf8f5;
  border: 2px solid rgba(162, 146, 120, 0.35);
}

.addons-card{
  border: 1px solid var(--border);
  border-radius: 22px;
  background: #fffdfd;
  padding: 28px;
  max-width: 980px;
  margin: 0 auto 60px;
  box-shadow: 0 8px 30px rgba(111, 100, 79, 0.08);
}

/* -----------------------------
   CONTACT FORM
-------------------------------- */
.form{ max-width: 820px; }

.form-grid{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.field{
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field-full{ grid-column: 1 / -1; }

input, textarea{
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 15px;
  background: #fff;
  color: var(--text);
}

.note{
  color: var(--muted);
  font-size: 14px;
}

.status{
  margin-top: 12px;
  color: var(--brand-dark);
  font-weight: 800;
}

/* Contact page intro box alignment */
.contact-hero{
  background: #f7ecee;
  border-radius: 32px;
  padding: 60px;
  margin: 40px 0 40px;
  display: grid;
  grid-template-columns: 260px 1fr;
  align-items: center;
  gap: 40px;
}

.contact-hero h1{
  margin: 0;
  font-size: 44px;
  color: #3a2f25;
}

.contact-hero p{
  margin: 0;
  color: var(--muted);
  max-width: 60ch;
}

/* Mobile */
@media (max-width: 900px){
  .contact-hero{
    grid-template-columns: 1fr;
    padding: 40px 24px;
    gap: 14px;
  }
  .contact-hero h1{
    font-size: 34px;
  }
}

/* -----------------------------
   RESPONSIVE
-------------------------------- */
@media (max-width: 1100px){
  .pricing-grid{ grid-template-columns: 1fr; }
  .pricing-img{ height: 280px; }
}

@media (max-width: 900px){
  .gallery-grid{ grid-template-columns: repeat(2, 1fr); }
  .gallery-item img{ height: 280px; }

  .hero{
    grid-template-columns: 1fr;
    padding: 50px 24px;
  }
  .hero-image img{ height: 320px; }

  .home-grid{ grid-template-columns: 1fr; }

  .cta-inner{
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 800px){
  .grid{ grid-template-columns: 1fr; }
  .header-inner{ flex-direction: column; align-items: flex-start; }
  .nav{ flex-wrap: wrap; }
  .form-grid{ grid-template-columns: 1fr; }
  .footer-inner{ flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px){
  .gallery-grid{ grid-template-columns: 1fr; }
  .gallery-item img{ height: 260px; }
}