@import url('https://fonts.googleapis.com/css2?family=Crimson+Pro:ital,wght@0,400;0.500;0,600;0,700;1,400;1,500;1,600;1,700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --el-primary: #7a1d2c;
    --el-primary-dark: #5c1421;
    --el-secondary: #f7f1e7;
    --el-accent: #a855f7;
    --el-text-dark: #1f2937;
    --el-text-light: #f9fafb;
    --el-surface: #f7f1e7;
    --el-border: #e2e8f0;
    --el-white: #ffffff;
    --el-black: #000000;
    --el-spacing-xxs: 4px;
    --el-spacing-xs: 8px;
    --el-spacing-sm: 16px;
    --el-spacing-md: 24px;
    --el-spacing-lg: 32px;
    --el-spacing-xl: 48px;
    --el-spacing-xxl: 64px;
    --el-spacing-xxxl: 96px;
    --el-spacing-xxxxl: 128px;
    --el-border-radius-sm: 4px;
    --el-border-radius-md: 8px;
    --el-border-radius-lg: 12px;
    --el-transition-duration: 0.25s;
    --el-shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.1);
    --el-shadow-md: 0 4px 6px rgba(0,0,0,0.1), 0 2px 4px rgba(0,0,0,0.06);
    --el-shadow-lg: 0 10px 15px rgba(0,0,0,0.1), 0 4px 6px rgba(0,0,0,0.05);
    --el-shadow-card: 0 4px 20px rgba(0,0,0,0.04), 0 1px 3px rgba(0,0,0,0.06);
}

/* Base Reset & Typography */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem; /* 18px */
    line-height: 1.75;
    color: var(--el-text-dark);
    background-color: var(--el-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::-moz-selection {
    background-color: var(--el-primary);
    color: var(--el-white);
}

::selection {
    background-color: var(--el-primary);
    color: var(--el-white);
}

/* Editorial Typography Scale */
h1, .el-h1 {
    font-family: 'Crimson Pro', serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem); /* 40px to 72px */
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.05;
    color: var(--el-text-dark);
}

h1 em, .el-h1 em {
    font-style: italic;
    color: var(--el-primary);
}

h2, .el-h2 {
    font-family: 'Crimson Pro', serif;
    font-size: clamp(2rem, 3.5vw, 3rem); /* 32px to 48px */
    font-weight: 600;
    letter-spacing: -0.015em;
    line-height: 1.15;
    color: var(--el-text-dark);
    margin-bottom: var(--el-spacing-lg);
}

h3, .el-h3 {
    font-family: 'Crimson Pro', serif;
    font-size: 1.75rem; /* 28px */
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.3;
    color: var(--el-text-dark);
    margin-bottom: var(--el-spacing-md);
}

h4, .el-h4 {
    font-family: 'Crimson Pro', serif;
    font-size: 1.375rem; /* 22px */
    font-weight: 500;
    line-height: 1.4;
    color: var(--el-text-dark);
    margin-bottom: var(--el-spacing-sm);
}

p {
    margin-bottom: var(--el-spacing-md);
    max-width: 65ch;
}

a {
    color: var(--el-primary);
    text-decoration: none;
    transition: color var(--el-transition-duration) ease, transform var(--el-transition-duration) ease;
}

a:hover {
    color: var(--el-primary-dark);
    text-decoration: underline;
}

strong {
    font-weight: 600;
}

em {
    font-style: italic;
}

ul {
    list-style: none;
    margin-bottom: var(--el-spacing-md);
}

ul li {
    padding-left: var(--el-spacing-sm);
    position: relative;
}

ul li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--el-primary);
}

.el-check-list {
    list-style: none;
    padding: 0;
}

.el-check-item {
    display: flex;
    align-items: center;
    margin-bottom: var(--el-spacing-sm);
    font-size: 1.0625rem;
}

.el-check-item .el-icon {
    width: 20px;
    height: 20px;
    margin-right: var(--el-spacing-xs);
    flex-shrink: 0;
    color: var(--el-primary);
}

.el-subheading {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--el-text-dark);
    margin-bottom: var(--el-spacing-xl);
    max-width: 70ch;
}

.el-text-center {
    text-align: center;
}

/* Layout */
.el-container {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--el-spacing-md);
    padding-right: var(--el-spacing-md);
}

.el-section {
    padding-top: var(--el-spacing-xxxl);
    padding-bottom: var(--el-spacing-xxxl);
    position: relative;
}

.el-section-alt {
    background-color: var(--el-surface);
}

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

.el-grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.el-grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.el-grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.el-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--el-spacing-md);
}

/* Buttons */
.el-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--el-spacing-sm) var(--el-spacing-lg);
    border-radius: var(--el-border-radius-sm);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: background-color var(--el-transition-duration) ease, color var(--el-transition-duration) ease, border-color var(--el-transition-duration) ease, transform var(--el-transition-duration) ease, box-shadow var(--el-transition-duration) ease;
    white-space: nowrap;
    border: 1px solid transparent;
}

.el-button-primary {
    background-color: var(--el-primary);
    color: var(--el-white);
}

.el-button-primary:hover {
    background-color: var(--el-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--el-shadow-sm);
}

