/*
Theme Name: SuGre
Theme URI: https://sugrelondon.com
Author: Flavours by Gresa
Author URI: https://sugrelondon.com
Description: A refined, botanical WordPress theme for SuGre — London's artisan cake and dessert atelier. Built with sage greens, organic curves, and editorial typography. Fully responsive, SEO-optimised, and crafted for premium home-bakery brands.
Version: 1.2.8
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: sugre
Tags: bakery, food, blog, custom-colors, custom-menu, custom-logo, featured-images, full-width-template, responsive-layout, threaded-comments, translation-ready, e-commerce
*/

/* ═══════════════════════════════════════ */
/*  CSS RESET                              */
/* ═══════════════════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
/* All decorative pseudo-elements should never intercept clicks */
.sugre-cta-banner::before, .sugre-cta-banner::after,
.sugre-testimonials-section::before,
.sugre-page-header::before,
.sugre-about-card::before,
.sugre-process-steps::before { pointer-events: none; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img, picture, video, canvas, svg { display: block; max-width: 100%; height: auto; }
input, button, textarea, select { font: inherit; }
a { color: inherit; text-decoration: none; }
button { background: none; border: none; cursor: pointer; }
ul, ol { list-style: none; }

/* ═══════════════════════════════════════ */
/*  ROOT VARIABLES                         */
/* ═══════════════════════════════════════ */
:root {
  /* Colors */
  --sugre-forest: #2F4538;
  --sugre-sage-700: #475940;
  --sugre-sage-600: #5A7050;
  --sugre-sage-500: #6E8760;
  --sugre-sage-400: #8DA07F;
  --sugre-sage-300: #A8B89E;
  --sugre-sage-200: #D1DBCA;
  --sugre-sage-100: #E8EDE4;
  --sugre-sage-50:  #F4F7F2;
  --sugre-cream: #FDFAF5;
  --sugre-cream-warm: #F9F3EB;
  --sugre-linen: #F0E8DE;
  --sugre-blush: #E8D5CC;
  --sugre-gold: #C4A265;
  --sugre-bark: #8B7355;
  --sugre-text-dark: #2A2A28;
  --sugre-text-body: #4A4A46;
  --sugre-text-soft: #7A7A74;
  --sugre-white: #FFFFFF;

  /* Typography */
  --sugre-font-display: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --sugre-font-body: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --sugre-space-xs: 8px;
  --sugre-space-sm: 16px;
  --sugre-space-md: 24px;
  --sugre-space-lg: 48px;
  --sugre-space-xl: 80px;
  --sugre-space-xxl: 120px;

  /* Layout */
  --sugre-container-max: 1240px;
  --sugre-container-narrow: 880px;
  --sugre-container-padding: 24px;

  /* Effects */
  --sugre-radius-sm: 8px;
  --sugre-radius-md: 16px;
  --sugre-radius-lg: 24px;
  --sugre-radius-xl: 40px;
  --sugre-shadow-sm: 0 2px 12px rgba(45, 56, 40, 0.06);
  --sugre-shadow-md: 0 8px 32px rgba(45, 56, 40, 0.08);
  --sugre-shadow-lg: 0 20px 60px rgba(45, 56, 40, 0.12);
  --sugre-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ═══════════════════════════════════════ */
/*  BASE TYPOGRAPHY                        */
/* ═══════════════════════════════════════ */
body {
  font-family: var(--sugre-font-body);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--sugre-text-body);
  background: var(--sugre-cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--sugre-font-display);
  font-weight: 300;
  line-height: 1.15;
  color: var(--sugre-forest);
  letter-spacing: -0.005em;
}
h1 { font-size: clamp(40px, 6vw, 76px); }
h2 { font-size: clamp(32px, 4vw, 52px); }
h3 { font-size: clamp(24px, 2.5vw, 36px); font-weight: 400; }
h4 { font-size: clamp(20px, 2vw, 26px); font-weight: 500; }
h5 { font-size: 18px; font-weight: 500; }
h6 { font-size: 16px; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; }

h1 em, h2 em, h3 em { font-style: italic; font-weight: 400; color: var(--sugre-sage-600); }

p { margin-bottom: 1.5em; }
p:last-child { margin-bottom: 0; }

a { transition: var(--sugre-transition); }
a:hover { color: var(--sugre-sage-600); }

strong { font-weight: 600; color: var(--sugre-text-dark); }
em { font-style: italic; }

::selection { background: var(--sugre-sage-300); color: var(--sugre-forest); }

/* ═══════════════════════════════════════ */
/*  LAYOUT UTILITIES                       */
/* ═══════════════════════════════════════ */
.sugre-container { max-width: var(--sugre-container-max); margin: 0 auto; padding: 0 var(--sugre-container-padding); }
.sugre-container-narrow { max-width: var(--sugre-container-narrow); margin: 0 auto; padding: 0 var(--sugre-container-padding); }

.sugre-section { padding: var(--sugre-space-xxl) 0; position: relative; }
.sugre-section-sm { padding: var(--sugre-space-xl) 0; }

.sugre-section-tag {
  font-family: var(--sugre-font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--sugre-sage-500);
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.sugre-section-tag::before {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: var(--sugre-sage-400);
}
.sugre-section-tag.centered { justify-content: center; }
.sugre-section-tag.centered::before { display: none; }
.sugre-section-tag.centered::after {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: var(--sugre-sage-400);
  margin-left: 12px;
}

/* ═══════════════════════════════════════ */
/*  BUTTONS                                */
/* ═══════════════════════════════════════ */
.sugre-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  font-family: var(--sugre-font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 100px;
  transition: var(--sugre-transition);
  cursor: pointer;
  border: 1px solid transparent;
}
.sugre-btn-primary {
  background: var(--sugre-forest);
  color: var(--sugre-cream);
}
.sugre-btn-primary:hover {
  background: var(--sugre-sage-700);
  color: var(--sugre-cream);
  transform: translateY(-2px);
  box-shadow: var(--sugre-shadow-md);
}
.sugre-btn-secondary {
  background: transparent;
  color: var(--sugre-forest);
  border-color: var(--sugre-sage-500);
}
.sugre-btn-secondary:hover {
  background: var(--sugre-sage-500);
  color: var(--sugre-cream);
}
.sugre-btn-cream {
  background: var(--sugre-cream);
  color: var(--sugre-forest);
}
.sugre-btn-cream:hover {
  background: var(--sugre-white);
  box-shadow: var(--sugre-shadow-md);
}
.sugre-btn-arrow {
  transition: transform 0.3s;
}
.sugre-btn:hover .sugre-btn-arrow {
  transform: translateX(4px);
}

/* ═══════════════════════════════════════ */
/*  HEADER & NAVIGATION                    */
/* ═══════════════════════════════════════ */
.sugre-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 24px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--sugre-transition);
  background: transparent;
}
.sugre-header.is-scrolled {
  background: rgba(244, 247, 242, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 48px;
  box-shadow: 0 1px 40px rgba(45, 56, 40, 0.06);
}
.sugre-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.sugre-brand-mark {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}
.sugre-brand-mark svg { width: 100%; height: 100%; }
/* Logo image — CSS fully in control, no WP inline attributes */
.sugre-logo-img {
  display: block;
  height: 48px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  flex-shrink: 0;
}
.sugre-brand-text {
  font-family: var(--sugre-font-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--sugre-forest);
  letter-spacing: 1px;
  line-height: 1;
}
.sugre-brand-text em {
  font-style: italic;
  font-weight: 400;
  color: var(--sugre-sage-600);
}

.sugre-nav { display: flex; align-items: center; gap: 8px; }
.sugre-menu {
  display: flex;
  gap: 32px;
  margin-right: 16px;
}
.sugre-menu li a {
  font-family: var(--sugre-font-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sugre-text-body);
  position: relative;
  padding: 8px 0;
}
.sugre-menu li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--sugre-sage-500);
  transition: width 0.3s ease;
}
.sugre-menu li a:hover { color: var(--sugre-sage-600); }
.sugre-menu li a:hover::after,
.sugre-menu li.current-menu-item a::after,
.sugre-menu li.current_page_item a::after { width: 100%; }
.sugre-menu li.current-menu-item a,
.sugre-menu li.current_page_item a { color: var(--sugre-forest); }

