@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Fraunces:wght@500;600;700&display=swap");

:root{
  --bg:#f6fbff;
  --panel:#ffffff;
  --ink:#102031;
  --ink-soft:rgba(16,32,49,.72);
  --brand:#bfe5ff;
  --brand-soft:rgba(191,229,255,.35);
  --pink:#ffd6e6;
  --pink-soft:rgba(255,214,230,.40);
  --vio:#7f5bd5;
  --radius-sm:12px;
  --radius:18px;
  --radius-lg:26px;
  --shadow-soft:0 18px 48px rgba(15,23,42,.14);
  --shadow-subtle:0 10px 30px rgba(15,23,42,.08);
}

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

html,body{
  margin:0;
  padding:0;
  min-height:100%;
}

body{
  font-family:"DM Sans",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:var(--ink);
  background: radial-gradient(1200px 600px at -10% -10%, var(--brand-soft), transparent 60%),
              radial-gradient(900px 500px at 110% 0%, var(--pink-soft), transparent 55%),
              var(--bg);
}

a{
  color:inherit;
  text-decoration:none;
}

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

.container{
  width:min(1120px, calc(100% - 32px));
  margin:0 auto;
}

/* Layout */

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

main.page-main{
  flex:1;
  padding:24px 0 40px;
}

.section{
  padding:32px 0;
}

.section-header{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:18px;
  margin-bottom:18px;
}

.section-header h2{
  margin:0;
}

.section-header .muted{
  max-width:420px;
}

header{
  position:sticky;
  top:0;
  z-index:40;
  backdrop-filter:blur(18px);
  background:linear-gradient(120deg,rgba(246,251,255,.96),rgba(255,255,255,.96));
  border-bottom:1px solid rgba(15,23,42,.05);
}

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

.brand{
  display:flex;
  align-items:center;
  gap:12px;
}

.brand img{
  width:40px;
  height:40px;
  border-radius:16px;
  box-shadow:0 10px 25px rgba(15,23,42,.18);
}

.brand-text{
  display:flex;
  flex-direction:column;
}

.brand-text .title{
  font-family:"Fraunces",serif;
  font-weight:600;
  font-size:1.25rem;
  letter-spacing:.02em;
}

.brand-text .tagline{
  font-size:.75rem;
  color:var(--ink-soft);
}

.navlinks{
  display:flex;
  align-items:center;
  gap:6px;
  border-radius:999px;
  padding:4px;
  background:rgba(255,255,255,.9);
  box-shadow:0 14px 44px rgba(15,23,42,.10);
}

.navlinks a,
.navlinks button{
  border-radius:999px;
  padding:8px 14px;
  font-size:.9rem;
  font-weight:600;
  border:none;
  background:transparent;
  position:relative;
  cursor:pointer;
  color:var(--ink-soft);
  transition:color .18s ease, background .18s ease, transform .16s ease;
}

.navlinks a:hover,
.navlinks button:hover{
  background:rgba(191,229,255,.45);
  color:var(--ink);
  transform:translateY(-1px);
}

.navlinks a.active{
  background:linear-gradient(135deg,var(--brand),var(--pink));
  color:#111827;
}

.navlinks a.active::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  box-shadow:0 10px 26px rgba(127,91,213,.45);
  opacity:.7;
}

.dropdown{
  position:relative;
}

.dropdown > button{
  display:inline-flex;
  align-items:center;
  gap:6px;
}

.menu{
  position:absolute;
  top:110%;
  right:0;
  min-width:200px;
  padding:8px;
  border-radius:18px;
  background:#fff;
  border:1px solid rgba(148,163,184,.25);
  box-shadow:0 20px 60px rgba(15,23,42,.22);
  display:none;
}

.dropdown.open .menu{
  display:block;
}

.menu.open{
  display:block;
}

.menu a{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:10px 10px;
  border-radius:12px;
  font-size:.9rem;
  font-weight:500;
}

.menu a:hover{
  background:rgba(191,229,255,.35);
}

.hamburger{
  display:none;
}

.hamburger button{
  width:40px;
  height:40px;
  border-radius:999px;
  border:1px solid rgba(148,163,184,.5);
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.1rem;
  cursor:pointer;
  box-shadow:0 10px 24px rgba(15,23,42,.14);
}

.mobile-drawer{
  display:none;
  padding:10px 0 16px;
}

.mobile-drawer.open{
  display:block;
}

.mobile-drawer a{
  display:block;
  padding:10px 10px;
  border-radius:12px;
  font-weight:600;
  font-size:.95rem;
}

.mobile-drawer a:hover{
  background:rgba(191,229,255,.35);
}

