:root {
  --olive: #4f5f3d;
  --sage: #7c8e67;
  --light-sage: #a8b695;
  --linen: #dccfbe;
  --ivory: #f7f4ee;
  --muted: #6b755b;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ivory);
  color: var(--olive);
  font-family: "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
}

::selection { background: var(--linen); color: var(--olive); }

.landing-shell {
  min-height: 92svh;
  position: relative;
  overflow: hidden;
  padding: 34px clamp(24px, 5vw, 76px) 28px;
  background:
    radial-gradient(circle at 74% 43%, rgba(220, 207, 190, .46), transparent 26%),
    linear-gradient(145deg, rgba(255, 255, 255, .68), transparent 38%),
    var(--ivory);
}

.landing-shell::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(79, 95, 61, .16);
  pointer-events: none;
}

.topbar, footer {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wordmark {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  letter-spacing: -.03em;
}

.wordmark span { color: var(--sage); font-style: italic; }

a.wordmark { color: inherit; text-decoration: none; }

.status {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.status span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sage);
  box-shadow: 0 0 0 5px rgba(124, 142, 103, .12);
  animation: pulse 2.8s ease-in-out infinite;
}

.hero {
  position: relative;
  z-index: 2;
  width: min(1240px, 100%);
  min-height: calc(92svh - 90px);
  margin: 18px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr);
  align-items: center;
  gap: clamp(44px, 7vw, 110px);
}

.hero-copy { padding: 52px 0; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 24px;
  color: var(--sage);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 38px;
  height: 1px;
  background: var(--sage);
}

h1 {
  max-width: 760px;
  margin: 0;
  color: var(--olive);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 6.15vw, 92px);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.055em;
}

h1 em { color: var(--sage); font-weight: 400; }

.intro {
  max-width: 540px;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.75;
}

.signature {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 38px;
  color: var(--sage);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  font-style: italic;
}

.signature-line { width: 64px; height: 1px; background: var(--light-sage); }

.brand-stage {
  position: relative;
  justify-self: center;
  width: min(100%, 520px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.logo-wrap {
  width: 78%;
  aspect-ratio: 1;
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-radius: 50%;
  box-shadow: 0 28px 80px rgba(79, 95, 61, .13), 0 0 0 12px rgba(255, 255, 255, .42);
  animation: reveal 1s cubic-bezier(.2,.8,.2,1) both;
}

.logo-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }

.orbit {
  position: absolute;
  border: 1px solid rgba(124, 142, 103, .38);
  border-radius: 50%;
  pointer-events: none;
}

.orbit-one { inset: 3%; border-right-color: transparent; transform: rotate(-18deg); }
.orbit-two { inset: 12%; border-left-color: transparent; transform: rotate(20deg); }

footer {
  padding-top: 20px;
  border-top: 1px solid rgba(79, 95, 61, .22);
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

footer p { margin: 0; }

.leaf {
  position: absolute;
  width: 68px;
  height: 26px;
  border-radius: 100% 0 100% 0;
  border: 1px solid rgba(124, 142, 103, .2);
  pointer-events: none;
}

.leaf-one { left: 4%; top: 31%; transform: rotate(-28deg); }
.leaf-two { right: 4%; top: 14%; transform: rotate(42deg) scale(.7); }

@keyframes pulse { 50% { opacity: .45; transform: scale(.78); } }
@keyframes reveal { from { opacity: 0; transform: translateY(18px) scale(.96); } }

@media (max-width: 900px) {
  .landing-shell { padding: 28px 30px 24px; }
  .hero { grid-template-columns: 1fr; gap: 0; padding: 24px 0 54px; }
  .hero-copy { padding: 36px 0 20px; text-align: center; }
  .eyebrow, .signature { justify-content: center; }
  .intro { margin-left: auto; margin-right: auto; }
  .brand-stage { width: min(88vw, 480px); }
}

@media (max-width: 560px) {
  .landing-shell { padding: 24px 22px 22px; }
  .landing-shell::before { inset: 9px; }
  .wordmark { font-size: 18px; }
  .status { font-size: 9px; letter-spacing: .12em; }
  .eyebrow { font-size: 10px; letter-spacing: .13em; }
  h1 { font-size: clamp(43px, 13vw, 64px); }
  .intro { font-size: 15px; }
  footer { gap: 12px; align-items: flex-end; }
  footer p:nth-child(2) { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}

/* Site navigation */

.site-nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  row-gap: 10px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(24px, 5vw, 76px);
  background: rgba(247, 244, 238, .88);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(79, 95, 61, .14);
}

.nav-lang-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%236b755b' fill='none' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  border: 1px solid rgba(79, 95, 61, .22);
  border-radius: 999px;
  padding: 5px 24px 5px 12px;
  color: var(--muted);
  font-family: inherit;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .04em;
  cursor: pointer;
  transition: color .2s ease, border-color .2s ease;
}

.nav-lang-select:hover, .nav-lang-select:focus {
  color: var(--olive);
  border-color: rgba(79, 95, 61, .45);
}

.nav-links {
  display: flex;
  gap: clamp(18px, 3vw, 34px);
  flex: 1;
  justify-content: center;
}

.nav-links a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  text-decoration: none;
  transition: color .2s ease;
}

