/* Majally cible sites — warm, light, hospitality.
   Deliberately no gradients: solid brass on ivory reads as designed rather
   than generated. Re-skin a site by editing the tokens below. */

:root {
  --bg: #fbf8f3;          /* warm ivory */
  --bg-alt: #f3ece1;      /* sand */
  --surface: #ffffff;
  --surface-2: #fdfaf5;
  --border: #e6dccc;
  --border-2: #d8cab4;
  --text: #1b2420;        /* deep green-ink */
  --muted: #5d6b64;
  --muted-2: #8b958d;
  --accent: #b0763a;      /* brass */
  --accent-soft: #f6ecdd;
  --accent-deep: #8d5c2a;
  --green: #2f5d50;       /* deep teal-green */
  --clay: #c0704a;
  --shadow-sm: 0 1px 2px rgba(27, 36, 32, .05), 0 4px 12px -6px rgba(27, 36, 32, .10);
  --shadow-md: 0 2px 4px rgba(27, 36, 32, .05), 0 18px 40px -22px rgba(27, 36, 32, .28);
  --radius: 16px;
  --radius-sm: 11px;
  --maxw: 1120px;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --display: "Fraunces", Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
h1, h2, h3 {
  overflow-wrap: break-word;
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.14;
  margin: 0;
  letter-spacing: -0.015em;
  font-variation-settings: "SOFT" 20, "WONK" 1;
}
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 760px; }
.grad { color: var(--accent); font-style: italic; }
.grain { display: none; }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(12px);
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  border-bottom: 1px solid var(--border);
}
.nav__inner { display: flex; align-items: center; gap: 24px; height: 72px; }
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand__mark { display: block; width: 30px; height: 30px; color: var(--accent); flex: none; }
.brand__mark svg { display: block; width: 100%; height: 100%; }
.brand__name {
  font-family: var(--display); font-size: 19px; font-weight: 600; letter-spacing: -0.01em;
  white-space: nowrap;
}
.brand__sub { color: var(--muted); font-weight: 400; font-style: italic; }
.nav__links { display: flex; gap: 28px; margin-left: auto; font-size: 15px; color: var(--muted); }
.nav__links a { position: relative; padding: 4px 0; }
.nav__links a:hover { color: var(--text); }
.nav__links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 1.5px;
  background: var(--accent); transition: right .25s ease;
}
.nav__links a:hover::after { right: 0; }
.nav__actions { display: flex; align-items: center; gap: 14px; }
.langs { position: relative; }
.langs summary {
  display: inline-flex; align-items: center; gap: 7px; cursor: pointer; list-style: none;
  font-size: 13px; font-weight: 600; color: var(--muted); letter-spacing: .04em;
  border: 1px solid var(--border-2); border-radius: 8px; padding: 6px 9px;
  transition: border-color .18s ease, color .18s ease;
}
.langs summary::-webkit-details-marker { display: none; }
.langs summary:hover { color: var(--accent); border-color: var(--accent); }
.langs[open] summary { color: var(--accent); border-color: var(--accent); }
.langs__flag {
  display: block; width: 19px; height: 14px; border-radius: 2.5px; overflow: hidden;
  flex: none; box-shadow: 0 0 0 1px rgba(27, 36, 32, .10);
}
.langs__flag svg { display: block; width: 100%; height: 100%; }
.langs__caret { width: 11px; height: 11px; transition: transform .18s ease; }
.langs[open] .langs__caret { transform: rotate(180deg); }
.langs__menu {
  position: absolute; top: calc(100% + 8px); right: 0; z-index: 60; min-width: 172px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-sm); box-shadow: var(--shadow-md); padding: 6px;
}
.langs__item {
  display: flex; align-items: center; gap: 10px; padding: 9px 11px;
  border-radius: 8px; font-size: 14.5px; color: var(--text); white-space: nowrap;
}
.langs__item:hover { background: var(--accent-soft); color: var(--accent-deep); }
.langs__item.is-current { color: var(--accent-deep); font-weight: 600; }
.langs__item.is-current::after {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); margin-left: auto;
}
.nav__burger { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__burger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; }
.nav__burger span + span { margin-top: 6px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: 999px; font-weight: 600; font-size: 15px; padding: 12px 24px;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}
.btn--primary { background: var(--accent); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--accent-deep); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--ghost { border-color: var(--border-2); color: var(--text); background: var(--surface); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.btn--lg { font-size: 16px; padding: 15px 30px; }
.btn--sm { font-size: 14px; padding: 9px 18px; }

.btn--wa { background: #25d366; color: #04281b; }
.btn--wa:hover { background: #1fbe5b; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn__wa-icon { display: block; width: 19px; height: 19px; }
.btn__wa-icon svg { display: block; width: 100%; height: 100%; }

/* Floating WhatsApp. The label expands on hover so it reads as part of the
   page rather than a bolted-on widget; the icon alone carries it on mobile. */
.wa {
  position: fixed; right: 22px; bottom: 22px; z-index: 60;
  display: inline-flex; align-items: center; gap: 0;
  height: 56px; padding: 0 16px; border-radius: 999px;
  background: #25d366; color: #fff;
  box-shadow: 0 10px 30px -8px rgba(37, 211, 102, .55), 0 2px 6px rgba(27, 36, 32, .12);
  transition: gap .24s ease, padding .24s ease, transform .2s ease, box-shadow .2s ease;
}
.wa svg { width: 26px; height: 26px; flex: none; }
.wa__label {
  max-width: 0; overflow: hidden; white-space: nowrap;
  font-size: 15px; font-weight: 600;
  transition: max-width .28s ease;
}
.wa:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -8px rgba(37, 211, 102, .7); }
.wa:hover .wa__label, .wa:focus-visible .wa__label { max-width: 160px; }
.wa:hover { gap: 10px; }

/* ---------- hero ---------- */
.hero { position: relative; padding: 104px 0 92px; overflow: hidden; }
.hero__aurora {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(60% 70% at 18% 10%, color-mix(in srgb, var(--accent) 13%, transparent), transparent 70%),
    radial-gradient(55% 65% at 85% 25%, color-mix(in srgb, var(--green) 9%, transparent), transparent 70%);
}
.hero__inner { position: relative; text-align: center; }
.eyebrow, .kicker {
  font-size: 12.5px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 16px;
}
.kicker--center { text-align: center; }
.hero__title { font-size: clamp(2.5rem, 6vw, 4.2rem); margin-bottom: 24px; letter-spacing: -0.025em; }
.hero__lead { max-width: 630px; margin: 0 auto 34px; color: var(--muted); font-size: 19px; }
.hero__cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero__points {
  display: flex; gap: 30px; justify-content: center; flex-wrap: wrap;
  list-style: none; padding: 0; margin: 48px 0 0; font-size: 14.5px; color: var(--muted);
}
.hero__points li { display: flex; align-items: center; gap: 9px; }
.hero__points li::before {
  content: ""; width: 15px; height: 8px; flex: none;
  border: 1.5px solid var(--accent); border-bottom: 0; border-radius: 9px 9px 0 0;
}

/* ---------- sections ---------- */
.section { position: relative; padding: 92px 0; }
.section--alt { background: var(--bg-alt); }
.section__title { font-size: clamp(1.9rem, 3.6vw, 2.6rem); margin-bottom: 18px; max-width: 20ch; }
.section__title--center { max-width: none; text-align: center; }
.section__lead { color: var(--muted); max-width: 60ch; margin-bottom: 48px; font-size: 17.5px; }

.grid { display: grid; gap: 20px; }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(430px, 100%), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(290px, 100%), 1fr)); }

