:root {
  --bg: #f7f3ec;
  --paper: rgba(255,255,255,.72);
  --paper-strong: #fffdf9;
  --ink: #25231f;
  --muted: #777168;
  --line: rgba(70,61,49,.13);
  --accent: #b9986a;
  --accent-deep: #8d704d;
  --shadow: 0 28px 80px rgba(76, 62, 43, .10);
  --radius-xl: 34px;
  --radius-lg: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 12%, rgba(255,255,255,.95), transparent 33%),
    radial-gradient(circle at 90% 16%, rgba(225,210,188,.5), transparent 28%),
    linear-gradient(135deg, #fbfaf7 0%, var(--bg) 55%, #f3ecdf 100%);
  font-family: "Manrope", system-ui, sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 0 35%, rgba(255,255,255,.35) 44%, transparent 53%);
  transform: translateX(-70%);
  animation: sheen 9s ease-in-out infinite;
  z-index: -1;
}

@keyframes sheen {
  0%, 30% { transform: translateX(-75%); opacity: 0; }
  55% { opacity: .9; }
  80%,100% { transform: translateX(75%); opacity: 0; }
}

.noise {
  position: fixed; inset: 0; pointer-events: none; z-index: 30; opacity: .18;
  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='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.05'/%3E%3C/svg%3E");
}

.orb { position: fixed; border-radius: 999px; filter: blur(12px); pointer-events: none; z-index: -1; }
.orb-a { width: 420px; height: 420px; background: rgba(233,216,192,.55); top: -160px; right: 15vw; animation: floatA 12s ease-in-out infinite; }
.orb-b { width: 300px; height: 300px; background: rgba(255,255,255,.85); left: -120px; bottom: 8vh; animation: floatB 14s ease-in-out infinite; }
@keyframes floatA { 50% { transform: translate(35px, 40px) scale(1.08); } }
@keyframes floatB { 50% { transform: translate(50px, -25px) scale(.92); } }

.shell { width: min(1440px, calc(100% - 48px)); margin-inline: auto; }

.site-header {
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand { color: inherit; text-decoration: none; display: flex; align-items: center; gap: 22px; }
.brand-mark { font-size: clamp(30px, 4vw, 54px); letter-spacing: .14em; font-weight: 500; }
.brand-divider { width: 1px; height: 34px; background: var(--line); }
.brand-sub { font-size: 12px; letter-spacing: .28em; color: var(--accent-deep); }

.lang-switcher {
  display: inline-flex;
  padding: 6px;
  border: 1px solid rgba(255,255,255,.8);
  background: rgba(255,255,255,.58);
  backdrop-filter: blur(20px);
  box-shadow: 0 12px 35px rgba(77,62,42,.08);
  border-radius: 17px;
}
.lang-btn {
  border: 0; background: transparent; color: var(--ink); cursor: pointer;
  min-width: 56px; height: 42px; border-radius: 13px;
  font: inherit; font-size: 13px; letter-spacing: .08em;
  transition: .35s ease;
}
.lang-btn:hover { transform: translateY(-1px); }
.lang-btn.active { background: #d8c1a1; color: #2e2a25; box-shadow: inset 0 0 0 1px rgba(255,255,255,.4), 0 7px 18px rgba(130,98,58,.15); }

.hero {
  display: grid;
  grid-template-columns: minmax(360px, .84fr) minmax(520px, 1.34fr);
  gap: clamp(26px, 4vw, 64px);
  align-items: stretch;
  padding: 26px 0 38px;
}

.copy-card, .gallery-card {
  position: relative;
  border: 1px solid rgba(255,255,255,.7);
  background: linear-gradient(155deg, rgba(255,255,255,.76), rgba(255,255,255,.46));
  backdrop-filter: blur(22px);
  box-shadow: var(--shadow);
  border-radius: var(--radius-xl);
}

.copy-card { padding: clamp(28px, 4vw, 58px); overflow: hidden; }
.copy-card::after {
  content: ""; position: absolute; width: 240px; height: 240px; border-radius: 50%;
  border: 1px solid rgba(185,152,106,.18); right: -120px; top: 120px;
  box-shadow: 0 0 0 38px rgba(185,152,106,.04), 0 0 0 76px rgba(185,152,106,.025);
}

.eyebrow-row { display: flex; align-items: center; gap: 13px; color: var(--accent-deep); margin-bottom: 28px; }
.eyebrow-icon { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.8); box-shadow: 0 8px 20px rgba(62,50,34,.08); }
.eyebrow { font-size: 11px; letter-spacing: .22em; font-weight: 700; }

h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(42px, 5.1vw, 76px);
  line-height: .98;
  font-weight: 600;
  letter-spacing: -.035em;
  margin: 0 0 34px;
  max-width: 10ch;
}

