:root {
  --bg: #efeae6;
  --bg-deep: #e7e0da;
  --paper: #f7f3ef;
  --ink: #1c1614;
  --muted: #6d625c;
  --line: rgba(28, 22, 20, 0.12);
  --forest: #2a1f24;
  --forest-soft: #4a353c;
  --accent: #c45b6a;
  --accent-soft: rgba(196, 91, 106, 0.14);
  --glass: rgba(247, 243, 239, 0.78);
  --shadow: 0 18px 50px rgba(28, 22, 20, 0.12);
  --radius: 18px;
  --font-display: "Syne", "Arial Narrow", sans-serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --header-h: 68px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --safe-b: env(safe-area-inset-bottom, 0px);
  /* Somee free plan injects a bottom ad banner on mobile */
  --host-ad-b: 0px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(900px 480px at 100% -10%, rgba(228, 87, 46, 0.08), transparent 55%),
    radial-gradient(700px 420px at 0% 20%, rgba(47, 86, 74, 0.1), transparent 50%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 100%);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: .5rem 1rem;
  z-index: 1000;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--forest), var(--accent));
  z-index: 80;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 1.1rem;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .35s var(--ease), border-color .35s var(--ease), color .35s var(--ease);
  color: #f4f7f4;
}
.site-header.scrolled {
  background: var(--glass);
  border-bottom-color: var(--line);
  color: var(--ink);
  box-shadow: 0 8px 30px rgba(21, 36, 31, 0.06);
}

.logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(0.92rem, 3.6vw, 1.45rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  min-width: 0;
  flex: 1 1 auto;
  max-width: calc(100% - 7.5rem);
  line-height: 1.15;
  white-space: normal;
  overflow-wrap: anywhere;
}

.site-nav {
  display: none;
  gap: 1.15rem;
  align-items: center;
}
.site-nav a {
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: .78;
  transition: opacity .2s;
}
.site-nav a:hover { opacity: 1; }

.header-actions {
  display: flex;
  align-items: center;
  gap: .65rem;
  flex: 0 0 auto;
}

.lang-switch {
  display: flex;
  gap: .1rem;
  border: 1px solid rgba(244, 247, 244, 0.28);
  padding: .12rem;
  border-radius: 999px;
}
.site-header.scrolled .lang-switch { border-color: var(--line); }
.lang-switch a {
  font-size: .7rem;
  letter-spacing: .08em;
  padding: .32rem .55rem;
  border-radius: 999px;
  opacity: .7;
}
.lang-switch a.active {
  background: rgba(244, 247, 244, 0.18);
  opacity: 1;
}
.site-header.scrolled .lang-switch a.active {
  background: var(--forest);
  color: #fff;
}

.header-book {
  display: none;
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .55rem .9rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
}

.menu-btn {
  width: 42px;
  height: 42px;
  display: grid;
  place-content: center;
  gap: 6px;
}
.menu-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  transition: transform .25s var(--ease);
}

@media (min-width: 920px) {
  .site-nav { display: flex; }
  .menu-btn { display: none; }
  .header-book { display: inline-flex; }
  .site-header { padding: 0 2rem; }
}

@media (max-width: 919px) {
  .site-nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: var(--header-h) 0 0 0;
    background: rgba(30, 58, 50, 0.97);
    color: #f4f7f4;
    padding: 1.5rem;
    gap: 1.25rem;
    align-items: flex-start;
    z-index: 49;
  }
  .site-nav.open a {
    font-family: var(--font-display);
    font-size: 1.6rem;
    letter-spacing: .04em;
    text-transform: none;
    opacity: 1;
  }
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  color: #f7faf7;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  background: var(--forest);
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: heroDrift 18s var(--ease) infinite alternate;
}
@keyframes heroDrift {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to { transform: scale(1.1) translate3d(-1.5%, -1%, 0); }
}
.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(21, 36, 31, 0.15) 0%, rgba(21, 36, 31, 0.28) 40%, rgba(21, 36, 31, 0.88) 100%),
    linear-gradient(90deg, rgba(21, 36, 31, 0.45), transparent 55%);
}
.hero-grain {
  position: absolute;
  inset: 0;
  opacity: .18;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}