.card {
  position: relative; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--border-2); }
.card h3 { font-size: 19px; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 15.5px; }
.card__icon {
  display: grid; place-items: center; width: 44px; height: 44px; margin-bottom: 18px;
  border-radius: 12px; background: var(--accent-soft); color: var(--accent-deep);
}
.card__icon svg { width: 21px; height: 21px; }
.card--problem { background: transparent; box-shadow: none; border-style: dashed; }
.card--problem:hover { background: var(--surface); border-style: solid; }

/* ---------- flow ---------- */
.flow { padding: 92px 0; background: var(--bg-alt); border-top: 1px solid var(--border); }
.flow__lead {
  color: var(--muted); max-width: 58ch; margin: 0 auto 56px; text-align: center; font-size: 17.5px;
}
.flow__steps {
  list-style: none; margin: 0; padding: 0; display: grid; gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  align-items: stretch;
}
.flow__node {
  position: relative; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 30px 26px; text-align: center;
  box-shadow: var(--shadow-sm);
}
/* The arrow between steps: horizontal on wide screens, vertical when stacked. */
.flow__node + .flow__node::before {
  content: ""; position: absolute; left: -17px; top: 50%; width: 12px; height: 12px;
  border-top: 2px solid var(--border-2); border-right: 2px solid var(--border-2);
  transform: translateY(-50%) rotate(45deg);
}
.flow__node.is-core { border-color: var(--accent); box-shadow: var(--shadow-md); }
.flow__art {
  display: block; width: 96px; height: 96px; margin: 0 auto 20px; color: var(--accent);
}
.flow__art svg { display: block; width: 100%; height: 100%; }
.flow__node h3 { font-size: 19px; margin-bottom: 10px; }
.flow__node p { color: var(--muted); font-size: 15.5px; }
.flow__list {
  list-style: none; margin: 16px 0 0; padding: 0; display: grid; gap: 7px;
  font-size: 14.5px; color: var(--muted);
}
.flow__list li { display: flex; align-items: center; justify-content: center; gap: 8px; }
.flow__list li::before {
  content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); flex: none;
}
.flow__note {
  margin: 40px auto 0; max-width: 60ch; text-align: center;
  color: var(--muted-2); font-size: 14.5px;
}

