/* ============================================
   LIVFLEX — Main Stylesheet
   Palette: Charcoal #1C1C1E | Off-white #F8F5F0 
   Brass #B8965A | Slate #8C9BAA | Forest #2D3A2E
============================================ */

:root {
  --charcoal: #1C1C1E;
  --off-white: #F8F5F0;
  --brass: #B8965A;
  --brass-light: #D4AF78;
  --brass-dark: #8B6E3A;
  --slate: #8C9BAA;
  --forest: #2D3A2E;
  --white: #FFFFFF;
  --light-gray: #F0EDE8;
  --border: #E0DBD4;
  --text-dark: #1C1C1E;
  --text-mid: #4A4A4C;
  --text-light: #8C9BAA;

  --font-display: 'Cormorant Garant', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;

  --radius: 4px;
  --radius-lg: 8px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg: 0 24px 64px rgba(0,0,0,0.16);
  --transition: 0.3s ease;
  --container: 1280px;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--text-dark); background: var(--white); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5 { font-family: var(--font-display); font-weight: 400; line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.3rem; }
p { margin-bottom: 1rem; color: var(--text-mid); }

/* === CONTAINER === */
.container { max-width: var(--container); margin: 0 auto; padding: 0 2rem; }

/* === BUTTONS === */
.btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.75rem 2rem; border-radius: var(--radius); font-family: var(--font-body); font-size: 0.875rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; transition: all var(--transition); }
.btn-gold { background: var(--brass); color: var(--white); }
.btn-gold:hover { background: var(--brass-dark); color: var(--white); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline { border: 1.5px solid var(--brass); color: var(--brass); background: transparent; }
.btn-outline:hover { background: var(--brass); color: var(--white); }
.btn-dark { background: var(--charcoal); color: var(--white); }
.btn-dark:hover { background: var(--forest); color: var(--white); }
.btn-white { background: var(--white); color: var(--charcoal); }
.btn-white:hover { background: var(--off-white); }
.btn i { font-size: 0.9rem; }

/* === SECTION UTILITY === */
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-lg { padding: 7rem 0; }
.section-dark { background: var(--charcoal); color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.7); }
.section-forest { background: var(--forest); color: var(--white); }
.section-cream { background: var(--off-white); }

.section-label { font-family: var(--font-body); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--brass); display: block; margin-bottom: 0.75rem; }
.section-title { margin-bottom: 1rem; }
.section-subtitle { font-size: 1.1rem; color: var(--text-mid); max-width: 640px; margin-bottom: 2.5rem; }
.section-header { margin-bottom: 3.5rem; }
.section-header.centered { text-align: center; }
.section-header.centered .section-subtitle { margin: 0 auto 2.5rem; }
.divider-line { width: 48px; height: 2px; background: var(--brass); display: block; margin: 1rem 0; }
.centered .divider-line { margin: 1rem auto; }

/* === TOPBAR === */
.topbar { background: var(--charcoal); color: rgba(255,255,255,0.75); font-size: 0.78rem; padding: 0.5rem 0; }
.topbar-inner { max-width: var(--container); margin: 0 auto; padding: 0 2rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.topbar-right { display: flex; gap: 1.5rem; }
.topbar a { color: rgba(255,255,255,0.75); }
.topbar a:hover { color: var(--brass); }
.topbar i { margin-right: 0.35rem; color: var(--brass); }

/* === HEADER === */
.site-header { position: sticky; top: 0; z-index: 999; background: var(--white); border-bottom: 1px solid var(--border); transition: box-shadow var(--transition); }
.site-header.scrolled { box-shadow: var(--shadow-md); }
.header-inner { max-width: var(--container); margin: 0 auto; padding: 0 2rem; display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 2rem; }

.logo { display: flex; align-items: center; gap: 0.5rem; text-decoration: none; flex-shrink: 0; }
.logo-mark { width: 36px; height: 36px; background: var(--brass); color: var(--white); border-radius: 2px; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 1.4rem; font-weight: 500; line-height: 1; }
.logo-text { font-family: var(--font-body); font-size: 1.2rem; font-weight: 600; letter-spacing: 0.14em; color: var(--charcoal); }

.main-nav ul { display: flex; align-items: center; gap: 0.25rem; }
.main-nav > ul > li { position: relative; }
.main-nav > ul > li > a { display: block; padding: 0.6rem 0.9rem; font-size: 0.875rem; font-weight: 500; color: var(--text-dark); border-radius: var(--radius); transition: color var(--transition); white-space: nowrap; }
.main-nav > ul > li > a:hover, .main-nav > ul > li > a.active { color: var(--brass); }
.main-nav > ul > li > a i { font-size: 0.7rem; margin-left: 0.2rem; }

/* Dropdown */
.dropdown { display: none !important; position: absolute; top: calc(100% + 8px); left: 0; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); min-width: 220px; width: max-content; max-width: 260px; padding: 0.5rem; z-index: 100; flex-direction: column; }
.has-dropdown:hover .dropdown { display: flex !important; flex-direction: column; }
.dropdown li { display: block; width: 100%; }
.dropdown li a { display: block; padding: 0.6rem 1rem; font-size: 0.875rem; color: var(--text-mid); border-radius: var(--radius); transition: all var(--transition); white-space: nowrap; }
.dropdown li a:hover { background: var(--off-white); color: var(--brass); padding-left: 1.25rem; }