.nav-links a:hover { color: var(--olive); }

.nav-cta {
  padding: 9px 20px;
  border: 1px solid var(--olive);
  border-radius: 999px;
  color: var(--olive);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background .2s ease, color .2s ease;
}

.nav-cta:hover { background: var(--olive); color: var(--ivory); }

.nav-login {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-decoration: none;
  white-space: nowrap;
  transition: color .2s ease;
}

.nav-login:hover { color: var(--olive); }

@media (max-width: 720px) {
  .nav-links { display: none; }
}

/* Hero actions + solid CTA */

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
}

@media (max-width: 900px) {
  .hero-actions { justify-content: center; }
}

/* Content sections (shared) */

.section {
  position: relative;
  padding: clamp(64px, 9vw, 108px) clamp(24px, 5vw, 76px);
  scroll-margin-top: 90px;
}

.landing-shell { scroll-margin-top: 90px; }

@media (max-width: 720px) {
  .section, .landing-shell { scroll-margin-top: 130px; }
}

.section:nth-of-type(even) { background: rgba(220, 207, 190, .18); }

.section-inner { width: min(1180px, 100%); margin: 0 auto; }

.section h2 {
  max-width: 640px;
  margin: 0 0 18px;
  color: var(--olive);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  letter-spacing: -.03em;
}

.section-intro {
  max-width: 560px;
  margin: 0 0 48px;
  color: var(--muted);
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.7;
}

/* Services */

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

.service-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--ivory);
  border: 1px solid rgba(79, 95, 61, .14);
  border-radius: 18px;
  transition: transform .2s ease, box-shadow .2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(79, 95, 61, .1);
}

.service-photo {
  aspect-ratio: 4 / 5;
  background: rgba(220, 207, 190, .28);
}

.service-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px 26px 28px;
}

.service-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: rgba(124, 142, 103, .12);
  color: var(--sage);
}

.service-icon svg { width: 26px; height: 26px; }

.service-card h3 {
  margin: 0 0 10px;
  color: var(--olive);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 400;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.65;
}

.service-card-link {
  display: inline-block;
  margin-top: auto;
  padding-top: 12px;
  color: var(--olive);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.service-card-link:hover { color: var(--muted); }

@media (max-width: 980px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .service-grid { grid-template-columns: 1fr; }
}

/* About */

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .8fr);
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}

.about-copy p {
  max-width: 520px;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.about-figure {
  aspect-ratio: 4 / 5;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: rgba(220, 207, 190, .28);
  border: 1px solid rgba(79, 95, 61, .14);
  border-radius: 18px;
}

.about-figure svg { width: 100%; height: 100%; padding: 10%; }

.about-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-figure { order: -1; max-width: 360px; margin: 0 auto; }
}

/* Steps */

.step-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.step-list li { position: relative; padding-left: 4px; }

.step-number {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 18px;
  border: 1px solid var(--olive);
  border-radius: 50%;
  color: var(--olive);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
}

.step-list h3 {
  margin: 0 0 8px;
  color: var(--olive);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  font-weight: 400;
}

.step-list p {
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.65;
}

.steps-note {
  margin: 48px 0 0;
  padding-top: 28px;
  border-top: 1px solid rgba(79, 95, 61, .16);
  color: var(--muted);
  font-size: 14px;
  font-style: italic;
}