.sugre-mobile-toggle {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.sugre-mobile-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--sugre-forest);
  transition: var(--sugre-transition);
}
.sugre-mobile-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.sugre-mobile-toggle.is-active span:nth-child(2) { opacity: 0; }
.sugre-mobile-toggle.is-active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile menu close button & backdrop — hidden by default (desktop) */
.sugre-menu-close { display: none; }
.sugre-backdrop {
  position: fixed;
  inset: 0;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  background: transparent;
}

/* ═══════════════════════════════════════ */
/*  HERO                                   */
/* ═══════════════════════════════════════ */
.sugre-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--sugre-sage-100) 0%, var(--sugre-sage-200) 30%, var(--sugre-sage-300) 70%, var(--sugre-sage-400) 100%);
  padding: 140px 0 80px;
}
.sugre-hero-shapes { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.sugre-hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.12;
  animation: sugreFloat 20s ease-in-out infinite;
}
.sugre-hero-shape-1 { width: 600px; height: 600px; background: var(--sugre-sage-500); top: -200px; right: -100px; }
.sugre-hero-shape-2 { width: 400px; height: 400px; background: var(--sugre-sage-200); bottom: -100px; left: -50px; animation-direction: reverse; }
.sugre-hero-shape-3 { width: 200px; height: 200px; background: var(--sugre-cream); top: 40%; left: 35%; animation-duration: 12s; }
@keyframes sugreFloat {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -20px); }
}