.header-cta { display: flex; align-items: center; gap: 1rem; flex-shrink: 0; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--charcoal); transition: all var(--transition); border-radius: 2px; }

/* === HERO === */
.hero { position: relative; min-height: 92vh; display: flex; align-items: center; overflow: hidden; background: var(--charcoal); }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.45; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(28,28,30,0.85) 0%, rgba(28,28,30,0.4) 60%, transparent 100%); }
.hero-content { position: relative; z-index: 2; max-width: var(--container); margin: 0 auto; padding: 6rem 2rem 4rem; width: 100%; }
.hero-eyebrow { font-family: var(--font-body); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--brass); margin-bottom: 1.25rem; display: flex; align-items: center; gap: 0.75rem; }
.hero-eyebrow::before { content: ''; width: 32px; height: 1.5px; background: var(--brass); display: block; }
.hero h1 { color: var(--white); max-width: 700px; margin-bottom: 1.5rem; }
.hero h1 em { font-style: italic; color: var(--brass-light); }
.hero-desc { color: rgba(255,255,255,0.75); font-size: 1.1rem; max-width: 520px; margin-bottom: 2.5rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.hero-stats { display: flex; gap: 2.5rem; margin-top: 4rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.12); flex-wrap: wrap; }
.hero-stat strong { font-family: var(--font-display); font-size: 2.2rem; color: var(--white); display: block; line-height: 1; }
.hero-stat span { font-size: 0.82rem; color: rgba(255,255,255,0.55); letter-spacing: 0.05em; margin-top: 0.3rem; display: block; }