@media (max-width: 760px) {
  .step-list { grid-template-columns: 1fr; gap: 32px; }
}

/* Contact */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1fr);
  gap: clamp(40px, 6vw, 90px);
}

.contact-details {
  display: grid;
  gap: 20px;
  margin: 0 0 36px;
}

.contact-details dt {
  color: var(--sage);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.contact-details dd {
  margin: 4px 0 0;
  color: var(--olive);
  font-size: 15.5px;
}

.contact-details a { color: var(--olive); }

.contact-note {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.contact-map-link {
  display: inline-block;
  margin-left: 8px;
  color: var(--sage) !important;
  font-size: 13px;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.contact-actions .cta-button { margin-top: 0; }

.contact-form {
  display: grid;
  gap: 18px;
  align-content: start;
  padding: 32px;
  background: var(--ivory);
  border: 1px solid rgba(79, 95, 61, .14);
  border-radius: 18px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 14px;
  background: #fff;
  border: 1px solid rgba(79, 95, 61, .22);
  border-radius: 10px;
  color: var(--olive);
  font-family: inherit;
  font-size: 15px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--sage);
}

.contact-form button {
  margin-top: 4px;
  border: none;
  cursor: pointer;
}

.contact-form label.consent-field,
.backoffice-form label.consent-field {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: normal;
  text-transform: none;
  line-height: 1.5;
}

.consent-field input[type="checkbox"] {
  flex-shrink: 0;
  width: 17px;
  height: 17px;
  margin-top: 2px;
  accent-color: var(--sage);
}

.consent-field a { color: var(--olive); }

.hp-field {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  left: -9999px;
}

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* Site footer */

/* A bare "footer" selector earlier in this file (meant for the simple
   footer on error/thank-you pages) also matches this element, since
   it has no class exclusion — it sets display:flex on the whole
   <footer>, turning .footer-grid and .footer-legal into side-by-side
   flex items instead of stacked rows. Reset it here so they stack. */
.site-footer { display: block; }

.site-footer .wordmark { text-transform: none; }

.site-footer .footer-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-social { display: flex; gap: 18px; }
.footer-social a { color: var(--muted); text-decoration: none; }
.footer-social a:hover { color: var(--olive); }

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(79, 95, 61, .14);
}

.footer-legal a { color: var(--muted); text-decoration: none; }
.footer-legal a:hover { color: var(--olive); }

@media (max-width: 560px) {
  .site-footer .footer-grid { justify-content: center; text-align: center; }
  .footer-legal { justify-content: center; text-align: center; }
}

/* Legal pages */

.legal-page .section-inner { width: min(760px, 100%); }

.legal-page h1 {
  margin: 0 0 8px;
  font-size: clamp(32px, 4.4vw, 46px);
}

.legal-page .updated-at {
  margin: 0 0 48px;
  color: var(--muted);
  font-size: 13px;
}

.legal-page h2 {
  margin: 48px 0 14px;
  color: var(--olive);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 400;
}

.legal-page h2:first-of-type { margin-top: 0; }

/* :where() keeps this at (0,1,0) specificity, same as a single class, so any
   component with its own class (.eyebrow, .wordmark, .pricing-slogan, etc.)
   can still override it — without :where() the extra "p"/"li" element bumped
   this rule's specificity above single-class component styles and silently
   overrode their color/size (e.g. .eyebrow rendering muted-grey instead of
   sage). */
.legal-page :where(p, li) {
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.75;
}

.legal-page ul { padding-left: 20px; margin: 0 0 16px; }
.legal-page li { margin-bottom: 8px; }

.legal-page strong { color: var(--olive); }

/* .eyebrow is defined earlier in this file with only a single class, so on
   pages using .legal-page it tied in specificity with the :where() rule
   above and lost on source order. Restore its intended color explicitly. */
.legal-page .eyebrow { color: var(--sage); }

/* Cookie consent banner */

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  padding: 20px clamp(20px, 4vw, 40px);
  background: var(--olive);
  color: var(--ivory);
  box-shadow: 0 -12px 30px rgba(0, 0, 0, .12);
}

