:root {
  --bg: #f1f0eb;
  --ink: #151515;
  --muted: #6e6d68;
  --line: rgba(21, 21, 21, 0.24);
  --accent: #aaa58f;
  --pad: clamp(20px, 3.2vw, 54px);
  --ease: cubic-bezier(0.76, 0, 0.24, 1);
  color-scheme: light;
}

* { box-sizing: border-box; }

html { min-width: 320px; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.35;
}

a, button { color: inherit; }
a { text-decoration: none; }
button { font: inherit; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--bg);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.intro {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #b8b4ae;
  color: #111;
  transition: visibility 0s 1.2s, opacity 1.2s var(--ease), transform 1.2s var(--ease);
}
.intro::before {
  content: "";
  position: absolute;
  inset: -3%;
  background: url("assets/lake-como-dawn.webp") center center / cover no-repeat;
  animation: landscape-breathe 5.2s ease-out both;
}
.intro::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12,20,27,.18), rgba(226,216,203,.06) 45%, rgba(9,20,28,.22));
}
.intro.is-hidden { opacity: 0; transform: scale(1.035); visibility: hidden; pointer-events: none; }
.intro-skip {
  position: absolute;
  z-index: 3;
  top: 28px;
  right: 32px;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.72);
  padding: 3px 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
  text-shadow: 0 1px 14px rgba(0,0,0,.35);
}
.intro-lockup { position: relative; z-index: 2; display: grid; justify-items: center; gap: clamp(16px, 2.4vh, 28px); transform: translateY(20px); }
.intro-mark { position: relative; width: min(39vw, 340px); aspect-ratio: 1; filter: drop-shadow(0 5px 22px rgba(255,255,255,.12)); }
.intro-piece { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; }
.intro-piece--ring { animation: original-ring-in 2.15s .15s var(--ease) both; }
.intro-piece--l { clip-path: inset(0 50% 0 0); animation: original-l-in 1.7s .42s var(--ease) both; }
.intro-piece--r { clip-path: inset(0 0 0 50%); animation: original-r-in 1.7s .42s var(--ease) both; }
.intro-signature { display: flex; align-items: baseline; justify-content: center; margin: 0; color: #111; font-size: clamp(13px, 1.35vw, 20px); font-weight: 300; line-height: 1; letter-spacing: -.035em; white-space: nowrap; text-shadow: 0 1px 14px rgba(255,255,255,.38); opacity: 0; animation: signature-in 1.05s 2.55s var(--ease) forwards; }
.intro-signature strong { font-weight: 700; }

@keyframes landscape-breathe { from { transform: scale(1.065); filter: saturate(.82) brightness(.92); } to { transform: scale(1); filter: saturate(.9) brightness(1); } }
@keyframes original-ring-in { from { transform: rotate(-24deg) scale(.9); opacity: 0; } to { transform: rotate(0) scale(1); opacity: 1; } }
@keyframes original-l-in { from { transform: translateX(-76px); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
@keyframes original-r-in { from { transform: translateX(76px); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
@keyframes signature-in { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

.holding-page {
  min-height: 100svh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 18px var(--pad) 26px;
}
.holding-header { display: flex; align-items: center; justify-content: space-between; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-symbol { position: relative; display: block; flex: 0 0 auto; width: 58px; height: 58px; }
.brand-symbol img, .holding-emblem img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; }
.brand-name { font-size: 12px; line-height: 1.12; letter-spacing: -.02em; }
.brand-name strong { font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }

.language-switcher { display: flex; align-items: center; gap: 5px; color: var(--muted); }
.language-icon { width: 18px; height: 18px; margin-right: 3px; fill: none; stroke: currentColor; stroke-width: 1.35; stroke-linecap: round; stroke-linejoin: round; }
.language-switcher a { border-bottom: 1px solid transparent; padding: 6px 1px 4px; color: var(--muted); font-size: 13px; line-height: 1; letter-spacing: .06em; }
.language-switcher a[aria-current="page"] { border-bottom-color: currentColor; color: var(--ink); }
.language-switcher a:focus-visible { outline: 1px solid currentColor; outline-offset: 3px; }

.holding-content { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(240px, .65fr); align-items: center; gap: clamp(30px, 6vw, 110px); padding: 7vh 0; }
.holding-copy { position: relative; z-index: 1; }
.eyebrow { margin: 0 0 clamp(28px, 5vh, 70px); color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .14em; }
.holding-copy h1 { max-width: 1100px; margin: 0; font-size: clamp(58px, 9.5vw, 154px); font-weight: 400; line-height: .84; letter-spacing: -.075em; }
.holding-copy h1 em { font-family: Georgia, "Times New Roman", serif; font-weight: 400; color: var(--accent); }
.holding-lead { max-width: 600px; margin: clamp(30px, 5vh, 66px) 0 0; color: var(--muted); font-size: clamp(16px, 1.45vw, 22px); line-height: 1.45; letter-spacing: -.015em; }
.holding-emblem { position: relative; width: min(30vw, 430px); aspect-ratio: 1; justify-self: end; opacity: .22; }

.holding-footer { display: grid; grid-template-columns: 1.25fr .68fr 1.08fr .92fr .72fr; gap: clamp(18px, 2.6vw, 46px); padding-top: 20px; border-top: 1px solid var(--line); }
.holding-footer a, .holding-footer address, .holding-footer .footer-detail { display: grid; align-content: start; gap: 7px; min-width: 0; font-style: normal; }
.holding-footer small { color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .12em; }
.instagram-label { display: inline-flex; align-items: center; gap: 7px; }
.instagram-label svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 1.55; stroke-linecap: round; stroke-linejoin: round; }
.instagram-label .instagram-dot { fill: currentColor; stroke: none; }
.holding-footer span { font-size: clamp(14px, 1.1vw, 17px); overflow-wrap: anywhere; }
.holding-footer a span { transition: color .25s ease; }
.holding-footer a:hover span { color: var(--accent); }

@media (max-width: 1100px) {
  .holding-footer { grid-template-columns: 1fr 1fr 1fr; row-gap: 28px; }
}

@media (max-width: 900px) {
  .holding-content { grid-template-columns: 1fr; }
  .holding-emblem { position: absolute; right: var(--pad); width: min(42vw, 320px); opacity: .12; }
  .holding-footer { grid-template-columns: 1fr 1fr; row-gap: 28px; }
}

@media (max-width: 560px) {
  .intro::before { background-position: 54% center; }
  .intro-mark { width: min(68vw, 280px); }
  .intro-lockup { gap: 14px; transform: translateY(12px); }
  .intro-signature { font-size: 12px; }
  .intro-skip { top: 20px; right: 20px; }
  .holding-page { padding-top: 12px; }
  .brand-symbol { width: 48px; height: 48px; }
  .brand-name { display: none; }
  .language-switcher { gap: 4px; }
  .language-icon { width: 17px; height: 17px; margin-right: 1px; }
  .holding-content { padding: 9vh 0 7vh; }
  .holding-copy h1 { font-size: clamp(54px, 18vw, 86px); }
  .eyebrow { margin-bottom: 7vh; }
  .holding-lead { max-width: 34rem; }
  .holding-emblem { top: 22%; width: 58vw; }
  .holding-footer { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .intro { display: none; }
}