.el-button-secondary {
    background-color: var(--el-surface);
    color: var(--el-primary);
    border-color: var(--el-primary);
}

.el-button-secondary:hover {
    background-color: var(--el-primary);
    color: var(--el-white);
    transform: translateY(-2px);
    box-shadow: var(--el-shadow-sm);
}

.el-button-outline {
    background-color: transparent;
    color: var(--el-primary);
    border-color: var(--el-primary);
}

.el-button-outline:hover {
    background-color: var(--el-primary);
    color: var(--el-white);
    transform: translateY(-2px);
    box-shadow: var(--el-shadow-sm);
}

.el-link {
    color: var(--el-primary);
    text-decoration: underline;
    font-size: 1rem;
    font-weight: 500;
}

.el-link:hover {
    color: var(--el-primary-dark);
    transform: translateY(-1px);
}

/* Icons */
.el-icon {
    width: 24px;
    height: 24px;
    vertical-align: middle;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.el-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: var(--el-spacing-xl);
    height: var(--el-spacing-xl);
    border-radius: var(--el-border-radius-sm);
    background-color: var(--el-primary-light);
    color: var(--el-primary);
}

.el-icon-large {
    width: 48px;
    height: 48px;
    color: var(--el-primary);
    stroke-width: 1.5;
}

/* Cards */
.el-card {
    background-color: var(--el-white);
    border-radius: var(--el-border-radius-sm);
    box-shadow: var(--el-shadow-card);
    padding: var(--el-spacing-lg);
    transition: transform var(--el-transition-duration) ease, box-shadow var(--el-transition-duration) ease;
}

.el-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08), 0 2px 5px rgba(0,0,0,0.08);
}

.el-card-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.el-card-feature .el-icon-large {
    margin-bottom: var(--el-spacing-md);
}

.el-card-feature h3 {
    margin-bottom: var(--el-spacing-sm);
}

.el-card-service {
    display: flex;
    flex-direction: column;
    gap: var(--el-spacing-md);
}

.el-card-service .el-icon-large {
    margin-bottom: var(--el-spacing-xs);
}

.el-card-process {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Header & Navigation */
.el-header {
    background-color: var(--el-surface);
    padding: var(--el-spacing-sm) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--el-shadow-sm);
}

.el-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.el-logo {
    font-family: 'Crimson Pro', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--el-text-dark);
    text-decoration: none;
}

.el-logo span {
    font-style: italic;
    color: var(--el-primary);
}

.el-nav-list {
    display: flex;
    gap: var(--el-spacing-lg);
}

.el-nav-item {
    list-style: none;
}

.el-nav-link {
    color: var(--el-text-dark);
    font-weight: 500;
    padding: var(--el-spacing-xs) 0;
    position: relative;
}

.el-nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--el-primary);
    transition: width var(--el-transition-duration) ease;
}

.el-nav-link:hover::after {
    width: 100%;
}

.el-mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: var(--el-spacing-lg);
    cursor: pointer;
    color: var(--el-text-dark);
    padding: var(--el-spacing-xs);
}

/* Hero */
.el-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--el-spacing-xxxl) 0;
    background-color: var(--el-surface);
    overflow: hidden;
    text-align: center;
    flex-direction: column;
}

.el-hero-content {
    max-width: 900px;
    z-index: 10;
    position: relative;
}

.el-hero-text {
    margin-bottom: var(--el-spacing-xl);
}

.el-hero-text .el-h1 {
    margin-bottom: var(--el-spacing-md);
}

.el-hero-text .el-hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    font-weight: 400;
    line-height: 1.6;
    max-width: 75ch;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: var(--el-spacing-lg);
}

.el-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.6;
}

.el-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(247, 241, 231, 0.8) 0%, rgba(247, 241, 231, 0.5) 50%, rgba(247, 241, 231, 0.8) 100%);
    z-index: 5;
}

.el-hero .el-button {
    margin-top: var(--el-spacing-md);
}

/* Logo Strip */
.el-logo-strip {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--el-spacing-xl);
    margin-top: var(--el-spacing-xxl);
    padding: var(--el-spacing-md) 0;
    background-color: var(--el-surface);
    border-top: 1px solid var(--el-border);
    width: 100%;
    z-index: 10;
}

.el-logo-strip img {
    max-height: 40px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.55;
    transition: opacity var(--el-transition-duration) ease;
}

.el-logo-strip img:hover {
    opacity: 0.8;
}

/* Use Case Tabs */
.el-tabs-container {
    display: flex;
    flex-direction: column;
    gap: var(--el-spacing-lg);
}

.el-tab-triggers {
    display: flex;
    justify-content: center;
    margin-bottom: var(--el-spacing-xl);
    border-bottom: 2px solid var(--el-border);
    flex-wrap: wrap;
    gap: var(--el-spacing-md);
}

.el-tab-trigger {
    padding: var(--el-spacing-sm) var(--el-spacing-md);
    cursor: pointer;
    font-weight: 500;
    color: var(--el-text-dark);
    position: relative;
    transition: color var(--el-transition-duration) ease;
    flex-shrink: 0;
}

