:root {
  --bg: #0b0b0e;
  --panel: rgba(255, 255, 255, 0.06);
  --panel2: rgba(255, 255, 255, 0.085);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.72);
  --faint: rgba(255, 255, 255, 0.48);
  --stroke: rgba(255, 255, 255, 0.14);
  --stroke2: rgba(255, 255, 255, 0.22);
  --accent: #e3b77a;
  --accent2: #d99a7a;
  --shadow: 0 18px 70px rgba(0, 0, 0, 0.55);
  --radius: 18px;
  --radius-sm: 12px;
  --container: 1120px;
  --page-gutter: clamp(16px, 4.2vw, 40px);
  --header-h: 72px;
  --font: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --serif: "Playfair Display", ui-serif, Georgia, serif;
  --hero-image: url("assets/574089742_18103247350733170_8500767138294361984_n.jpg");
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-padding-top: calc(var(--header-h) + env(safe-area-inset-top, 0px));
}

body {
  margin: 0;
  background: radial-gradient(1200px 760px at 30% -10%, rgba(227, 183, 122, 0.22), transparent 58%),
    radial-gradient(900px 680px at 78% 12%, rgba(217, 154, 122, 0.16), transparent 62%),
    var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.55;
  overflow-x: hidden;
}

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

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

a:hover {
  text-decoration: underline;
  text-decoration-color: rgba(227, 183, 122, 0.6);
}

.container {
  width: min(
    var(--container),
    calc(100% - var(--page-gutter) * 2 - env(safe-area-inset-left, 0px) - env(safe-area-inset-right, 0px))
  );
  max-width: 100%;
  min-width: 0;
  margin: 0 auto;
  box-sizing: border-box;
}

main {
  min-width: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--stroke2);
  background: rgba(0, 0, 0, 0.75);
  transform: translateY(-200%);
  transition: transform 180ms ease;
  z-index: 1000;
}

.skip-link:focus {
  transform: translateY(0);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: linear-gradient(to bottom, rgba(11, 11, 14, 0.85), rgba(11, 11, 14, 0.52));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header[data-scrolled="true"] {
  background: rgba(11, 11, 14, 0.92);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand:hover {
  text-decoration: none;
}

.brand-logo {
  /* min-width: 0 evită bug-ul flex + PNG mare (intrinsic width) pe Safari / iOS */
  width: clamp(48px, 5.5vw, 72px);
  height: clamp(48px, 5.5vw, 72px);
  max-width: 72px;
  max-height: 72px;
  min-width: 0;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand-text {
  display: grid;
  gap: 2px;
}

.brand-mark {
  font-family: var(--serif);
  letter-spacing: 0.24em;
  text-indent: 0.24em;
  font-weight: 600;
}

.brand-sub {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-panel a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
  padding: 10px 10px;
  border-radius: 10px;
}

.nav-panel a:hover {
  text-decoration: none;
  background: rgba(255, 255, 255, 0.06);
}

.nav-cta {
  border: 1px solid rgba(227, 183, 122, 0.45);
  background: rgba(227, 183, 122, 0.1);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--stroke2);
  background: rgba(0, 0, 0, 0.35);
  border-radius: 12px;
  width: 44px;
  height: 44px;
  cursor: pointer;
}

.nav-toggle-lines {
  width: 18px;
  height: 2px;
  background: rgba(255, 255, 255, 0.86);
  display: inline-block;
  position: relative;
}

.nav-toggle-lines::before,
.nav-toggle-lines::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: rgba(255, 255, 255, 0.86);
}

.nav-toggle-lines::before {
  top: -6px;
}

.nav-toggle-lines::after {
  top: 6px;
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  display: grid;
  align-items: end;
  overflow: clip;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  --vf-inset: clamp(18px, 4vw, 34px);
  /* safe area inside the viewfinder (accounts for inner glass inset + HUD) */
  --vf-safe-x: calc(var(--vf-inset) + 22px);
  --vf-safe-y: calc(var(--vf-inset) + 30px);
}

.hero-media {
  position: absolute;
  inset: 0;
  background: radial-gradient(1100px 680px at 30% 40%, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.86)), var(--hero-image);
  background-size: cover;
  background-position: center;
  filter: blur(18px) saturate(1.08) contrast(1.04) brightness(0.62);
  transform: scale(1.02);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 48%, rgba(0, 0, 0, 0) 0 36%, rgba(0, 0, 0, 0.62) 64%, rgba(0, 0, 0, 0.92) 100%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.82));
  mix-blend-mode: multiply;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.viewfinder {
  position: absolute;
  inset: var(--vf-inset);
  overflow: hidden;
  border-radius: 22px;
  border: 3px solid rgba(255, 255, 255, 0.24);
  isolation: isolate;
  box-shadow:
    0 0 0 2000px rgba(0, 0, 0, 0.56),
    0 0 0 1px rgba(227, 183, 122, 0.28),
    0 0 26px rgba(227, 183, 122, 0.14),
    0 26px 90px rgba(0, 0, 0, 0.75),
    inset 0 0 0 1px rgba(0, 0, 0, 0.35);
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.07), transparent 46%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.32));
}