.cookie-banner-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.cookie-banner p {
  margin: 0;
  max-width: 640px;
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--linen);
}

.cookie-banner a { color: var(--ivory); }

.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-banner .cta-button {
  margin-top: 0;
  border-color: var(--ivory);
  color: var(--ivory);
}

.cookie-banner .cta-button:hover {
  background: rgba(247, 244, 238, .16);
  color: var(--ivory);
}

.cookie-banner .cta-solid {
  background: var(--ivory);
  color: var(--olive);
}

.cookie-banner .cta-solid:hover {
  background: var(--linen);
  color: var(--olive);
}

/* Vacation notice modal */

body.modal-open { overflow: hidden; }

.vacation-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(45, 53, 36, .58);
}

.vacation-modal[hidden] { display: none; }

.vacation-modal-card {
  position: relative;
  width: min(440px, 100%);
  padding: clamp(28px, 4vw, 40px);
  background: var(--ivory);
  border: 1px solid rgba(79, 95, 61, .16);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(38, 46, 27, .28);
  text-align: center;
}

.vacation-modal-card h2 {
  margin: 0 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  color: var(--olive);
}

.vacation-modal-card p {
  margin: 0 0 22px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
}

.vacation-modal-card .cta-button { margin-top: 0; }

.vacation-modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  color: var(--muted);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  border-radius: 50%;
}

.vacation-modal-close:hover {
  background: rgba(79, 95, 61, .1);
  color: var(--olive);
}

/* Error pages */

.error-shell, .status-shell {
  min-height: 100svh;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 34px clamp(24px, 5vw, 76px) 28px;
  background:
    radial-gradient(circle at 74% 43%, rgba(220, 207, 190, .46), transparent 26%),
    linear-gradient(145deg, rgba(255, 255, 255, .68), transparent 38%),
    var(--ivory);
}

.error-shell::before, .status-shell::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(79, 95, 61, .16);
  pointer-events: none;
}

.error-content, .status-content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 0;
}

.error-card, .status-card { max-width: 620px; }

.error-code {
  margin: 0 0 14px;
  color: var(--light-sage);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(52px, 8vw, 88px);
  letter-spacing: -.03em;
}

.error-card .eyebrow, .status-card .eyebrow { justify-content: center; }
.error-card .eyebrow::before, .status-card .eyebrow::before { content: none; }
.error-card h1, .status-card h1 { font-size: clamp(32px, 4.4vw, 52px); }
.error-card .intro, .status-card .intro { margin-left: auto; margin-right: auto; }

.cta-button {
  display: inline-block;
  margin-top: 34px;
  padding: 14px 30px;
  background: none;
  border: 1px solid var(--olive);
  border-radius: 999px;
  color: var(--olive);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .12em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}

.cta-button:hover { background: var(--olive); color: var(--ivory); }

.cta-solid { background: var(--olive); color: var(--ivory); }
.cta-solid:hover { background: var(--muted); color: var(--ivory); }

@media (max-width: 560px) {
  .error-content { padding: 24px 0; }
}

/* Backoffice */

.backoffice-shell {
  min-height: 100svh;
  padding: 24px clamp(20px, 4vw, 60px) 60px;
  background: var(--ivory);
}

.backoffice-topbar {
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(79, 95, 61, .14);
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}

.backoffice-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 13px;
}

.backoffice-nav a {
  color: var(--olive);
  text-decoration: none;
  font-weight: 600;
}

.backoffice-nav a:hover { color: var(--sage); }

.backoffice-user {
  color: var(--muted);
  font-size: 12px;
}

.backoffice-heading { max-width: 720px; }
.backoffice-heading h1 { margin: 0 0 6px; }

.backoffice-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
  margin: 28px 0;
}

.backoffice-stat {
  padding: 20px;
  background: #fff;
  border: 1px solid rgba(79, 95, 61, .14);
  border-radius: 14px;
}

.backoffice-stat strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  color: var(--olive);
}

.backoffice-stat span {
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
}

.backoffice-panel {
  background: #fff;
  border: 1px solid rgba(79, 95, 61, .14);
  border-radius: 14px;
  padding: 24px;
  margin-bottom: 28px;
  overflow-x: auto;
}

.backoffice-panel h2 {
  margin: 0 0 4px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  color: var(--olive);
}