.el-tab-trigger:hover {
    color: var(--el-primary);
}

.el-tab-trigger.active {
    color: var(--el-primary);
}

.el-tab-trigger.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--el-primary);
}

.el-tab-content {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: var(--el-spacing-xl);
    align-items: center;
}

.el-tab-content.active {
    display: grid;
}

.el-tab-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--el-border-radius-sm);
    box-shadow: var(--el-shadow-md);
}

/* Before/After */
.el-before-after-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--el-spacing-lg);
}

.el-before-col, .el-after-col {
    padding: var(--el-spacing-xl);
    border-radius: var(--el-border-radius-sm);
}

.el-before-col {
    background-color: #fce8e8; /* Light red tint */
}

.el-after-col {
    background-color: #e8fce8; /* Light green tint */
}

.el-before-col h3, .el-after-col h3 {
    text-align: center;
    margin-bottom: var(--el-spacing-lg);
}

.el-before-col .el-check-item .el-icon {
    color: #9d1515;
}

.el-after-col .el-check-item .el-icon {
    color: #256a45;
}

/* Service List Detailed */
.el-service-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--el-spacing-lg);
}

.el-card-service .el-icon-large {
    margin-bottom: var(--el-spacing-md);
    color: var(--el-primary);
}

.el-card-service ul {
    list-style: none;
    padding-left: 0;
}

.el-card-service ul li {
    display: flex;
    align-items: flex-start;
    margin-bottom: var(--el-spacing-xs);
}

.el-card-service ul li .el-icon {
    width: 18px;
    height: 18px;
    margin-right: var(--el-spacing-xs);
    color: var(--el-primary);
    flex-shrink: 0;
}

/* Social Logo Quote Combo */
.el-social-logo-row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--el-spacing-xl);
    margin-bottom: var(--el-spacing-xxl);
}

.el-social-logo-row img {
    max-height: 50px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: opacity var(--el-transition-duration) ease;
}

.el-social-logo-row img:hover {
    opacity: 0.9;
}

.el-testimonial-card {
    background-color: var(--el-white);
    border-radius: var(--el-border-radius-sm);
    box-shadow: var(--el-shadow-lg);
    padding: var(--el-spacing-xl);
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.el-testimonial-card .el-testimonial-quote {
    font-size: 1.375rem;
    font-style: italic;
    color: var(--el-text-dark);
    margin-bottom: var(--el-spacing-lg);
    position: relative;
}

.el-testimonial-card .el-testimonial-quote::before {
    content: '“';
    font-family: 'Crimson Pro', serif;
    font-size: 4rem;
    color: var(--el-border);
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
    line-height: 1;
    opacity: 0.7;
}

.el-testimonial-card .el-testimonial-cite {
    font-weight: 600;
    color: var(--el-primary-dark);
    display: block;
    margin-top: var(--el-spacing-md);
}

.el-testimonial-card .el-testimonial-cite span {
    font-weight: 400;
    font-size: 0.9rem;
    color: var(--el-text-dark);
    display: block;
}

/* Comparison Table */
.el-comparison-table-wrapper {
    overflow-x: auto;
    width: 100%;
}

.el-comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: var(--el-spacing-lg);
    text-align: left;
}

.el-comparison-table th, .el-comparison-table td {
    padding: var(--el-spacing-sm) var(--el-spacing-md);
    border: 1px solid var(--el-border);
}

.el-comparison-table th {
    background-color: var(--el-surface);
    font-weight: 600;
    color: var(--el-text-dark);
    font-family: 'Crimson Pro', serif;
}

.el-comparison-table td {
    vertical-align: middle;
}

.el-comparison-table .el-our-column {
    background-color: rgba(122, 29, 44, 0.1);
    font-weight: 500;
}

.el-comparison-table .el-icon {
    width: 20px;
    height: 20px;
    display: block;
    margin: 0 auto;
}

.el-comparison-table .el-icon-check {
    color: #256a45;
}

.el-comparison-table .el-icon-cross {
    color: #9d1515;
}

/* Team Grid */
.el-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--el-spacing-lg);
}

.el-team-member-card {
    text-align: center;
    background-color: var(--el-white);
    border-radius: var(--el-border-radius-sm);
    box-shadow: var(--el-shadow-card);
    padding: var(--el-spacing-lg);
    transition: transform var(--el-transition-duration) ease, box-shadow var(--el-transition-duration) ease;
}

.el-team-member-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08), 0 2px 5px rgba(0,0,0,0.08);
}

.el-team-member-card img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: var(--el-border-radius-sm);
    margin-bottom: var(--el-spacing-md);
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.el-team-member-card h4 {
    margin-bottom: var(--el-spacing-xs);
    font-family: 'Crimson Pro', serif;
    font-size: 1.25rem;
}

.el-team-member-card .el-role {
    display: block;
    color: var(--el-primary);
    font-weight: 500;
    margin-bottom: var(--el-spacing-xs);
    font-size: 0.95rem;
}

.el-team-member-card .el-bio {
    font-size: 0.9rem;
    color: #4a5568;
    margin-bottom: var(--el-spacing-md);
    line-height: 1.5;
}

