/* ============================================
   CASA DE LUCA — About Page
   Editorial two-column layout
   ============================================ */

.about-main {
  padding-top: var(--header-height);
}

.about-hero {
  position: relative;
  padding: var(--space-2xl) 0 var(--space-xl);
  border-bottom: 2px solid var(--accent-secondary);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 400px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--accent) 0%, rgba(155, 76, 110, 0.85) 100%);
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(155, 76, 110, 0.5) 0%, rgba(155, 76, 110, 0.65) 100%);
  pointer-events: none;
}

.about-hero .container {
  position: relative;
  z-index: 1;
}

.about-hero .section-heading,
.about-hero h1 {
  color: var(--white);
}

.about-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.about-content {
  padding: var(--space-2xl) 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

@media (min-width: 900px) {
  .about-grid {
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-2xl);
    align-items: start;
  }
}

.about-editorial .lead {
  margin-bottom: var(--space-lg);
}

.editorial-copy p {
  margin-bottom: var(--space-md);
  color: var(--text-secondary);
  max-width: 65ch;
}

.editorial-copy p:last-child {
  margin-bottom: 0;
}

.about-sidebar {
  padding: var(--space-lg) 0;
  border-top: 1px solid var(--border);
}

@media (min-width: 900px) {
  .about-sidebar {
    border-top: none;
    padding-top: 0;
    position: sticky;
    top: calc(var(--header-height) + var(--space-lg));
  }
}

.about-sidebar h3 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
}

.about-sidebar ul {
  list-style: none;
}

.about-sidebar li {
  padding: var(--space-xs) 0;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.about-sidebar h3 + ul {
  margin-bottom: var(--space-lg);
}

.values-list li {
  position: relative;
  padding-left: 1.25rem;
}

.values-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--accent-secondary);
  font-weight: bold;
}

/* --- Brands section --- */
.brands-section {
  padding: var(--space-2xl) 0;
  background: linear-gradient(135deg, var(--accent-secondary) 0%, rgba(212, 165, 116, 0.85) 100%);
}

.brands-section h2,
.brands-section .section-heading {
  color: var(--white);
}

.brands-note {
  color: rgba(255, 255, 255, 0.85);
}

.brands-section h2 {
  margin-bottom: var(--space-lg);
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-md);
}

.brand-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: var(--space-md);
  padding: var(--space-lg);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  transition: all var(--duration) var(--ease);
  backdrop-filter: blur(4px);
}

.brand-item:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.15);
}

.brand-logo {
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.brand-logo img {
  max-width: 90%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(0.8);
  opacity: 0.85;
  transition: all var(--duration) var(--ease);
}

.brand-item:hover .brand-logo img {
  filter: grayscale(0);
  opacity: 1;
}

.brand-item p {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  transition: color var(--duration) var(--ease);
}

.brand-item:hover p {
  color: var(--white);
}

.brands-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-style: italic;
}

/* --- Values section --- */
.values-section {
  padding: var(--space-2xl) 0;
  background: linear-gradient(135deg, rgba(155, 76, 110, 0.08) 0%, rgba(212, 165, 116, 0.06) 100%);
}

.values-section h2,
.values-section .section-heading {
  color: var(--accent);
}

.values-section h2 {
  margin-bottom: var(--space-xl);
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.value-card {
  padding: var(--space-lg);
  border: 1px solid var(--border);
  transition: border-color var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}

.value-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 24px rgba(155, 76, 110, 0.12);
}

.value-card h3 {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-secondary);
  margin-bottom: var(--space-sm);
  font-weight: 600;
}

.value-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --- Services section --- */
.services-section {
  padding: var(--space-2xl) 0;
  background: linear-gradient(135deg, var(--accent) 0%, rgba(155, 76, 110, 0.9) 100%);
}

.services-section h2,
.services-section .section-heading {
  color: var(--white);
}

.services-section .service-card p {
  color: #FFFFFF;
  line-height: 1.6;
}

.services-section h2 {
  margin-bottom: var(--space-xl);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.service-card {
  padding: var(--space-lg);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all var(--duration) var(--ease);
}

.service-card:hover {
  border-color: var(--accent-secondary);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.service-card h3 {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-secondary);
  margin-bottom: var(--space-sm);
  font-weight: 600;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