.hero-copy {
  position: relative;
  z-index: 2;
  padding: 0 1.25rem calc(5.5rem + var(--safe-b));
  width: min(920px, 100%);
  max-width: 100%;
}
.hero-kicker {
  margin: 0 0 .65rem;
  font-size: .82rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(244, 247, 244, 0.78);
}
.hero-name {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.55rem, 11.5vw, 8.5rem);
  line-height: 0.96;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.hero-name-line {
  display: block;
}
.hero-tagline {
  margin: 1.1rem 0 0;
  max-width: 34ch;
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  color: rgba(244, 247, 244, 0.88);
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-top: 1.5rem;
}
.hero-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  align-items: center;
  margin-top: 1.25rem;
}
.hero-loc {
  font-size: .85rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  opacity: .8;
}
.avail-pill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .4rem .7rem;
  border-radius: 999px;
  background: rgba(244, 247, 244, 0.14);
  border: 1px solid rgba(244, 247, 244, 0.22);
}
.avail-pill::before {
  content: "";
  width: .45rem;
  height: .45rem;
  border-radius: 50%;
  background: #7dce9a;
  box-shadow: 0 0 0 4px rgba(125, 206, 154, 0.2);
}
.avail-busy::before { background: #f0c36a; }
.avail-bookingonly::before { background: #8eb7ff; }

.btn-primary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .8rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: .04em;
  transition: transform .2s var(--ease), background .2s, color .2s, border-color .2s;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover { transform: translateY(-2px); }
.btn-ghost {
  border: 1px solid rgba(244, 247, 244, 0.4);
  color: #fff;
}
.btn-ghost:hover { background: rgba(244, 247, 244, 0.1); }

.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: calc(1.2rem + var(--safe-b));
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-hint span {
  display: block;
  width: 1px;
  height: 42px;
  background: linear-gradient(transparent, rgba(244, 247, 244, 0.8));
  animation: scrollPulse 1.8s ease infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .3; transform: scaleY(.7); }
  50% { opacity: 1; transform: scaleY(1); }
}

.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--forest);
  color: #e8f0eb;
  padding: .85rem 0;
}
.marquee-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: marquee 28s linear infinite;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.marquee em { opacity: .45; font-style: normal; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.section { padding: 4.5rem 0; }
.section-inner {
  width: min(1120px, calc(100% - 2.2rem));
  margin: 0 auto;
}
.section-head { margin-bottom: 1.75rem; max-width: 40rem; }
.section-head.inline-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  align-items: end;
  max-width: none;
}
.eyebrow {
  margin: 0 0 .4rem;
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}
.section-head h2,
.about-title,
.contact-intro h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.2rem);
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.section-desc {
  margin: .75rem 0 0;
  color: var(--muted);
  max-width: 48ch;
}
.section-desc.tight { margin: 0; max-width: 28ch; }

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  transition-delay: var(--d, 0ms);
}
.reveal.in {
  opacity: 1;
  transform: none;
}

.about-spread {
  display: grid;
  gap: 1.75rem;
}
.about-visual {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
  background: var(--forest);
}
.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-stamp {
  position: absolute;
  right: .9rem;
  bottom: .9rem;
  background: rgba(244, 247, 244, 0.92);
  color: var(--forest);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .55rem .75rem;
  border-radius: 999px;
}
.about-text .lead {
  margin: 1rem 0 0;
  font-size: 1.08rem;
  color: var(--ink);
  max-width: 40ch;
}
.booking-note {
  margin: 1.1rem 0 0;
  padding: .9rem 1rem;
  border-left: 3px solid var(--accent);
  background: rgba(255, 255, 255, 0.45);
  color: var(--muted);
  border-radius: 0 12px 12px 0;
}
.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem 1.2rem;
  margin-top: 1.4rem;
}
.text-link {
  font-size: .9rem;
  font-weight: 600;
  color: var(--forest-soft);
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
}
@media (min-width: 860px) {
  .about-spread {
    grid-template-columns: 1.05fr 1fr;
    gap: 3rem;
    align-items: center;
  }
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .75rem;
  margin: 0;
}
.stat-item {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem 1.05rem;
}
.stat-item dt {
  margin: 0;
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}
.stat-item dd {
  margin: .35rem 0 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
}
@media (min-width: 760px) {
  .stats-strip { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (min-width: 1000px) {
  .stats-strip { grid-template-columns: repeat(6, minmax(0, 1fr)); }
}

.featured-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(230px, 78%);
  gap: .9rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: .4rem;
  scrollbar-width: none;
}
.featured-rail::-webkit-scrollbar { display: none; }
.featured-card { scroll-snap-align: start; display: grid; gap: .55rem; }
.featured-media {
  aspect-ratio: 4 / 5;
  border-radius: 22px;
  overflow: hidden;
}
.featured-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
}
.featured-meta strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
}
@media (min-width: 900px) {
  .featured-rail {
    grid-auto-flow: row;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: visible;
  }
}