.sugre-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.sugre-hero-title {
  margin-bottom: 28px;
  font-weight: 300;
  color: var(--sugre-forest);
}
.sugre-hero-desc {
  font-size: 17px;
  line-height: 1.8;
  color: var(--sugre-text-body);
  max-width: 460px;
  margin-bottom: 40px;
}
.sugre-hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.sugre-hero-visual { position: relative; display: flex; justify-content: center; align-items: center; }
.sugre-hero-frame {
  width: 460px;
  height: 560px;
  border-radius: 230px 230px 28px 28px;
  background: linear-gradient(180deg, var(--sugre-sage-400) 0%, var(--sugre-sage-600) 100%);
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(45, 56, 40, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}
.sugre-hero-frame-inner {
  text-align: center;
  padding: 0 40px;
}
.sugre-hero-frame-icon { margin: 0 auto 24px; opacity: 0.9; }
.sugre-hero-frame-text {
  font-family: var(--sugre-font-display);
  font-size: 30px;
  color: var(--sugre-cream);
  line-height: 1.3;
  margin-bottom: 12px;
}
.sugre-hero-frame-text em { font-style: italic; }
.sugre-hero-frame-sub {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sugre-sage-200);
}

.sugre-hero-badge {
  position: absolute;
  bottom: 50px;
  left: -40px;
  background: var(--sugre-cream);
  padding: 18px 26px;
  border-radius: 20px;
  box-shadow: var(--sugre-shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
  animation: sugreFloatBadge 4s ease-in-out infinite;
}
@keyframes sugreFloatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.sugre-hero-badge-icon {
  width: 44px;
  height: 44px;
  background: var(--sugre-sage-100);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sugre-hero-badge-text { font-size: 13px; font-weight: 500; color: var(--sugre-text-dark); }
.sugre-hero-badge-sub { font-size: 11px; color: var(--sugre-text-soft); margin-top: 2px; }

/* ═══════════════════════════════════════ */
/*  MARQUEE                                */
/* ═══════════════════════════════════════ */
.sugre-marquee {
  background: var(--sugre-forest);
  padding: 18px 0;
  overflow: hidden;
  white-space: nowrap;
}
.sugre-marquee-track {
  display: flex;
  animation: sugreMarquee 30s linear infinite;
  width: max-content;
}
.sugre-marquee-item {
  font-family: var(--sugre-font-display);
  font-size: 17px;
  font-weight: 400;
  color: var(--sugre-sage-300);
  letter-spacing: 2px;
  padding: 0 36px;
  display: flex;
  align-items: center;
  gap: 36px;
}
.sugre-marquee-item em { font-style: italic; color: var(--sugre-sage-200); }
.sugre-marquee-dot { width: 5px; height: 5px; background: var(--sugre-sage-500); border-radius: 50%; }
@keyframes sugreMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════ */
/*  CARDS                                  */
/* ═══════════════════════════════════════ */
.sugre-card {
  background: var(--sugre-cream);
  border-radius: var(--sugre-radius-lg);
  overflow: hidden;
  transition: var(--sugre-transition);
  border: 1px solid transparent;
}
.sugre-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--sugre-shadow-md);
  border-color: var(--sugre-sage-200);
}
.sugre-card-image {
  height: 240px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--sugre-sage-200), var(--sugre-sage-300));
  display: flex;
  align-items: center;
  justify-content: center;
}
.sugre-card-image img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.sugre-card-image-bg-1 { background: linear-gradient(135deg, var(--sugre-sage-200), var(--sugre-sage-300)); }
.sugre-card-image-bg-2 { background: linear-gradient(135deg, var(--sugre-blush), var(--sugre-sage-200)); }
.sugre-card-image-bg-3 { background: linear-gradient(135deg, var(--sugre-sage-300), var(--sugre-sage-400)); }
.sugre-card-image-bg-4 { background: linear-gradient(135deg, var(--sugre-linen), var(--sugre-sage-200)); }
.sugre-card-image-bg-5 { background: linear-gradient(135deg, var(--sugre-sage-200), var(--sugre-blush)); }
.sugre-card-image-bg-6 { background: linear-gradient(135deg, var(--sugre-sage-400), var(--sugre-sage-500)); }
.sugre-card-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--sugre-cream);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--sugre-sage-600);
  z-index: 2;
}
.sugre-card-body { padding: 28px; }
.sugre-card-title {
  font-family: var(--sugre-font-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--sugre-text-dark);
  margin-bottom: 8px;
}
.sugre-card-desc {
  font-size: 13px;
  line-height: 1.7;
  color: var(--sugre-text-soft);
  margin-bottom: 16px;
}
.sugre-card-footer { display: flex; justify-content: space-between; align-items: center; }
.sugre-card-price {
  font-family: var(--sugre-font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--sugre-sage-600);
}
.sugre-card-order {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--sugre-sage-500);
  font-weight: 500;
}
.sugre-card-order:hover { color: var(--sugre-forest); }

