/* === RESET & BASE === */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{font-family:'Figtree',Arial,Helvetica,sans-serif;font-size:17px;line-height:1.65;color:#3a2a1e;background:#fffdf9}
a{color:#c2185b;text-decoration:none;transition:color .2s}
a:hover{color:#e91e63}
img{max-width:100%;height:auto;display:block}
ul,ol{list-style:none}

/* === TYPOGRAPHY === */
h1,h2,h3,h4{font-family:'Playfair Display','Georgia',serif;font-weight:700;line-height:1.2;color:#1e0c05}
h1{font-size:44px;margin-bottom:20px}
h2{font-size:34px;margin-bottom:18px}
h3{font-size:22px;margin-bottom:12px}
h4{font-size:18px;margin-bottom:10px}
p{margin-bottom:16px;color:#5a4a3e}

/* === LAYOUT === */
.container{max-width:1200px;margin:0 auto;padding:0 24px}
.row{display:flex;flex-wrap:wrap;gap:30px}
.col-2{flex:1 1 calc(50% - 15px)}
.col-3{flex:1 1 calc(33.333% - 20px)}
.col-4{flex:1 1 calc(25% - 23px)}
.text-center{text-align:center}

/* === ANNOUNCEMENT BAR === */
.announce-bar{background:#fbb0bf;color:#7b1040;font-size:14px;font-weight:600;padding:10px 0;text-align:center;letter-spacing:.3px}
.announce-bar .container{display:flex;justify-content:center;align-items:center}

/* === HEADER === */
.header{background:#fffdf9;padding:16px 0;position:sticky;top:0;z-index:100;border-bottom:1px solid #f0e8e0}
.header .container{display:flex;justify-content:space-between;align-items:center}
.logo img{height:40px;width:auto}
.nav-menu{display:flex;gap:28px;align-items:center}
.nav-menu a{color:#3a2a1e;font-family:'Figtree',sans-serif;font-size:14px;font-weight:600;text-transform:uppercase;letter-spacing:1px;transition:color .2s}
.nav-menu a:hover,.nav-menu a.active{color:#c2185b}
.mobile-toggle{display:none;background:none;border:none;color:#1e0c05;font-size:28px;cursor:pointer}

/* === HERO (butterbekind boutique style — image left, text right) === */
.hero{position:relative;min-height:520px;display:flex;align-items:center;background:#fffdf9;overflow:hidden;padding:60px 0}
.hero .container{position:relative;z-index:2;display:flex;align-items:center;gap:48px}
.hero-image{flex:0 0 50%;max-width:50%}
.hero-image img{width:100%;border-radius:16px;object-fit:cover}
.hero-content{flex:1;padding:20px 0}
.hero-content h1{font-size:48px;line-height:1.1;color:#1e0c05}
.hero-content h1 span{color:#c2185b}
.hero-content p{font-size:19px;color:#6a5a4e;margin-bottom:32px}
.hero-tag{display:inline-block;background:rgba(194,24,91,.08);border:1px solid rgba(194,24,91,.25);color:#c2185b;font-size:13px;font-weight:600;padding:6px 16px;border-radius:20px;margin-bottom:20px;text-transform:uppercase;letter-spacing:1px}

/* === BUTTONS === */
.btn{display:inline-block;padding:14px 36px;border-radius:8px;font-size:15px;font-weight:600;text-transform:uppercase;letter-spacing:.5px;cursor:pointer;transition:all .25s;border:none;font-family:'Figtree',sans-serif}
.btn-primary{background:#c2185b;color:#fff}
.btn-primary:hover{background:#e91e63;color:#fff}
.btn-outline{background:transparent;border:2px solid #c2185b;color:#c2185b}
.btn-outline:hover{background:#c2185b;color:#fff}
.btn-white{background:#fff;color:#1e0c05}
.btn-white:hover{background:#f5f0eb}

/* === SECTION COMMON === */
.section{padding:80px 0}
.section-dark{background:#fef6f0}
.section-alt{background:#f9f4ef}
.section-title{text-align:center;margin-bottom:50px}
.section-title p{max-width:600px;margin:10px auto 0;color:#7a6a5e}

/* === PRODUCTS/PROJECTS GRID === */
.project-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.project-card{background:#fff;border:1px solid #f0e8e0;border-radius:14px;overflow:hidden;transition:transform .25s,box-shadow .25s}
.project-card:hover{transform:translateY(-5px);box-shadow:0 8px 30px rgba(194,24,91,.1)}
.project-card img{width:100%;height:200px;object-fit:cover;background:#fffcd1}
.project-card-body{padding:22px}
.project-card-body h3{font-size:20px;margin-bottom:8px}
.project-card-body p{font-size:14px;color:#7a6a5e;margin-bottom:14px}
.project-card .tag{display:inline-block;background:rgba(194,24,91,.08);color:#c2185b;font-size:12px;padding:3px 10px;border-radius:12px;margin-right:6px;font-family:'Figtree',sans-serif}
.project-card .price{font-size:22px;font-weight:700;color:#c2185b;margin-top:12px}
.project-card .price-old{font-size:15px;color:#999;text-decoration:line-through;margin-left:8px;font-weight:400}

/* === FEATURES === */
.feature-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px}
.feature-card{background:#fff;border:1px solid #f0e8e0;border-radius:14px;padding:30px 24px;text-align:center;transition:border-color .2s,box-shadow .2s}
.feature-card:hover{border-color:#fbb0bf;box-shadow:0 4px 20px rgba(194,24,91,.08)}
.feature-icon{width:56px;height:56px;margin:0 auto 18px;background:rgba(194,24,91,.08);border-radius:12px;display:flex;align-items:center;justify-content:center}
.feature-icon svg{width:28px;height:28px;fill:#c2185b}
.feature-card h4{color:#1e0c05;margin-bottom:8px}
.feature-card p{font-size:14px;color:#7a6a5e;margin:0}

/* === CLIENTS/PARTNERS === */
.clients-row{display:flex;justify-content:center;align-items:center;flex-wrap:wrap;gap:40px;opacity:.7}
.clients-row img{height:40px;filter:grayscale(1);transition:filter .2s}
.clients-row img:hover{filter:grayscale(0)}

/* === STATS === */
.stats-row{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;text-align:center}
.stat-item h2{font-size:48px;color:#c2185b;margin-bottom:4px}
.stat-item p{font-size:14px;color:#7a6a5e;text-transform:uppercase;letter-spacing:1px;margin:0;font-family:'Figtree',sans-serif}

/* === CONTACT / INFO === */
.contact-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.contact-card{background:#fff;border:1px solid #f0e8e0;border-radius:14px;padding:28px;transition:border-color .2s}
.contact-card:hover{border-color:#fbb0bf}
.contact-card h4{color:#c2185b;margin-bottom:10px}
.contact-card p{font-size:15px;margin-bottom:6px;color:#5a4a3e}
.contact-card a{color:#c2185b}

/* === CTA === */
.cta-section{padding:80px 0;text-align:center;background:linear-gradient(135deg,#fef0f5 0%,#fffdf9 50%,#fef0f5 100%);border-top:1px solid #f0e0e8;border-bottom:1px solid #f0e0e8}
.cta-section h2{color:#1e0c05;margin-bottom:16px}
.cta-section p{color:#6a5a4e;font-size:19px;max-width:600px;margin:0 auto 32px}

/* === FOOTER === */
.footer{background:#1e0c05;border-top:1px solid #3a2a1e;color:#a09080;padding:50px 0 20px}
.footer h4{color:#fff;margin-bottom:16px;font-size:16px}
.footer p{color:#a09080}
.footer a{color:#a09080;transition:color .2s}
.footer a:hover{color:#fbb0bf}
.footer-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:40px;margin-bottom:30px}
.footer-links li{margin-bottom:8px}
.footer-bottom{border-top:1px solid #3a2a1e;padding-top:20px;text-align:center;font-size:13px;color:#6a5a4e}

/* === BREADCRUMB === */
.breadcrumb{padding:14px 0;font-size:14px;color:#7a6a5e}
.breadcrumb a{color:#c2185b}
.breadcrumb span{margin:0 8px;color:#ccc}

/* === PAGE CONTENT === */
.page-content{padding:50px 0 80px}
.page-content h1{margin-bottom:30px}
.page-content h2{font-size:26px;margin-top:30px;color:#1e0c05}
.page-content p{color:#5a4a3e}
.page-content ul{margin:16px 0 16px 20px}
.page-content ul li{padding:4px 0;list-style:disc;color:#5a4a3e}

/* === PRICE TABLE === */
.price-table{width:100%;border-collapse:collapse;margin-bottom:16px;font-size:14px}
.price-table th{background:#fef0f5;color:#1e0c05;padding:10px 14px;text-align:left;font-weight:600}
.price-table td{padding:10px 14px;border-bottom:1px solid #f0e8e0;color:#5a4a3e}
.price-table .member-price{color:#c2185b;font-weight:700}

/* === DELIVERY LIST === */
.delivery-list li{padding:8px 0;padding-left:28px;position:relative;color:#5a4a3e}
.delivery-list li::before{content:'\2713';position:absolute;left:0;color:#c2185b;font-weight:700}

/* === THANK YOU === */
.thankyou-section{padding:100px 0;text-align:center}
.thankyou-section .checkmark{width:80px;height:80px;background:#c2185b;border-radius:50%;display:flex;align-items:center;justify-content:center;margin:0 auto 24px}
.thankyou-section .checkmark svg{width:40px;height:40px;fill:#fff}
.thankyou-section h1{color:#c2185b}

/* === MODAL === */
.modal-overlay{display:none;position:fixed;inset:0;background:rgba(0,0,0,.5);z-index:1000;align-items:center;justify-content:center}
.modal-overlay.active{display:flex}
.modal{background:#fff;border:1px solid #f0e8e0;border-radius:14px;padding:40px;max-width:480px;width:90%;position:relative;box-shadow:0 20px 60px rgba(0,0,0,.15)}
.modal-close{position:absolute;top:12px;right:16px;background:none;border:none;font-size:28px;cursor:pointer;color:#999}
.modal-close:hover{color:#1e0c05}
.modal h3{color:#1e0c05;margin-bottom:20px;text-align:center}
.form-group{margin-bottom:16px}
.form-group label{display:block;font-size:13px;font-weight:600;margin-bottom:6px;color:#5a4a3e}
.form-group input{width:100%;padding:12px 14px;border:1px solid #e0d8d0;border-radius:8px;font-size:16px;font-family:inherit;background:#fffdf9;color:#1e0c05;transition:border-color .2s}
.form-group input:focus{outline:none;border-color:#c2185b}
.form-group input::placeholder{color:#b0a090}
.form-submit{width:100%;padding:14px;background:#c2185b;color:#fff;border:none;border-radius:8px;font-size:17px;font-weight:700;cursor:pointer;transition:background .2s;font-family:'Figtree',sans-serif}
.form-submit:hover{background:#e91e63}
.form-note{text-align:center;font-size:13px;color:#7a6a5e;margin-top:12px}

/* === PRODUCT BADGE === */
.product-badge{display:inline-block;background:#fbb0bf;color:#7b1040;font-size:12px;font-weight:700;padding:4px 14px;border-radius:20px;margin-bottom:12px;text-transform:uppercase;letter-spacing:1px;font-family:'Figtree',sans-serif}

/* === BUTTERBEKIND-STYLE SECTIONS === */

/* Hero text-only (no image, centered text on cream bg) */
.hero-text-only{padding:100px 0 70px;text-align:center;background:#fffdf9}
.hero-text-only h1{font-size:52px;max-width:700px;margin:0 auto 20px}
.hero-text-only h1 span{color:#c2185b}
.hero-text-only .hero-subtitle{font-size:18px;max-width:580px;margin:0 auto 32px;color:#6a5a4e}

/* Press bar */
.press-section{padding:28px 0;background:#fffcd1;text-align:center}
.press-label{font-family:'Figtree',sans-serif;font-size:11px;font-weight:700;letter-spacing:2.5px;text-transform:uppercase;color:#999;margin-bottom:16px}
.press-bar{display:flex;justify-content:center;align-items:center;flex-wrap:wrap;gap:36px}
.press-bar img{height:28px;opacity:.45;filter:grayscale(1);transition:opacity .2s}
.press-bar img:hover{opacity:1;filter:grayscale(0)}

/* Text block with image (side by side) */
.text-block-section{padding:70px 0;background:#fffdf9}
.text-block-inner{display:flex;align-items:center;gap:48px}
.text-block-image{flex:0 0 45%}
.text-block-image img{width:100%}
.text-block-content{flex:1}
.text-block-content h2{margin-bottom:16px}
.text-block-content p{font-size:17px;color:#6a5a4e;margin-bottom:24px}

/* Product grid — butterbekind style (pale yellow img bg, rounded) */
.product-grid-bbk{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
.product-card-bbk{background:#fff;border:1px solid #f0e8e0;border-radius:18px;overflow:hidden;transition:transform .25s}
.product-card-bbk:hover{transform:translateY(-4px)}
.product-card-img{background:#fffcd1;padding:24px;text-align:center}
.product-card-img img{max-height:260px;margin:0 auto;border-radius:10px}
.product-card-info{padding:20px}
.product-card-info h3{font-size:19px;margin-bottom:6px}
.product-card-desc{font-size:13px;color:#8a7a6e;margin-bottom:10px}
.product-card-price{margin-bottom:14px}
.price-current{font-size:20px;font-weight:700;color:#1e0c05}
.price-old{font-size:14px;color:#bbb;text-decoration:line-through;margin-left:8px}
.btn-full{width:100%;text-align:center;padding:12px;font-size:14px}

/* Founder story section */
.founder-section{padding:70px 0;background:#fef6f0}
.founder-inner{display:flex;align-items:center;gap:48px}
.founder-image{flex:0 0 42%}
.founder-image img{width:100%}
.founder-content{flex:1}
.founder-content h2{margin-bottom:16px}
.founder-content p{font-size:17px;color:#6a5a4e;margin-bottom:18px}
.link-arrow{color:#c2185b;font-weight:600;font-size:15px;font-family:'Figtree',sans-serif}
.link-arrow:hover{text-decoration:underline}

/* Why section */
.why-section{padding:60px 0;text-align:center;background:#fffdf9}
.why-section h2{margin-bottom:20px}
.why-text{font-size:17px;max-width:700px;margin:0 auto 14px;color:#6a5a4e}

/* Marquee ticker */
.ticker-section{overflow:hidden;background:#fbb0bf;padding:14px 0;white-space:nowrap}
.ticker-track{display:flex;gap:48px;animation:tickerScroll 25s linear infinite}
.ticker-track span{font-family:'Figtree',sans-serif;font-size:15px;font-weight:600;color:#7b1040;white-space:nowrap}
@keyframes tickerScroll{0%{transform:translateX(0)}100%{transform:translateX(-50%)}}

/* Blog grid */
.blog-section{padding:70px 0;background:#fffdf9}
.blog-header{display:flex;justify-content:space-between;align-items:center;margin-bottom:32px;flex-wrap:wrap;gap:16px}
.blog-header h2{margin:0}
.blog-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:28px}
.blog-card img{width:100%;height:220px;object-fit:cover;margin-bottom:14px}
.blog-date{font-size:12px;color:#999;margin-bottom:6px;font-family:'Figtree',sans-serif;text-transform:uppercase;letter-spacing:1px}
.blog-card h3{font-size:20px;margin-bottom:8px}
.blog-card p{font-size:14px;color:#8a7a6e}

/* === RESPONSIVE === */
@media(max-width:1024px){
  .feature-grid{grid-template-columns:repeat(2,1fr)}
  .project-grid{grid-template-columns:repeat(2,1fr)}
  .stats-row{grid-template-columns:repeat(2,1fr)}
  .hero .container{flex-direction:column;gap:30px}
  .hero-image{flex:0 0 100%;max-width:100%}
}
@media(max-width:830px){
  .nav-menu{display:none;position:absolute;top:100%;left:0;right:0;background:#fffdf9;border-top:1px solid #f0e8e0;flex-direction:column;padding:20px;gap:16px}
  .nav-menu.open{display:flex}
  .mobile-toggle{display:block}
  .hero-content h1{font-size:32px}
  .footer-grid{grid-template-columns:1fr}
  .contact-grid{grid-template-columns:1fr}
  .row{flex-direction:column}
  .col-2,.col-3,.col-4{flex:1 1 100%}
}
@media(max-width:480px){
  body{font-size:15px}
  h1{font-size:28px}
  h2{font-size:24px}
  .hero{min-height:auto;padding:40px 0}
  .section{padding:50px 0}
  .feature-grid,.project-grid{grid-template-columns:1fr}
  .stats-row{grid-template-columns:1fr}
}
