/* ============================================================
   Contour & Cuticles - Complete Design System
   Beauty Salon Theme for LocalWebsCoder CMS
   ============================================================ */

/* --- Google Fonts ------------------------------------------ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400;1,600&family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&display=swap');

/* ============================================================
   1. CUSTOM PROPERTIES
   ============================================================ */
:root {
  --bg:          #FDFBF7;
  --bg2:         #F7F3EC;
  --card:        #FFFFFF;
  --border:      #E8E0D0;
  --accent:      #B8962E;
  --accent-dim:  rgba(184,150,46,.08);
  --accent-glow: rgba(184,150,46,.15);
  --green:       #2E5E3F;
  --green-light: #3D7A54;
  --white:       #1E3F2B;
  --text:        #6B6B6B;
  --text2:       #4A4A4A;
  --red:         #D4534B;
  --yellow:      #D4A017;
  --purple:      #8B6BB5;

  --font:        'Montserrat', system-ui, -apple-system, sans-serif;
  --font-h:      'Cormorant Garamond', Georgia, serif;
  --font-b:      'Montserrat', system-ui, sans-serif;
  --font-mono:   'Fira Code', Consolas, monospace;

  --r:    10px;
  --r-sm: 6px;
  --r-lg: 16px;
  --shadow: 0 4px 32px rgba(0,0,0,.06);
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text2);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color .25s ease, opacity .25s ease;
}

a:hover {
  color: var(--green);
}

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  border: none;
  outline: none;
  background: none;
}

button {
  cursor: pointer;
}

ul, ol {
  list-style: none;
}

::selection {
  background: var(--accent-glow);
  color: var(--green);
}

/* ============================================================
   3. TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-h);
  color: var(--white);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); margin-bottom: .5em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: .5em; }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); margin-bottom: .4em; }
h4 { font-size: clamp(1.15rem, 2vw, 1.35rem); margin-bottom: .4em; }
h5 { font-size: 1.05rem; margin-bottom: .3em; }

p {
  margin-bottom: 1em;
  color: var(--text);
}

.lw-h1 {
  font-family: var(--font-h);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--white);
  letter-spacing: -0.01em;
}

.lw-h2 {
  font-family: var(--font-h);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--white);
}

.lw-h3 {
  font-family: var(--font-h);
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 400;
  line-height: 1.25;
  color: var(--white);
}

.lw-h4 {
  font-family: var(--font-h);
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 400;
  line-height: 1.3;
  color: var(--white);
}

.lw-lead {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text);
  max-width: 640px;
}

.lw-eyebrow {
  display: inline-block;
  font-family: var(--font-b);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .75rem;
}

/* ============================================================
   4. CONTAINER
   ============================================================ */
.lw-container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   5. SECTION
   ============================================================ */
.lw-section {
  padding: 60px 0;
}

.lw-section:nth-child(even) {
  background: var(--bg2);
}

/* ============================================================
   6. BUTTONS
   ============================================================ */
.lw-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 32px;
  font-family: var(--font-b);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #FDFBF7;
  background: var(--green);
  border: 2px solid var(--green);
  border-radius: var(--r);
  cursor: pointer;
  transition: all .3s ease;
  text-decoration: none;
  white-space: nowrap;
}

.lw-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #FDFBF7;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(184,150,46,.2);
}

.lw-btn:active {
  transform: translateY(0);
}

.lw-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 32px;
  font-family: var(--font-b);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--green);
  background: transparent;
  border: 2px solid var(--green);
  border-radius: var(--r);
  cursor: pointer;
  transition: all .3s ease;
  text-decoration: none;
  white-space: nowrap;
}

.lw-btn-outline:hover {
  background: var(--green);
  color: #FDFBF7;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(46,94,63,.15);
}

.lw-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 32px;
  font-family: var(--font-b);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--accent);
  background: transparent;
  border: 2px solid transparent;
  border-radius: var(--r);
  cursor: pointer;
  transition: all .3s ease;
  text-decoration: none;
  white-space: nowrap;
}

.lw-btn-ghost:hover {
  background: var(--accent-dim);
  color: var(--accent);
}

.lw-btn-sm {
  padding: 8px 20px;
  font-size: .75rem;
}

/* ============================================================
   7. NAVIGATION
   ============================================================ */
.lw-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--card);
  border-bottom: 2px solid var(--accent);
  box-shadow: 0 2px 16px rgba(0,0,0,.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.lw-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
}

.lw-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--white);
}

.lw-logo-mark {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green);
  color: #FDFBF7;
  font-family: var(--font-h);
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 50%;
  flex-shrink: 0;
}

.lw-logo-text {
  font-family: var(--font-h);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: .01em;
}

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

.lw-nav-links a {
  padding: 8px 16px;
  font-family: var(--font-b);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--text2);
  text-decoration: none;
  border-radius: var(--r-sm);
  transition: all .25s ease;
}

.lw-nav-links a:hover,
.lw-nav-links a.active {
  color: var(--accent);
  background: var(--accent-dim);
}

/* Hamburger */
.lw-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1010;
}

.lw-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s ease;
}

.lw-hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.lw-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.lw-hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation */
.lw-mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--card);
  z-index: 1005;
  padding: 100px 24px 40px;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  overflow-y: auto;
}