.el-social-links {
    display: flex;
    justify-content: center;
    gap: var(--el-spacing-sm);
}

.el-social-links a {
    color: var(--el-text-dark);
    transition: color var(--el-transition-duration) ease;
}

.el-social-links a:hover {
    color: var(--el-primary);
}

/* Two-Column FAQ */
.el-faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--el-spacing-md);
}

.el-faq-item {
    background-color: var(--el-white);
    border-radius: var(--el-border-radius-sm);
    box-shadow: var(--el-shadow-card);
    padding: var(--el-spacing-md);
    cursor: pointer;
    border: 1px solid var(--el-border);
    transition: border-color var(--el-transition-duration) ease;
}

.el-faq-item:hover {
    border-color: var(--el-primary);
}

.el-faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--el-text-dark);
    font-family: 'Crimson Pro', serif;
    font-size: 1.125rem;
}

.el-faq-q::after {
    content: '+';
    font-size: 1.5rem;
    transition: transform var(--el-transition-duration) ease;
}

.el-faq-item.active .el-faq-q::after {
    transform: rotate(45deg);
}

.el-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    color: #4a5568;
    font-size: 1rem;
    line-height: 1.6;
    padding-top: 0;
}

.el-faq-item.active .el-faq-a {
    max-height: 500px; /* Sufficiently large value */
    padding-top: var(--el-spacing-sm);
}

/* CTA Calendar Book */
.el-cta {
    background-color: var(--el-primary);
    color: var(--el-white);
    padding: var(--el-spacing-xxxl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.el-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255,255,255,0.05) 5%, transparent 60%);
  opacity: 0.8;
  animation: rotateGradient 30s linear infinite;
  pointer-events: none;
}

@keyframes rotateGradient {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.el-cta-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
}

.el-cta .el-h2 {
    color: var(--el-white);
    margin-bottom: var(--el-spacing-md);
}

.el-cta .el-hero-subtitle {
    color: var(--el-white);
    margin-bottom: var(--el-spacing-xl);
}

.el-cta .el-button {
    background-color: var(--el-white);
    color: var(--el-primary);
    border-radius: var(--el-border-radius-sm);
    padding: var(--el-spacing-md) var(--el-spacing-xl);
    font-size: 1.125rem;
}

.el-cta .el-button:hover {
    background-color: #f0f0f0;
    color: var(--el-primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--el-shadow-md);
}

.el-cta-microcopy {
    margin-top: var(--el-spacing-md);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Footer */
.el-footer {
    background-color: var(--el-text-dark);
    color: var(--el-white);
    padding-top: var(--el-spacing-xxxl);
    position: relative;
}

.el-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--el-spacing-lg);
    padding-bottom: var(--el-spacing-xxl);
}

.el-footer-col h4 {
    color: var(--el-white);
    font-family: 'Crimson Pro', serif;
    font-size: 1.25rem;
    margin-bottom: var(--el-spacing-md);
}

.el-footer-col p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--el-spacing-sm);
}

.el-footer-col a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color var(--el-transition-duration) ease;
    font-size: 0.95rem;
}

.el-footer-col a:hover {
    color: var(--el-primary);
    text-decoration: underline;
}

.el-footer-list {
    list-style: none;
    padding: 0;
}

.el-footer-list li {
    margin-bottom: var(--el-spacing-xs);
}

.el-footer-bottom {
    text-align: center;
    padding: var(--el-spacing-md) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: var(--el-spacing-lg);
}

/* Form Styling */
.el-contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--el-spacing-md);
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--el-white);
    padding: var(--el-spacing-xl);
    border-radius: var(--el-border-radius-sm);
    box-shadow: var(--el-shadow-lg);
}

.el-form-group {
    position: relative;
}

.el-form-label {
    display: block;
    margin-bottom: var(--el-spacing-xs);
    font-weight: 500;
    color: var(--el-text-dark);
}

.el-form-input, .el-form-textarea {
    width: 100%;
    padding: var(--el-spacing-sm);
    border: 1px solid var(--el-border);
    border-radius: var(--el-border-radius-sm);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--el-text-dark);
    transition: border-color var(--el-transition-duration) ease, box-shadow var(--el-transition-duration) ease;
}

.el-form-input:focus, .el-form-textarea:focus {
    outline: none;
    border-color: var(--el-primary);
    box-shadow: 0 0 0 3px rgba(122, 29, 44, 0.2);
}

.el-form-textarea {
    min-height: 120px;
    resize: vertical;
}

.el-form-error {
    color: #9d1515;
    font-size: 0.875rem;
    margin-top: var(--el-spacing-xs);
    display: none;
}

.el-form-success {
    color: #256a45;
    font-size: 1rem;
    margin-top: var(--el-spacing-md);
    text-align: center;
    display: none;
    background-color: #e8fce8;
    padding: var(--el-spacing-sm);
    border-radius: var(--el-border-radius-sm);
}

/* Editorial Moments */
.el-pullquote {
    font-family: 'Crimson Pro', serif;
    font-size: 2.25rem;
    line-height: 1.3;
    font-style: italic;
    text-align: center;
    max-width: 800px;
    margin: var(--el-spacing-xxxl) auto;
    color: var(--el-text-dark);
    position: relative;
}