.backoffice-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 18px;
  font-size: 14px;
  white-space: nowrap;
}

.backoffice-table th,
.backoffice-table td {
  text-align: left;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(79, 95, 61, .12);
}

.backoffice-table th {
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: .06em;
  color: var(--muted);
}

.backoffice-table a { color: var(--olive); }

.backoffice-badge {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
}

.backoffice-badge.incomplete { background: #f7e3d8; color: #a4573a; }
.backoffice-badge.complete { background: #e3ecd8; color: var(--olive); }
.backoffice-badge.role { background: var(--linen); color: var(--olive); margin-right: 4px; }

.backoffice-form { display: grid; gap: 18px; max-width: 640px; }

.backoffice-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.backoffice-form input,
.backoffice-form select,
.backoffice-form textarea {
  padding: 12px 14px;
  background: #fff;
  border: 1px solid rgba(79, 95, 61, .22);
  border-radius: 10px;
  color: var(--olive);
  font-family: inherit;
  font-size: 15px;
}

.backoffice-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

@media (max-width: 560px) {
  .backoffice-form-row { grid-template-columns: 1fr; }
}

.phone-field {
  display: flex;
  gap: 8px;
}

.phone-country-select {
  flex: 0 0 auto;
  max-width: 190px;
}

.phone-number-input {
  flex: 1;
  min-width: 0;
}

@media (max-width: 560px) {
  .phone-field { flex-direction: column; }
  .phone-country-select { max-width: none; }
}

/* Pricing pages */

.pricing-page .section-inner { width: min(980px, 100%); }

.pricing-page h1 {
  margin: 0 0 8px;
  font-size: clamp(32px, 4.4vw, 46px);
}

.pricing-page .intro {
  margin: 0 0 8px;
  max-width: 640px;
}

.pricing-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.pricing-back-link {
  display: inline-block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  text-decoration: none;
}

.pricing-back-link:hover { color: var(--olive); }

.pricing-download-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px 7px 12px;
  border: 1px solid rgba(79, 95, 61, .3);
  border-radius: 999px;
  color: var(--olive);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .04em;
  text-decoration: none;
  transition: background .2s ease, color .2s ease;
}

.pricing-download-link svg { width: 16px; height: 16px; flex: none; }

.pricing-download-link:hover { background: var(--olive); color: var(--ivory); }

.pricing-header-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) 1.1fr;
  grid-template-areas:
    "brand    slogan"
    "brand    howitworks"
    "icons    .";
  gap: 20px 32px;
  margin: 8px 0 40px;
}

.pricing-header-grid .pricing-brand-row { grid-area: brand; }
.pricing-header-grid .pricing-slogan-block { grid-area: slogan; }
.pricing-header-grid .pricing-services-row { grid-area: icons; align-self: end; }
.pricing-header-grid .pricing-note-box { grid-area: howitworks; }

@media (max-width: 760px) {
  .pricing-header-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "icons"
      "slogan"
      "howitworks";
  }

  .pricing-header-grid .pricing-services-row { align-self: auto; }
}

/* Variant for pricing pages with no "avulso" badge (e.g. lavandaria, an
   itemised quote-based price list rather than unit packs) — the note box
   fills the space of both right-column rows instead. */
.pricing-header-grid.no-badge {
  grid-template-areas:
    "brand    slogan"
    "brand    howitworks"
    "icons    howitworks";
}

@media (max-width: 760px) {
  .pricing-header-grid.no-badge {
    grid-template-areas:
      "brand"
      "icons"
      "slogan"
      "howitworks";
  }
}

/* Variant with neither "como funciona" nor the "avulso" badge in the
   header — both move down to pair with the packs table instead (e.g.
   engomadoria once there's only one pack table left to show). */
.pricing-header-grid.compact {
  grid-template-areas:
    "brand    slogan"
    "icons    slogan";
}

.pricing-header-grid.compact .pricing-slogan-block { align-self: center; }

@media (max-width: 760px) {
  .pricing-header-grid.compact {
    grid-template-areas:
      "brand"
      "icons"
      "slogan";
  }

  .pricing-header-grid.compact .pricing-slogan-block { align-self: auto; }
}

.pricing-brand-row {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 100%;
}