.lw-mobile-nav.open {
  display: flex;
}

.lw-mobile-nav a {
  display: block;
  width: 100%;
  max-width: 400px;
  padding: 16px 24px;
  font-family: var(--font-h);
  font-size: 1.4rem;
  color: var(--white);
  text-align: center;
  text-decoration: none;
  border-radius: var(--r);
  transition: all .25s ease;
}

.lw-mobile-nav a:hover {
  background: var(--accent-dim);
  color: var(--accent);
}

/* ============================================================
   8. CARDS
   ============================================================ */
.lw-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}

.lw-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 40px rgba(0,0,0,.08);
}

/* Post Card */
.lw-post-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease;
  text-decoration: none;
  color: inherit;
}

.lw-post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 40px rgba(0,0,0,.08);
}

.lw-post-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.lw-post-card-img-placeholder {
  width: 100%;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bg2) 0%, var(--border) 100%);
  color: var(--accent);
  font-family: var(--font-h);
  font-size: 2.4rem;
  font-weight: 300;
}

.lw-post-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.lw-post-card-cat {
  display: inline-block;
  font-family: var(--font-b);
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.lw-post-card-title {
  font-family: var(--font-h);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 10px;
}

.lw-post-card-title a {
  color: inherit;
  text-decoration: none;
  transition: color .25s ease;
}

.lw-post-card-title a:hover {
  color: var(--accent);
}

.lw-post-card-excerpt {
  font-size: .9rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 16px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.lw-post-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .75rem;
  color: var(--text);
  padding-top: 14px;
  border-top: 1px solid var(--border);
  margin-top: auto;
}

.lw-post-card-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Project Card (mirrors blog cards) */
.lw-project-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease;
  text-decoration: none;
  color: inherit;
}

.lw-project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 40px rgba(0,0,0,.08);
}

.lw-project-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.lw-project-card .lw-post-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* ============================================================
   9. GRID
   ============================================================ */
.lw-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.lw-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

/* ============================================================
   10. FORMS
   ============================================================ */
.lw-form-group {
  margin-bottom: 20px;
}

.lw-form-label {
  display: block;
  font-family: var(--font-b);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}

.lw-form-input {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font);
  font-size: .95rem;
  color: var(--text2);
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  transition: border-color .25s ease, box-shadow .25s ease;
}

.lw-form-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
  outline: none;
}

.lw-form-input::placeholder {
  color: #B0A89A;
}

.lw-form-textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font);
  font-size: .95rem;
  color: var(--text2);
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  min-height: 140px;
  resize: vertical;
  transition: border-color .25s ease, box-shadow .25s ease;
}

.lw-form-textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
  outline: none;
}

.lw-form-textarea::placeholder {
  color: #B0A89A;
}

.lw-form-select {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font);
  font-size: .95rem;
  color: var(--text2);
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1.5l5 5 5-5' stroke='%236B6B6B' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  cursor: pointer;
  transition: border-color .25s ease, box-shadow .25s ease;
}

.lw-form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
  outline: none;
}

.lw-form-msg {
  padding: 14px 20px;
  border-radius: var(--r);
  font-size: .9rem;
  font-weight: 500;
  margin-top: 16px;
}

.lw-form-msg.success {
  background: rgba(46,94,63,.08);
  color: var(--green);
  border: 1px solid rgba(46,94,63,.2);
}

.lw-form-msg.error {
  background: rgba(212,83,75,.08);
  color: var(--red);
  border: 1px solid rgba(212,83,75,.2);
}

/* ============================================================
   11. FILTER BAR
   ============================================================ */
.lw-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.lw-filter-tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  font-family: var(--font-b);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--text);
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: 100px;
  cursor: pointer;
  transition: all .25s ease;
  text-decoration: none;
}

.lw-filter-tag:hover,
.lw-filter-tag.active {
  color: var(--accent);
  border-color: var(--accent);
  background: var(--accent-dim);
}

/* ============================================================
   12. BLOG POST (Single)
   ============================================================ */
.lw-post-hero {
  position: relative;
  width: 100%;
  height: clamp(280px, 40vw, 480px);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background: var(--bg2);
}

.lw-post-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lw-post-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,63,43,.7) 0%, transparent 60%);
}

.lw-post-hero .lw-container {
  position: relative;
  z-index: 1;
  padding-bottom: 40px;
}

.lw-post-hero h1 {
  color: #FDFBF7;
  text-shadow: 0 2px 12px rgba(0,0,0,.2);
}

.lw-post-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  font-size: .85rem;
  color: var(--text);
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.lw-post-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.lw-post-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

/* Article Typography */
.lw-post-content {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text2);
}

.lw-post-content h2 {
  font-size: 1.8rem;
  margin: 2em 0 .6em;
}

.lw-post-content h3 {
  font-size: 1.4rem;
  margin: 1.6em 0 .5em;
}

.lw-post-content h4 {
  font-size: 1.15rem;
  margin: 1.4em 0 .4em;
}

.lw-post-content p {
  margin-bottom: 1.2em;
  color: var(--text2);
}

.lw-post-content a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .25s ease;
}

