:root {
  --bg: #080608;
  --bg-soft: #121010;
  --wine: #1d0a0e;
  --gold: #c7a46a;
  --gold-soft: #a68a5a;
  --gold-bright: #e9d1a0;
  --ivory: #f2ebdc;
  --dim: #9a9488;
  --line: rgba(242, 235, 220, 0.1);
  --line-strong: rgba(242, 235, 220, 0.2);
  --serif: "Iowan Old Style", Palatino, "Book Antiqua", Georgia, serif;
  --sans: Inter, "Helvetica Neue", Helvetica, Arial, system-ui, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }

html { background: var(--bg); overflow-x: hidden; scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ivory);
  font-family: var(--sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; }
img { display: block; max-width: 100%; }
ul { margin: 0; padding: 0; list-style: none; }

:focus-visible { outline: 1px solid var(--gold); outline-offset: 6px; }
::selection { background: var(--wine); color: var(--ivory); }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  transform: translateY(-180%);
  padding: 10px 12px;
  background: var(--ivory);
  color: var(--bg);
  font-size: 12px;
}

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

#grain {
  position: fixed;
  z-index: 2;
  inset: -20%;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain-move 8s steps(10) infinite;
}

@keyframes grain-move {
  0%, 100% { transform: translate(0, 0); }
  20% { transform: translate(-8%, 4%); }
  40% { transform: translate(4%, -7%); }
  60% { transform: translate(-3%, 9%); }
  80% { transform: translate(8%, -2%); }
}

#cursor {
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  display: none;
  pointer-events: none;
}

.cursor-dot {
  position: absolute;
  top: -1.5px;
  left: -1.5px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--ivory);
}

.cursor-ring {
  position: absolute;
  top: -14px;
  left: -14px;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(242, 235, 220, 0.26);
  border-radius: 50%;
  transition: all 0.5s var(--ease);
}

#cursor.is-active .cursor-ring {
  top: -36px;
  left: -36px;
  width: 72px;
  height: 72px;
  border-color: var(--gold);
  background: rgba(199, 164, 106, 0.09);
}

#cursor.is-active .cursor-dot { background: var(--gold); }

@media (pointer: fine) {
  #cursor { display: block; }
  body.has-custom-cursor,
  body.has-custom-cursor a,
  body.has-custom-cursor button { cursor: none; }
}

.site-header {
  position: fixed;
  z-index: 40;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 17px 20px;
  background: linear-gradient(to bottom, rgba(8, 6, 8, 0.9), rgba(8, 6, 8, 0));
}

.brand {
  flex: 1 1 auto;
  min-width: 0;
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.brand i { color: var(--dim); font-style: italic; }

.header-actions { display: flex; flex: 0 0 auto; align-items: center; gap: 10px; }

.language-switch {
  display: flex;
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--line-strong);
}

.language-switch button {
  min-width: 35px;
  padding: 6px 8px;
  border: 0;
  background: transparent;
  color: var(--dim);
  font-size: 10px;
  letter-spacing: 0.18em;
  cursor: pointer;
  transition: 0.3s var(--ease);
}

.language-switch button:hover,
.language-switch button.is-active { background: rgba(242, 235, 220, 0.08); color: var(--ivory); }

.whatsapp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  transition: 0.45s var(--ease);
}

.header-cta {
  padding: 11px 14px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.whatsapp-button:hover { border-color: var(--gold); color: var(--gold); background: rgba(199, 164, 106, 0.06); }

.shimmer-gold {
  background: linear-gradient(100deg, var(--gold) 10%, var(--gold-bright) 30%, var(--ivory) 50%, var(--gold) 70%, var(--gold-soft) 90%);
  background-size: 200% auto;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer-gold 3.2s linear infinite;
}

@keyframes shimmer-gold { to { background-position: 200% center; } }

.shimmer {
  display: inline-block;
  background: linear-gradient(90deg, var(--gold) 0%, #fff 20%, var(--gold) 40%, var(--ivory) 60%, var(--gold) 80%);
  background-size: 300% auto;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 4.5s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

.shimmer-interactive {
  --mx: 50%;
  display: inline-block;
  background: radial-gradient(140px circle at var(--mx) 50%, var(--gold-bright) 0%, var(--gold) 18%, var(--ivory) 42%, var(--gold) 68%);
  background-size: 200% auto;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: filter 0.4s var(--ease);
}

.shimmer-interactive:hover { filter: brightness(1.25); }

.magnetic-title .row,
.magnetic-line {
  --tx: 0px;
  --ty: 0px;
  transform: translate3d(var(--tx), var(--ty), 0);
  transition: transform 0.6s var(--ease);
}

.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 100svh;
  overflow: hidden;
  background: var(--bg);
}

.hero-media { position: absolute; inset: 0; overflow: hidden; }

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.78) contrast(1.08) saturate(0.8);
  transform: scale(1.06);
  animation: slow-zoom 18s var(--ease) forwards;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(to top, var(--bg) 8%, rgba(8, 6, 8, 0.6) 48%, rgba(8, 6, 8, 0.15) 100%),
    radial-gradient(70% 60% at 22% 18%, rgba(58, 18, 24, 0.45), transparent 60%);
}

