:root {
  --color-bg: #f8f6f2;
  --color-bg-alt: #eef5f3;
  --color-surface: #ffffff;
  --color-text: #1a2e2e;
  --color-text-muted: #4a6363;
  --color-primary: #2d6a6a;
  --color-primary-dark: #1f4f4f;
  --color-accent: #6b9e5a;
  --color-accent-soft: #d4e8cc;
  --color-border: #d8e4e2;
  --color-highlight: #e8f4f1;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --shadow-sm: 0 2px 8px rgba(26, 46, 46, 0.06);
  --shadow-md: 0 12px 40px rgba(26, 46, 46, 0.1);
  --radius: 12px;
  --radius-lg: 20px;
  --max-width: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
}

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

a {
  color: var(--color-primary);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--color-primary-dark);
}

.container {
  width: min(100% - 2.5rem, var(--max-width));
  margin-inline: auto;
}

.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;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 246, 242, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.logo {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 2.2vw, 1.25rem);
  font-weight: 600;
  color: var(--color-primary-dark);
  text-decoration: none;
  letter-spacing: -0.02em;
  line-height: 1.2;
  max-width: 11rem;
}

.logo span[data-i18n="brand.logoLine2"] {
  color: var(--color-accent);
}

.nav-desktop {
  display: none;
  gap: 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-desktop a {
  color: var(--color-text);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
}

.nav-desktop a:hover {
  color: var(--color-primary);
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  border: none;
  background: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  border-radius: 1px;
  transition: transform 0.2s, opacity 0.2s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0 0 1rem;
  list-style: none;
  margin: 0;
}

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

.nav-mobile a {
  color: var(--color-text);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.btn-primary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary-dark);
  border: 2px solid var(--color-primary);
}

.btn-outline:hover {
  background: var(--color-highlight);
  color: var(--color-primary-dark);
}

/* Hero */
.hero {
  position: relative;
  min-height: 72vh;
  display: grid;
  align-items: center;
  padding: 3rem 0 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(26, 46, 46, 0.88) 0%,
    rgba(45, 106, 106, 0.72) 45%,
    rgba(26, 46, 46, 0.35) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  max-width: 36rem;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent-soft);
  margin-bottom: 1rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.hero p {
  font-size: 1.125rem;
  opacity: 0.95;
  margin: 0 0 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-actions .btn-outline {
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
}

.hero-actions .btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

/* Trust bar */
.trust-bar {
  background: var(--color-surface);
  border-block: 1px solid var(--color-border);
  padding: 1.5rem 0;
}

.trust-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.trust-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

.trust-icon {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--color-accent-soft);
  color: var(--color-primary-dark);
  display: grid;
  place-items: center;
  font-size: 1rem;
}

.trust-list strong {
  display: block;
  color: var(--color-text);
  font-size: 0.95rem;
}

.trust-list li > span > span[data-i18n] {
  display: block;
}

/* Sections */
.section {
  padding: 4.5rem 0;
}

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

.section-header {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 3rem;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  font-weight: 600;
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
  color: var(--color-primary-dark);
}

.section-header p {
  margin: 0;
  color: var(--color-text-muted);
}

/* Services */
.services-grid {
  display: grid;
  gap: 1.5rem;
}

.service-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.service-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.service-card-body {
  padding: 1.5rem;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
  color: var(--color-primary-dark);
}

.service-card p {
  margin: 0;
  font-size: 0.98rem;
  color: var(--color-text-muted);
}

/* About Eva */
.about-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.about-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  max-width: 380px;
  margin-inline: auto;
}

.about-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.about-photo.is-placeholder {
  background: linear-gradient(145deg, var(--color-highlight), var(--color-bg-alt));
  border: 2px dashed var(--color-border);
  min-height: 320px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 2rem;
}

.about-photo.is-placeholder .placeholder-label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.about-photo.is-placeholder p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  max-width: 16rem;
}

.about-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin: 0 0 0.25rem;
  color: var(--color-primary-dark);
}

.about-role {
  font-weight: 600;
  color: var(--color-accent);
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
}

.about-content p {
  color: var(--color-text-muted);
  margin: 0 0 1rem;
}

.about-quote {
  margin-top: 1.5rem;
  padding: 1.25rem 1.5rem;
  background: var(--color-surface);
  border-left: 4px solid var(--color-accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--color-primary-dark);
}

/* Feature split */
.feature-split {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.feature-split img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.feature-split h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--color-primary-dark);
  margin: 0 0 1rem;
}

.feature-split p {
  color: var(--color-text-muted);
  margin: 0 0 1rem;
}

.feature-list {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
}

.feature-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.65rem;
  color: var(--color-text);
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
}

/* CTA */
.cta {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #fff;
  text-align: center;
  padding: 4rem 1.5rem;
  border-radius: var(--radius-lg);
  margin: 0 auto;
  max-width: var(--max-width);
  width: min(100% - 2.5rem, var(--max-width));
}