.pricing-brand-logo-img {
  flex: 0 0 32%;
  width: 32%;
  height: auto;
  max-width: 190px;
}

.pricing-brand-wordmark-img {
  flex: 1 1 0%;
  min-width: 0;
  width: 100%;
  height: auto;
  max-width: 340px;
}

.pricing-services-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.pricing-services-row-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.pricing-services-row-icon {
  position: relative;
  display: block;
  width: 68px;
  height: 68px;
}

.pricing-services-row-icon img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.pricing-services-row-icon .icon-hover {
  opacity: 0;
  transition: opacity .2s ease;
}

.pricing-services-row-item.is-linkable:hover .icon-hover,
.pricing-services-row-item.is-linkable:focus-visible .icon-hover {
  opacity: 1;
}

.pricing-services-row-label {
  color: var(--muted);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-align: center;
  transition: color .2s ease;
}

.pricing-services-row-item.is-active .pricing-services-row-label { color: var(--olive); }

.pricing-services-row-item.is-linkable:hover .pricing-services-row-label,
.pricing-services-row-item.is-linkable:focus-visible .pricing-services-row-label {
  color: var(--olive);
}

@media (max-width: 760px) {
  .pricing-services-row-icon { width: 76px; height: 76px; }
}

.pricing-slogan-block { text-align: center; }

.pricing-costura-title-img {
  display: block;
  width: min(100%, 400px);
  height: auto;
  margin: 0 auto 8px;
}

.pricing-slogan-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.pricing-slogan-leaf {
  flex: none;
  width: 34px;
  height: auto;
}

.pricing-slogan-img {
  width: auto;
  height: clamp(28px, 3.2vw, 40px);
  max-width: 100%;
}

.pricing-slogan {
  margin: 0;
  color: var(--sage);
  font-family: 'Sacramento', Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 2.6vw, 32px);
  line-height: 1.3;
}

.pricing-note-box {
  margin: 0 0 24px;
  padding: 22px 26px;
  background: var(--ivory);
  border: 1px solid rgba(79, 95, 61, .18);
  border-radius: 16px;
}

.pricing-note-box h2 {
  margin: 0 0 8px;
  color: var(--olive);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  font-weight: 400;
}

.pricing-note-box p {
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.7;
}

.pricing-note-box p + p { margin-top: 12px; }

/* Expanded variant: stretches to match the packs table's height instead
   of shrink-wrapping its own (now longer) text, e.g. engomadoria once
   the avulso badge moves back up into the header. */
.pricing-tables-grid .pricing-note-box-expanded {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  margin-bottom: 0;
}

/* Full-width "serviço avulso" bar below the packs/como-funciona row —
   the header used to carry a bulkier badge here; this mirrors the
   slimmer treatment already used in the engomadoria PDF. */
.pricing-unit-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 44px;
  padding: 16px 24px;
  background: var(--olive);
  border-radius: 16px;
  color: var(--ivory);
}

.pricing-unit-bar .service-icon {
  flex: none;
  display: block;
}

.pricing-unit-bar .service-icon img {
  display: block;
  width: 34px;
  height: 34px;
}

.pricing-unit-bar .pricing-unit-label {
  margin: 0;
  color: var(--ivory);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: .85;
}

.pricing-unit-bar .pricing-unit-price {
  margin: 0 0 0 auto;
  color: var(--ivory);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  white-space: nowrap;
}

@media (max-width: 480px) {
  .pricing-unit-bar { flex-wrap: wrap; row-gap: 6px; }
  .pricing-unit-bar .pricing-unit-price { margin-left: 48px; }
}

.pricing-tables-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 24px;
  margin-bottom: 24px;
}

@media (max-width: 760px) {
  .pricing-tables-grid { grid-template-columns: 1fr; }
}

.pricing-flex-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-table-card {
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(79, 95, 61, .16);
}

.pricing-table-card header {
  padding: 16px 20px;
  background: var(--olive);
  color: var(--ivory);
}

.pricing-table-card.is-flex header { background: #3d5566; }

.pricing-table-card header h3 {
  margin: 0 0 2px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  font-weight: 400;
}

.pricing-table-card header span {
  font-size: 11.5px;
  letter-spacing: .06em;
  text-transform: uppercase;
  opacity: .85;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--ivory);
}