/* ---------- showcase ----------
   Pure black, because the product image's own background is pure black and
   this is what makes it sit on the page rather than in a box. */
.showcase { background: #000; color: #f2f2f5; padding: 84px 0; overflow: hidden; }
.showcase__inner {
  display: grid; gap: 48px; align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
}
.showcase__media { margin: 0; text-align: center; }
.showcase__media img { display: block; width: 100%; max-width: 380px; height: auto; margin: 0 auto; }
.showcase__body .kicker { color: var(--accent); }
.showcase__title {
  font-size: clamp(1.8rem, 3.4vw, 2.5rem); color: #fff; margin-bottom: 18px; max-width: 16ch;
}
.showcase__lead { color: rgba(242, 242, 245, .72); font-size: 17.5px; margin-bottom: 26px; max-width: 46ch; }
.showcase__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 13px; }
.showcase__list li {
  display: flex; align-items: flex-start; gap: 12px;
  color: rgba(242, 242, 245, .84); font-size: 16px;
}
.showcase__list li::before {
  content: ""; margin-top: 8px; width: 16px; height: 9px; flex: none;
  border: 1.6px solid var(--accent); border-bottom: 0; border-radius: 10px 10px 0 0;
}

/* ---------- cases ---------- */
.case {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease;
  display: flex; flex-direction: column;
}
.case:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.case__tag {
  font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 12px;
}
.case h3 { font-size: 19px; margin-bottom: 10px; }
.case p { color: var(--muted); font-size: 15.5px; }
.case__result {
  margin-top: auto; padding-top: 18px; border-top: 1px solid var(--border);
  color: var(--text) !important; font-size: 15px;
}
.case__result span {
  display: block; font-size: 11.5px; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted-2); margin-bottom: 5px;
}

/* ---------- products ---------- */
.products { display: grid; gap: 22px; grid-template-columns: repeat(auto-fit, minmax(min(330px, 100%), 1fr)); }
.product {
  position: relative; display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px 30px 26px; box-shadow: var(--shadow-sm); overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.product::before {
  content: ""; position: absolute; inset: 0 0 auto; height: 4px; background: var(--product-accent);
}
.product:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-md);
  border-color: var(--product-accent);
}
.product__for {
  font-size: 11.5px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--product-accent); margin-bottom: 12px;
}
.product__name { font-size: 23px; margin-bottom: 12px; }
.product p { color: var(--muted); font-size: 15.5px; }
.product__link {
  display: inline-flex; align-items: center; gap: 7px; margin-top: 22px;
  font-size: 14.5px; font-weight: 600; color: var(--product-accent);
}
.product__link svg { width: 15px; height: 15px; transition: transform .2s ease; }
.product:hover .product__link svg { transform: translateX(3px); }

/* ---------- stack ---------- */
.stack { display: grid; gap: 26px; grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr)); }
.stack__group h3 {
  font-size: 13px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted-2); margin-bottom: 14px; font-family: var(--font);
}
.stack__group ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.stack__group li {
  background: var(--surface); border: 1px solid var(--border); border-radius: 999px;
  padding: 6px 14px; font-size: 14px; color: var(--text);
}

/* ---------- timeline ---------- */
.timeline { list-style: none; margin: 0; padding: 0; position: relative; }
.timeline::before {
  content: ""; position: absolute; left: 82px; top: 14px; bottom: 14px; width: 1px;
  background: var(--border-2);
}
.timeline__item { display: grid; grid-template-columns: 82px 1fr; gap: 30px; padding: 18px 0; position: relative; }
.timeline__time {
  font-family: var(--display); font-weight: 600; color: var(--accent); font-size: 16px;
  text-align: right; padding-top: 1px;
}
.timeline__body { position: relative; padding-left: 28px; }
.timeline__body::before {
  content: ""; position: absolute; left: -5px; top: 10px; width: 11px; height: 11px;
  border-radius: 50%; background: var(--bg); border: 2px solid var(--accent);
}
.timeline__body h3 { font-size: 18px; margin-bottom: 5px; }
.timeline__body p { color: var(--muted); font-size: 15.5px; }