/* === FEATURES STRIP === */
.features-strip { background: var(--forest); padding: 2rem 0; }
.features-strip-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.feature-item { display: flex; align-items: center; gap: 1rem; padding: 1rem 2rem; border-right: 1px solid rgba(255,255,255,0.1); }
.feature-item:last-child { border-right: none; }
.feature-icon { width: 44px; height: 44px; background: rgba(184,150,90,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.feature-icon i { color: var(--brass); font-size: 1.1rem; }
.feature-item strong { display: block; color: var(--white); font-size: 0.9rem; font-weight: 600; }
.feature-item span { font-size: 0.78rem; color: rgba(255,255,255,0.55); }

/* === SERVICE CARDS === */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.service-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5; }
.service-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.service-card:hover img { transform: scale(1.05); }
.service-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(28,28,30,0.92) 0%, rgba(28,28,30,0.2) 60%, transparent 100%); }
.service-card-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 2rem; }
.service-card-tag { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brass); margin-bottom: 0.5rem; display: block; }
.service-card h3 { color: var(--white); margin-bottom: 0.75rem; font-size: 1.6rem; }
.service-card p { color: rgba(255,255,255,0.65); font-size: 0.9rem; margin: 0 0 1.25rem; }
.service-card-link { display: inline-flex; align-items: center; gap: 0.4rem; color: var(--brass); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.service-card-link:hover { color: var(--brass-light); gap: 0.7rem; }

/* === KITCHEN SHAPES GRID === */
.shapes-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.shape-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.75rem 1.25rem; text-align: center; transition: all var(--transition); cursor: pointer; }
.shape-card:hover { border-color: var(--brass); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.shape-icon { width: 64px; height: 64px; margin: 0 auto 1rem; background: var(--off-white); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.shape-icon img { width: 36px; height: 36px; }
.shape-card h4 { font-size: 1rem; font-weight: 600; color: var(--charcoal); margin-bottom: 0.4rem; font-family: var(--font-body); }
.shape-card p { font-size: 0.82rem; color: var(--text-light); margin: 0; line-height: 1.4; }
.shape-card a { display: block; margin-top: 1rem; font-size: 0.78rem; color: var(--brass); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }

/* === ABOUT SPLIT === */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-image-wrap { position: relative; }
.about-image-wrap img { border-radius: var(--radius-lg); width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.about-badge { position: absolute; bottom: -2rem; right: -2rem; background: var(--brass); color: var(--white); padding: 1.5rem; border-radius: var(--radius-lg); text-align: center; min-width: 140px; }
.about-badge strong { font-family: var(--font-display); font-size: 2.8rem; display: block; line-height: 1; }
.about-badge span { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.85; }
.about-text { padding: 1rem 0; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin: 2rem 0; }
.about-feature { display: flex; gap: 0.75rem; align-items: flex-start; }
.about-feature i { color: var(--brass); margin-top: 0.2rem; font-size: 1rem; flex-shrink: 0; }
.about-feature p { margin: 0; font-size: 0.9rem; }
.about-feature strong { color: var(--charcoal); display: block; font-size: 0.9rem; margin-bottom: 0.1rem; }

/* === PROCESS === */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; position: relative; }
.process-steps::before { content: ''; position: absolute; top: 2.5rem; left: 10%; right: 10%; height: 1px; background: var(--border); z-index: 0; }
.process-step { text-align: center; position: relative; z-index: 1; }
.step-num { width: 52px; height: 52px; background: var(--white); border: 2px solid var(--brass); color: var(--brass); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 1.3rem; font-weight: 500; margin: 0 auto 1.25rem; }
.process-step h4 { font-size: 1rem; font-weight: 600; font-family: var(--font-body); color: var(--charcoal); margin-bottom: 0.5rem; }
.process-step p { font-size: 0.85rem; color: var(--text-light); margin: 0; line-height: 1.5; }

/* === GALLERY GRID === */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.gallery-grid .featured { grid-column: span 2; grid-row: span 2; }
.gallery-item { position: relative; overflow: hidden; border-radius: var(--radius); background: var(--light-gray); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1; transition: transform 0.6s ease; }
.gallery-grid .featured img { aspect-ratio: auto; height: 100%; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item-overlay { position: absolute; inset: 0; background: rgba(28,28,30,0.5); opacity: 0; transition: opacity var(--transition); display: flex; align-items: center; justify-content: center; }
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay i { color: var(--white); font-size: 1.5rem; }

/* === TESTIMONIALS === */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testimonial-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; }
.testimonial-stars { color: var(--brass); margin-bottom: 1rem; font-size: 0.9rem; }
.testimonial-text { font-family: var(--font-display); font-style: italic; font-size: 1.1rem; color: var(--charcoal); line-height: 1.6; margin-bottom: 1.5rem; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--brass); color: var(--white); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 1.2rem; font-weight: 500; flex-shrink: 0; }
.testimonial-author-name { font-weight: 600; font-size: 0.9rem; color: var(--charcoal); }
.testimonial-author-loc { font-size: 0.78rem; color: var(--text-light); }

/* === CTA BANNER === */
.cta-banner { background: var(--charcoal); padding: 5rem 0; text-align: center; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(184,150,90,0.15) 0%, transparent 70%); }
.cta-banner h2 { color: var(--white); margin-bottom: 1rem; position: relative; }
.cta-banner p { color: rgba(255,255,255,0.65); max-width: 560px; margin: 0 auto 2.5rem; position: relative; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; }

