:root {
  --bg: #faf7f2;
  --bg-soft: #f3eae1;
  --surface: #fffaf5;
  --surface-strong: #e8d7c6;
  --text: #5e4b3d;
  --text-muted: #8a7666;
  --accent: #c48a72;
  --accent-dark: #b07a64;
  --line: #d7c1ac;
  --radius: 18px;
  --max-width: 1120px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Manrope, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, var(--bg), #f5eee6);
}
h1,h2,h3 { font-family: Fraunces, serif; margin-top: 0; line-height: 1.2; }
p { color: var(--text-muted); margin-top: 0; }
.container { width: min(100% - 2rem, var(--max-width)); margin-inline: auto; }
.site-header { position: sticky; top: 0; background: rgb(250 247 242 / 0.9); backdrop-filter: blur(8px); border-bottom: 1px solid var(--line); z-index: 10; }
.header-row { display: flex; justify-content: space-between; align-items: center; padding: 0; }
.header-logo { width: 158px; height: 158px; object-fit: contain; }
.header-actions { display: flex; align-items: center; gap: 1.1rem; }
.nav-inline { margin: 0; display: flex; gap: .5rem; align-items: center; }
.nav-inline a { color: var(--text-muted); text-decoration: none; font-weight: 600; }
.nav-inline a {
  display: inline-flex;
  align-items: center;
  position: relative;
  padding-left: .78rem;
  transition: transform 0.24s ease, color 0.2s ease;
}
.nav-inline a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: .44rem;
  height: .44rem;
  border-radius: 999px;
  background: #c48a72;
  box-shadow: 0 0 0 4px rgb(196 138 114 / .14);
  opacity: 0;
  transform: translate(-.2rem, -50%) scale(.64);
  transition: opacity .26s ease, transform .26s ease;
}
.nav-inline a.is-active {
  color: var(--accent-dark);
}
.nav-inline a.is-active::before {
  opacity: 1;
  transform: translate(0, -50%) scale(1);
}
.nav-inline a.nav-clicked {
  transform: translateX(8px);
}
.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  color: var(--line);
  font-size: .82rem;
  font-weight: 700;
}
.language-btn {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  font: inherit;
  padding: .25rem .1rem;
  transition: color .2s ease, transform .2s ease;
}
.language-btn:hover,
.language-btn:focus-visible,
.language-btn.is-active {
  color: var(--accent-dark);
}
.language-btn:focus-visible {
  outline: 2px solid rgb(196 138 114 / .45);
  outline-offset: 4px;
  border-radius: 4px;
}
.language-btn.is-active {
  transform: translateY(-1px);
}
.hero { padding: 2.2rem 0 3rem; }
.eyebrow { letter-spacing: .08em; text-transform: uppercase; color: var(--accent-dark); font-size: .78rem; font-weight: 700; }
h1 { font-size: clamp(2rem, 3.5vw, 3rem); margin-bottom: .8rem; max-width: 20ch; }
.lead { font-size: 1.04rem; max-width: 42ch; }
.hero-visual { margin: 0; position: relative; overflow: hidden; border-radius: 26px; border: 1px solid var(--line); background: var(--bg-soft); }
.hero-photo {
  width: 100%;
  min-height: 520px;
  height: min(62vh, 620px);
  object-fit: cover;
  object-position: 58% center;
  display: block;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  width: min(62%, 680px);
  padding: clamp(1.5rem, 4vw, 3.2rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(90deg, rgb(250 247 242 / 0.9) 0%, rgb(250 247 242 / 0.72) 70%, rgb(250 247 242 / 0) 100%);
}
.btn { display: inline-flex; align-items: center; justify-content: center; align-self: flex-start; margin-top: .7rem; background: var(--accent); color: #fff; text-decoration: none; padding: .72rem 1.05rem; border-radius: 999px; font-size: .95rem; font-weight: 700; line-height: 1.1; max-width: max-content; }
.hero-btn {
  opacity: var(--hero-cta-opacity, 1);
  transform: translateY(var(--hero-cta-offset, 0));
  pointer-events: auto;
  transition: opacity .28s ease, transform .28s ease;
}
.hero-btn.is-muted {
  pointer-events: none;
}
.section { padding: 3rem 0; }
.section-alt {
  background:
    linear-gradient(90deg, rgb(250 247 242 / .94) 0%, rgb(250 247 242 / .86) 58%, rgb(250 247 242 / .58) 100%),
    url("start-bg.png") center right / cover no-repeat,
    var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.start-layout {
  display: grid;
  grid-template-columns: minmax(0, 820px) minmax(210px, 260px);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: start;
}
.start-copy {
  max-width: 820px;
  padding: clamp(1.2rem, 3vw, 2rem);
  border: 1px solid rgb(215 193 172 / .48);
  border-radius: 18px;
  background: rgb(255 250 245 / .64);
  box-shadow: 0 20px 42px rgb(94 75 61 / .06);
  backdrop-filter: blur(4px);
}
.start-kicker {
  display: inline-flex;
  margin-bottom: 1.1rem;
  padding: .28rem .58rem;
  border: 1px solid rgb(196 138 114 / .32);
  border-radius: 999px;
  color: var(--accent-dark);
  background: rgb(255 250 245 / .72);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.start-copy p {
  font-size: 1.05rem;
  line-height: 1.8;
}
.start-copy p:last-child {
  margin-bottom: 0;
}
.start-copy strong {
  color: var(--text);
  font-weight: 700;
}
.start-highlight {
  margin: 1.3rem 0;
  padding: 1rem 1.05rem;
  border-left: 3px solid var(--accent);
  border-radius: 0 12px 12px 0;
  background: rgb(250 247 242 / .72);
  color: var(--text);
}
.start-action {
  position: sticky;
  top: 190px;
  margin-top: 1.2rem;
  padding: 1rem;
  border: 1px solid rgb(215 193 172 / .58);
  border-radius: 14px;
  background: rgb(255 250 245 / .72);
  box-shadow: 0 14px 28px rgb(94 75 61 / .07);
  opacity: var(--start-cta-opacity, 0);
  pointer-events: none;
  transform: translateX(var(--start-cta-offset, -14px));
  transition: opacity .28s ease, transform .35s ease, box-shadow .35s ease;
}
.start-action p {
  margin-bottom: .75rem;
  font-size: .98rem;
  line-height: 1.55;
}
.start-action:hover {
  transform: translateX(var(--start-cta-hover-offset, 4px));
  box-shadow: 0 18px 32px rgb(94 75 61 / .1);
}
.start-action.is-visible {
  pointer-events: auto;
}
.start-btn {
  margin-top: 0;
}
.services-band {
  background:
    linear-gradient(180deg, rgb(255 250 245 / .92), rgb(243 234 225 / .78)),
    var(--surface);
  border-top: 1px solid rgb(215 193 172 / .54);
  border-bottom: 1px solid rgb(215 193 172 / .54);
}
.services-layout {
  display: grid;
  grid-template-columns: minmax(0, 820px) minmax(210px, 260px);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: start;
}
.services-copy {
  padding: clamp(1.2rem, 3vw, 2rem);
  border: 1px solid rgb(215 193 172 / .48);
  border-radius: 18px;
  background: rgb(255 250 245 / .7);
  box-shadow: 0 20px 42px rgb(94 75 61 / .06);
}
.services-copy h2 {
  font-size: 1.95rem;
  margin-bottom: .65rem;
}
.services-copy h3 {
  margin: 1.2rem 0 .45rem;
  font-size: 1.25rem;
}
.services-copy p {
  line-height: 1.75;
}
.services-points {
  list-style: none;
  margin: .45rem 0 1rem;
  padding: 0;
  color: var(--text);
}
.services-points li {
  position: relative;
  margin-top: .42rem;
  padding-left: 1.15rem;
}
.services-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .68em;
  width: .42rem;
  height: .42rem;
  border-radius: 999px;
  background: rgb(196 138 114 / .86);
  transform: translateY(-50%);
}
.services-action {
  position: sticky;
  top: 190px;
  margin-top: 1.2rem;
  padding: 1rem;
  border: 1px solid rgb(215 193 172 / .58);
  border-radius: 14px;
  background: rgb(255 250 245 / .72);
  box-shadow: 0 14px 28px rgb(94 75 61 / .07);
  opacity: var(--services-cta-opacity, 0);
  pointer-events: none;
  transform: translateX(var(--services-cta-offset, -14px));
  transition: opacity .28s ease, transform .35s ease, box-shadow .35s ease;
}
.services-action p {
  margin-bottom: .75rem;
  font-size: .98rem;
  line-height: 1.55;
}
.services-action:hover {
  transform: translateX(var(--services-cta-hover-offset, 4px));
  box-shadow: 0 18px 32px rgb(94 75 61 / .1);
}
.services-action.is-visible {
  pointer-events: auto;
}
.services-btn {
  margin-top: 0;
}
.faq-band {
  background:
    linear-gradient(180deg, rgb(250 247 242 / .96), rgb(255 250 245 / .8)),
    var(--bg);
  border-top: 1px solid rgb(215 193 172 / .5);
}
.faq-layout {
  display: grid;
  grid-template-columns: minmax(180px, .45fr) minmax(0, 1fr);
  gap: clamp(1.4rem, 5vw, 4rem);
  align-items: start;
}
.faq-heading {
  position: sticky;
  top: 190px;
}
.faq-heading h2 {
  margin-bottom: .6rem;
}
.faq-list {
  display: grid;
  gap: .65rem;
}
.faq-list details {
  border: 1px solid rgb(215 193 172 / .54);
  border-radius: 12px;
  background: rgb(255 250 245 / .78);
  box-shadow: 0 12px 24px rgb(94 75 61 / .045);
  overflow: hidden;
}
.faq-list summary {
  position: relative;
  cursor: pointer;
  padding: .9rem 2.45rem .9rem 1rem;
  color: var(--text);
  font-weight: 700;
  list-style: none;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 1rem;
  top: 50%;
  color: var(--accent-dark);
  font-size: 1.15rem;
  transform: translateY(-50%);
}
.faq-list details[open] summary::after {
  content: "-";
}
.faq-list details p {
  margin: 0;
  padding: 0 1rem 1rem;
  line-height: 1.7;
}
.faq-list details p + p {
  padding-top: .2rem;
}
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  background: rgb(55 46 40 / .42);
  backdrop-filter: blur(4px);
  padding: 1rem;
}
.modal-backdrop[hidden] {
  display: none;
}
.contact-modal {
  position: relative;
  width: min(100%, 580px);
  max-height: min(90vh, 760px);
  overflow: auto;
  border-radius: 16px;
  border: 1px solid rgb(215 193 172 / .8);
  background: linear-gradient(180deg, rgb(255 252 248), rgb(250 244 236));
  box-shadow: 0 24px 56px rgb(56 44 35 / .22);
  padding: 1.15rem 1.1rem 1rem;
}
.contact-modal h2 {
  margin: 0 0 1rem;
  font-size: 1.45rem;
}
#contact-form {
  display: grid;
  gap: .7rem;
}
#contact-form label,
.availability-fieldset legend {
  color: var(--text);
  font-size: .92rem;
  font-weight: 700;
}
#contact-form input[type="text"],
#contact-form input[type="date"],
#contact-form textarea {
  width: 100%;
  border: 1px solid rgb(196 138 114 / .45);
  background: #fffdfa;
  color: var(--text);
  border-radius: 10px;
  padding: .62rem .7rem;
  font: inherit;
}
#contact-form textarea {
  resize: vertical;
  min-height: 112px;
}
#contact-form input:focus-visible,
#contact-form textarea:focus-visible {
  outline: 2px solid rgb(196 138 114 / .45);
  outline-offset: 1px;
}
.character-counter {
  margin: -.35rem 0 .15rem;
  color: var(--text-muted);
  font-size: .78rem;
  text-align: right;
}
.availability-fieldset {
  margin: .1rem 0 .15rem;
  border: 1px solid rgb(215 193 172 / .56);
  border-radius: 10px;
  padding: .7rem .75rem;
}
.availability-fieldset label {
  display: inline-flex;
  align-items: center;
  gap: .42rem;
  margin-right: 1rem;
  font-size: .94rem;
}
.privacy-check {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  padding: .72rem .75rem;
  border: 1px solid rgb(215 193 172 / .56);
  border-radius: 10px;
  background: rgb(255 250 245 / .62);
}
.privacy-check input {
  margin-top: .18rem;
  accent-color: var(--accent);
}
.privacy-check a,
.legal-links a,
.legal-page a {
  color: var(--accent-dark);
  text-decoration: none;
  font-weight: 700;
}
.privacy-check a:hover,
.legal-links a:hover,
.legal-page a:hover {
  text-decoration: underline;
}
.privacy-note {
  margin: -.3rem 0 .1rem;
  font-size: .78rem;
  line-height: 1.5;
}
.modal-actions {
  margin-top: .25rem;
  display: flex;
  gap: .6rem;
  justify-content: flex-end;
}
.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid rgb(196 138 114 / .52);
}
.modal-close {
  position: absolute;
  right: .55rem;
  top: .45rem;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--text-muted);
  font-size: 1.2rem;
  cursor: pointer;
}
.cards { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1rem; }
.card {
  background: linear-gradient(180deg, var(--surface), rgb(255 250 245 / .72));
  border: 1px solid rgb(215 193 172 / .72);
  border-radius: 14px;
  padding: 1.15rem;
  min-height: 210px;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.card:hover {
  border-color: rgb(196 138 114 / .52);
  box-shadow: 0 16px 30px rgb(94 75 61 / .08);
  transform: translateY(-3px);
}
.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.15rem;
}
.card-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgb(196 138 114 / .35);
  border-radius: 999px;
  background: rgb(250 247 242 / .82);
  color: var(--accent-dark);
}
.card-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}
.card-number {
  color: rgb(138 118 102 / .48);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
}
.narrow { max-width: 760px; }
.about-layout {
  display: grid;
  grid-template-columns: minmax(180px, .45fr) minmax(0, 1fr);
  gap: clamp(1.4rem, 5vw, 4rem);
  align-items: stretch;
}
.about-heading {
  position: sticky;
  top: 190px;
  align-self: start;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.1rem, 2.4vw, 1.6rem);
  border: 1px solid rgb(215 193 172 / .48);
  border-radius: 18px;
  background: rgb(255 250 245 / .56);
  box-shadow: 0 18px 34px rgb(94 75 61 / .045);
}
.about-heading h2 {
  font-size: 2rem;
  margin-bottom: 0;
}
.about-photo-wrap {
  position: relative;
  margin: 1rem 0 0;
  overflow: hidden;
  border: 1px solid rgb(215 193 172 / .64);
  border-radius: 18px;
  background: var(--bg-soft);
  box-shadow: 0 14px 28px rgb(94 75 61 / .07);
}
.about-photo-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgb(255 250 245 / 0) 48%, rgb(94 75 61 / .1) 100%);
  pointer-events: none;
}
.about-photo {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  object-position: center 34%;
  filter: saturate(.92) contrast(.98);
}
.about-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  padding: clamp(1.2rem, 3vw, 2rem);
  border-left: 3px solid var(--accent);
  border-radius: 0 18px 18px 0;
  background: rgb(255 250 245 / .72);
  box-shadow: 0 18px 36px rgb(94 75 61 / .06);
}
.about-copy p {
  font-size: 1.03rem;
  line-height: 1.78;
}
.about-copy p:last-child {
  margin-bottom: 0;
}
.about-copy strong {
  color: var(--text);
}
.about-intro {
  color: var(--text);
  font-size: 1.16rem;
  line-height: 1.65;
}
.jove-section {
  padding: 3.8rem 0;
  background:
    linear-gradient(180deg, rgb(243 234 225 / .78), rgb(250 247 242 / .92)),
    var(--bg-soft);
  border-top: 1px solid rgb(215 193 172 / .64);
  border-bottom: 1px solid rgb(215 193 172 / .64);
}
.jove-card {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  padding: clamp(1.35rem, 4vw, 2.4rem);
  padding-right: clamp(8rem, 20vw, 18rem);
  border: 1px solid rgb(196 138 114 / .36);
  border-radius: 22px;
  background: linear-gradient(135deg, #fffdf9, #f8efe7);
  box-shadow: 0 18px 36px rgb(94 75 61 / .07);
}
.jove-content {
  max-width: 560px;
  position: relative;
  z-index: 1;
}
.jove-icon {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  margin-bottom: .85rem;
  border: 1px solid rgb(196 138 114 / .38);
  border-radius: 999px;
  background: rgb(250 247 242 / .9);
  color: var(--accent-dark);
}
.jove-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}
.jove-card h2 {
  margin-bottom: .55rem;
  font-size: 1.55rem;
}
.jove-card p:last-child {
  margin-bottom: 0;
}
.jove-source {
  margin: .45rem 0 0;
  font-size: .62rem;
  line-height: 1.25;
  text-align: center;
  color: rgb(138 118 102 / .58);
}
.jove-image-wrap {
  position: absolute;
  right: clamp(1.2rem, 3vw, 2.3rem);
  bottom: clamp(1rem, 2.5vw, 1.8rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  width: min(15%, 150px);
  min-width: 110px;
  pointer-events: none;
}
.jove-image {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 18px 22px rgb(94 75 61 / .18));
  transform: rotate(-8deg);
  transform-origin: center;
}
.jove-btn {
  margin-top: .9rem;
  white-space: nowrap;
}
.site-footer {
  padding: 1.4rem 0;
  border-top: 1px solid rgb(215 193 172 / .64);
  background: rgb(250 247 242 / .88);
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem 1rem;
  align-items: center;
  justify-content: space-between;
}
.footer-content p {
  margin: 0;
  font-size: .9rem;
}
.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  align-items: center;
  color: var(--line);
  font-size: .86rem;
}
.legal-page {
  padding: 3rem 0 4rem;
}
.legal-lang-content[hidden] {
  display: none;
}
.legal-hero {
  max-width: 820px;
  margin-bottom: 1.6rem;
}
.legal-hero h1 {
  max-width: 16ch;
}
.legal-card {
  display: grid;
  gap: 1.1rem;
  padding: clamp(1.2rem, 3vw, 2rem);
  border: 1px solid rgb(215 193 172 / .54);
  border-radius: 18px;
  background: rgb(255 250 245 / .76);
  box-shadow: 0 18px 36px rgb(94 75 61 / .06);
}
.legal-card h2 {
  margin-bottom: .2rem;
  font-size: 1.35rem;
}
.legal-card p,
.legal-card li {
  line-height: 1.72;
}
.legal-card ul {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--text-muted);
}
.legal-placeholder {
  display: inline-flex;
  padding: .08rem .34rem;
  border-radius: 6px;
  background: rgb(196 138 114 / .13);
  color: var(--accent-dark);
  font-weight: 700;
}
.contact-band { background: var(--surface); border-top: 1px solid var(--line); }
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 1rem; align-items: start; }
.contact-list { list-style: none; margin: 0; padding: 0; }
.contact-list li + li { margin-top: .4rem; }
.contact-social {
  display: flex;
  align-items: center;
  gap: .38rem;
}
.social-icon {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgb(196 138 114 / .34);
  border-radius: 999px;
  background: rgb(255 250 245 / .72);
  color: var(--accent-dark);
}
.social-icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}
a { color: var(--accent-dark); }
@media (max-width: 900px) {
  .cards, .contact-grid, .start-layout, .about-layout, .services-layout, .faq-layout { grid-template-columns: 1fr; }
  .header-row { align-items: center; }
  .header-logo { width: 112px; height: 112px; }
  .header-actions { flex-direction: column; align-items: flex-end; gap: .35rem; }
  .nav-inline { flex-wrap: wrap; justify-content: flex-end; }
  h1 { max-width: 17ch; }
  .lead { font-size: 1rem; max-width: 32ch; }
  .hero-photo { min-height: 620px; height: 70vh; object-position: 68% center; }
  .hero-overlay {
    width: 100%;
    justify-content: flex-start;
    padding-top: 1.6rem;
    background: linear-gradient(180deg, rgb(250 247 242 / 0.9) 0%, rgb(250 247 242 / 0.66) 38%, rgb(250 247 242 / 0.1) 72%);
  }
  .start-action {
    position: static;
    margin-top: .8rem;
  }
  .services-action {
    position: static;
    margin-top: .8rem;
  }
  .modal-actions {
    justify-content: stretch;
  }
  .modal-actions .btn {
    flex: 1;
  }
  .about-heading {
    position: static;
    min-height: 0;
  }
  .about-photo-wrap {
    max-width: 420px;
  }
  .faq-heading {
    position: static;
  }
  .jove-card {
    min-height: 0;
    padding-right: clamp(1.35rem, 4vw, 2.4rem);
    padding-bottom: 8rem;
  }
  .jove-image-wrap {
    width: 126px;
    min-width: 0;
    right: 1.2rem;
    bottom: 1.1rem;
  }
  .jove-image { transform: rotate(-5deg); }
  .jove-btn {
    white-space: normal;
  }
}