.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .55rem;
}
.gallery-item { position: relative; }
.gallery-card {
  position: relative;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  background: var(--forest);
  padding: 0;
  text-align: left;
}
.gallery-card img,
.gallery-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .9s var(--ease), filter .9s var(--ease);
}
.gallery-card:hover img,
.gallery-card:focus-visible img {
  transform: scale(1.05);
  filter: saturate(1.05);
}
.gallery-card-meta {
  position: absolute;
  inset: auto 0 0 0;
  padding: .7rem .8rem;
  background: linear-gradient(transparent, rgba(21, 36, 31, .78));
  color: #fff;
  opacity: 0;
  transition: opacity .25s;
}
.gallery-card:hover .gallery-card-meta,
.gallery-card:focus-visible .gallery-card-meta { opacity: 1; }
.gallery-card-meta strong {
  font-family: var(--font-display);
  font-size: .95rem;
}
.span-tall .gallery-card { aspect-ratio: 3 / 4; }
.span-wide .gallery-card { aspect-ratio: 5 / 4; }
@media (min-width: 720px) {
  .gallery-mosaic {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: .75rem;
  }
  .gallery-item { grid-column: span 2; }
  .span-wide { grid-column: span 3; }
  .span-tall { grid-column: span 2; grid-row: span 2; }
  .span-tall .gallery-card { height: 100%; aspect-ratio: auto; min-height: 100%; }
  .gallery-card-meta { opacity: 1; }
}

.like-btn {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  border: 1px solid rgba(21, 36, 31, 0.12);
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  border-radius: 999px;
  padding: .28rem .65rem;
  font-size: .78rem;
  backdrop-filter: blur(8px);
}
.like-btn.liked,
.like-btn.liked .like-heart { color: var(--accent); }
.like-fab {
  position: absolute;
  right: .45rem;
  bottom: .45rem;
  z-index: 2;
  border-color: transparent;
  background: rgba(255, 255, 255, 0.9);
}
.like-heart.pop { animation: likePop .35s ease; }
@keyframes likePop {
  0% { transform: scale(1); }
  40% { transform: scale(1.35); }
  100% { transform: scale(1); }
}

.brands-rail {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .75rem;
}
.brand-chip {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: .75rem;
  align-items: center;
  padding: .65rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--line);
}
.brand-chip img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 12px;
}
.brand-chip strong {
  display: block;
  font-family: var(--font-display);
  font-size: .95rem;
}
.brand-chip em {
  display: block;
  font-style: normal;
  color: var(--muted);
  font-size: .8rem;
  margin-top: .15rem;
}
@media (min-width: 800px) {
  .brands-rail { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.testimonial-rail {
  display: flex;
  gap: .85rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: .4rem;
  scrollbar-width: none;
}
.testimonial-rail::-webkit-scrollbar { display: none; }
.testimonial-card {
  flex: 0 0 min(320px, 86vw);
  scroll-snap-align: start;
  margin: 0;
  padding: 1.4rem 1.3rem;
  border-radius: 22px;
  background: var(--forest);
  color: #eef5f1;
  box-shadow: var(--shadow);
}
.testimonial-card p {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.35;
  font-weight: 600;
}
.testimonial-card footer {
  margin-top: 1.2rem;
  display: grid;
  gap: .15rem;
}
.testimonial-card strong { font-size: .92rem; }
.testimonial-card span { color: rgba(238, 245, 241, 0.7); font-size: .8rem; }
@media (min-width: 900px) {
  .testimonial-rail { display: grid; grid-template-columns: repeat(3, 1fr); overflow: visible; }
  .testimonial-card { flex: none; }
}

.cv-groups { display: grid; gap: 1.5rem; }
.cv-group h3 {
  margin: 0 0 .75rem;
  font-size: .75rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
}
.cv-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .75rem; }
.cv-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}
.cv-row strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
}
.cv-sub { display: block; color: var(--muted); margin-top: .2rem; }
.cv-row p { margin: .4rem 0 0; color: var(--muted); max-width: 48ch; }
.cv-row time {
  white-space: nowrap;
  color: var(--muted);
  font-size: .85rem;
}