.viewfinder::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 18px;
  background: var(--hero-image);
  background-size: cover;
  background-position: center 30%;
  filter: saturate(1.02) contrast(1.02) brightness(0.94);
  opacity: 0.92;
  z-index: 0;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.06),
    inset 0 -120px 140px rgba(0, 0, 0, 0.42);
}

.viewfinder::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0) 0 44%, rgba(0, 0, 0, 0.16) 72%, rgba(0, 0, 0, 0.38) 100%),
    radial-gradient(900px 520px at 22% 16%, rgba(255, 255, 255, 0.07), transparent 55%),
    radial-gradient(760px 520px at 84% 28%, rgba(255, 255, 255, 0.045), transparent 60%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 44%, rgba(255, 255, 255, 0.025));
  opacity: 0.42;
  z-index: 1;
  pointer-events: none;
}

.vf-corners {
  position: absolute;
  inset: 14px;
  z-index: 2;
}

.vf-corner {
  position: absolute;
  width: 28px;
  height: 28px;
  border-color: rgba(227, 183, 122, 0.92);
  filter: drop-shadow(0 0 12px rgba(227, 183, 122, 0.18));
}

.vf-corner.tl {
  top: 0;
  left: 0;
  border-left: 3px solid rgba(227, 183, 122, 0.92);
  border-top: 3px solid rgba(227, 183, 122, 0.92);
  border-top-left-radius: 10px;
}

.vf-corner.tr {
  top: 0;
  right: 0;
  border-right: 3px solid rgba(227, 183, 122, 0.92);
  border-top: 3px solid rgba(227, 183, 122, 0.92);
  border-top-right-radius: 10px;
}

.vf-corner.bl {
  bottom: 0;
  left: 0;
  border-left: 3px solid rgba(227, 183, 122, 0.92);
  border-bottom: 3px solid rgba(227, 183, 122, 0.92);
  border-bottom-left-radius: 10px;
}

.vf-corner.br {
  bottom: 0;
  right: 0;
  border-right: 3px solid rgba(227, 183, 122, 0.92);
  border-bottom: 3px solid rgba(227, 183, 122, 0.92);
  border-bottom-right-radius: 10px;
}

.vf-reticle {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0.92;
  z-index: 2;
}

.vf-line {
  position: absolute;
  background: rgba(255, 255, 255, 0.32);
}

.vf-line.h {
  width: min(360px, 52vw);
  height: 1px;
}

.vf-line.v {
  height: min(260px, 38vw);
  width: 1px;
}

.vf-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(227, 183, 122, 0.9);
  box-shadow: 0 0 0 7px rgba(227, 183, 122, 0.14);
}

.vf-hud {
  position: absolute;
  left: 14px;
  right: 14px;
  top: 12px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 2;
}

.vf-left,
.vf-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.vf-pill {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.28);
  letter-spacing: 0.18em;
}

.vf-meta {
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.16em;
}

.vf-rec {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.22);
}

.vf-rec-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #ff4d4d;
  box-shadow: 0 0 16px rgba(255, 77, 77, 0.35);
}

.vf-bottom {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  display: flex;
  justify-content: center;
  gap: 16px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.86;
  z-index: 2;
}

.hero-inner {
  position: relative;
  /* override .container: stay inside viewfinder; min-width:0 + max-width:100% avoids flex/grid content forcing wider than viewport */
  box-sizing: border-box;
  width: min(
    var(--container),
    calc(
      100% - (2 * var(--vf-safe-x)) - env(safe-area-inset-left, 0px) - env(safe-area-inset-right, 0px)
    )
  );
  max-width: 100%;
  min-width: 0;
  margin-inline: auto;
  min-height: calc(100svh - var(--header-h) - (2 * var(--vf-safe-y)));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 48px 0 48px;
  justify-self: center;
}