.lw-post-content a:hover {
  color: var(--green);
}

.lw-post-content img {
  border-radius: var(--r);
  margin: 2em 0;
  box-shadow: var(--shadow);
}

.lw-post-content blockquote {
  margin: 2em 0;
  padding: 20px 24px;
  border-left: 4px solid var(--accent);
  background: var(--accent-dim);
  border-radius: 0 var(--r) var(--r) 0;
  font-family: var(--font-h);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--white);
}

.lw-post-content blockquote p:last-child {
  margin-bottom: 0;
}

.lw-post-content ul,
.lw-post-content ol {
  margin: 1.2em 0;
  padding-left: 1.8em;
}

.lw-post-content ul {
  list-style: disc;
}

.lw-post-content ol {
  list-style: decimal;
}

.lw-post-content li {
  margin-bottom: .5em;
  color: var(--text2);
}

.lw-post-content pre {
  margin: 1.5em 0;
  padding: 20px 24px;
  background: #1a2e23;
  color: #d4dbd7;
  border-radius: var(--r);
  overflow-x: auto;
  font-family: var(--font-mono);
  font-size: .88rem;
  line-height: 1.6;
}

.lw-post-content code {
  font-family: var(--font-mono);
  font-size: .88em;
  padding: 2px 7px;
  background: var(--accent-dim);
  color: var(--accent);
  border-radius: 4px;
}

.lw-post-content pre code {
  padding: 0;
  background: none;
  color: inherit;
  border-radius: 0;
}

.lw-post-content hr {
  border: none;
  height: 1px;
  background: var(--border);
  margin: 2.5em 0;
}

.lw-post-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5em 0;
}

.lw-post-content table th,
.lw-post-content table td {
  padding: 10px 14px;
  border: 1px solid var(--border);
  text-align: left;
}

.lw-post-content table th {
  background: var(--bg2);
  font-weight: 600;
  color: var(--white);
}

/* ============================================================
   13. CONTACT
   ============================================================ */
.lw-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.lw-contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.lw-contact-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-dim);
  color: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.lw-contact-info-item h4 {
  font-family: var(--font-b);
  font-size: .85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--white);
  margin-bottom: 4px;
}

.lw-contact-info-item p {
  font-size: .9rem;
  color: var(--text);
  margin: 0;
}

/* ============================================================
   14. PAGINATION
   ============================================================ */
.lw-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
}

.lw-page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 14px;
  font-family: var(--font-b);
  font-size: .85rem;
  font-weight: 500;
  color: var(--text2);
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  cursor: pointer;
  text-decoration: none;
  transition: all .25s ease;
}

.lw-page-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-dim);
}

.lw-page-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #FDFBF7;
  font-weight: 600;
}

.lw-page-btn:disabled,
.lw-page-btn.disabled {
  opacity: .4;
  pointer-events: none;
}

/* ============================================================
   15. FOOTER
   ============================================================ */
.lw-footer {
  background: var(--green);
  color: rgba(253,251,247,.7);
  padding-top: 0;
}

.lw-footer-top {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 48px;
  padding: 60px 0 40px;
}

.lw-footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lw-footer-brand .lw-logo-mark {
  background: var(--accent);
  color: var(--green);
}

.lw-footer-brand .lw-logo-text {
  color: #FDFBF7;
}

.lw-footer-brand p {
  font-size: .9rem;
  color: rgba(253,251,247,.6);
  line-height: 1.7;
  max-width: 280px;
}

.lw-footer-col h5 {
  font-family: var(--font-b);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.lw-footer-col a {
  display: block;
  font-size: .88rem;
  color: rgba(253,251,247,.6);
  padding: 5px 0;
  text-decoration: none;
  transition: color .25s ease, padding-left .25s ease;
}

.lw-footer-col a:hover {
  color: var(--accent);
  padding-left: 4px;
}

.lw-footer-social {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.lw-footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(253,251,247,.08);
  border-radius: 50%;
  color: rgba(253,251,247,.6);
  font-size: .9rem;
  padding: 0;
  transition: all .25s ease;
}

.lw-footer-social a:hover {
  background: var(--accent);
  color: var(--green);
  padding-left: 0;
}

.lw-footer-sep {
  border: none;
  height: 1px;
  background: rgba(253,251,247,.1);
  margin: 0;
}

.lw-footer-build {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 20px 0;
}

.lw-footer-links {
  display: flex;
  gap: 24px;
}

.lw-footer-links a {
  font-size: .8rem;
  color: rgba(253,251,247,.5);
  text-decoration: none;
  transition: color .25s ease;
}

.lw-footer-links a:hover {
  color: var(--accent);
}

.lw-footer-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  color: rgba(253,251,247,.5);
}

.lw-footer-dev {
  font-size: .7rem;
  color: rgba(253,251,247,.3);
  letter-spacing: .04em;
}

.lw-footer-dev a {
  color: rgba(253,251,247,.5);
  text-decoration: none;
  transition: color .2s;
}

.lw-footer-dev a:hover {
  color: var(--accent);
}

.lw-footer-status-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: .6; }
  50% { opacity: 1; }
}

.lw-footer-term {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 20px 0 24px;
}