.faq-spread { max-width: 760px; }
.faq-list { display: grid; gap: .2rem; }
.faq-item {
  border-top: 1px solid var(--line);
  padding: .15rem 0;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 650;
  padding: .9rem 0;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  color: var(--accent);
  font-family: var(--font-body);
}
.faq-item[open] summary::after { content: "–"; }
.faq-item p {
  margin: 0 0 1rem;
  color: var(--muted);
  max-width: 54ch;
}

.contact-spread {
  display: grid;
  gap: 1.5rem;
}
.contact-direct {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem 1.2rem;
  margin-top: 1.1rem;
}
.contact-direct a {
  font-weight: 600;
  color: var(--forest-soft);
  border-bottom: 1px solid currentColor;
}
@media (min-width: 900px) {
  .contact-spread {
    grid-template-columns: .9fr 1.1fr;
    gap: 2.5rem;
    align-items: start;
  }
}

.chat-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.chat-status {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .9rem 1rem;
  border-bottom: 1px solid var(--line);
  font-size: .85rem;
  color: var(--muted);
}
.chat-dot {
  width: .55rem;
  height: .55rem;
  border-radius: 50%;
  background: #3cb371;
  box-shadow: 0 0 0 4px rgba(60, 179, 113, 0.18);
}
.chat-thread {
  height: min(360px, 48vh);
  overflow: auto;
  padding: 1rem;
  display: grid;
  gap: .65rem;
  background:
    linear-gradient(180deg, rgba(232, 238, 233, 0.65), rgba(255, 255, 255, 0.2));
}
.chat-bubble {
  max-width: 85%;
  padding: .7rem .85rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line);
}
.chat-bubble.you {
  justify-self: end;
  background: var(--forest);
  color: #eef5f1;
  border-color: transparent;
}
.chat-bubble.agent { background: #fff7f3; border-color: rgba(228, 87, 46, 0.2); }
.chat-bubble strong {
  display: block;
  font-size: .72rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: .25rem;
  opacity: .75;
}
.chat-bubble p { margin: 0; white-space: pre-wrap; }
.chat-bubble time {
  display: block;
  margin-top: .35rem;
  font-size: .7rem;
  opacity: .65;
}
.chat-bubble.pop { animation: bubbleIn .28s var(--ease); }
@keyframes bubbleIn {
  from { opacity: 0; transform: translateY(8px) scale(.98); }
  to { opacity: 1; transform: none; }
}
.chat-typing {
  display: flex;
  align-items: center;
  gap: .35rem;
  padding: 0 1rem .5rem;
  color: var(--muted);
  font-size: .8rem;
}
.chat-typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--muted);
  animation: typing 1s infinite;
}
.chat-typing span:nth-child(2) { animation-delay: .15s; }
.chat-typing span:nth-child(3) { animation-delay: .3s; }
@keyframes typing {
  0%, 100% { opacity: .3; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(-3px); }
}
.chat-composer { padding: .85rem 1rem 1rem; }
.chat-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem;
  margin-bottom: .55rem;
}
.chat-fields.compact { display: none; }
.chat-fields input,
.chat-input-wrap textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 12px;
  padding: .7rem .8rem;
  color: var(--ink);
}
.chat-input-wrap {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: .45rem;
  align-items: end;
}
.chat-send {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: grid;
  place-items: center;
}
.chat-note {
  margin: .55rem 0 0;
  font-size: .75rem;
  color: var(--muted);
}
.chat-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  padding: 0 1rem 1rem;
  font-size: .85rem;
  font-weight: 600;
}

.site-footer {
  padding: 2.5rem 1.25rem 1.5rem;
  text-align: center;
  color: var(--muted);
  border-top: 1px solid var(--line);
}
.footer-brand {
  display: grid;
  gap: .2rem;
  margin-bottom: .8rem;
}
.footer-brand strong {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--ink);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.footer-copy { margin: 0; }