.pricing-table th, .pricing-table td {
  padding: 11px 20px;
  text-align: left;
  font-size: 14px;
  border-bottom: 1px solid rgba(79, 95, 61, .12);
}

.pricing-table th {
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.pricing-table td:last-child, .pricing-table th:last-child { text-align: right; font-weight: 600; white-space: nowrap; }
.pricing-table tr:last-child td { border-bottom: none; }

.pricing-pack-name {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-pack-name img { flex: none; width: 26px; height: 26px; }

.pricing-flex-note {
  display: flex;
  align-items: center;
  flex: 1;
  gap: 16px;
  margin: 0;
  padding: 16px 22px;
  background: rgba(61, 85, 102, .1);
  border-radius: 12px;
  color: #3d5566;
  font-size: 17px;
  line-height: 1.5;
}

.pricing-flex-note-heart {
  flex: none;
  width: 30px;
  height: 30px;
  color: #3d5566;
}

@media (max-width: 760px) {
  .pricing-flex-note { flex: initial; }
}

.pricing-page h2 {
  margin: 0 0 20px;
  color: var(--olive);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 400;
}

.pricing-page h2.pricing-section-title-centered {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  max-width: none;
  text-align: center;
}

.pricing-section-title-centered img { flex: none; width: 34px; height: auto; }

.pricing-equivalence-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 16px;
  max-width: 980px;
  margin: 0 auto 44px;
}

@media (max-width: 900px) {
  .pricing-equivalence-grid { grid-template-columns: 1fr; }
}

.pricing-equivalence-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px 18px 24px;
  background: var(--ivory);
  border: 1px solid rgba(79, 95, 61, .16);
  border-radius: 14px;
}

.pricing-equivalence-card-split {
  align-items: stretch;
  gap: 0;
}

.pricing-equivalence-half {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  flex: 1;
  min-width: 0;
}

.pricing-equivalence-half:first-child { padding-right: 4px; flex: 1.07; }
.pricing-equivalence-half:last-child { padding-left: 4px; flex: 0.93; }

.pricing-equivalence-divider {
  flex: none;
  width: 1px;
  background: rgba(79, 95, 61, .16);
}

@media (max-width: 640px) {
  .pricing-equivalence-card-split { flex-direction: column; }
  .pricing-equivalence-divider { width: auto; height: 1px; margin: 20px 0; }
  .pricing-equivalence-half:first-child, .pricing-equivalence-half:last-child { padding: 0; flex: 1; }
}

.pricing-equivalence-content { flex: 1; min-width: 0; }

.pricing-equivalence-img {
  flex: none;
  align-self: flex-end;
  width: 104px;
  height: auto;
}

.pricing-equivalence-half:first-child .pricing-equivalence-img {
  width: 124px;
}

.pricing-equivalence-half:last-child .pricing-equivalence-img {
  width: 116px;
}

@media (max-width: 640px) {
  .pricing-equivalence-img,
  .pricing-equivalence-half:first-child .pricing-equivalence-img,
  .pricing-equivalence-half:last-child .pricing-equivalence-img {
    width: 100px;
  }
}

.pricing-equivalence-card h3 {
  margin: 0 0 2px;
  color: var(--olive);
  font-size: 16px;
}

.pricing-equivalence-card .card-subtitle {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 12.5px;
  font-style: italic;
}

.pricing-equivalence-card ul {
  margin: 0;
  padding-left: 16px;
}