.cta h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 0.75rem;
}

.cta p {
  margin: 0 auto 1.5rem;
  max-width: 32rem;
  opacity: 0.92;
}

.cta .btn-primary {
  background: #fff;
  color: var(--color-primary-dark);
}

.cta .btn-primary:hover {
  background: var(--color-accent-soft);
}

/* Contact */
.contact-grid {
  display: grid;
  gap: 2rem;
}

.contact-card {
  background: var(--color-surface);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}

.contact-card h3 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  color: var(--color-primary-dark);
}

.contact-card p {
  margin: 0 0 0.5rem;
  color: var(--color-text-muted);
}

.contact-card a {
  font-weight: 600;
  font-size: 1.1rem;
}

/* Language switcher */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.lang-switch {
  display: flex;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  overflow: hidden;
  background: var(--color-surface);
}

.lang-btn {
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.65rem;
  border: none;
  background: transparent;
  color: var(--color-text-muted);
  cursor: pointer;
}

.lang-btn.is-active {
  background: var(--color-primary);
  color: #fff;
}

.lang-btn:hover:not(.is-active) {
  background: var(--color-highlight);
  color: var(--color-primary-dark);
}

/* Contact action buttons */
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.btn-contact {
  font-size: 0.85rem;
  padding: 0.55rem 1rem;
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
}

.btn-whatsapp:hover {
  background: #1da851;
  color: #fff;
}

.btn-sms {
  background: var(--color-primary-dark);
  color: #fff;
}

.btn-sms:hover {
  background: var(--color-text);
  color: #fff;
}

.contact-note {
  font-size: 0.88rem;
  margin-top: 0.75rem !important;
  color: var(--color-text-muted);
}

/* Quote form */
.quote-section {
  max-width: 40rem;
  margin-inline: auto;
}

.quote-form {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.form-field {
  margin-bottom: 1.5rem;
}

.form-field > legend,
.form-field > label:first-child {
  display: block;
  font-weight: 600;
  color: var(--color-primary-dark);
  margin-bottom: 0.5rem;
  font-size: 0.98rem;
}

.form-hint {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  margin: -0.25rem 0 0.5rem;
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"],
.form-field input[type="date"],
.form-field textarea,
.form-field select {
  width: 100%;
  font-family: inherit;
  font-size: 1rem;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-bg);
  color: var(--color-text);
}

.form-field textarea {
  min-height: 5rem;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 1px;
  border-color: var(--color-primary);
}

.radio-group,
.checkbox-inline {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.radio-group label,
.checkbox-inline label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-weight: 400;
  color: var(--color-text);
  cursor: pointer;
}

.radio-group input,
.checkbox-inline input {
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.date-row {
  display: grid;
  gap: 1rem;
}

.form-status {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: var(--radius);
  font-size: 0.95rem;
}

.form-status--success {
  background: var(--color-accent-soft);
  color: var(--color-primary-dark);
}

.form-status--error {
  background: #fde8e8;
  color: #8b2e2e;
}

.quote-form .btn-primary {
  width: 100%;
  margin-top: 0.5rem;
}

@media (min-width: 640px) {
  .date-row {
    grid-template-columns: 1fr 1fr;
  }

  .radio-group--horizontal {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
  }
}

@media (min-width: 900px) {
  .contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 2rem;
    align-items: start;
  }
}

/* Footer */
.site-footer {
  background: var(--color-primary-dark);
  color: rgba(255, 255, 255, 0.85);
  padding: 2.5rem 0;
  margin-top: 4rem;
  font-size: 0.9rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}

.site-footer .logo {
  color: #fff;
}

.site-footer a {
  color: var(--color-accent-soft);
}

/* Responsive */
@media (min-width: 640px) {
  .trust-list {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 767px) {
  .header-cta {
    display: none;
  }
}

@media (min-width: 768px) {
  .logo {
    max-width: none;
    font-size: 1.2rem;
  }

  .nav-desktop {
    display: flex;
  }

  .nav-toggle,
  .nav-mobile {
    display: none !important;
  }

  .trust-list {
    grid-template-columns: repeat(4, 1fr);
  }

  .about-grid,
  .feature-split {
    grid-template-columns: 1fr 1.2fr;
  }

  .feature-split.reverse {
    grid-template-columns: 1.2fr 1fr;
  }

  .feature-split.reverse img {
    order: 2;
  }

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

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

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

/* Reviews page */
.page-hero {
  padding-bottom: 2rem;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  font-weight: 600;
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
  color: var(--color-primary-dark);
}

.reviews-list {
  max-width: 42rem;
  margin-inline: auto;
}

.review-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.review-quote {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.6;
  font-style: italic;
  color: var(--color-primary-dark);
  border: none;
  padding: 0;
}

.review-author {
  margin: 0;
}

.review-author cite {
  font-style: normal;
  font-weight: 600;
  color: var(--color-text);
  font-size: 0.98rem;
}