.message { display: grid; gap: 16px; max-width: 680px; }
.message p { margin: 0; font-size: clamp(16px, 1.4vw, 21px); line-height: 1.58; color: #38342f; }
.message .accent-line { color: var(--accent-deep); font-weight: 700; font-size: clamp(19px, 1.8vw, 25px); margin-top: 6px; }

.contact-card {
  margin-top: 34px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 18px;
  text-decoration: none;
  color: inherit;
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(97,78,55,.09);
  border-radius: 22px;
  transition: transform .35s ease, box-shadow .35s ease, background .35s ease;
}
.contact-card:hover { transform: translateY(-4px); box-shadow: 0 18px 36px rgba(80,62,39,.12); background: #fff; }
.contact-icon { width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; color: var(--accent-deep); background: #f5ead9; }
.contact-icon svg { width: 24px; }
.contact-text { display: grid; gap: 6px; min-width: 0; }
.contact-label { color: var(--muted); font-size: 12px; line-height: 1.45; }
.contact-text strong { color: var(--accent-deep); font-size: clamp(15px, 1.3vw, 19px); overflow-wrap: anywhere; }
.contact-arrow { font-size: 23px; color: var(--accent-deep); transition: transform .3s ease; }
.contact-card:hover .contact-arrow { transform: translate(4px,-4px); }

.gallery-card { padding: 22px; display: flex; flex-direction: column; min-width: 0; }
.gallery-head { display: flex; justify-content: space-between; align-items: end; gap: 20px; padding: 8px 8px 20px; }
.gallery-kicker { font-size: 10px; letter-spacing: .22em; color: var(--accent-deep); font-weight: 700; }
.gallery-head h2 { margin: 7px 0 0; font-size: clamp(22px, 2.1vw, 32px); font-weight: 500; letter-spacing: -.03em; }
.gallery-count { font-family: "Playfair Display", serif; font-size: 18px; color: var(--muted); white-space: nowrap; }
.gallery-count span:first-child { color: var(--ink); font-size: 30px; }

.slider { position: relative; overflow: hidden; border-radius: 26px; aspect-ratio: 1.52; background: #e9e3da; }
.slides { width: 100%; height: 100%; position: relative; }
.slide { position: absolute; inset: 0; opacity: 0; transform: scale(1.04) translateX(18px); transition: opacity .85s cubic-bezier(.22,1,.36,1), transform 1.15s cubic-bezier(.22,1,.36,1); pointer-events: none; }
.slide.active { opacity: 1; transform: scale(1) translateX(0); pointer-events: auto; z-index: 2; }
.slide img { width: 100%; height: 100%; object-fit: cover; display: block; filter: saturate(.88) contrast(.96); }
.slide::after { content:""; position:absolute; inset:0; background: linear-gradient(to top, rgba(25,22,18,.45), transparent 50%); }
.slide-caption { position: absolute; z-index: 3; left: 28px; bottom: 24px; color: white; font-size: clamp(17px,1.5vw,22px); font-weight: 500; letter-spacing: -.02em; }

.slider-btn { position: absolute; z-index: 5; top: 50%; transform: translateY(-50%); width: 50px; height: 50px; border-radius: 50%; border: 1px solid rgba(255,255,255,.6); background: rgba(255,255,255,.72); backdrop-filter: blur(10px); color: #3b352f; cursor: pointer; transition: .3s ease; font-size: 20px; }
.slider-btn:hover { background: #fff; transform: translateY(-50%) scale(1.07); }
.slider-btn.prev { left: 18px; }
.slider-btn.next { right: 18px; }

.slider-progress { position: absolute; z-index: 5; left: 26px; right: 26px; bottom: 0; height: 3px; background: rgba(255,255,255,.25); overflow: hidden; }
.slider-progress span { display: block; height: 100%; width: 0; background: rgba(255,255,255,.92); }
.slider-progress span.run { animation: progress 5.2s linear forwards; }
@keyframes progress { from { width: 0; } to { width: 100%; } }

.thumbs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin-top: 12px; }
.thumb { border: 0; padding: 0; cursor: pointer; overflow: hidden; border-radius: 16px; aspect-ratio: 1.35; opacity: .48; transform: scale(.98); transition: .35s ease; background: transparent; }
.thumb img { width: 100%; height: 100%; object-fit: cover; display:block; }
.thumb:hover, .thumb.active { opacity: 1; transform: scale(1); }
.thumb.active { box-shadow: 0 0 0 2px #fff, 0 0 0 3px rgba(185,152,106,.8); }

.features { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; padding: 18px 0 12px; }
.features article { min-height: 110px; padding: 20px 24px; display: flex; align-items: center; gap: 17px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.features article + article { border-left: 1px solid var(--line); }
.features span { font-family: "Playfair Display", serif; color: var(--accent); font-size: 27px; }
.features p { margin: 0; text-transform: uppercase; letter-spacing: .09em; font-size: 11px; line-height: 1.55; color: #615b54; }

.footer { display: flex; justify-content: space-between; gap: 18px; padding: 28px 0 40px; color: #817a72; font-size: 12px; letter-spacing: .05em; }

.reveal { opacity: 0; transform: translateY(26px); animation: reveal .9s cubic-bezier(.22,1,.36,1) forwards .12s; }
.reveal-delay { animation-delay: .25s; }
.reveal-delay-2 { animation-delay: .42s; }
@keyframes reveal { to { opacity: 1; transform: none; } }

.i18n-fade { animation: i18nFade .42s ease; }
@keyframes i18nFade { from { opacity: .15; transform: translateY(4px); } to { opacity:1; transform:none; } }

@media (max-width: 1050px) {
  .hero { grid-template-columns: 1fr; }
  h1 { max-width: 12ch; }
  .slider { aspect-ratio: 1.65; }
  .features { grid-template-columns: repeat(2, 1fr); }
  .features article:nth-child(3) { border-left: 0; }
}

@media (max-width: 680px) {
  .shell { width: min(100% - 24px, 1440px); }
  .site-header { min-height: 86px; align-items: center; }
  .brand { gap: 12px; }
  .brand-mark { font-size: 30px; }
  .brand-divider, .brand-sub { display: none; }
  .lang-switcher { padding: 4px; }
  .lang-btn { min-width: 42px; height: 36px; font-size: 11px; }
  .hero { padding-top: 10px; gap: 16px; }
  .copy-card, .gallery-card { border-radius: 24px; }
  .copy-card { padding: 26px 22px; }
  h1 { font-size: clamp(38px, 12vw, 58px); margin-bottom: 26px; }
  .message { gap: 12px; }
  .message p { font-size: 15px; }
  .contact-card { grid-template-columns: auto 1fr; }
  .contact-arrow { display: none; }
  .gallery-card { padding: 12px; }
  .gallery-head { align-items: start; }
  .gallery-count { display: none; }
  .slider { aspect-ratio: .95; border-radius: 20px; }
  .slide-caption { left: 18px; bottom: 18px; right: 18px; }
  .slider-btn { width: 42px; height: 42px; }
  .slider-btn.prev { left: 10px; }
  .slider-btn.next { right: 10px; }
  .thumbs { gap: 6px; overflow-x: auto; grid-template-columns: repeat(5, 82px); padding: 3px 2px 6px; scrollbar-width: none; }
  .thumbs::-webkit-scrollbar { display:none; }
  .features { grid-template-columns: 1fr; gap: 0; }
  .features article, .features article + article { border-left: 0; min-height: 88px; }
  .footer { flex-direction: column; padding-bottom: 26px; }
}

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