.lw-footer-term-copyright {
  font-size: .8rem;
  color: rgba(253,251,247,.4);
}

/* ============================================================
   16. GDPR BANNER
   ============================================================ */
.lw-gdpr {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 20px;
  transform: translateY(100%);
  opacity: 0;
  transition: transform .5s cubic-bezier(.16,1,.3,1), opacity .5s ease;
  pointer-events: none;
}

.lw-gdpr.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.lw-gdpr-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.lw-gdpr-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 28px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: 0 12px 48px rgba(0,0,0,.1);
}

.lw-gdpr-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-dim);
  color: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  font-size: 1.2rem;
}

.lw-gdpr-text {
  flex: 1;
  font-size: .88rem;
  line-height: 1.6;
  color: var(--text);
}

.lw-gdpr-text a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.lw-gdpr-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

/* ============================================================
   17. REVEAL ANIMATION
   ============================================================ */
.lw-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.16,1,.3,1),
              transform .7s cubic-bezier(.16,1,.3,1);
}

.lw-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.lw-reveal-d1 { transition-delay: .08s; }
.lw-reveal-d2 { transition-delay: .16s; }
.lw-reveal-d3 { transition-delay: .24s; }
.lw-reveal-d4 { transition-delay: .32s; }
.lw-reveal-d5 { transition-delay: .40s; }
.lw-reveal-d6 { transition-delay: .48s; }

/* ============================================================
   18. STATS
   ============================================================ */
.lw-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
  text-align: center;
  padding: 40px 0;
}

.lw-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.lw-stat-num {
  font-family: var(--font-h);
  font-size: 3rem;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
}

.lw-stat p {
  font-size: .85rem;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 500;
}

/* ============================================================
   19. CTA SECTION
   ============================================================ */
.lw-cta {
  text-align: center;
  padding: 80px 24px;
  background: linear-gradient(135deg, var(--green) 0%, #1a3f2d 100%);
  border-radius: var(--r-lg);
  color: #FDFBF7;
  margin: 40px 0;
}

.lw-cta h2 {
  color: #FDFBF7;
  margin-bottom: .5em;
}

.lw-cta p {
  color: rgba(253,251,247,.7);
  max-width: 540px;
  margin: 0 auto 32px;
  font-size: 1.05rem;
}

.lw-cta .lw-btn {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--green);
  font-weight: 700;
}

.lw-cta .lw-btn:hover {
  background: #FDFBF7;
  border-color: #FDFBF7;
  color: var(--green);
}

.lw-cta .lw-btn-outline:hover {
  background: rgba(253,251,247,.12);
  border-color: rgba(253,251,247,.7);
  color: #FDFBF7;
  box-shadow: 0 6px 24px rgba(0,0,0,.15);
}

/* ============================================================
   20. 404 PAGE
   ============================================================ */
.lw-404 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 70vh;
  padding: 60px 24px;
}

.lw-404-code {
  font-family: var(--font-h);
  font-size: clamp(6rem, 18vw, 12rem);
  font-weight: 300;
  line-height: 1;
  color: var(--border);
  margin-bottom: 16px;
  letter-spacing: -0.04em;
}

.lw-404 h2 {
  margin-bottom: .5em;
}

.lw-404 p {
  max-width: 440px;
  margin-bottom: 32px;
}

/* ============================================================
   21. ADMIN - BODY & LAYOUT
   ============================================================ */
.lw-admin-body {
  background: #0F1116;
  color: #C8C9CC;
  font-family: var(--font);
  min-height: 100vh;
}

.lw-admin-body a {
  color: var(--accent);
}

.lw-admin-body a:hover {
  color: #d4b23a;
}

.lw-admin-wrap {
  display: flex;
  min-height: 100vh;
}

.lw-admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(184,150,46,.12);
}

.lw-admin-header h1,
.lw-admin-header h2 {
  font-family: var(--font-h);
  color: #EDEDEE;
}

/* ============================================================
   22. ADMIN - NAVIGATION / SIDEBAR
   ============================================================ */
.lw-admin-sidebar {
  width: 240px;
  background: #13151B;
  border-right: 1px solid rgba(184,150,46,.08);
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  min-height: 100vh;
}

.lw-admin-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0 12px;
}

.lw-admin-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  font-size: .88rem;
  font-weight: 500;
  color: #8B8D95;
  text-decoration: none;
  border-radius: var(--r-sm);
  transition: all .2s ease;
}

.lw-admin-nav a:hover {
  color: #EDEDEE;
  background: rgba(184,150,46,.06);
}

.lw-admin-nav a.active {
  color: var(--accent);
  background: rgba(184,150,46,.1);
}

.lw-admin-nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 16px 24px;
  margin-bottom: 8px;
  border-bottom: 1px solid rgba(184,150,46,.08);
  text-decoration: none;
}

.lw-admin-nav-brand .lw-logo-text {
  color: #EDEDEE;
  font-size: 1.1rem;
}

/* ============================================================
   23. ADMIN - CARDS
   ============================================================ */
.lw-admin-card {
  background: #191B22;
  border: 1px solid rgba(184,150,46,.08);
  border-radius: var(--r);
  padding: 24px;
  margin-bottom: 24px;
}