/* ═══════════════════════════════════════ */
/*  TESTIMONIALS                           */
/* ═══════════════════════════════════════ */
.sugre-testimonials-section {
  background: var(--sugre-forest);
  color: var(--sugre-sage-200);
  position: relative;
  overflow: hidden;
}
.sugre-testimonials-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  pointer-events: none;
}
.sugre-testimonials-section h2 { color: var(--sugre-cream); }
.sugre-testimonials-section .sugre-section-tag { color: var(--sugre-sage-300); }
.sugre-testimonials-section .sugre-section-tag::before,
.sugre-testimonials-section .sugre-section-tag::after { background: var(--sugre-sage-400); }
.sugre-testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--sugre-radius-lg);
  padding: 40px;
  transition: var(--sugre-transition);
}
.sugre-testimonial-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-4px);
}
.sugre-testimonial-stars {
  color: var(--sugre-gold);
  font-size: 14px;
  letter-spacing: 4px;
  margin-bottom: 20px;
}
.sugre-testimonial-text {
  font-family: var(--sugre-font-display);
  font-size: 19px;
  font-style: italic;
  line-height: 1.6;
  color: var(--sugre-sage-200);
  margin-bottom: 28px;
}
.sugre-testimonial-author { display: flex; align-items: center; gap: 14px; }
.sugre-testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--sugre-sage-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sugre-font-display);
  font-size: 18px;
  color: var(--sugre-cream);
}
.sugre-testimonial-name { font-size: 14px; font-weight: 500; color: var(--sugre-cream); }
.sugre-testimonial-loc { font-size: 12px; color: var(--sugre-sage-400); margin-top: 2px; }