/* Hero */

.hero{
  padding:30px 0 10px;
}

.hero-shell{
  display:grid;
  grid-template-columns:minmax(0,1.4fr) minmax(0,1fr);
  gap:26px;
  align-items:stretch;
}

@media (max-width:900px){
  .hero-shell{
    grid-template-columns:1fr;
  }
}

.hero-card{
  background:radial-gradient(circle at 0% 0%,rgba(191,229,255,.55),transparent 60%),
             radial-gradient(circle at 100% 0%,rgba(255,214,230,.55),transparent 60%),
             rgba(255,255,255,.98);
  border-radius:var(--radius-lg);
  padding:24px 22px 22px;
  box-shadow:var(--shadow-soft);
  position:relative;
  overflow:hidden;
}

.hero-card::after{
  content:"";
  position:absolute;
  inset:auto -40px 0;
  height:60px;
  background:linear-gradient(to top,rgba(246,251,255,.95),transparent);
  pointer-events:none;
}

.hero-eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:4px 10px;
  border-radius:999px;
  background:rgba(191,229,255,.35);
  font-size:.78rem;
  font-weight:600;
  color:var(--ink-soft);
  margin-bottom:8px;
}

.hero h1{
  font-family:"Fraunces",serif;
  font-weight:600;
  font-size:clamp(2rem,2.8vw,2.7rem);
  line-height:1.1;
  margin:0 0 8px;
}

.hero p{
  margin:0 0 14px;
  font-size:.98rem;
  line-height:1.6;
  color:var(--ink-soft);
}

.hero-meta{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:14px;
}

.hero-meta .pill{
  font-size:.8rem;
}

.hero-cta{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:14px;
}

.hero-visual{
  border-radius:var(--radius-lg);
  background:radial-gradient(circle at 80% 0%,rgba(127,91,213,.4),transparent 55%),
             rgba(15,23,42,.98);
  padding:14px;
  box-shadow:var(--shadow-soft);
  display:flex;
  flex-direction:column;
  gap:10px;
}

.hero-visual-main{
  border-radius:20px;
  overflow:hidden;
  position:relative;
}

.hero-visual-main img{
  width:100%;
  height:260px;
  object-fit:cover;
}

.hero-visual-tag{
  position:absolute;
  left:14px;
  bottom:14px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(15,23,42,.78);
  color:#f9fafb;
  font-size:.76rem;
  display:inline-flex;
  align-items:center;
  gap:6px;
}

.hero-visual-stat{
  display:flex;
  align-items:center;
  justify-content:space-between;
  border-radius:18px;
  padding:10px 12px;
  background:rgba(15,23,42,.9);
  color:#e5e7eb;
  font-size:.82rem;
}

/* Generic components */

.badge{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(148,163,184,.4);
  background:rgba(255,255,255,.88);
  font-size:.78rem;
  font-weight:600;
}



.btn.sm{ padding:8px 12px; font-size:.85rem; box-shadow:0 8px 18px rgba(15,23,42,.08); }

.btn svg{
  width:16px;
  height:16px;
}

.btn.primary{
  background:linear-gradient(135deg,var(--brand),var(--pink));
  border-color:transparent;
}

.btn.ghost{
  background:rgba(255,255,255,.92);
}

.btn:hover{
  transform:translateY(-1px);
  box-shadow:0 16px 40px rgba(15,23,42,.18);
}

.btn:active{
  transform:translateY(0);
  box-shadow:0 6px 16px rgba(15,23,42,.16);
}

.pill{
  display:inline-flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(148,163,184,.35);
  background:rgba(255,255,255,.92);
}

/* Layout helpers */

.grid{
  display:grid;
  gap:16px;
}

.grid.cols-2{grid-template-columns:repeat(2,minmax(0,1fr));}
.grid.cols-3{grid-template-columns:repeat(3,minmax(0,1fr));}

@media (max-width:880px){
  .grid.cols-3{grid-template-columns:repeat(2,minmax(0,1fr));}
}

@media (max-width:640px){
  .grid.cols-2,
  .grid.cols-3{grid-template-columns:1fr;}
}

.split{
  display:flex;
  justify-content:space-between;
  gap:18px;
}

.split.center{
  align-items:center;
}

.split.stretch{
  align-items:stretch;
}

@media (max-width:720px){
  .split{
    flex-direction:column;
  }
}

.card{
  background:rgba(255,255,255,.98);
  border-radius:var(--radius);
  border:1px solid rgba(148,163,184,.28);
  box-shadow:var(--shadow-subtle);
  position:relative;
  overflow:hidden;
}