.dev-band {
  display: flex;
  align-items: center;
  gap: .85rem;
  width: 100%;
  margin: 0;
  padding: 1rem 1.15rem calc(1rem + var(--safe-b));
  background: #141011;
  color: #f4ebe8;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-decoration: none;
  transition: background .25s var(--ease);
}
.dev-band:hover { background: #1d1518; }
.dev-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  flex: 0 0 auto;
  border: 2px solid rgba(196, 91, 106, 0.65);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.06);
}
.dev-band-copy {
  display: grid;
  gap: .15rem;
  min-width: 0;
  flex: 1 1 auto;
}
.dev-band-copy strong {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: .02em;
}
.dev-band-copy em {
  font-style: normal;
  font-size: .8rem;
  color: rgba(244, 235, 232, 0.68);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.dev-band-cta {
  flex: 0 0 auto;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: #e8a0ab;
}
.presskit-dev-band {
  width: min(920px, 100%);
  margin: 1.25rem auto 0;
  border-radius: 18px;
  padding-bottom: 1rem;
}

/* Developer profile page */
.dev-page {
  min-height: 100svh;
  padding: 1.25rem 1.15rem 3rem;
  background:
    radial-gradient(700px 380px at 90% -10%, rgba(196, 91, 106, 0.18), transparent 55%),
    linear-gradient(180deg, #171214 0%, #24181c 45%, #efeae6 45%, #efeae6 100%);
  color: var(--ink);
}
.dev-back {
  display: inline-flex;
  color: rgba(244, 235, 232, 0.85);
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.dev-hero {
  display: grid;
  gap: 1.25rem;
  align-items: center;
  color: #f7efec;
  margin-bottom: 2.5rem;
  width: min(920px, 100%);
  margin-inline: auto;
}
.dev-avatar-lg {
  width: 128px;
  height: 128px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(232, 160, 171, 0.85);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}
.dev-hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 7vw, 3.2rem);
  line-height: 1;
  letter-spacing: -0.02em;
}
.dev-hero .eyebrow { color: #e8a0ab; }
.dev-lead {
  margin: .7rem 0 0;
  max-width: 38ch;
  color: rgba(247, 239, 236, 0.82);
}
.dev-contacts {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-top: 1.1rem;
}
.dev-contact-chip {
  display: inline-flex;
  padding: .55rem .9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: .88rem;
  font-weight: 600;
}
.dev-systems,
.dev-cta {
  width: min(920px, 100%);
  margin: 0 auto;
}
.dev-systems {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 1.4rem 1.15rem 1.5rem;
  box-shadow: var(--shadow);
}
.dev-grid {
  display: grid;
  gap: .75rem;
  grid-template-columns: 1fr;
}
.dev-card {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: .85rem;
  row-gap: .2rem;
  padding: 1rem 1.05rem;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s;
}
.dev-card:hover {
  transform: translateY(-2px);
  border-color: rgba(196, 91, 106, 0.35);
  box-shadow: 0 12px 28px rgba(28, 22, 20, 0.08);
}
.dev-card-icon {
  grid-row: span 2;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(196, 91, 106, 0.12);
  color: #a84555;
  font-weight: 700;
  align-self: center;
}
.dev-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
}
.dev-card p {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
  grid-column: 2;
}
.dev-cta {
  margin-top: 1.25rem;
  padding: 1.5rem 1.2rem;
  border-radius: 22px;
  background: #2a1f24;
  color: #f7efec;
  text-align: center;
}
.dev-cta h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 4vw, 2rem);
}
.dev-cta p {
  margin: .55rem 0 1.1rem;
  color: rgba(247, 239, 236, 0.75);
}
.dev-cta .btn-primary { color: #fff; }

@media (min-width: 720px) {
  .dev-hero {
    grid-template-columns: auto 1fr;
    gap: 1.75rem;
  }
  .dev-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .dev-systems { padding: 1.75rem; }
}

.app-dock {
  position: fixed;
  left: 50%;
  bottom: calc(.7rem + var(--safe-b) + var(--host-ad-b));
  transform: translateX(-50%);
  width: min(420px, calc(100% - 1.2rem));
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .2rem;
  padding: .45rem;
  border-radius: 22px;
  background: rgba(244, 247, 244, 0.92);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  z-index: 40;
}
.dock-item {
  display: grid;
  justify-items: center;
  gap: .15rem;
  padding: .45rem .2rem;
  border-radius: 16px;
  color: var(--muted);
  font-size: .68rem;
}
.dock-item svg { width: 20px; height: 20px; }
.dock-item.active {
  background: var(--forest);
  color: #eef5f1;
}
@media (max-width: 919px) {
  :root {
    --host-ad-b: 78px;
  }
  body {
    padding-bottom: calc(5.2rem + var(--safe-b) + var(--host-ad-b));
  }
  .dev-band {
    padding-bottom: calc(4.8rem + var(--safe-b) + var(--host-ad-b));
  }
  .dev-band-cta { display: none; }
}
@media (min-width: 920px) {
  .app-dock { display: none; }
  .dev-band {
    padding: 1.15rem 2rem;
    justify-content: center;
  }
  .dev-band-copy { width: auto; }
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(12, 20, 17, 0.92);
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 1rem;
}
.lightbox[hidden] { display: none !important; }
.lightbox figure {
  margin: 0;
  width: min(960px, 100%);
  color: #fff;
}
.lightbox img,
.lightbox video {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 12px;
  background: #000;
}
.lightbox figcaption { margin-top: .75rem; }
.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.4rem;
}