/* ═══════════════════════════════════════ */
/*  PROCESS                                */
/* ═══════════════════════════════════════ */
.sugre-process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
}
.sugre-process-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 60px;
  right: 60px;
  height: 1px;
  background: linear-gradient(90deg, var(--sugre-sage-200), var(--sugre-sage-400), var(--sugre-sage-200));
}
.sugre-process-step { text-align: center; position: relative; }
.sugre-process-num {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--sugre-sage-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: var(--sugre-font-display);
  font-size: 28px;
  color: var(--sugre-sage-600);
  position: relative;
  z-index: 1;
  border: 3px solid var(--sugre-sage-200);
  transition: var(--sugre-transition);
}
.sugre-process-step:hover .sugre-process-num {
  background: var(--sugre-sage-500);
  color: var(--sugre-cream);
  border-color: var(--sugre-sage-500);
}
.sugre-process-title {
  font-family: var(--sugre-font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--sugre-text-dark);
  margin-bottom: 10px;
}
.sugre-process-desc { font-size: 13px; line-height: 1.7; color: var(--sugre-text-soft); }

/* ═══════════════════════════════════════ */
/*  CTA BANNER                             */
/* ═══════════════════════════════════════ */
.sugre-cta-banner {
  padding: 110px 0;
  background: linear-gradient(135deg, var(--sugre-sage-300) 0%, var(--sugre-sage-400) 50%, var(--sugre-sage-500) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.sugre-cta-banner::before, .sugre-cta-banner::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  pointer-events: none;
}
.sugre-cta-banner::before { width: 500px; height: 500px; }
.sugre-cta-banner::after { width: 700px; height: 700px; border-color: rgba(255,255,255,0.05); }
.sugre-cta-banner h2 { color: var(--sugre-cream); margin-bottom: 20px; position: relative; }
.sugre-cta-banner p {
  font-size: 16px;
  color: var(--sugre-sage-100);
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
  position: relative;
}
.sugre-cta-banner .sugre-btn { position: relative; }

/* ═══════════════════════════════════════ */
/*  FOOTER                                 */
/* ═══════════════════════════════════════ */
.sugre-footer {
  background: var(--sugre-forest);
  padding: 80px 0 40px;
  color: var(--sugre-sage-300);
}
.sugre-footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.sugre-footer-brand-name {
  font-family: var(--sugre-font-display);
  font-size: 28px;
  font-weight: 400;
  color: var(--sugre-cream);
  margin-bottom: 16px;
}
.sugre-footer-brand-name em { font-style: italic; }
.sugre-footer-desc {
  font-size: 14px;
  line-height: 1.8;
  color: var(--sugre-sage-400);
  max-width: 320px;
  margin-bottom: 24px;
}
.sugre-footer-social { display: flex; gap: 12px; }
.sugre-footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--sugre-transition);
}
.sugre-footer-social a:hover { background: var(--sugre-sage-600); }
.sugre-footer-social a svg { width: 18px; height: 18px; stroke: var(--sugre-cream); }
.sugre-footer-col h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sugre-cream);
  margin-bottom: 20px;
}
.sugre-footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.sugre-footer-col a {
  font-size: 14px;
  color: var(--sugre-sage-400);
}
.sugre-footer-col a:hover { color: var(--sugre-cream); }
.sugre-footer-bottom {
  margin-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--sugre-sage-500);
}
.sugre-footer-legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.sugre-footer-legal a {
  color: var(--sugre-sage-500);
  text-decoration: none;
  font-size: 12px;
  transition: color 0.3s ease;
}
.sugre-footer-legal a:hover { color: var(--sugre-cream); }

/* ═══════════════════════════════════════ */
/*  PAGE HEADER                            */
/* ═══════════════════════════════════════ */
.sugre-page-header {
  padding: 180px 0 80px;
  background: linear-gradient(180deg, var(--sugre-sage-100) 0%, var(--sugre-sage-200) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.sugre-page-header::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: var(--sugre-sage-300);
  opacity: 0.3;
  pointer-events: none;
}
.sugre-page-header h1 {
  margin-bottom: 16px;
  position: relative;
}
.sugre-page-header p {
  font-size: 17px;
  color: var(--sugre-text-body);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
  position: relative;
}

/* ═══════════════════════════════════════ */
/*  CONTACT FORM                           */
/* ═══════════════════════════════════════ */
.sugre-form { display: flex; flex-direction: column; gap: 20px; }
.sugre-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.sugre-form-field { display: flex; flex-direction: column; gap: 8px; }
.sugre-form-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sugre-sage-600);
}
.sugre-form-input, .sugre-form-textarea, .sugre-form-select {
  padding: 14px 18px;
  border: 1px solid var(--sugre-sage-200);
  border-radius: var(--sugre-radius-sm);
  background: var(--sugre-white);
  font-family: var(--sugre-font-body);
  font-size: 14px;
  color: var(--sugre-text-dark);
  transition: var(--sugre-transition);
}
.sugre-form-input:focus, .sugre-form-textarea:focus, .sugre-form-select:focus {
  outline: none;
  border-color: var(--sugre-sage-500);
  box-shadow: 0 0 0 4px rgba(141, 160, 127, 0.15);
}
.sugre-form-textarea { resize: vertical; min-height: 140px; }
.sugre-form-submit { align-self: flex-start; }