.card.pad{padding:18px 18px 16px;}

.card:hover{
  box-shadow:var(--shadow-soft);
}

.kpis{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}

.row{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
}

.ticker{
  overflow:hidden;
  border-radius:18px;
  border:1px solid rgba(148,163,184,.28);
  background:rgba(255,255,255,.92);
  box-shadow:0 14px 34px rgba(15,23,42,.12);
  padding:8px;
}

.ticker-track{
  display:flex;
  gap:10px;
  align-items:center;
  min-width:100%;
  animation:marquee 22s linear infinite;
}

.review-chip{
  display:inline-flex;
  flex-direction:column;
  gap:2px;
  padding:10px 12px;
  border-radius:14px;
  background:linear-gradient(135deg,rgba(191,229,255,.45),rgba(255,214,230,.45));
  min-width:180px;
  box-shadow:0 10px 26px rgba(15,23,42,.12);
}

.review-chip span{
  color:var(--ink-soft);
  font-size:.85rem;
}

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

.muted{
  color:var(--ink-soft);
}

.small{
  font-size:.8rem;
}

/* Pricing */

.pricing-grid{
  display:grid;
  grid-template-columns:2fr 3fr;
  gap:18px;
}

@media (max-width:880px){
  .pricing-grid{grid-template-columns:1fr;}
}

.pricing-list{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.pricing-pill{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:10px 12px;
  border-radius:16px;
  border:1px dashed rgba(148,163,184,.6);
  background:rgba(255,255,255,.9);
}

.pricing-pill strong{
  font-weight:600;
}

.pricing-pill span{
  font-weight:700;
}

/* Gallery / work */

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(230px,1fr));
  gap:18px;
}

.gallery-card{
  border-radius:22px;
  overflow:hidden;
  background:linear-gradient(145deg,rgba(191,229,255,.45),rgba(255,214,230,.45));
  box-shadow:var(--shadow-subtle);
}

.gallery-card img{
  width:100%;
  height:230px;
  object-fit:cover;
}

.gallery-card-body{
  padding:10px 12px 12px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
}

.recent-card{
  display:flex;
  flex-direction:column;
  gap:10px;
  border-radius:20px;
  overflow:hidden;
  background:rgba(255,255,255,.96);
  border:1px solid rgba(148,163,184,.28);
  box-shadow:var(--shadow-subtle);
}

.recent-card img{
  width:100%;
  height:200px;
  object-fit:cover;
}

.recent-card .cap{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
  padding:0 12px 12px;
}

/* Reviews */

.review-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(260px,1fr));
  gap:16px;
}

.review-card{
  border-radius:20px;
  padding:14px 14px 12px;
  background:rgba(255,255,255,.98);
  border:1px solid rgba(148,163,184,.35);
  box-shadow:0 10px 30px rgba(15,23,42,.12);
}

.review-meta{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
}

/* Contact & schedule */

.contact-layout{
  display:grid;
  grid-template-columns:minmax(0,1.15fr) minmax(0,.85fr);
  gap:22px;
}

@media (max-width:840px){
  .contact-layout{
    grid-template-columns:1fr;
  }
}

.schedule-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
  gap:14px;
}

.schedule-card{
  border-radius:18px;
  padding:12px 14px;
  border:1px solid rgba(148,163,184,.4);
  background:rgba(255,255,255,.95);
}

/* Forms */