.kicker {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(227, 183, 122, 0.92);
  margin: 0 0 12px;
}

.hero-title {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.08;
  font-size: clamp(38px, 5vw, 64px);
  text-wrap: balance;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: auto;
  min-width: 0;
}

.hero-lede {
  margin: 0 0 22px;
  max-width: 64ch;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(15px, 2vw, 18px);
  overflow-wrap: break-word;
  hyphens: auto;
  min-width: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 26px;
  min-width: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.01em;
  cursor: pointer;
  text-decoration: none;
  user-select: none;
  max-width: 100%;
  box-sizing: border-box;
}

.btn:hover {
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, rgba(227, 183, 122, 0.96), rgba(217, 154, 122, 0.92));
  color: rgba(11, 11, 14, 0.94);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.btn-primary:hover {
  filter: brightness(1.02);
}

.btn-ghost {
  background: rgba(0, 0, 0, 0.28);
  border-color: rgba(255, 255, 255, 0.18);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.07);
}

.hero-stats {
  margin: 0;
  padding: 18px 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(8px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  min-width: 0;
}

.stat {
  min-width: 0;
}

.stat dt {
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 6px;
}

.stat dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

/* Sections */
.section {
  padding: 80px 0;
}

.section-alt {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.035), transparent 60%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.section-head {
  display: grid;
  gap: 10px;
  margin-bottom: 26px;
}

.section-title {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.02em;
  font-size: clamp(28px, 3vw, 40px);
  overflow-wrap: break-word;
  min-width: 0;
}

.section-sub {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  max-width: 70ch;
  overflow-wrap: break-word;
  hyphens: auto;
  min-width: 0;
}

.cards {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
  min-width: 0;
}

.event-cards .event-card {
  grid-column: span 3;
}

.event-cards .event-card h3 {
  margin: 0 0 8px;
}

.event-cards .event-card p {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.74);
}

.card {
  grid-column: span 6;
  min-width: 0;
  padding: 18px 18px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.11);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.22);
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: auto;
}

.card h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.card p {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.74);
}

.list {
  margin: 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.72);
}

.list li {
  margin: 6px 0;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.chip {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.18);
  color: rgba(255, 255, 255, 0.82);
  cursor: pointer;
}

.chip.is-active {
  border-color: rgba(217, 198, 165, 0.5);
  background: rgba(217, 198, 165, 0.12);
  color: rgba(255, 255, 255, 0.92);
}

.portfolio-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 2000;
}

.portfolio-modal.is-open {
  display: grid;
  place-items: center;
}

.portfolio-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

.portfolio-modal-dialog {
  position: relative;
  width: min(1000px, calc(100% - 40px));
  max-height: calc(100svh - 80px);
  overflow: auto;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(900px 520px at 20% 0%, rgba(227, 183, 122, 0.12), transparent 60%),
    radial-gradient(760px 520px at 90% 30%, rgba(217, 154, 122, 0.08), transparent 60%),
    rgba(11, 11, 14, 0.92);
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.55);
}

.portfolio-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: sticky;
  top: 0;
  background: rgba(11, 11, 14, 0.78);
  backdrop-filter: blur(10px);
  z-index: 1;
}

.portfolio-modal-title {
  margin: 0;
  font-size: 16px;
  letter-spacing: 0.02em;
}

.portfolio-modal-close {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.25);
  color: rgba(255, 255, 255, 0.88);
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}

.portfolio-modal-body {
  padding: 14px 14px 18px;
}

.portfolio-viewer {
  position: relative;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  grid-template-rows: auto auto;
  gap: 12px;
  align-items: center;
  min-width: 0;
}

.portfolio-viewer-figure {
  margin: 0;
  grid-column: 2;
}

.portfolio-viewer-img {
  width: 100%;
  height: min(62svh, 620px);
  object-fit: contain;
  border-radius: 0;
  background: rgba(0, 0, 0, 0.25);
  border: none;
  display: block;
}

.portfolio-viewer-empty {
  grid-column: 2;
  margin: 6px 0 0;
}

.portfolio-viewer-arrow {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.25);
  color: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
  display: grid;
  place-items: center;
}

.portfolio-viewer-arrow[disabled] {
  opacity: 0.4;
  cursor: not-allowed;
}