.lw-admin-card h3,
.lw-admin-card h4 {
  color: #EDEDEE;
}

/* ============================================================
   24. ADMIN - LOGIN
   ============================================================ */
.lw-admin-login {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 24px;
  background: #0F1116;
}

.lw-admin-login-card {
  width: 100%;
  max-width: 400px;
  background: #191B22;
  border: 1px solid rgba(184,150,46,.1);
  border-radius: var(--r-lg);
  padding: 40px 32px;
  text-align: center;
}

.lw-admin-login-card h2 {
  color: #EDEDEE;
  margin-bottom: 8px;
}

.lw-admin-login-card p {
  color: #8B8D95;
  margin-bottom: 28px;
}

.lw-admin-logo-mark {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #0F1116;
  font-family: var(--font-h);
  font-size: 1.6rem;
  font-weight: 600;
  border-radius: 50%;
  margin: 0 auto 24px;
}

/* Admin form overrides */
.lw-admin-body .lw-form-input,
.lw-admin-body .lw-form-textarea,
.lw-admin-body .lw-form-select {
  background: #13151B;
  border-color: rgba(184,150,46,.1);
  color: #EDEDEE;
}

.lw-admin-body .lw-form-input:focus,
.lw-admin-body .lw-form-textarea:focus,
.lw-admin-body .lw-form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(184,150,46,.15);
}

.lw-admin-body .lw-form-input::placeholder,
.lw-admin-body .lw-form-textarea::placeholder {
  color: #555;
}

.lw-admin-body .lw-form-label {
  color: #EDEDEE;
}

.lw-admin-body .lw-btn {
  background: var(--accent);
  border-color: var(--accent);
  color: #0F1116;
}

.lw-admin-body .lw-btn:hover {
  background: #d4b23a;
  border-color: #d4b23a;
}

/* ============================================================
   25. DASHBOARD STATS
   ============================================================ */
.lw-dash-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}

.lw-dash-stat {
  background: #191B22;
  border: 1px solid rgba(184,150,46,.08);
  border-radius: var(--r);
  padding: 24px;
  text-align: center;
}

.lw-dash-stat-num {
  font-family: var(--font-h);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}

.lw-dash-stat-label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #8B8D95;
}

/* ============================================================
   26. TABS
   ============================================================ */
.lw-tabs {
  display: flex;
  gap: 4px;
  border-bottom: 2px solid rgba(184,150,46,.08);
  margin-bottom: 24px;
  overflow-x: auto;
}

.lw-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  font-family: var(--font-b);
  font-size: .82rem;
  font-weight: 500;
  color: #8B8D95;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  white-space: nowrap;
  transition: all .25s ease;
  text-decoration: none;
}

.lw-tab:hover {
  color: #EDEDEE;
}

.lw-tab.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.lw-tab-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 7px;
  font-size: .7rem;
  font-weight: 700;
  background: rgba(184,150,46,.1);
  color: var(--accent);
  border-radius: 100px;
}

/* public-facing tabs override */
body:not(.lw-admin-body) .lw-tabs {
  border-bottom-color: var(--border);
}

body:not(.lw-admin-body) .lw-tab {
  color: var(--text);
}

body:not(.lw-admin-body) .lw-tab:hover {
  color: var(--white);
}

body:not(.lw-admin-body) .lw-tab.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

/* ============================================================
   27. TABLES
   ============================================================ */
.lw-table {
  width: 100%;
  border-collapse: collapse;
}

.lw-table thead th {
  padding: 12px 16px;
  font-family: var(--font-b);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #8B8D95;
  text-align: left;
  border-bottom: 1px solid rgba(184,150,46,.1);
  background: #13151B;
}

.lw-table tbody td {
  padding: 14px 16px;
  font-size: .9rem;
  color: #C8C9CC;
  border-bottom: 1px solid rgba(255,255,255,.04);
  vertical-align: middle;
}

.lw-table tbody tr {
  transition: background .15s ease;
}

.lw-table tbody tr:hover {
  background: rgba(184,150,46,.03);
}

.lw-table tbody tr:last-child td {
  border-bottom: none;
}

.lw-table a {
  color: var(--accent);
  text-decoration: none;
}

.lw-table a:hover {
  text-decoration: underline;
}

/* ============================================================
   28. BADGES
   ============================================================ */
.lw-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .03em;
  text-transform: uppercase;
  border-radius: 100px;
  background: rgba(184,150,46,.1);
  color: var(--accent);
}

.lw-badge-warn {
  background: rgba(212,160,23,.1);
  color: var(--yellow);
}

.lw-badge-ok {
  background: rgba(46,94,63,.12);
  color: var(--green-light);
}

/* ============================================================
   29. POST STATUS
   ============================================================ */
.lw-post-status-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--green-light);
}

.lw-post-status-live::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--green-light);
  border-radius: 50%;
}

.lw-post-status-draft {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--yellow);
}

.lw-post-status-draft::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--yellow);
  border-radius: 50%;
}

/* ============================================================
   30. EDITOR
   ============================================================ */
.lw-editor-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  padding: 10px 14px;
  background: #13151B;
  border: 1px solid rgba(184,150,46,.08);
  border-bottom: none;
  border-radius: var(--r) var(--r) 0 0;
}