@keyframes slow-zoom { to { transform: scale(1); } }

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px 36px;
}

.kicker,
.kicker-small {
  margin: 0 0 22px;
  color: var(--dim);
  font-size: 10px;
  letter-spacing: 0.24em;
  line-height: 1.45;
  text-transform: uppercase;
}

.kicker::before {
  display: inline-block;
  width: 28px;
  height: 1px;
  margin: 0 12px 3px 0;
  content: "";
  background: var(--gold);
  opacity: 0.72;
}

.hero-title {
  max-width: 950px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(50px, 12.8vw, 176px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.84;
}

.hero-title .row { display: block; overflow: hidden; }

.hero-title .row > span {
  display: block;
  transform: translateY(108%);
  transition: transform 1.2s var(--ease);
}

.hero-title .row > span.is-visible { transform: translateY(0); }

.hero-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-top: 32px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.hero-foot p { max-width: 34ch; margin: 0; color: rgba(242, 235, 220, 0.62); font-size: 13.5px; line-height: 1.72; }

.scroll-hint { display: flex; align-items: center; gap: 12px; color: var(--dim); font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase; }
.scroll-hint i { position: relative; display: block; width: 28px; height: 1px; overflow: hidden; background: var(--line-strong); }
.scroll-hint i::after { position: absolute; inset: 0; width: 100%; content: ""; background: var(--gold); transform: translateX(-100%); animation: line-run 2.2s var(--ease) infinite; }
@keyframes line-run { to { transform: translateX(100%); } }

.wrap { width: min(100%, 1600px); margin: 0 auto; padding: 0 20px; }

.statement { width: min(100%, 1600px); margin: 0 auto; padding: 16vh 20px 12vh; }

.big-quote {
  max-width: 17ch;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(27px, 5vw, 64px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.big-quote span { color: rgba(242, 235, 220, 0.42); }

.sense {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 720px;
  margin-top: 56px;
  border-top: 1px solid var(--line);
}

.sense > div { padding: 16px; border-right: 1px solid var(--line); }
.sense > div:first-child { padding-left: 0; }
.sense > div:last-child { padding-right: 0; border-right: 0; }
.sense b { display: block; margin-bottom: 8px; font-size: 10px; font-weight: 400; letter-spacing: 0.19em; text-transform: uppercase; }
.sense span { display: block; color: var(--dim); font-size: 12px; line-height: 1.55; }

.editorial { border-top: 1px solid var(--line); }

.editorial-row { display: grid; grid-template-columns: 1fr; border-bottom: 1px solid var(--line); }

.media { position: relative; aspect-ratio: 4 / 5; overflow: hidden; background: var(--bg-soft); }
.media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.82) contrast(1.06); transition: transform 1.6s var(--ease); }
.editorial-row:hover .media img { transform: scale(1.04); }

.editorial-text { display: flex; flex-direction: column; justify-content: center; padding: 36px 20px; }
.number { margin-bottom: 14px; color: var(--gold-soft); font-size: 10px; letter-spacing: 0.2em; }
.editorial-text h2 { max-width: 11ch; margin: 0 0 14px; font-family: var(--serif); font-size: clamp(25px, 3.2vw, 42px); font-weight: 400; letter-spacing: -0.025em; line-height: 0.96; }
.editorial-text p { max-width: 37ch; margin: 0; color: rgba(242, 235, 220, 0.58); font-size: 14px; line-height: 1.8; }
.line { width: 22px; height: 1px; margin-top: 20px; background: var(--gold); opacity: 0.65; }

.services { padding: 14vh 0 10vh; }

.services-heading { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 48px; }
.services-heading h2 { margin: 0; font-family: var(--serif); font-size: clamp(35px, 5.6vw, 84px); font-weight: 400; letter-spacing: -0.04em; line-height: 0.9; }
.services-heading p { max-width: 33ch; margin: 0; color: rgba(242, 235, 220, 0.52); font-size: 13px; }

.services-list {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--line);
}