.pricing-equivalence-card li {
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.pricing-equivalence-card.is-special { border-color: rgba(164, 68, 58, .3); }
.pricing-equivalence-card.is-special h3 { color: #a4443a; }

.pricing-rules {
  margin: 0 0 12px;
  padding-left: 20px;
}

.pricing-rules li {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.65;
}

.pricing-page .pricing-extra-note {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 14px;
  font-style: italic;
}

.pricing-page .pricing-note-secondary {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 12.5px;
}

.pricing-page .pricing-validity-note {
  margin: 0 0 48px;
  color: var(--muted);
  font-size: 12.5px;
}

.pricing-payment {
  padding: 26px 28px;
  background: var(--olive);
  border-radius: 16px;
  color: var(--ivory);
}

.pricing-payment h2 { margin: 0 0 18px; color: var(--ivory); }

.pricing-payment dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 0 0 16px;
}

@media (max-width: 760px) {
  .pricing-payment dl { grid-template-columns: 1fr; }
}

.pricing-payment dt {
  margin: 0 0 4px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .75;
}

.pricing-payment dd {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
}

.pricing-payment p { margin: 0; opacity: .9; font-size: 14px; }

/* Simple category price tables (lavandaria / limpeza a seco) — reuse the
   .pricing-table-card header chrome (dark bar, h3 + optional caption),
   with an itemised name/price list instead of a pack table. */

.pricing-category { margin-bottom: 24px; }

.pricing-simple-table {
  width: 100%;
  border-collapse: collapse;
}

.pricing-simple-table td {
  padding: 8px 4px;
  border-bottom: 1px solid rgba(79, 95, 61, .1);
  color: var(--muted);
  font-size: 14px;
}

.pricing-simple-table td:last-child {
  width: 110px;
  text-align: right;
  font-weight: 600;
  color: var(--olive);
  white-space: nowrap;
}

.pricing-table-card .pricing-category-grid {
  padding: 14px 20px 6px;
  background: var(--ivory);
  column-gap: 32px;
}

.pricing-category-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 40px;
}

@media (max-width: 760px) {
  .pricing-category-grid { grid-template-columns: 1fr; }
}

.pricing-category-grid.single-col { grid-template-columns: 1fr; }

/* Costura — three short category cards (Calças / Saias e Vestidos /
   Diversos) side by side, unlike lavandaria's stacked full-width cards. */
.pricing-costura-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

@media (max-width: 700px) {
  .pricing-costura-grid { grid-template-columns: 1fr; }
}

/* Cards are direct grid children, so the grid's default align-items:
   stretch already makes all three the same height (tallest sets it).
   Each card grows internally — spreading its rows out via the table's
   own height:100% — and the illustration sits inside, at the bottom. */
.pricing-costura-grid .pricing-table-card {
  display: flex;
  flex-direction: column;
  background: var(--ivory);
}
.pricing-costura-grid .pricing-table-card .pricing-category-grid { flex: 1; }
.pricing-costura-grid .pricing-table-card table.pricing-simple-table { height: 100%; }

.pricing-costura-illustration {
  display: block;
  width: 62%;
  max-width: 150px;
  height: auto;
  margin: 18px auto 22px;
}

.pricing-costura-band {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 8px 0 40px;
  padding: 16px 24px;
  background: var(--ivory);
  border: 1px dashed rgba(79, 95, 61, .35);
  border-radius: 16px;
}

.pricing-costura-band img { flex: none; width: 56px; height: 56px; border-radius: 10px; }

.pricing-costura-band-text { flex: 1; min-width: 0; text-align: center; }
.pricing-costura-band-text p { margin: 0; color: var(--olive); font-size: 13.5px; line-height: 1.6; white-space: nowrap; }
.pricing-costura-band-slogan {
  margin-top: 6px !important;
  color: var(--sage) !important;
  font-family: 'Sacramento', Georgia, "Times New Roman", serif;
  font-size: 20px !important;
  white-space: normal !important;
}

.pricing-costura-band-text .pricing-costura-band-tagline-img {
  display: block;
  width: auto;
  height: 40px;
  margin: 10px auto 0;
}

.pricing-costura-badge {
  flex: none;
  max-width: 160px;
  margin: 0;
  padding: 11px 14px;
  background: var(--olive);
  color: var(--ivory);
  border-radius: 14px;
  text-align: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12.5px;
  line-height: 1.4;
}

@media (max-width: 700px) {
  .pricing-costura-band { flex-direction: column; text-align: center; }
  .pricing-costura-badge { max-width: 100%; }
}

/* Consent form page */

.consent-download {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin: 28px 0 40px;
  padding: 24px 28px;
  background: var(--ivory);
  border: 1px solid rgba(79, 95, 61, .18);
  border-radius: 16px;
}

.consent-download .cta-button { margin-top: 0; }

.consent-download p { margin: 0; color: var(--muted); font-size: 14px; }

.consent-steps {
  padding-left: 20px;
  margin: 0 0 40px;
}

.consent-steps li {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}