.lw-editor-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  font-size: .85rem;
  color: #8B8D95;
  background: none;
  border: none;
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: all .2s ease;
}

.lw-editor-btn:hover {
  color: var(--accent);
  background: rgba(184,150,46,.08);
}

.lw-editor-btn.active {
  color: var(--accent);
  background: rgba(184,150,46,.12);
}

.lw-editor-textarea {
  width: 100%;
  min-height: 400px;
  padding: 20px;
  font-family: var(--font-mono);
  font-size: .9rem;
  line-height: 1.7;
  color: #EDEDEE;
  background: #191B22;
  border: 1px solid rgba(184,150,46,.08);
  border-top: none;
  border-radius: 0 0 var(--r) var(--r);
  resize: vertical;
}

.lw-editor-textarea:focus {
  outline: none;
  border-color: rgba(184,150,46,.2);
}

/* ============================================================
   31. DELETE BUTTON
   ============================================================ */
.lw-delete-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  font-family: var(--font-b);
  font-size: .78rem;
  font-weight: 600;
  color: var(--red);
  background: rgba(212,83,75,.08);
  border: 1.5px solid rgba(212,83,75,.2);
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: all .25s ease;
}

.lw-delete-btn:hover {
  background: var(--red);
  border-color: var(--red);
  color: #FDFBF7;
}

/* ============================================================
   32. EMPTY STATE
   ============================================================ */
.lw-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px;
  color: #8B8D95;
}

.lw-empty svg,
.lw-empty img {
  width: 64px;
  height: 64px;
  opacity: .3;
  margin-bottom: 20px;
}

.lw-empty h3 {
  font-family: var(--font-h);
  color: #EDEDEE;
  margin-bottom: 8px;
}

.lw-empty p {
  font-size: .9rem;
  color: #8B8D95;
  max-width: 360px;
  margin-bottom: 24px;
}

/* Public-facing empty state */
body:not(.lw-admin-body) .lw-empty {
  color: var(--text);
}

body:not(.lw-admin-body) .lw-empty h3 {
  color: var(--white);
}

body:not(.lw-admin-body) .lw-empty p {
  color: var(--text);
}

/* ============================================================
   33. RESPONSIVE BREAKPOINTS
   ============================================================ */

/* Tablet - 1024px */
@media (max-width: 1024px) {
  .lw-footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

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

  .lw-admin-sidebar {
    width: 200px;
  }
}

/* Tablet small - 768px */
@media (max-width: 768px) {
  .lw-section {
    padding: 44px 0;
  }

  .lw-nav-links {
    display: none;
  }

  .lw-hamburger {
    display: flex;
  }

  .lw-grid-3 {
    grid-template-columns: 1fr;
  }

  .lw-grid-2 {
    grid-template-columns: 1fr;
  }

  .lw-contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .lw-footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .lw-footer-build {
    flex-direction: column;
    text-align: center;
  }

  .lw-footer-term {
    flex-direction: column;
    text-align: center;
  }

  .lw-cta {
    padding: 56px 24px;
    margin: 24px 12px;
  }

  .lw-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .lw-gdpr-card {
    flex-direction: column;
    text-align: center;
  }

  .lw-gdpr-actions {
    width: 100%;
    justify-content: center;
  }

  .lw-post-wrap {
    padding: 32px 20px 60px;
  }

  /* Admin responsive */
  .lw-admin-sidebar {
    display: none;
  }

  .lw-admin-wrap {
    flex-direction: column;
  }

  .lw-dash-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .lw-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .lw-admin-header {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .lw-tabs {
    gap: 0;
  }

  .lw-tab {
    padding: 10px 14px;
    font-size: .78rem;
  }
}

/* Mobile - 480px */
@media (max-width: 480px) {
  .lw-container {
    padding: 0 16px;
  }

  .lw-nav-inner {
    padding: 0 16px;
    height: 64px;
  }

  .lw-section {
    padding: 36px 0;
  }

  .lw-btn {
    padding: 12px 24px;
    font-size: .8rem;
    width: 100%;
    justify-content: center;
  }

  .lw-btn-outline {
    padding: 12px 24px;
    font-size: .8rem;
    width: 100%;
    justify-content: center;
  }

  .lw-btn-ghost {
    padding: 12px 24px;
    font-size: .8rem;
    width: 100%;
    justify-content: center;
  }

  .lw-stats {
    grid-template-columns: 1fr 1fr;
  }

  .lw-stat-num {
    font-size: 2.2rem;
  }

  .lw-post-card-img,
  .lw-post-card-img-placeholder {
    height: 180px;
  }

  .lw-post-card-body {
    padding: 18px;
  }

  .lw-pagination {
    gap: 6px;
  }

  .lw-page-btn {
    min-width: 36px;
    height: 36px;
    font-size: .8rem;
    padding: 0 10px;
  }

  .lw-filter-bar {
    gap: 6px;
  }

  .lw-filter-tag {
    padding: 6px 14px;
    font-size: .7rem;
  }

  .lw-404-code {
    font-size: clamp(5rem, 20vw, 8rem);
  }

  .lw-cta {
    padding: 44px 20px;
    border-radius: var(--r);
    margin: 16px 8px;
  }

  .lw-post-hero {
    height: clamp(220px, 50vw, 320px);
  }

  /* Admin mobile */
  .lw-dash-stats {
    grid-template-columns: 1fr;
  }

  .lw-admin-login-card {
    padding: 32px 20px;
  }

  .lw-editor-toolbar {
    padding: 8px 10px;
  }

  .lw-editor-btn {
    width: 30px;
    height: 30px;
    font-size: .8rem;
  }

  .lw-editor-textarea {
    min-height: 300px;
    padding: 16px;
    font-size: .85rem;
  }
}

/* ============================================================
   34. UTILITY CLASSES
   ============================================================ */
.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }
.mb-0  { margin-bottom: 0 !important; }
.mb-1  { margin-bottom: 8px !important; }
.mb-2  { margin-bottom: 16px !important; }
.mb-3  { margin-bottom: 24px !important; }
.mb-4  { margin-bottom: 32px !important; }
.mt-0  { margin-top: 0 !important; }
.mt-1  { margin-top: 8px !important; }
.mt-2  { margin-top: 16px !important; }
.mt-3  { margin-top: 24px !important; }
.mt-4  { margin-top: 32px !important; }
.d-flex      { display: flex; }
.gap-1       { gap: 8px; }
.gap-2       { gap: 16px; }
.gap-3       { gap: 24px; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }

/* ============================================================
   35. PRINT STYLES
   ============================================================ */
@media print {
  .lw-nav,
  .lw-footer,
  .lw-gdpr,
  .lw-hamburger,
  .lw-mobile-nav,
  .lw-filter-bar,
  .lw-pagination {
    display: none !important;
  }

  body {
    background: #fff;
    color: #222;
    font-size: 12pt;
  }

  .lw-container {
    max-width: 100%;
    padding: 0;
  }

  .lw-card,
  .lw-post-card {
    box-shadow: none;
    border: 1px solid #ddd;
    break-inside: avoid;
  }
}

/* ============================================================
   BEAUTY COMPONENTS — Hero, Services, Treatments, etc.
   ============================================================ */

/* ── Gradient Text (gold-to-green) ─────────────────────────── */
.lw-gradient-text {
  background: linear-gradient(135deg, var(--accent) 0%, var(--green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Section Label ──────────────────────────────────────────── */
.lw-section-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.lw-section-label-text {
  font-family: var(--font-b);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
}
.lw-section-label-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, rgba(184,150,46,.3), transparent);
}

/* ── Hero ────────────────────────────────────────────────────── */
.lw-hero {
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}
.lw-hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(184,150,46,.08) 0%, transparent 65%);
  pointer-events: none;
}
.lw-hero::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(46,94,63,.06) 0%, transparent 65%);
  pointer-events: none;
}
.lw-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.lw-hero-content { position: relative; }
.lw-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--accent-dim);
  border: 1px solid rgba(184,150,46,.2);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.lw-hero-tag-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: cc-pulse 2s ease-in-out infinite;
}
.lw-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}
.lw-hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 32px;
}
.lw-hero-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--text);
}
.lw-hero-trust-item svg { flex-shrink: 0; }

/* Hero animation */
.lw-hero-animate {
  opacity: 0;
  animation: cc-fadeUp .65s ease forwards;
}
.lw-hero-animate:nth-child(1) { animation-delay: .1s; }
.lw-hero-animate:nth-child(2) { animation-delay: .25s; }
.lw-hero-animate:nth-child(3) { animation-delay: .4s; }
.lw-hero-animate:nth-child(4) { animation-delay: .55s; }
.lw-hero-animate:nth-child(5) { animation-delay: .7s; }

/* Hero visual card */
.lw-hero-visual { position: relative; }
.lw-hero-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  box-shadow: 0 8px 48px rgba(46,94,63,.08);
}
.lw-hero-card-title {
  font-family: var(--font-h);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.lw-hero-card-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 0;
  border-bottom: 1px solid rgba(232,224,208,.5);
  font-size: 14px;
}
.lw-hero-card-row:last-child { border-bottom: none; }
.lw-hero-card-label { color: var(--text); }
.lw-hero-card-val {
  font-weight: 600;
  color: var(--accent);
  font-family: var(--font-h);
  font-size: 1rem;
}
.lw-hero-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  background: rgba(46,94,63,.08);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  color: var(--green);
  letter-spacing: .06em;
  margin-top: 16px;
}

/* ── Ticker / Marquee ────────────────────────────────────────── */
.lw-ticker {
  background: var(--green);
  overflow: hidden;
  padding: 13px 0;
  position: relative;
}
.lw-ticker::before,
.lw-ticker::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 1;
}
.lw-ticker::before { left: 0; background: linear-gradient(to right, var(--green), transparent); }
.lw-ticker::after  { right: 0; background: linear-gradient(to left, var(--green), transparent); }
.lw-ticker-track {
  display: flex;
  animation: cc-ticker 28s linear infinite;
  width: max-content;
}
.lw-ticker-track span {
  padding: 0 22px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(253,251,247,.65);
  white-space: nowrap;
}
.lw-ticker-dot {
  color: var(--accent) !important;
  padding: 0 6px !important;
}