/* ═══════════════════════════════════════ */
/*  BLOG / POSTS                           */
/* ═══════════════════════════════════════ */
.sugre-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.sugre-post-card {
  background: var(--sugre-cream);
  border-radius: var(--sugre-radius-lg);
  overflow: hidden;
  transition: var(--sugre-transition);
}
.sugre-post-card:hover { transform: translateY(-6px); box-shadow: var(--sugre-shadow-md); }
.sugre-post-thumb {
  height: 240px;
  background: linear-gradient(135deg, var(--sugre-sage-200), var(--sugre-sage-300));
  position: relative;
}
.sugre-post-meta {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sugre-sage-500);
  margin-bottom: 12px;
}
.sugre-post-body { padding: 28px; }
.sugre-post-title {
  font-family: var(--sugre-font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--sugre-text-dark);
  margin-bottom: 12px;
  line-height: 1.3;
}
.sugre-post-title a { color: inherit; }
.sugre-post-title a:hover { color: var(--sugre-sage-600); }
.sugre-post-excerpt { font-size: 13px; color: var(--sugre-text-soft); line-height: 1.7; margin-bottom: 16px; }

.sugre-single-post-content {
  max-width: 720px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.85;
  color: var(--sugre-text-body);
}
.sugre-single-post-content h2, .sugre-single-post-content h3 {
  margin: 2em 0 0.7em;
}
.sugre-single-post-content blockquote {
  border-left: 3px solid var(--sugre-sage-400);
  padding-left: 24px;
  margin: 32px 0;
  font-family: var(--sugre-font-display);
  font-size: 22px;
  font-style: italic;
  color: var(--sugre-sage-700);
}
.sugre-single-post-content img { border-radius: var(--sugre-radius-md); margin: 32px 0; }

/* ═══════════════════════════════════════ */
/*  ABOUT PAGE                             */
/* ═══════════════════════════════════════ */
.sugre-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.sugre-about-card {
  background: var(--sugre-sage-200);
  border-radius: var(--sugre-radius-lg);
  padding: 60px;
  position: relative;
  overflow: hidden;
}
.sugre-about-card::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--sugre-sage-300);
  opacity: 0.5;
  pointer-events: none;
}
.sugre-about-quote {
  font-family: var(--sugre-font-display);
  font-size: 26px;
  font-weight: 400;
  font-style: italic;
  color: var(--sugre-sage-700);
  line-height: 1.4;
  position: relative;
  z-index: 1;
}
.sugre-about-author {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sugre-sage-600);
  margin-top: 16px;
  position: relative;
  z-index: 1;
}