.muted { color: var(--muted); }
.placeholder-frame {
  width: 100%;
  height: 100%;
  min-height: 280px;
  background:
    linear-gradient(135deg, rgba(47, 86, 74, 0.2), rgba(228, 87, 46, 0.15)),
    var(--bg-deep);
}

@media (min-width: 920px) {
  .hero-copy { padding: 0 2.5rem 5rem; }
  .section { padding: 5.5rem 0; }
  .logo {
    max-width: none;
    white-space: nowrap;
    font-size: 1.45rem;
  }
}

/* ——— Press kit / printable CV ——— */
.presskit-page {
  min-height: 100svh;
  padding: 1rem 1rem 3rem;
  background:
    radial-gradient(700px 360px at 100% 0%, rgba(196, 91, 106, 0.12), transparent 55%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 100%);
}
.presskit-toolbar {
  width: min(920px, 100%);
  margin: 0 auto 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  align-items: center;
  justify-content: space-between;
}
.presskit-back {
  font-weight: 600;
  color: var(--forest-soft);
}
.presskit-toolbar-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.presskit-btn {
  min-height: 42px;
  padding: .55rem 1rem;
  border-radius: 999px;
  font-size: .85rem;
}
.presskit-btn.btn-ghost {
  border: 1px solid var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.45);
}
.presskit-sheet {
  width: min(920px, 100%);
  margin: 0 auto;
  background: #fffdfb;
  color: #1c1614;
  border: 1px solid rgba(28, 22, 20, 0.08);
  border-radius: 22px;
  box-shadow: 0 24px 60px rgba(28, 22, 20, 0.12);
  padding: 1.4rem 1.25rem 1.5rem;
  position: relative;
  overflow: hidden;
}
.presskit-sheet::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 7px;
  background: linear-gradient(180deg, #c45b6a, #2a1f24);
}
.cv-header {
  display: grid;
  gap: 1.25rem;
  padding-left: .55rem;
  margin-bottom: 1.1rem;
}
.cv-kicker {
  margin: 0 0 .45rem;
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #c45b6a;
  font-weight: 700;
}
.cv-name {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 8vw, 3.6rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}
.cv-name span { display: block; }
.cv-role {
  margin: .7rem 0 0;
  font-size: 1rem;
  color: #4a353c;
  font-weight: 600;
}
.cv-tagline {
  margin: .45rem 0 0;
  color: #6d625c;
  max-width: 40ch;
}
.cv-photo {
  margin: 0;
  width: min(220px, 55%);
  aspect-ratio: 4 / 5;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(28, 22, 20, 0.1);
  box-shadow: 0 12px 30px rgba(28, 22, 20, 0.12);
}
.cv-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cv-contact-bar {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem .9rem;
  padding: .85rem 0 .85rem .55rem;
  margin-bottom: 1.1rem;
  border-block: 1px solid rgba(28, 22, 20, 0.1);
  font-size: .86rem;
  color: #4a353c;
}
.cv-contact-bar a {
  color: #2a1f24;
  font-weight: 600;
  border-bottom: 1px solid rgba(196, 91, 106, 0.45);
}
.cv-body {
  display: grid;
  gap: 1.4rem;
  padding-left: .55rem;
}
.cv-block { margin: 0 0 1.15rem; break-inside: avoid; }
.cv-block h2 {
  margin: 0 0 .65rem;
  font-family: var(--font-display);
  font-size: .95rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #c45b6a;
  border-bottom: 1px solid rgba(28, 22, 20, 0.12);
  padding-bottom: .35rem;
}
.cv-bio {
  margin: 0;
  line-height: 1.55;
  color: #2a2220;
  font-size: .98rem;
}
.cv-facts {
  margin: 0;
  display: grid;
  gap: .55rem;
}
.cv-facts div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: .75rem;
  align-items: baseline;
  padding-bottom: .4rem;
  border-bottom: 1px dashed rgba(28, 22, 20, 0.1);
}
.cv-facts dt {
  margin: 0;
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #6d625c;
}
.cv-facts dd {
  margin: 0;
  font-weight: 700;
  font-family: var(--font-display);
  text-align: right;
}
.cv-tags {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
}
.cv-tags li {
  padding: .35rem .65rem;
  border-radius: 999px;
  background: rgba(196, 91, 106, 0.1);
  color: #4a353c;
  font-size: .78rem;
  font-weight: 600;
}
.cv-note {
  margin: 0;
  color: #6d625c;
  font-size: .9rem;
  line-height: 1.45;
}
.cv-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .85rem;
}
.cv-timeline li {
  padding-left: .85rem;
  border-left: 2px solid rgba(196, 91, 106, 0.45);
}
.cv-timeline-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: .35rem 1rem;
}
.cv-timeline strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.2;
}
.cv-timeline time {
  color: #6d625c;
  font-size: .8rem;
  white-space: nowrap;
}
.cv-sub {
  display: block;
  margin-top: .2rem;
  color: #4a353c;
  font-size: .88rem;
  font-weight: 600;
}
.cv-timeline p {
  margin: .3rem 0 0;
  color: #6d625c;
  font-size: .9rem;
  line-height: 1.45;
}
.cv-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.25rem;
  padding: .75rem 0 0 .55rem;
  border-top: 1px solid rgba(28, 22, 20, 0.1);
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #6d625c;
}
.presskit-credit { text-align: center; margin-top: 1.25rem; }