.portfolio-viewer-arrow.prev {
  grid-column: 1;
}

.portfolio-viewer-arrow.next {
  grid-column: 3;
}

.portfolio-viewer-thumbs {
  grid-column: 1 / -1;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 2px;
  -webkit-overflow-scrolling: touch;
}

.portfolio-thumb {
  flex: 0 0 auto;
  width: 88px;
  height: 64px;
  border-radius: 0;
  overflow: clip;
  border: none;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.portfolio-thumb.is-active {
  box-shadow: inset 0 0 0 2px rgba(227, 183, 122, 0.9);
}

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

.portfolio-viewer-thumbs::-webkit-scrollbar {
  height: 10px;
}

.portfolio-viewer-thumbs::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
}

.portfolio-viewer-thumbs::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.18);
  border-radius: 999px;
}

.modal-open {
  overflow: hidden;
}

.whatsapp-float {
  position: fixed;
  right: calc(18px + env(safe-area-inset-right, 0px));
  bottom: calc(18px + env(safe-area-inset-bottom, 0px));
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(520px 220px at 30% 0%, rgba(227, 183, 122, 0.18), transparent 60%),
    rgba(11, 11, 14, 0.88);
  color: #25d366;
  border: 1px solid rgba(227, 183, 122, 0.26);
  box-shadow:
    0 18px 70px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
  z-index: 1800;
}

.whatsapp-float:hover {
  text-decoration: none;
  transform: translateY(-1px);
  border-color: rgba(227, 183, 122, 0.42);
  background:
    radial-gradient(520px 220px at 30% 0%, rgba(227, 183, 122, 0.22), transparent 60%),
    rgba(11, 11, 14, 0.92);
  box-shadow:
    0 22px 80px rgba(0, 0, 0, 0.62),
    0 0 0 1px rgba(255, 255, 255, 0.07) inset;
}

.whatsapp-float:focus {
  outline: none;
  box-shadow:
    0 0 0 4px rgba(227, 183, 122, 0.2),
    0 22px 80px rgba(0, 0, 0, 0.62),
    0 0 0 1px rgba(255, 255, 255, 0.07) inset;
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
  min-width: 0;
}

.tile {
  grid-column: span 4;
  min-width: 0;
  border-radius: var(--radius);
  overflow: clip;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
  position: relative;
  min-height: 240px;
}

.tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.04);
  transform: scale(1.01);
  transition: transform 240ms ease, filter 240ms ease;
}

.tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.6));
  opacity: 0.95;
}

.tile figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
}

.tag {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.22);
}

.tile:hover img {
  transform: scale(1.05);
  filter: saturate(1.1) contrast(1.04);
}

.tile.portfolio-trigger {
  cursor: pointer;
}

.tile.portfolio-trigger:focus {
  outline: none;
  box-shadow:
    0 0 0 4px rgba(227, 183, 122, 0.14),
    var(--shadow);
}

.tile.is-hidden {
  display: none;
}

.section-cta {
  margin-top: 18px;
  padding: 18px 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.22);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}

.section-cta h3 {
  margin: 0 0 6px;
  font-size: 18px;
}

.section-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
  min-width: 0;
}

.offer-groups {
  display: grid;
  gap: 16px;
}

.offer-group {
  --offer-pad: 18px;
  padding: 18px var(--offer-pad);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.18);
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}

.offer-group-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}

.offer-group-head h3 {
  margin: 0;
  font-size: 18px;
}

.offer-group-head p {
  margin: 0;
}

.comparison-block {
  position: relative;
}

.comparison-hint {
  display: none;
  margin: 0 0 10px;
  font-size: 12px;
  line-height: 1.45;
  text-align: center;
  color: rgba(255, 255, 255, 0.62);
  letter-spacing: 0.02em;
}

.comparison {
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(900px 420px at 20% 0%, rgba(227, 183, 122, 0.08), transparent 60%),
    radial-gradient(760px 420px at 90% 30%, rgba(217, 154, 122, 0.06), transparent 60%),
    rgba(0, 0, 0, 0.2);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  touch-action: pan-x pan-y;
}

.price-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 10px 12px;
  border-radius: 999px;
  border: 0;
  background:
    radial-gradient(420px 120px at 50% 0%, rgba(227, 183, 122, 0.14), transparent 70%),
    rgba(255, 255, 255, 0.05);
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.94);
}