/* === CONTACT FORM === */
.contact-form-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 4rem; align-items: start; }
.contact-info h3 { margin-bottom: 1.5rem; }
.contact-details { margin: 2rem 0; }
.contact-detail { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.5rem; }
.contact-detail-icon { width: 44px; height: 44px; background: var(--off-white); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-detail-icon i { color: var(--brass); }
.contact-detail strong { display: block; font-size: 0.85rem; color: var(--charcoal); margin-bottom: 0.2rem; }
.contact-detail span, .contact-detail a { font-size: 0.9rem; color: var(--text-mid); }

.form-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2.5rem; box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--charcoal); margin-bottom: 0.4rem; letter-spacing: 0.04em; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 0.75rem 1rem; border: 1.5px solid var(--border); border-radius: var(--radius); font-family: var(--font-body); font-size: 0.9rem; color: var(--charcoal); background: var(--white); transition: border-color var(--transition); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--brass); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit { width: 100%; padding: 0.9rem; font-size: 0.9rem; }

/* === PAGE HERO === */
.page-hero { background: var(--charcoal); padding: 5rem 0 4rem; position: relative; overflow: hidden; }
.page-hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: rgba(184,150,90,0.3); }
.page-hero-bg { position: absolute; inset: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.25; }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(28,28,30,0.95) 40%, rgba(28,28,30,0.6)); }
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,0.65); max-width: 560px; font-size: 1.05rem; }
.breadcrumb { display: flex; align-items: center; gap: 0.5rem; font-size: 0.82rem; color: rgba(255,255,255,0.45); margin-bottom: 1.5rem; }
.breadcrumb a { color: rgba(255,255,255,0.45); }
.breadcrumb a:hover { color: var(--brass); }
.breadcrumb i { font-size: 0.65rem; }

/* === TABS === */
.tab-nav { display: flex; gap: 0; border-bottom: 1px solid var(--border); margin-bottom: 3rem; overflow-x: auto; }
.tab-btn { padding: 0.75rem 1.5rem; font-size: 0.875rem; font-weight: 500; color: var(--text-mid); border-bottom: 2px solid transparent; margin-bottom: -1px; white-space: nowrap; transition: all var(--transition); }
.tab-btn.active, .tab-btn:hover { color: var(--brass); border-bottom-color: var(--brass); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* === BLOG CARDS === */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.blog-card { border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: box-shadow var(--transition); }
.blog-card:hover { box-shadow: var(--shadow-md); }
.blog-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover img { transform: scale(1.04); }
.blog-card-img { overflow: hidden; }
.blog-card-body { padding: 1.5rem; }
.blog-meta { font-size: 0.78rem; color: var(--text-light); margin-bottom: 0.75rem; }
.blog-meta span { margin-right: 1rem; }
.blog-card h4 { font-size: 1.2rem; margin-bottom: 0.75rem; font-weight: 500; color: var(--charcoal); line-height: 1.4; }
.blog-card h4 a:hover { color: var(--brass); }
.blog-card p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.6; margin: 0 0 1rem; }
.read-more { font-size: 0.8rem; font-weight: 600; color: var(--brass); text-transform: uppercase; letter-spacing: 0.08em; display: inline-flex; align-items: center; gap: 0.4rem; }
.read-more:hover { gap: 0.7rem; }

/* === SIDEBAR === */
.sidebar-layout { display: grid; grid-template-columns: 1fr 320px; gap: 3.5rem; align-items: start; }
.sidebar-widget { background: var(--off-white); border-radius: var(--radius-lg); padding: 1.75rem; margin-bottom: 2rem; }
.sidebar-widget h4 { font-size: 1rem; font-weight: 700; font-family: var(--font-body); color: var(--charcoal); margin-bottom: 1.25rem; padding-bottom: 0.75rem; border-bottom: 2px solid var(--brass); display: inline-block; }
.sidebar-links li { padding: 0.5rem 0; border-bottom: 1px solid var(--border); }
.sidebar-links li:last-child { border-bottom: none; }
.sidebar-links a { font-size: 0.9rem; color: var(--text-mid); display: flex; justify-content: space-between; align-items: center; }
.sidebar-links a:hover { color: var(--brass); }
.sidebar-links a i { font-size: 0.7rem; }