@media (min-width: 800px) {
  .presskit-page { padding: 1.5rem 1.5rem 3.5rem; }
  .presskit-sheet { padding: 2rem 2.1rem 1.75rem 2rem; }
  .cv-header {
    grid-template-columns: 1fr 200px;
    align-items: end;
  }
  .cv-photo {
    width: 200px;
    justify-self: end;
  }
  .cv-body {
    grid-template-columns: 280px 1fr;
    gap: 2rem;
    align-items: start;
  }
}

@media print {
  @page {
    size: A4;
    margin: 12mm;
  }

  html, body {
    background: #fff !important;
    color: #111 !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  .no-print,
  .presskit-toolbar,
  .presskit-credit,
  .app-dock,
  .site-header,
  .scroll-progress,
  #appBoot,
  .lightbox {
    display: none !important;
  }

  .presskit-page {
    padding: 0;
    background: #fff !important;
    min-height: 0;
  }

  .presskit-sheet {
    width: 100%;
    max-width: none;
    margin: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    padding: 0 0 0 4mm;
    background: #fff !important;
    overflow: visible;
  }

  .presskit-sheet::before {
    width: 3.5mm;
  }

  .cv-header {
    grid-template-columns: 1fr 38mm;
    gap: 8mm;
    margin-bottom: 4mm;
  }

  .cv-photo {
    width: 38mm;
    border-radius: 2mm;
    box-shadow: none;
  }

  .cv-name {
    font-size: 28pt;
    color: #111 !important;
  }

  .cv-kicker,
  .cv-block h2 {
    color: #a84555 !important;
  }

  .cv-contact-bar {
    margin-bottom: 4mm;
    padding: 3mm 0;
    font-size: 9pt;
  }

  .cv-body {
    grid-template-columns: 52mm 1fr;
    gap: 7mm;
  }

  .cv-bio,
  .cv-timeline p,
  .cv-note {
    font-size: 9.5pt;
    line-height: 1.4;
  }

  .cv-block {
    margin-bottom: 4mm;
    break-inside: avoid;
  }

  .cv-timeline li {
    break-inside: avoid;
  }

  .cv-tags li {
    background: #f3e4e7 !important;
    border: 0.3pt solid #d8b0b7;
  }

  .cv-footer {
    margin-top: 5mm;
    font-size: 8pt;
  }

  a {
    color: inherit !important;
    text-decoration: none !important;
    border: 0 !important;
  }
}