.comparison:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(227, 183, 122, 0.14);
  border-color: rgba(227, 183, 122, 0.35);
}

.comparison-table {
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 13px;
}

.comparison-cols-5 {
  min-width: 720px;
}

.comparison-cols-3 {
  min-width: 520px;
}

.comparison-cols-5 thead th:first-child,
.comparison-cols-5 tbody th {
  width: 32%;
  min-width: 168px;
  max-width: 300px;
}

.comparison-cols-3 thead th:first-child,
.comparison-cols-3 tbody th {
  width: 40%;
  min-width: 150px;
  max-width: 280px;
}

.comparison-table th,
.comparison-table td {
  padding: 12px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  vertical-align: top;
}

.comparison-table tr > *:last-child {
  border-right: 0;
}

.comparison-table tbody tr:last-child > * {
  border-bottom: 0;
}

.comparison-table thead th {
  position: sticky;
  top: 0;
  background: linear-gradient(to bottom, rgba(11, 11, 14, 0.94), rgba(11, 11, 14, 0.84));
  backdrop-filter: blur(10px);
  z-index: 1;
  text-align: left;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
}

.comparison-table thead th:not(:first-child) {
  text-align: center;
}

.comparison-table thead th:first-child {
  position: sticky;
  left: 0;
  z-index: 3;
  background: linear-gradient(to bottom, rgba(11, 11, 14, 0.98), rgba(11, 11, 14, 0.9));
}

.comparison-table tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.02);
}

.comparison-table tbody tr:hover > * {
  background: rgba(227, 183, 122, 0.06);
}

.comparison-table tbody tr.price-row-tr > * {
  background:
    radial-gradient(820px 190px at 20% 0%, rgba(227, 183, 122, 0.22), transparent 62%),
    rgba(0, 0, 0, 0.28) !important;
  border-top: 1px solid rgba(227, 183, 122, 0.34);
  box-shadow: inset 0 1px 0 rgba(227, 183, 122, 0.12);
}

.comparison-table tbody tr.price-row-tr:hover > * {
  /* keep highlighted even on hover */
  background:
    radial-gradient(820px 190px at 20% 0%, rgba(227, 183, 122, 0.22), transparent 62%),
    rgba(0, 0, 0, 0.28) !important;
}

.comparison-table tbody tr.price-row-tr th {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.78);
}

.comparison-table tbody th {
  position: sticky;
  left: 0;
  z-index: 2;
  background: rgba(11, 11, 14, 0.55);
  backdrop-filter: blur(8px);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.86);
  text-align: left;
  overflow-wrap: break-word;
  hyphens: auto;
}

.comparison-table td {
  text-align: center;
  color: rgba(255, 255, 255, 0.76);
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: auto;
}

.yes {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 1px solid rgba(227, 183, 122, 0.55);
  background: linear-gradient(135deg, rgba(227, 183, 122, 0.95), rgba(217, 154, 122, 0.9));
  color: rgba(11, 11, 14, 0.92);
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.28);
}

.no {
  color: rgba(255, 255, 255, 0.38);
  font-weight: 700;
}

.offer-footnote {
  margin: 10px 4px 0;
}

.step {
  grid-column: span 3;
  min-width: 0;
  padding: 18px 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(255, 255, 255, 0.04);
  overflow-wrap: break-word;
}

.step h3 {
  margin: 0 0 6px;
  font-size: 16px;
}

.step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.quotes {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
  min-width: 0;
}

.quote {
  grid-column: span 4;
  min-width: 0;
  margin: 0;
  padding: 18px 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(255, 255, 255, 0.04);
}

.quote blockquote {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.9);
}

.quote figcaption {
  color: rgba(255, 255, 255, 0.7);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 18px;
  align-items: start;
  min-width: 0;
}

.split-left p {
  color: rgba(255, 255, 255, 0.76);
  margin: 0 0 12px;
}

.about-media {
  border-radius: var(--radius);
  min-height: 360px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(900px 500px at 30% 30%, rgba(217, 198, 165, 0.14), transparent 60%),
    url("assets/523842707_18091669474733170_3892118515170664064_n.jpg");
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
  position: relative;
  overflow: clip;
}

.about-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.62));
}

.badge {
  margin-top: 12px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.24);
  padding: 14px 14px;
}

.badge-top {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(217, 198, 165, 0.9);
  margin-bottom: 8px;
}

.badge-big {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: -0.01em;
}