.service-item {
  display: flex;
  align-items: baseline;
  gap: 14px;
  min-width: 0;
  padding: 21px 0;
  border-bottom: 1px solid var(--line);
}

.service-item > span { flex: 0 0 auto; color: var(--gold-soft); font-size: 9px; letter-spacing: 0.16em; }
.service-item h3 { margin: 0; font-family: var(--serif); font-size: 20px; font-weight: 400; letter-spacing: -0.015em; line-height: 1.08; }

.location { padding: 10vh 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-soft); }
.location-grid { display: grid; gap: 24px; }
.kicker-small { margin-bottom: 12px; color: var(--gold-soft); }
.location h2 { max-width: 18ch; margin: 0; font-family: var(--serif); font-size: clamp(24px, 3.6vw, 46px); font-weight: 400; letter-spacing: -0.025em; line-height: 0.98; }
.location-grid > p { max-width: 48ch; margin: 0; color: rgba(242, 235, 220, 0.58); font-size: 13.5px; line-height: 1.8; }

.final { padding: 18vh 0 12vh; text-align: center; }
.final-title { max-width: 10ch; margin: 0 auto 18px; font-family: var(--serif); font-size: clamp(43px, 7.6vw, 108px); font-weight: 400; letter-spacing: -0.05em; line-height: 0.86; }
.final-title em { color: var(--dim); font-style: italic; }
.final p { max-width: 32ch; margin: 0 auto 36px; color: rgba(242, 235, 220, 0.55); font-size: 14px; }
.final-cta { gap: 16px; padding: 18px 28px; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; }
.dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 12px var(--gold); }
.micro { margin-top: 14px !important; color: var(--dim) !important; font-size: 10px !important; letter-spacing: 0.14em; text-transform: uppercase; }

footer { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; padding: 24px 20px; border-top: 1px solid var(--line); color: var(--dim); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; }

.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.img-reveal { overflow: hidden; }
.img-reveal img { transform: scale(1.08); transition: transform 1.6s var(--ease); }
.img-reveal.is-visible img { transform: scale(1); }

@media (min-width: 680px) {
  .site-header { padding-inline: 28px; }
  .hero-content { padding-inline: 28px; }
  .statement { padding-inline: 28px; }
  .wrap { padding-inline: 28px; }
  .editorial-text { padding: 48px 8vw; }
}

@media (min-width: 800px) {
  .services-list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .service-item { min-height: 126px; flex-direction: column; align-items: flex-start; justify-content: space-between; padding: 26px 24px; border-right: 1px solid var(--line); }
  .service-item:nth-child(3n) { border-right: 0; }
  .service-item h3 { font-size: 21px; }
}

@media (min-width: 900px) {
  .editorial-row { grid-template-columns: 1.15fr 0.85fr; }
  .editorial-row.is-reversed { grid-template-columns: 0.85fr 1.15fr; }
  .editorial-row.is-reversed .media { order: 2; }
  .media { min-height: 84vh; aspect-ratio: auto; }
  .editorial-text { padding: 56px; }
  .location-grid { grid-template-columns: 1.1fr 0.9fr; align-items: end; }
}

@media (max-width: 470px) {
  .site-header { padding: 14px 12px; }
  .brand { font-size: 12px; letter-spacing: 0.03em; }
  .brand i { display: none; }
  .header-actions { gap: 6px; }
  .language-switch button { min-width: 30px; padding-inline: 6px; }
  .header-cta { padding: 10px 9px; font-size: 9px; letter-spacing: 0.14em; }
  .hero-content { padding-right: 16px; padding-left: 16px; }
  .statement { padding-right: 16px; padding-left: 16px; }
  .wrap { padding-right: 16px; padding-left: 16px; }
  .sense { margin-top: 38px; }
  .sense > div { padding: 13px 9px; }
  .sense span { font-size: 11px; }
  footer { padding-inline: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  #grain, #cursor { display: none !important; }
  .reveal { opacity: 1; transform: none; }
  .shimmer, .shimmer-gold, .shimmer-interactive { color: var(--gold); background: none; -webkit-text-fill-color: currentColor; animation: none; }
  .hero-media img { animation: none; transform: none; }
  .scroll-hint i::after { animation: none; transform: translateX(0); }
}