.el-pullquote::before {
    content: '“';
    font-size: 6rem;
    color: var(--el-border);
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
    line-height: 1;
    opacity: 0.7;
}

.el-pullquote p {
    position: relative;
    z-index: 1;
    max-width: none;
}

.el-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: var(--el-spacing-lg);
    text-align: center;
    margin-top: var(--el-spacing-xxl);
}

.el-stat-item {
    padding: var(--el-spacing-md);
    background-color: var(--el-surface);
    border-radius: var(--el-border-radius-sm);
}

.el-stat-number {
    font-family: 'Crimson Pro', serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    color: var(--el-primary);
    line-height: 1;
    margin-bottom: var(--el-spacing-xs);
}

.el-stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--el-text-dark);
    font-weight: 500;
}

/* Fade-in Animation */
.el-animate {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.el-animate.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Decor Slots */
[data-decor-slot] {
    position: relative;
    display: inline-block; /* Essential for correct positioning */
}

.headline_scribble {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 8px;
    color: var(--el-primary);
    transform: rotate(-2deg);
}

/* Responsive */
@media (max-width: 1024px) {
    .el-nav-list {
        gap: var(--el-spacing-md);
    }

    .el-hero {
        min-height: 70vh;
    }

    .el-hero-text .el-h1 {
        font-size: clamp(2rem, 5vw, 3.5rem);
    }

    .el-tab-content {
        grid-template-columns: 1fr;
    }

    .el-before-after-grid {
        grid-template-columns: 1fr;
    }

    .el-footer-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .el-section {
        padding-top: var(--el-spacing-xxl);
        padding-bottom: var(--el-spacing-xxl);
    }
}

@media (max-width: 768px) {
    .el-nav-list {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: var(--el-surface);
        box-shadow: var(--el-shadow-md);
        padding: var(--el-spacing-md) 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
    }

    .el-nav-list.active {
        max-height: 300px; /* Adjust as needed */
    }

    .el-nav-item {
        text-align: center;
        margin: var(--el-spacing-sm) 0;
    }

    .el-mobile-toggle {
        display: block;
    }

    .el-hero {
        min-height: 60vh;
        padding-top: var(--el-spacing-xxl);
        padding-bottom: var(--el-spacing-xxl);
    }

    .el-hero-text .el-h1 {
        font-size: clamp(2rem, 6vw, 2.8rem);
    }

    .el-hero-text .el-hero-subtitle {
        font-size: 1.125rem;
    }

    .el-grid-2, .el-grid-3, .el-grid-4 {
        grid-template-columns: 1fr;
    }

    .el-logo-strip {
        gap: var(--el-spacing-lg);
        margin-top: var(--el-spacing-xl);
    }

    .el-pullquote {
        font-size: 1.75rem;
        margin: var(--el-spacing-xxl) auto;
    }

    .el-faq-grid {
        grid-template-columns: 1fr;
    }

    .el-cta {
        padding: var(--el-spacing-xxl) 0;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 1.0625rem;
    }

    .el-container {
        padding-left: var(--el-spacing-sm);
        padding-right: var(--el-spacing-sm);
    }

    .el-h1 {
        font-size: clamp(2.25rem, 8vw, 2.5rem);
    }

    .el-h2 {
        font-size: clamp(1.75rem, 7vw, 2rem);
    }

    .el-hero-text .el-hero-subtitle {
        font-size: 1rem;
    }

    .el-button {
        font-size: 0.9rem;
        padding: var(--el-spacing-sm) var(--el-spacing-md);
    }

    .el-logo-strip img {
        max-height: 30px;
    }

    .el-testimonial-card {
        padding: var(--el-spacing-lg);
    }

    .el-testimonial-card .el-testimonial-quote {
        font-size: 1.125rem;
    }

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

    .el-contact-form {
        padding: var(--el-spacing-md);
    }
}


/* === Quality polish === */
.el-card, [class*="el-card"] { transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.2s ease; }
.el-card:hover, [class*="el-card"]:hover { border-color: #0891b2; transform: none; box-shadow: none; }

@keyframes elFadeInRight { from { opacity:0;transform:translateX(-24px) } to { opacity: 1; transform: none; } }
.el-animate { opacity: 0; }
.el-animate.el-visible { animation: elFadeInRight .7s ease forwards; }

/* FAQ collapsed-by-default — hard fallback (any language, any topic) */
.el-faq-a, [class*="faq-a"], [class*="faq-answer"] { display: none !important; max-height: 0; overflow: hidden; padding: 0 22px; transition: none; }
.el-faq-item.active .el-faq-a, [class*="faq-item"].active [class*="faq-a"], [class*="faq-item"].active [class*="faq-answer"] { display: block !important; max-height: none !important; padding: 0 22px 18px; }
.el-faq-q, [class*="faq-q"], [class*="faq-question"] { cursor: pointer; user-select: none; }
.el-faq-q *, [class*="faq-q"] * { pointer-events: none; }

/* === PREMIUM SCAFFOLD (class-contract baseline) === */
/* Layout */
.el-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.el-section { padding: 96px 0; background: #ecfeff; }
.el-section-alt { padding: 96px 0; background: color-mix(in srgb, #0891b2 4%, #ecfeff); }
.el-grid { display: grid; gap: 32px; }
.el-grid-2 { display: grid; gap: 32px; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.el-grid-3 { display: grid; gap: 32px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.el-grid-4 { display: grid; gap: 24px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.el-text-center { text-align: center; }
/* Header / Nav */
.el-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,0.94); backdrop-filter: saturate(180%) blur(12px); border-bottom: 1px solid color-mix(in srgb, #164e63 8%, transparent); }
.el-header > .el-container, .el-header .el-container { display: flex; align-items: center; gap: 32px; padding-top: 12px; padding-bottom: 12px; min-height: 64px; }
.el-brand, .el-logo { display: inline-flex; align-items: center; gap: 10px; font-family: Nunito; font-weight: 700; font-size: 1.05rem; line-height: 1; color: #0891b2; letter-spacing: -0.015em; text-decoration: none; flex-shrink: 0; max-width: 220px; margin-right: 24px; }
.el-brand-mark { display: inline-flex; color: #0891b2; flex-shrink: 0; }
.el-brand-mark svg { display: block; width: 24px; height: 24px; }
.el-brand-name { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; padding-left: 2px; }
.el-nav-list, .el-nav-links { display: flex; gap: 28px; list-style: none; margin: 0 0 0 auto; padding: 0; align-items: center; }
.el-nav-link { color: #164e63; font-weight: 500; font-size: 0.95rem; padding: 6px 0; position: relative; text-decoration: none; }
.el-nav-link + .el-nav-link { margin-left: 0; }
.el-nav-link:hover { color: #0891b2; }
.el-mobile-toggle { display: none; background: none; border: 0; padding: 6px; cursor: pointer; margin-left: auto; font-size: 1.4rem; line-height: 1; }
/* Hero */
.el-hero { padding: 112px 0 96px; background: radial-gradient(circle at 82% 18%, color-mix(in srgb, #0891b2 12%, transparent), transparent 34%), linear-gradient(180deg, color-mix(in srgb, #0891b2 7%, #ecfeff) 0%, #ecfeff 100%); position: relative; overflow: hidden; }
/* Hero hardening — kill AI-generated giant ghost/background text & accidental absolute-positioned mockups */
.el-hero [class*="ghost"], .el-hero [class*="bg-text"], .el-hero [class*="watermark"], .el-hero [class*="hero-bg"], .el-hero [aria-hidden="true"][class*="text"], .el-hero [data-decorative="true"] { display: none !important; }
.el-hero .el-hero-image, .el-hero .el-dashboard-mockup { position: relative !important; }
.el-hero .el-hero-image { max-width: 100%; }
.el-hero .el-hero-image > * { max-width: 100%; }
.el-hero .el-stats { position: static !important; }
.el-hero > .el-container { max-width: 1200px; }
.el-hero h1, .el-hero .el-h1 { font-family: Nunito; font-size: clamp(2.75rem, 5.2vw, 4.75rem); line-height: 1.04; letter-spacing: -0.025em; font-weight: 800; color: #164e63; margin: 0; max-width: 720px; width: 100%; text-wrap: balance; word-break: normal; overflow-wrap: break-word; hyphens: none; }
.el-hero p, .el-hero .el-hero-sub, .el-hero .el-hero-subtitle { font-size: clamp(1.125rem, 1.5vw, 1.3rem); line-height: 1.7; color: #67e8f9; max-width: 48ch; margin: 0; }
.el-hero-content { display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr); gap: 72px; align-items: center; }
.el-hero-text { display: flex; flex-direction: column; gap: 24px; align-items: flex-start; }
.el-hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.el-hero-image { position: relative; }
.el-hero-image::before { content: ''; position: absolute; inset: 22px -18px -18px 22px; border-radius: 24px; background: color-mix(in srgb, #0891b2 12%, transparent); z-index: 0; }
.el-hero-image img { position: relative; z-index: 1; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 24px; box-shadow: 0 36px 90px -34px rgba(0,0,0,0.42), 0 2px 10px rgba(0,0,0,0.08); }
.el-hero-subtitle { font-size: 1.25rem; line-height: 1.6; color: #67e8f9; max-width: 60ch; }
.el-h1 { font-family: Nunito; font-size: clamp(2.5rem, 5vw, 4.25rem); line-height: 1.05; letter-spacing: -0.02em; font-weight: 800; color: #164e63; margin: 0; }
.el-h2 { font-family: Nunito; font-size: clamp(2rem, 3.5vw, 3rem); line-height: 1.15; letter-spacing: -0.015em; font-weight: 700; color: #164e63; margin: 0 0 24px; }
.el-h3 { font-family: Nunito; font-size: 1.5rem; line-height: 1.3; font-weight: 700; color: #164e63; margin: 0 0 12px; }
.el-subheading { font-size: 1.125rem; line-height: 1.7; color: #67e8f9; max-width: 720px; margin: 0 auto 64px; }
/* Buttons */
.el-button { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: 10px; font-weight: 600; font-size: 1rem; text-decoration: none; cursor: pointer; border: 2px solid transparent; transition: all 0.25s cubic-bezier(0.4,0,0.2,1); white-space: nowrap; line-height: 1; }
.el-button-primary { background: #0891b2; color: #fff; border-color: #0891b2; }
.el-button-primary:hover { background: #0e7490; border-color: #0e7490; color: #fff; transform: translateY(-2px); box-shadow: 0 12px 24px -8px color-mix(in srgb, #0891b2 50%, transparent); }
.el-button-secondary { background: #0e7490; color: #fff; border-color: #0e7490; }
.el-button-secondary:hover { transform: translateY(-2px); filter: brightness(1.05); color: #fff; }
.el-button-outline { background: transparent; color: #0891b2; border-color: #0891b2; }
.el-button-outline:hover { background: #0891b2; color: #fff; }
.el-link { color: #0891b2; font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
.el-link:hover { gap: 10px; }
/* Cards */
.el-card { background: #fff; border: 1px solid color-mix(in srgb, #164e63 6%, transparent); border-radius: 14px; padding: 32px; transition: transform 0.3s ease, box-shadow 0.3s ease; box-shadow: 0 4px 20px rgba(0,0,0,0.04), 0 1px 3px rgba(0,0,0,0.06); display: flex; flex-direction: column; gap: 16px; }
.el-card:hover { transform: translateY(-4px); box-shadow: 0 24px 48px -16px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.06); }
.el-card-feature, .el-card-service, .el-card-process { text-align: left; }
/* Icons */
.el-icon-wrapper { display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 56px; border-radius: 12px; background: color-mix(in srgb, #0891b2 10%, transparent); color: #0891b2; }
.el-icon-wrapper svg, .el-icon-wrapper .el-icon { width: 28px; height: 28px; stroke: #0891b2; }
.el-icon { width: 20px; height: 20px; stroke: currentColor; flex-shrink: 0; }
.el-icon-large { width: 48px; height: 48px; stroke: #0891b2; }
/* Check list */
.el-check-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 16px; }
.el-check-item { display: flex; align-items: flex-start; gap: 12px; line-height: 1.6; }
.el-check-item .el-icon { color: #0891b2; margin-top: 4px; }
/* Editorial */
.el-pullquote { font-family: Nunito; font-style: italic; font-size: clamp(1.5rem, 2.5vw, 2.25rem); line-height: 1.4; color: #164e63; max-width: 900px; margin: 64px auto; padding: 0 32px; position: relative; text-align: center; }
.el-pullquote::before { content: '"'; font-size: 6rem; line-height: 0.8; color: #0891b2; opacity: 0.3; position: absolute; left: 0; top: -16px; }
.el-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 48px; padding: 64px 0; }
.el-stat-item { text-align: center; }
.el-stat-number { display: block; font-family: Nunito; font-size: clamp(3rem, 5vw, 4.5rem); font-weight: 800; color: #0891b2; line-height: 1; letter-spacing: -0.03em; }
.el-stat-label { display: block; margin-top: 12px; font-size: 0.875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: #67e8f9; }
/* Testimonials */
.el-testimonial-grid { display: grid; gap: 32px; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.el-testimonial-card { background: #fff; padding: 32px; border-radius: 14px; box-shadow: 0 4px 20px rgba(0,0,0,0.04); border: 1px solid color-mix(in srgb, #164e63 6%, transparent); }
.el-testimonial-quote { font-style: italic; line-height: 1.7; color: #164e63; margin-bottom: 16px; }
.el-testimonial-cite { font-weight: 600; color: #0891b2; font-size: 0.95rem; }
.el-testimonial-stars { color: #a855f7; margin-bottom: 12px; }
/* FAQ */
.el-faq { display: flex; flex-direction: column; gap: 12px; max-width: 820px; margin: 0 auto; }
.el-faq-item { background: #fff; border: 1px solid color-mix(in srgb, #164e63 8%, transparent); border-radius: 12px; overflow: hidden; transition: box-shadow 0.2s ease; }
.el-faq-item:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
.el-faq-q { padding: 20px 24px; cursor: pointer; user-select: none; font-weight: 600; color: #164e63; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.el-faq-q::after { content: '+'; font-size: 1.5rem; color: #0891b2; transition: transform 0.3s ease; flex-shrink: 0; }
.el-faq-item.active .el-faq-q::after { transform: rotate(45deg); }
/* CTA */
.el-cta { padding: 96px 0; background: linear-gradient(135deg, #0891b2 0%, #0e7490 100%); color: #fff; text-align: center; }
.el-cta .el-h2, .el-cta h2 { color: #fff; }
.el-cta-content { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 24px; align-items: center; }
.el-cta .el-button-primary { background: #fff; color: #0891b2; border-color: #fff; }
.el-cta .el-button-primary:hover { background: #ecfeff; color: #0891b2; }
/* Form */
.el-form, .el-contact-form { display: flex; flex-direction: column; gap: 20px; width: min(100%, 680px); margin: 32px auto 0; background: #fff; padding: 44px; border-radius: 24px; border: 1px solid color-mix(in srgb, #164e63 7%, transparent); box-shadow: 0 30px 80px -34px rgba(0,0,0,0.32), 0 10px 28px -18px color-mix(in srgb, #0891b2 40%, transparent); text-align: left; color: #164e63; }
.el-form-row { display: grid; gap: 20px; grid-template-columns: 1fr 1fr; }
@media (max-width: 600px) { .el-form-row { grid-template-columns: 1fr; } }
.el-form-group { display: flex; flex-direction: column; gap: 8px; }
.el-form-label, .el-form label { font-weight: 600; font-size: 0.9rem; color: #164e63; letter-spacing: 0.01em; }
.el-form-input, .el-form-textarea, .el-form input:not([type="submit"]), .el-form textarea, .el-form select { padding: 15px 16px; border: 1.5px solid color-mix(in srgb, #164e63 12%, transparent); border-radius: 12px; font-size: 1rem; font-family: inherit; background: color-mix(in srgb, #0891b2 2%, #fff); color: #164e63; transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease; width: 100%; box-sizing: border-box; }
.el-form-input:hover, .el-form-textarea:hover { border-color: color-mix(in srgb, #0891b2 35%, transparent); }
.el-form-input:focus, .el-form-textarea:focus, .el-form input:focus, .el-form textarea:focus { outline: none; border-color: #0891b2; box-shadow: 0 0 0 4px color-mix(in srgb, #0891b2 18%, transparent); }
.el-form-textarea, .el-form textarea { min-height: 140px; resize: vertical; }
/* Form messages — HIDDEN BY DEFAULT, only shown when JS adds .is-visible or removes [hidden] */
.el-form-error, [class*="form-error"], [class*="form-message-error"] { display: none; color: #dc2626; font-size: 0.875rem; padding: 10px 12px; background: color-mix(in srgb, #dc2626 8%, transparent); border-radius: 8px; }
.el-form-success, [class*="form-success"], [class*="form-message-success"] { display: none; color: #047857; font-weight: 600; padding: 12px 14px; background: color-mix(in srgb, #059669 10%, transparent); border-radius: 8px; }
.el-form-error[hidden], .el-form-success[hidden], [class*="form-error"][hidden], [class*="form-success"][hidden] { display: none !important; }
.el-form-error.is-visible, .el-form-success.is-visible { display: block; }
.el-cta .el-form, .el-cta .el-contact-form { color: #164e63; }
.el-cta .el-form button[type="submit"], .el-cta .el-contact-form button[type="submit"] { background: #0891b2; color: #fff; border-color: #0891b2; }
/* Footer */
.el-footer { background: #164e63; color: color-mix(in srgb, #fff 80%, transparent); padding: 96px 0 32px; }
.el-footer .el-h3, .el-footer h3, .el-footer h4 { color: #fff; font-family: Nunito; font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 20px; }
.el-footer .el-logo { color: #fff; }
.el-footer-grid { display: grid; gap: 48px; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); margin-bottom: 64px; }
.el-footer-col { display: flex; flex-direction: column; gap: 12px; }
.el-footer-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.el-footer-link { color: color-mix(in srgb, #fff 70%, transparent); font-size: 0.95rem; }
.el-footer-link:hover { color: #fff; }
.el-footer-bottom { padding-top: 32px; border-top: 1px solid color-mix(in srgb, #fff 12%, transparent); font-size: 0.875rem; color: color-mix(in srgb, #fff 60%, transparent); text-align: center; }
.el-social-links { display: flex; gap: 16px; }
.el-social-links a { color: color-mix(in srgb, #fff 70%, transparent); }
.el-social-links a:hover { color: #fff; }
/* Responsive */
@media (max-width: 900px) {
  .el-hero { padding: 80px 0 64px; }
  .el-hero-content { grid-template-columns: 1fr; gap: 40px; }
  .el-section, .el-section-alt { padding: 64px 0; }
  .el-cta { padding: 64px 0; }
  .el-footer { padding: 64px 0 24px; }
}
@media (max-width: 720px) {
  .el-nav-list { display: none; }
  .el-mobile-toggle { display: inline-flex; }
  .el-nav.active .el-nav-list, .el-header.active .el-nav-list, .el-nav-list.active, .el-nav-links.active { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: #fff; padding: 24px; gap: 16px; box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
  .el-card { padding: 24px; }
  .el-form, .el-contact-form { padding: 28px; border-radius: 18px; }
}

/* === STYLE FAMILY: editorial_magazine === */
.el-hero { padding: 0; min-height: 70vh; position: relative; background-size: cover; background-position: center; }
.el-hero-content { position: absolute; inset: auto 0 0 0; padding: 64px 24px; background: linear-gradient(180deg, transparent, rgba(0,0,0,0.7)); color: #fff; }
.el-h1 { font-family: 'Merriweather', Georgia, serif; font-weight: 700; }
.el-card { border-radius: 4px; box-shadow: none; border-top: 4px solid #0891b2; }
.el-card img, .el-card-feature img { border-radius: 4px 4px 0 0; }
.el-button-primary { background: #111; color: #fff; border-radius: 0; }
.el-section-alt { background: color-mix(in srgb, #0891b2 6%, #ecfeff); }