.sugre-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.sugre-value-card {
  background: var(--sugre-cream);
  border-radius: var(--sugre-radius-lg);
  padding: 40px;
  text-align: center;
}
.sugre-value-icon {
  width: 64px;
  height: 64px;
  background: var(--sugre-sage-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.sugre-value-title {
  font-family: var(--sugre-font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--sugre-text-dark);
  margin-bottom: 10px;
}
.sugre-value-desc { font-size: 14px; line-height: 1.7; color: var(--sugre-text-soft); }

/* ═══════════════════════════════════════ */
/*  FAQ                                    */
/* ═══════════════════════════════════════ */
.sugre-faq {
  max-width: 800px;
  margin: 0 auto;
}
.sugre-faq-item {
  background: var(--sugre-cream);
  border-radius: var(--sugre-radius-md);
  margin-bottom: 16px;
  overflow: hidden;
  border: 1px solid var(--sugre-sage-100);
}
.sugre-faq-question {
  padding: 24px 28px;
  font-family: var(--sugre-font-display);
  font-size: 19px;
  font-weight: 500;
  color: var(--sugre-text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  text-align: left;
}
.sugre-faq-icon {
  font-size: 24px;
  color: var(--sugre-sage-500);
  transition: transform 0.3s ease;
  font-weight: 300;
}
.sugre-faq-item.is-open .sugre-faq-icon { transform: rotate(45deg); }
.sugre-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.sugre-faq-item.is-open .sugre-faq-answer { max-height: 500px; }
.sugre-faq-answer-inner {
  padding: 0 28px 24px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--sugre-text-body);
}

/* ═══════════════════════════════════════ */
/*  LEGAL / PROSE PAGES                    */
/* ═══════════════════════════════════════ */
.sugre-legal { padding: var(--sugre-space-xxl) 0; }
.sugre-legal-intro {
  font-size: 15px;
  line-height: 1.8;
  color: var(--sugre-text-soft);
  padding-bottom: 28px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--sugre-sage-100);
}
.sugre-legal h2 {
  font-family: var(--sugre-font-display);
  font-size: 28px;
  font-weight: 500;
  color: var(--sugre-forest);
  margin: 48px 0 16px;
}
.sugre-legal h2:first-of-type { margin-top: 0; }
.sugre-legal h3 {
  font-family: var(--sugre-font-body);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--sugre-text-dark);
  margin: 28px 0 10px;
}
.sugre-legal p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--sugre-text-body);
  margin-bottom: 18px;
}
.sugre-legal ul, .sugre-legal ol {
  margin: 0 0 18px 22px;
  padding: 0;
}
.sugre-legal li {
  font-size: 15px;
  line-height: 1.8;
  color: var(--sugre-text-body);
  margin-bottom: 10px;
}
.sugre-legal a { color: var(--sugre-sage-600); text-decoration: underline; }
.sugre-legal a:hover { color: var(--sugre-forest); }
.sugre-legal strong { color: var(--sugre-text-dark); font-weight: 600; }
.sugre-legal-updated {
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--sugre-sage-500);
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--sugre-sage-100);
}
.sugre-legal-highlight {
  background: var(--sugre-sage-50);
  border-left: 3px solid var(--sugre-sage-400);
  border-radius: var(--sugre-radius-sm);
  padding: 20px 24px;
  margin: 24px 0;
}
.sugre-legal-highlight p:last-child { margin-bottom: 0; }

/* ═══════════════════════════════════════ */
/*  GRID UTILITIES                         */
/* ═══════════════════════════════════════ */
.sugre-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.sugre-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.sugre-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.sugre-text-center { text-align: center; }
.sugre-mb-md { margin-bottom: 60px; }

/* ═══════════════════════════════════════ */
/*  PRELOADER                              */
/* ═══════════════════════════════════════ */
.sugre-preloader {
  position: fixed;
  inset: 0;
  background: var(--sugre-sage-300);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  animation: sugrePreFade 0.6s ease 2.2s forwards;
}
.sugre-preloader-logo {
  font-family: var(--sugre-font-display);
  font-size: 48px;
  font-weight: 400;
  color: var(--sugre-cream);
  letter-spacing: 4px;
  opacity: 0;
  animation: sugrePreText 0.8s ease 0.3s forwards;
}
.sugre-preloader-logo em { font-style: italic; }
.sugre-preloader-sub {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--sugre-sage-100);
  opacity: 0;
  animation: sugrePreText 0.8s ease 0.8s forwards;
}
.sugre-preloader-line {
  width: 60px;
  height: 1px;
  background: var(--sugre-cream);
  opacity: 0;
  animation: sugrePreLine 1s ease 1.2s forwards;
}
@keyframes sugrePreText { to { opacity: 1; } }
@keyframes sugrePreLine { to { opacity: 0.5; width: 120px; } }
@keyframes sugrePreFade { to { opacity: 0; pointer-events: none; visibility: hidden; } }