/* ── Service Icon ────────────────────────────────────────────── */
.lw-service-icon {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-dim);
  border-radius: 14px;
  margin-bottom: 20px;
  color: var(--accent);
  transition: background .3s, transform .3s;
}
.lw-card:hover .lw-service-icon {
  background: rgba(184,150,46,.15);
  transform: scale(1.08);
}
.lw-service-icon svg { width: 24px; height: 24px; }

/* ── Process Steps ───────────────────────────────────────────── */
.lw-process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.lw-process-step { position: relative; }
.lw-process-num {
  font-family: var(--font-h);
  font-size: 3.8rem;
  font-weight: 300;
  color: rgba(184,150,46,.15);
  line-height: 1;
  margin-bottom: 14px;
  letter-spacing: -.02em;
}
.lw-process-step h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text2);
  margin-bottom: 10px;
  letter-spacing: .01em;
}
.lw-process-step p {
  font-size: 14px;
  color: var(--text);
  line-height: 1.7;
}

/* ── Treatment Cards ─────────────────────────────────────────── */
.lw-treat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px 24px;
  transition: border-color .3s, box-shadow .3s, transform .3s;
}
.lw-treat-card:hover {
  border-color: rgba(184,150,46,.35);
  box-shadow: 0 8px 40px rgba(184,150,46,.08);
  transform: translateY(-2px);
}
.lw-treat-cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.lw-treat-name {
  font-family: var(--font-h);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--text2);
  margin-bottom: 10px;
  line-height: 1.3;
}
.lw-treat-desc {
  font-size: 13px;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 18px;
}
.lw-treat-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.lw-treat-price {
  font-family: var(--font-h);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
}
.lw-treat-duration {
  font-size: 12px;
  color: var(--text);
  margin-top: 3px;
}

/* ── Testimonials ────────────────────────────────────────────── */
.lw-testimonial {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px 24px;
  transition: border-color .3s, box-shadow .3s;
}
.lw-testimonial:hover {
  border-color: rgba(184,150,46,.25);
  box-shadow: 0 4px 24px rgba(184,150,46,.06);
}
.lw-testimonial-stars {
  color: var(--accent);
  font-size: 15px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.lw-testimonial-body {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text);
  font-style: italic;
  margin-bottom: 18px;
}
.lw-testimonial-author {
  font-size: 14px;
  font-weight: 600;
  color: var(--text2);
}
.lw-testimonial-service {
  font-size: 12px;
  color: var(--accent);
  margin-top: 3px;
}

/* ── About Grid ──────────────────────────────────────────────── */
.lw-about-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 72px;
  align-items: center;
}
.lw-about-img {
  aspect-ratio: 4/5;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
}
.lw-about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lw-qual-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}
.lw-qual-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 14px;
  color: var(--text2);
  border-bottom: 1px solid var(--border);
  line-height: 1.5;
}
.lw-qual-list li:last-child { border-bottom: none; }
.lw-qual-dot {
  width: 6px;
  height: 6px;
  min-width: 6px;
  background: var(--accent);
  border-radius: 50%;
  margin-top: 6px;
}

/* ── Trust Badges ────────────────────────────────────────────── */
.lw-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.lw-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 24px 16px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
}
.lw-trust-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-dim);
  border-radius: 50%;
  color: var(--accent);
}
.lw-trust-icon svg { width: 22px; height: 22px; }
.lw-trust-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text2);
  line-height: 1.4;
}

/* ── Stats ───────────────────────────────────────────────────── */
.lw-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.lw-stat {}
.lw-stat-num {
  font-family: var(--font-h);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}
.lw-stat-label {
  font-size: 13px;
  color: var(--text);
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* ── WhatsApp Float ──────────────────────────────────────────── */
.lw-wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 990;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform .3s ease, box-shadow .3s ease;
  cursor: pointer;
  text-decoration: none;
}
.lw-wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,.5);
  color: #fff;
}

/* ── Tech / Category Tags ────────────────────────────────────── */
.lw-tech-tag {
  display: inline-flex;
  padding: 3px 10px;
  background: var(--accent-dim);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* ── Keyframe Animations ─────────────────────────────────────── */
@keyframes cc-fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes cc-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: .35; }
}
@keyframes cc-ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Responsive: Beauty Components ──────────────────────────── */
@media (max-width: 1024px) {
  .lw-about-grid { grid-template-columns: 1fr; gap: 40px; }
  .lw-about-img  { max-width: 420px; }
  .lw-trust-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .lw-hero          { padding: 72px 0 56px; }
  .lw-hero-grid     { grid-template-columns: 1fr; gap: 48px; }
  .lw-hero-visual   { display: none; }
  .lw-process       { grid-template-columns: 1fr 1fr; gap: 24px; }
  .lw-stats         { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .lw-hero          { padding: 60px 0 48px; }
  .lw-process       { grid-template-columns: 1fr; }
  .lw-trust-grid    { grid-template-columns: 1fr 1fr; }
  .lw-stats         { grid-template-columns: 1fr 1fr; gap: 20px; }
  .lw-wa-float      { width: 52px; height: 52px; bottom: 20px; right: 20px; }
}

/* ============================================================
   END OF STYLESHEET
   ============================================================ */