/* === FAQ === */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question { display: flex; justify-content: space-between; align-items: center; padding: 1.5rem 0; cursor: pointer; font-weight: 600; color: var(--charcoal); font-size: 1rem; gap: 1rem; }
.faq-question i { flex-shrink: 0; color: var(--brass); transition: transform var(--transition); }
.faq-item.open .faq-question i { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; }
.faq-answer.open { max-height: 400px; padding-bottom: 1.5rem; }
.faq-answer p { color: var(--text-mid); margin: 0; font-size: 0.95rem; }

/* === LEGAL PAGES === */
.legal-content { max-width: 860px; margin: 0 auto; }
.legal-content h2 { font-size: 1.6rem; margin: 2.5rem 0 0.75rem; color: var(--charcoal); }
.legal-content h3 { font-size: 1.2rem; margin: 1.5rem 0 0.5rem; color: var(--charcoal); font-family: var(--font-body); font-weight: 600; }
.legal-content p { font-size: 0.95rem; line-height: 1.8; }
.legal-content ul { margin: 0.75rem 0 1rem 1.5rem; list-style: disc; }
.legal-content ul li { font-size: 0.95rem; color: var(--text-mid); margin-bottom: 0.4rem; line-height: 1.7; }
.legal-meta { background: var(--off-white); border-left: 3px solid var(--brass); padding: 1rem 1.5rem; border-radius: 0 var(--radius) var(--radius) 0; margin-bottom: 3rem; font-size: 0.88rem; color: var(--text-mid); }

/* === MAP === */
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; height: 420px; }
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* === WHATSAPP FLOAT === */
.whatsapp-float { position: fixed; bottom: 2rem; right: 2rem; background: #25D366; color: var(--white); display: flex; align-items: center; gap: 0.6rem; padding: 0.7rem 1.2rem 0.7rem 1rem; border-radius: 50px; box-shadow: 0 4px 20px rgba(37,211,102,0.4); z-index: 900; font-size: 0.875rem; font-weight: 600; transition: transform var(--transition), box-shadow var(--transition); }
.whatsapp-float i { font-size: 1.3rem; }
.whatsapp-float:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(37,211,102,0.5); color: var(--white); }

/* === SCROLL TOP === */
.scroll-top { position: fixed; bottom: 2rem; left: 2rem; width: 44px; height: 44px; background: var(--charcoal); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; z-index: 900; opacity: 0; pointer-events: none; transition: all var(--transition); box-shadow: var(--shadow-md); }
.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { background: var(--brass); }

/* === FOOTER === */
.site-footer { background: #111113; color: rgba(255,255,255,0.7); }
.footer-top { padding: 5rem 0 3rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr; gap: 3rem; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; color: rgba(255,255,255,0.5); margin: 1.25rem 0 1.5rem; }
.footer-logo { display: flex; align-items: center; gap: 0.5rem; }
.footer-logo .logo-mark { width: 32px; height: 32px; font-size: 1.2rem; }
.footer-logo .logo-text { color: var(--white); }
.footer-socials { display: flex; gap: 0.75rem; }
.footer-socials a { width: 36px; height: 36px; background: rgba(255,255,255,0.08); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.55); font-size: 0.85rem; transition: all var(--transition); }
.footer-socials a:hover { background: var(--brass); color: var(--white); }
.footer-links h4 { color: var(--white); font-size: 0.8rem; font-family: var(--font-body); font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 1.25rem; }
.footer-links ul li { margin-bottom: 0.6rem; }
.footer-links ul li a { font-size: 0.88rem; color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer-links ul li a:hover { color: var(--brass); }
.footer-contact h4 { color: var(--white); font-size: 0.8rem; font-family: var(--font-body); font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 1.25rem; }
.contact-list li { display: flex; gap: 0.75rem; font-size: 0.85rem; color: rgba(255,255,255,0.5); margin-bottom: 0.9rem; align-items: flex-start; line-height: 1.5; }
.contact-list i { color: var(--brass); margin-top: 0.2rem; flex-shrink: 0; }
.contact-list a { color: rgba(255,255,255,0.5); }
.contact-list a:hover { color: var(--brass); }
.service-badge { display: flex; align-items: center; gap: 0.75rem; background: rgba(184,150,90,0.15); border: 1px solid rgba(184,150,90,0.25); border-radius: var(--radius); padding: 0.75rem 1rem; margin-top: 1rem; font-size: 0.82rem; color: rgba(255,255,255,0.6); }
.service-badge i { color: var(--brass); }
.service-badge strong { color: var(--brass); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding: 1.5rem 0; display: flex; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; width: 100%; flex-wrap: wrap; gap: 0.75rem; }
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.35); margin: 0; }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.footer-bottom-links a:hover { color: var(--brass); }