/* ═══════════════════════════════════════ */
/*  ANIMATIONS                             */
/* ═══════════════════════════════════════ */
.sugre-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.sugre-fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════ */
/*  RESPONSIVE                             */
/* ═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .sugre-header { padding: 16px 24px; }
  .sugre-header.is-scrolled { padding: 12px 24px; }
  .sugre-logo-img {
    height: 32px;
    max-width: 120px;
  }
  .sugre-brand-mark { width: 36px; height: 36px; }
  .sugre-brand-text { font-size: 20px; }
  .sugre-hero { padding: 120px 0 60px; }
  .sugre-hero-grid { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .sugre-hero-desc { margin-left: auto; margin-right: auto; }
  .sugre-hero-buttons { justify-content: center; }
  .sugre-hero-visual { order: -1; }
  .sugre-hero-frame { width: 320px; height: 400px; }
  .sugre-hero-badge { display: none; }
  .sugre-section { padding: 80px 0; }
  .sugre-section-tag { justify-content: center; }
  .sugre-grid-3, .sugre-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .sugre-about-grid { grid-template-columns: 1fr; gap: 48px; }
  .sugre-process-steps { grid-template-columns: repeat(2, 1fr); }
  .sugre-process-steps::before { display: none; }
  .sugre-posts-grid { grid-template-columns: repeat(2, 1fr); }
  .sugre-values { grid-template-columns: 1fr; }
  .sugre-footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .sugre-nav > .sugre-btn-primary,
  .sugre-header-order { display: none !important; }
  .sugre-mobile-toggle { display: flex; position: relative; z-index: 1002; }

  /* Mobile menu — always present but slid off-screen by default.
     Using transform (not display swap) gives a clean single-panel slide. */
  .sugre-menu {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 86%;
    max-width: 340px;
    height: 100vh;
    height: 100dvh; /* iOS-safe dynamic viewport */
    background: var(--sugre-cream);
    margin: 0;
    padding: 72px 28px 32px;
    gap: 0;
    box-shadow: -24px 0 60px rgba(45, 56, 40, 0.18);
    z-index: 1000;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transform: translateX(100%);
    transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0s linear 0.42s;
    visibility: hidden;
    will-change: transform;
  }
  .sugre-menu.is-open {
    transform: translateX(0);
    visibility: visible;
    transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0s linear 0s;
  }
  /* Menu items */
  .sugre-menu li {
    width: 100%;
    list-style: none;
    border-bottom: 1px solid var(--sugre-sage-100);
  }
  .sugre-menu li:last-child { border-bottom: none; }
  .sugre-menu li a {
    display: block;
    width: 100%;
    padding: 20px 4px;
    font-family: var(--sugre-font-body);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--sugre-forest);
    text-decoration: none;
    position: static;
  }
  .sugre-menu li a::after { display: none; }

  /* Floating X button hidden — burger handles close in place */
  .sugre-menu-close { display: none !important; }
  .sugre-menu-close::before,
  .sugre-menu-close::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 1.5px;
    background: var(--sugre-forest);
    border-radius: 2px;
  }
  .sugre-menu-close::before { transform: rotate(45deg); }
  .sugre-menu-close::after { transform: rotate(-45deg); }

  /* Burger animates into X when menu opens — stays visible and interactive */
  .sugre-mobile-toggle.is-active { opacity: 1; pointer-events: auto; z-index: 1003; }

  /* Backdrop overlay — covers the left part of screen (outside the menu panel) */
  .sugre-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(47, 69, 56, 0.4);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.42s ease;
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
  }
  .sugre-backdrop.is-visible {
    opacity: 1;
    pointer-events: auto;
  }
}
@media (max-width: 640px) {
  .sugre-hero-frame { width: 260px; height: 340px; }
  .sugre-hero-frame-text { font-size: 24px; }
  .sugre-grid-2, .sugre-grid-3, .sugre-grid-4 { grid-template-columns: 1fr; }
  .sugre-posts-grid { grid-template-columns: 1fr; }
  .sugre-process-steps { grid-template-columns: 1fr; }
  .sugre-footer-top { grid-template-columns: 1fr; }
  .sugre-footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .sugre-form-row { grid-template-columns: 1fr; }
  .sugre-cta-banner { padding: 80px 0; }
  .sugre-about-card { padding: 40px 28px; }
  .sugre-about-quote { font-size: 22px; }
  .sugre-page-header { padding: 140px 0 60px; }
}