.form{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.form label{
  font-weight:600;
  display:block;
  margin-bottom:4px;
}

.form input,
.form textarea,
.form select{
  width:100%;
  border-radius:12px;
  border:1px solid rgba(148,163,184,.55);
  padding:9px 11px;
  font:inherit;
  background:#fff;
}

.form textarea{resize:vertical;min-height:120px;}

.small.success{color:#166534;}
.small.error{color:#b91c1c;}

/* Footer */

.footer{
  border-top:1px solid rgba(148,163,184,.28);
  padding:20px 0 28px;
  margin-top:10px;
}

.footer-top{
  display:flex;
  justify-content:space-between;
  gap:16px;
}

.footer-top small{
  color:var(--ink-soft);
}

.footer-kpis{
  display:flex;
  gap:10px;
  align-items:center;
}

/* Animations */

.fade-in{
  opacity:0;
  transform:translateY(10px);
  transition:opacity .35s ease-out, transform .35s ease-out;
}

.fade-in.in{
  opacity:1;
  transform:translateY(0);
}


/* Map old soft-bg class to new base look for backwards compatibility */
.soft-bg{
  background:none;
}


header.scrolled{
  box-shadow:0 12px 32px rgba(15,23,42,.16);
}


/* Hero image tweaks */
.hero-visual-main img{
  height:220px;
  object-fit:cover;
}

/* Unified image treatment */
.card img,
.gallery-card img,
.hero-visual-main img{
  border-radius:20px;
  transition:transform .25s ease-out;
}
.card:hover img,
.gallery-card:hover img,
.hero-visual-main:hover img{
  transform:scale(1.03);
}

/* Rounded, touch-friendly buttons */
.btn{
  border-radius:999px;
  padding:11px 18px;
  font-weight:600;
  transition:transform .2s ease-out, box-shadow .2s ease-out, background .2s ease-out;
}
.btn:hover{
  transform:translateY(-1px);
}
.btn:active{
  transform:translateY(0);
  box-shadow:0 6px 18px rgba(15,23,42,.16);
}

/* Section spacing & separators */
.section{
  padding:40px 0;
  position:relative;
}
.section::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:0;
  width:min(960px, 92%);
  height:1px;
  transform:translateX(-50%);
  background:linear-gradient(90deg,transparent,rgba(148,163,184,.32),transparent);
  opacity:.55;
}

/* Typography polish */
body{
  line-height:1.6;
}
h1,h2,h3{
  line-height:1.2;
}
h1{ font-size:clamp(2.1rem,3vw,2.6rem); }
h2{ font-size:1.5rem; }
h3{ font-size:1.15rem; }

/* Mobile button behaviour */
@media (max-width:640px){
  .hero-cta .btn,
  .contact-layout .btn{
    width:100%;
    justify-content:center;
  }
}


/* Compact hero (inspired by real bakery sites) */
.hero-compact{
  padding:28px 0 18px;
}
.hero-compact-wrap{
  display:grid;
  grid-template-columns:minmax(0,1.5fr) minmax(0,1.1fr);
  gap:22px;
  align-items:flex-start;
}
.hero-copy h1{
  margin:0 0 8px;
}
.hero-copy p.muted{
  margin:0;
  max-width:30rem;
}
.hero-mini{
  justify-self:end;
}
.hero-mini-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  grid-auto-rows:110px;
  gap:10px;
}
.hero-mini-item{
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 12px 30px rgba(15,23,42,.16);
}
.hero-mini-item img{
  width:100%;
  height:100%;
  object-fit:cover;
  transform:scale(1.02);
  transition:transform .25s ease-out;
}
.hero-mini-item:hover img{
  transform:scale(1.06);
}
.hero-mini-span{
  grid-column:1 / -1;
}

/* Smaller, consistent imagery site-wide */
.card img,
.gallery-card img,
.hero-mini-item img{
  border-radius:16px;
}
.gallery-thumb{
  display:block;
  border-radius:18px;
  overflow:hidden;
}
.gallery-thumb img{
  width:100%;
  height:210px;
  object-fit:cover;
}
.hero{
  padding-top:24px;
}

/* Button sizing & micro-interactions (ensure pill shape, no circles) */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  border-radius:999px;
  padding:10px 18px;
  font-weight:600;
  font-size:.9rem;
  height:auto;
  width:auto;
  min-height:36px;
  border:1px solid rgba(148,163,184,.45);
  background:#ffffff;
  box-shadow:0 10px 24px rgba(15,23,42,.08);
  cursor:pointer;
  transition:transform .16s ease, box-shadow .16s ease, background .16s ease;
}
.btn.sm{
  padding:8px 14px;
  min-height:32px;
}
.btn:hover{ transform:translateY(-1px); }
.btn:active{ transform:translateY(0); }

/* Load more button spinner placeholder */
.btn .spinner{
  width:14px;
  height:14px;
  border-radius:999px;
  border:2px solid rgba(15,23,42,.28);
  border-top-color:transparent;
  animation:spin .7s linear infinite;
}

@keyframes spin{
  to{ transform:rotate(360deg); }
}

/* Section breathing room tweaks */
.section{
  padding:32px 0;
}

@media (max-width:860px){
  .hero-compact-wrap{
    grid-template-columns:1fr;
  }
  .hero-mini{
    justify-self:start;
  }
}



/* Single hero image card on home */
.hero-image{
  justify-self:end;
}
.hero-image-card{
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 16px 40px rgba(15,23,42,.18);
}
.hero-image-card img{
  width:100%;
  max-width:420px;
  height:260px;
  object-fit:cover;
  display:block;
}

@media (max-width:860px){
  .hero-compact-wrap{
    grid-template-columns:1fr;
  }
  .hero-image{
    justify-self:start;
    margin-top:12px;
  }
  .hero-image-card img{
    max-width:100%;
    height:220px;
  }
}