/* ---------- promise ---------- */
.promise { padding: 84px 0; background: var(--green); color: #f3efe6; }
.promise .kicker { color: #d3ab6f; }
.promise .section__title { color: #fbf8f3; }
.promise__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
  gap: 30px; margin-top: 48px;
}
.promise__item { text-align: center; padding: 0 8px; }
.promise__big {
  display: block; font-family: var(--display); font-size: clamp(2rem, 4vw, 2.7rem);
  font-weight: 600; color: #e7c48c; font-style: italic;
}
.promise__small { display: block; color: rgba(243, 239, 230, .74); font-size: 14.5px; margin-top: 10px; }

/* ---------- steps ---------- */
.steps {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
}
.step {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-sm);
}
.step__n {
  font-family: var(--display); font-size: 15px; font-weight: 600; color: var(--accent);
  font-style: italic;
}
.step h3 { font-size: 18px; margin: 10px 0 8px; }
.step p { color: var(--muted); font-size: 15.5px; }

/* ---------- faq ---------- */
.faq { display: grid; gap: 12px; }
.faq__item {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow-sm);
}
.faq__item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 20px 24px; cursor: pointer; font-weight: 600; font-size: 16.5px; list-style: none;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item[open] summary { color: var(--accent-deep); }
.faq__sign { position: relative; flex: none; width: 14px; height: 14px; }
.faq__sign::before, .faq__sign::after {
  content: ""; position: absolute; background: var(--accent); border-radius: 2px; transition: transform .2s ease;
}
.faq__sign::before { inset: 6px 0; height: 2px; }
.faq__sign::after { inset: 0 6px; width: 2px; }
.faq__item[open] .faq__sign::after { transform: scaleY(0); }
.faq__answer { padding: 0 24px 22px; color: var(--muted); font-size: 16px; }

/* ---------- contact ---------- */
.contact {
  position: relative; padding: 110px 0; overflow: hidden; text-align: center;
  background: var(--bg-alt); border-top: 1px solid var(--border);
}
.contact__aurora {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(50% 70% at 22% 50%, color-mix(in srgb, var(--accent) 14%, transparent), transparent 70%),
    radial-gradient(50% 70% at 78% 50%, color-mix(in srgb, var(--green) 11%, transparent), transparent 70%);
}
.contact__inner { position: relative; }
.contact__title { font-size: clamp(2rem, 4vw, 2.9rem); margin-bottom: 18px; }
.contact__lead { color: var(--muted); max-width: 54ch; margin: 0 auto 34px; font-size: 18px; }
.contact__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.contact__reassure { margin-top: 24px; color: var(--muted-2); font-size: 14px; }

/* ---------- footer ---------- */
.footer { border-top: 1px solid var(--border); padding: 44px 0; }
.footer__inner {
  display: grid; gap: 32px; align-items: start;
  grid-template-columns: repeat(auto-fit, minmax(min(230px, 100%), 1fr));
}
.footer__tagline { color: var(--muted); font-size: 14.5px; margin-top: 12px; }
.footer__sites { display: flex; flex-direction: column; gap: 7px; font-size: 14.5px; }
.footer__sites-label {
  font-size: 11.5px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted-2); margin-bottom: 3px;
}
.footer__sites a { color: var(--muted); }
.footer__sites a:hover { color: var(--accent); }
.footer__meta { display: flex; flex-direction: column; gap: 6px; text-align: right; color: var(--muted-2); font-size: 14px; }
@media (max-width: 760px) { .footer__meta { text-align: left; } }
.footer__meta a { color: var(--muted); }
.footer__meta a:hover { color: var(--accent); }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 640px) {
  .wa { right: 16px; bottom: 16px; height: 52px; padding: 0 13px; }
  .wa svg { width: 24px; height: 24px; }
  .wa__label { display: none; }
}

@media (max-width: 860px) {
  .flow__node + .flow__node::before {
    left: 50%; top: -17px; transform: translateX(-50%) rotate(135deg);
  }
  .nav__links {
    position: fixed; inset: 72px 0 auto; flex-direction: column; gap: 0;
    background: var(--bg); border-bottom: 1px solid var(--border);
    padding: 8px 24px 20px; display: none;
  }
  .nav__links.is-open { display: flex; }
  .nav__links a { padding: 13px 0; border-bottom: 1px solid var(--border); }
  .nav__links a::after { display: none; }
  .nav__burger { display: block; margin-left: auto; }
  .nav__actions .btn { display: none; }
  .timeline::before { left: 8px; }
  .timeline__item { grid-template-columns: 1fr; gap: 4px; padding-left: 34px; }
  .timeline__time { text-align: left; }
  .timeline__body { padding-left: 0; }
  .timeline__body::before { left: -31px; }
  .footer__inner { flex-direction: column; }
  .footer__meta { text-align: left; }
}

@media (max-width: 400px) {
  .brand__sub { display: none; }
  .nav__inner { gap: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .card:hover, .btn:hover, .wa:hover { transform: none; }
  .wa__label, .wa { transition: none; }
}