/* === MATERIALS GRID === */
.materials-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.material-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: all var(--transition); }
.material-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.material-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.material-card-body { padding: 1.25rem; }
.material-card h4 { font-size: 0.95rem; font-weight: 600; font-family: var(--font-body); color: var(--charcoal); margin-bottom: 0.3rem; }
.material-card p { font-size: 0.82rem; color: var(--text-light); margin: 0; line-height: 1.5; }

/* === WORKSHOP HIGHLIGHT === */
.workshop-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.workshop-features { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2rem; }
.workshop-feature { padding: 1.25rem; background: var(--off-white); border-radius: var(--radius); }
.workshop-feature i { color: var(--brass); font-size: 1.3rem; margin-bottom: 0.75rem; display: block; }
.workshop-feature h5 { font-size: 0.9rem; font-weight: 700; font-family: var(--font-body); color: var(--charcoal); margin-bottom: 0.3rem; }
.workshop-feature p { font-size: 0.82rem; color: var(--text-light); margin: 0; line-height: 1.5; }
.workshop-img { position: relative; }
.workshop-img img { border-radius: var(--radius-lg); width: 100%; }
.workshop-img-badge { position: absolute; top: -1.5rem; right: -1.5rem; background: var(--forest); color: var(--white); padding: 1.25rem; border-radius: var(--radius-lg); text-align: center; }
.workshop-img-badge i { font-size: 1.5rem; color: var(--brass); display: block; margin-bottom: 0.5rem; }
.workshop-img-badge span { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; }

/* === RESPONSIVE === */
@media (max-width: 1200px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
  .shapes-grid { grid-template-columns: repeat(3, 1fr); }
  .materials-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
  .about-split, .workshop-grid, .contact-form-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-badge { right: 1rem; bottom: -1rem; }
  .features-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .feature-item:nth-child(2) { border-right: none; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .sidebar-layout { grid-template-columns: 1fr; }
  .sidebar { order: -1; }
}

@media (max-width: 768px) {
  .topbar-inner { flex-direction: column; gap: 0.25rem; text-align: center; font-size: 0.72rem; }
  .topbar-right { gap: 1rem; }
  .main-nav { display: none; position: fixed; inset: 0; top: 72px; background: var(--white); z-index: 998; padding: 2rem; overflow-y: auto; flex-direction: column; }
  .main-nav.open { display: flex; }
  .main-nav ul { flex-direction: column; gap: 0; }
  .main-nav > ul > li > a { padding: 1rem 0; border-bottom: 1px solid var(--border); border-radius: 0; font-size: 1rem; }
  .dropdown { display: none !important; position: static; box-shadow: none; border: none; padding: 0.25rem 1rem; background: var(--off-white); border-radius: var(--radius); margin-top: 0.25rem; max-width: none; width: 100%; }
  .has-dropdown .dropdown { display: none !important; }
  .has-dropdown.open .dropdown { display: flex !important; flex-direction: column; }
  .nav-toggle { display: flex; }
  .header-cta .btn-gold { display: none; }
  .hero { min-height: 80vh; }
  .hero-stats { gap: 1.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .shapes-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid .featured { grid-column: span 2; grid-row: span 1; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .features-strip-inner { grid-template-columns: 1fr; }
  .feature-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .materials-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand { grid-column: auto; }
  .workshop-features { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .section { padding: 3.5rem 0; }
  .section-lg { padding: 4rem 0; }
}

@media (max-width: 480px) {
  .shapes-grid { grid-template-columns: 1fr; }
  .materials-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .cta-actions { flex-direction: column; align-items: center; }
  .container { padding: 0 1rem; }
  .btn { padding: 0.7rem 1.5rem; font-size: 0.82rem; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.8rem; }
  .whatsapp-float span { display: none; }
  .whatsapp-float { padding: 0.85rem; border-radius: 50%; }
  .process-steps { grid-template-columns: 1fr; }
}