.muted {
  color: rgba(255, 255, 255, 0.68);
}

.small {
  font-size: 12px;
}

/* Contact */
.section-contact {
  padding-bottom: 96px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 18px;
  align-items: start;
  min-width: 0;
}

.contact-aside {
  padding: 18px 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(255, 255, 255, 0.04);
}

.contact-aside h3 {
  margin: 0 0 10px;
  font-size: 16px;
}

.contact-box {
  margin-top: 16px;
  padding: 14px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.22);
}

.contact-email {
  margin: 6px 0 6px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.form {
  padding: 18px 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(255, 255, 255, 0.04);
}

.form label {
  display: grid;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: 0.02em;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.22);
  color: rgba(255, 255, 255, 0.92);
  padding: 12px 12px;
  font-family: var(--font);
  outline: none;
}

.form textarea {
  resize: vertical;
  min-height: 130px;
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  border-color: rgba(227, 183, 122, 0.5);
  box-shadow: 0 0 0 4px rgba(227, 183, 122, 0.14);
}

.form-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 12px;
  margin-bottom: 12px;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 12px;
}

/* Footer */
.footer {
  padding: 26px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.footer-brand {
  font-family: var(--serif);
  letter-spacing: 0.24em;
  text-indent: 0.24em;
  font-weight: 600;
}

.footer-links {
  display: flex;
  gap: 12px;
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .tile img {
    transition: none;
  }
}

/* Responsive */
@media (max-width: 980px) {
  .cards .card {
    grid-column: span 12;
  }
  .event-cards .event-card {
    grid-column: span 6;
  }
  .tile {
    grid-column: span 6;
  }
  .step {
    grid-column: span 6;
  }
  .quote {
    grid-column: span 6;
  }
  .split {
    grid-template-columns: 1fr;
  }
  .contact {
    grid-template-columns: 1fr;
  }

  .section-cta {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    gap: 14px;
  }

  .section-cta .btn {
    width: 100%;
    justify-content: center;
    min-height: 44px;
  }
}

@media (max-width: 720px) {
  html {
    scroll-padding-top: calc(var(--header-h) + env(safe-area-inset-top, 0px));
  }

  .site-header {
    padding-top: env(safe-area-inset-top, 0px);
    padding-left: env(safe-area-inset-left, 0px);
    padding-right: env(safe-area-inset-right, 0px);
  }

  .hero {
    min-height: calc(100svh - var(--header-h) - env(safe-area-inset-top, 0px));
    --vf-inset: 12px;
    --vf-safe-x: calc(var(--vf-inset) + 16px);
    --vf-safe-y: calc(var(--vf-inset) + 22px);
  }

  .hero-inner {
    padding: 38px 0 40px;
  }

  .viewfinder::before {
    inset: 12px;
  }

  .hero-lede {
    font-size: 15px;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .header-inner {
    padding: 10px 0;
    gap: 12px;
  }

  .brand {
    gap: 0;
    min-width: 0;
  }

  .brand-logo {
    width: 44px;
    height: 44px;
    max-width: 44px;
    max-height: 44px;
  }

  .brand-sub {
    font-size: 10px;
    letter-spacing: 0.14em;
  }

  .nav-panel {
    position: fixed;
    left: max(16px, env(safe-area-inset-left, 0px));
    right: max(16px, env(safe-area-inset-right, 0px));
    top: calc(env(safe-area-inset-top, 0px) + 64px);
    width: auto;
    max-height: calc(100svh - (env(safe-area-inset-top, 0px) + 64px) - 16px - env(safe-area-inset-bottom, 0px));
    padding: 12px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(11, 11, 14, 0.92);
    backdrop-filter: blur(14px);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.6);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    overflow: auto;
    z-index: 60;
  }

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

  .nav-panel a {
    padding: 12px 12px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .tile {
    grid-column: span 12;
  }

  .event-cards .event-card {
    grid-column: span 12;
  }

  .step,
  .quote {
    grid-column: span 12;
  }

  .offer-group-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .offer-group {
    --offer-pad: 14px;
  }

  .comparison-hint {
    display: block;
    padding: 0 4px;
  }

  .comparison-block {
    margin-left: calc(-1 * var(--offer-pad));
    margin-right: calc(-1 * var(--offer-pad));
    width: calc(100% + 2 * var(--offer-pad));
  }

  .comparison-cols-5 {
    min-width: 1000px;
  }

  .comparison-cols-5 thead th:first-child,
  .comparison-cols-5 tbody th {
    width: 200px;
    min-width: 200px;
    max-width: 220px;
  }

  .comparison-cols-3 {
    min-width: 640px;
  }

  .comparison-cols-3 thead th:first-child,
  .comparison-cols-3 tbody th {
    width: 178px;
    min-width: 178px;
    max-width: 200px;
  }

  .comparison-table thead th:first-child,
  .comparison-table tbody th {
    box-shadow: 8px 0 22px -6px rgba(0, 0, 0, 0.78);
  }

  .comparison-table th,
  .comparison-table td {
    padding: 11px 10px;
    font-size: 12px;
  }

  .viewfinder {
    border-width: 2px;
    border-radius: 16px;
  }

  .vf-hud {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    left: 10px;
    right: 10px;
    top: 10px;
    font-size: 10px;
    letter-spacing: 0.08em;
  }

  .vf-right {
    justify-content: flex-end;
  }

  .vf-bottom {
    flex-wrap: wrap;
    justify-content: center;
    left: 10px;
    right: 10px;
    bottom: 10px;
    font-size: 10px;
    gap: 10px 14px;
  }

  .vf-pill,
  .vf-rec {
    padding: 5px 8px;
  }

  .hero-title {
    font-size: clamp(26px, 7.8vw, 44px);
    line-height: 1.08;
  }

  .section-sub {
    overflow-wrap: break-word;
    hyphens: auto;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .section {
    padding: clamp(52px, 12vw, 80px) 0;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    min-height: 44px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .form-actions .btn {
    width: 100%;
    justify-content: center;
    min-height: 44px;
  }

  .portfolio-modal-dialog {
    width: calc(100% - 20px);
    max-width: 100%;
    max-height: calc(100dvh - 20px - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px));
    margin-inline: auto;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  :root {
    --page-gutter: clamp(14px, 4vw, 24px);
  }

  .brand-sub {
    display: none;
  }

  .section {
    padding: 44px 0;
  }

  .section-contact {
    padding-bottom: max(80px, calc(96px + env(safe-area-inset-bottom, 0px)));
  }

  .portfolio-modal-dialog {
    width: calc(100% - 12px);
    border-radius: 14px;
  }

  .portfolio-modal-head {
    padding: 12px 12px;
  }

  .portfolio-modal-body {
    padding: 10px 10px 14px;
  }

  .portfolio-viewer {
    grid-template-columns: 40px minmax(0, 1fr) 40px;
    gap: 8px;
  }

  .portfolio-viewer-arrow {
    width: 40px;
    height: 40px;
    font-size: 22px;
  }

  .portfolio-viewer-img {
    height: min(48svh, 480px);
  }

  .portfolio-thumb {
    width: 76px;
    height: 56px;
  }

  .offer-group {
    --offer-pad: 12px;
  }

  .comparison-cols-5 {
    min-width: 920px;
  }

  .comparison-cols-5 thead th:first-child,
  .comparison-cols-5 tbody th {
    width: 176px;
    min-width: 176px;
    max-width: 195px;
  }

  .comparison-cols-3 {
    min-width: 580px;
  }

  .comparison-cols-3 thead th:first-child,
  .comparison-cols-3 tbody th {
    width: 158px;
    min-width: 158px;
    max-width: 175px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 10px 8px;
    font-size: 12px;
  }

  .price-pill {
    padding: 8px 10px;
    font-size: 14px;
  }

  .whatsapp-float {
    right: max(12px, env(safe-area-inset-right, 0px));
    bottom: max(12px, env(safe-area-inset-bottom, 0px));
    width: 52px;
    height: 52px;
  }

  .chips {
    gap: 8px;
  }

  .chip {
    padding: 10px 12px;
    min-height: 44px;
    align-items: center;
  }
}

@media (max-width: 380px) {
  .hero-title {
    font-size: clamp(26px, 8.5vw, 36px);
  }

  .section-title {
    font-size: clamp(22px, 6.5vw, 28px);
  }
}

@media (max-height: 520px) and (orientation: landscape) {
  .hero {
    min-height: 0;
  }

  .hero-inner {
    padding: 24px 0 28px;
  }

  .portfolio-modal-dialog {
    max-height: calc(100dvh - 12px);
  }

  .portfolio-viewer-img {
    height: min(42svh, 360px);
  }
}
