/* ============================================================
   Efi Rooms & Apartments — Myrina, Lemnos
   Design tokens carried over from the brand's Flutter identity,
   refined for a static, animation-capable build.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Playfair+Display:ital,wght@0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --navy: #1A2E4A;
  --navy-soft: #24406aff;
  --white: #FFFFFF;
  --background: #FAFAF8;
  --background-2: #F8F4EE;
  --sand: #F5F0E8;
  --sand-2: #F0EAE0;
  --gold: #B8973E;
  --gold-soft: rgba(184, 151, 62, 0.35);
  --gold-hover: #A88534;
  --dark-text: #3C3C3C;
  --muted-text: #4A4A4A;
  --light-text: #8A8A8A;
  --divider: #E8E0D0;

  --max-width: 1000px;
  --font-serif: 'Cormorant Garamond', serif;
  --font-display: 'Playfair Display', serif;
  --font-sans: 'Inter', sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-luxury: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--dark-text);
  background: var(--background);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

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

h1, h2, h3, p { margin: 0; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* Skip link for keyboard/screen-reader users */
.skip-link {
  position: absolute;
  left: 12px; top: -60px;
  background: var(--navy);
  color: var(--white);
  padding: 12px 20px;
  font-size: 13px;
  letter-spacing: 0.05em;
  z-index: 1000;
  transition: top 0.25s var(--ease);
  border-radius: 0 0 4px 4px;
}
.skip-link:focus { top: 0; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 48px;
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
}

.section-bg--gradient   { background: linear-gradient(to bottom, var(--background), var(--background-2)); }
.section-bg--sand       { background: linear-gradient(to bottom, var(--sand), var(--sand-2)); }
.section-bg--flat       { background: radial-gradient(ellipse 1200px 600px at 50% 0%, var(--background-2), var(--background) 70%); }
.section-bg--navy       { background: linear-gradient(160deg, var(--navy), #16253d); }

.section-pad { padding: 192px 0; }
.section-pad--tight { padding: 168px 0; }
@media (max-width: 640px) {
  .section-pad, .section-pad--tight { padding: 84px 0; }
}

/* ── Eyebrow label, heading, divider — repeated section header pattern ──
   Signature mark: a hairline + rotated gold diamond ahead of every label.
   Built with ::before/::after + flex `order` so no markup changes are
   needed anywhere it's already used — it becomes the site's recognisable
   "stationery" motif, not present in the original. ── */

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.46em;
  color: var(--gold);
  margin-bottom: 30px;
}
.eyebrow::before {
  content: '';
  order: -2;
  width: 26px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
  flex-shrink: 0;
}
.eyebrow::after {
  content: '';
  order: -1;
  width: 5px;
  height: 5px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}
.eyebrow--center { justify-content: center; }
.eyebrow--center::before { background: linear-gradient(to right, transparent, var(--gold)); }

.section-heading {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(36px, 5vw, 58px);
  letter-spacing: -0.02em;
  line-height: 1.12;
  color: var(--navy);
  margin-bottom: 28px;
}

.section-heading--center { text-align: center; }

.rule {
  width: 40px;
  height: 1.5px;
  background: var(--gold);
  border: none;
  margin: 0;
}
.rule--center { margin-inline: auto; }
.rule--fade {
  width: 96px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  height: 1px;
}

.section-intro {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  font-size: 17px;
  font-weight: 300;
  line-height: 2.15;
  letter-spacing: 0.01em;
  color: rgba(74, 74, 74, 0.9);
}

/* ============================================================
   Scroll reveal — fade + slight rise, staggered via style var
   ============================================================ */

[data-reveal] {
  opacity: 0;
  transform: translateY(26px) scale(0.985);
  transition: opacity 0.95s var(--ease-luxury), transform 0.95s var(--ease-luxury);
  transition-delay: calc(var(--reveal-delay, 0) * 1ms);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { transition: opacity 0.4s linear; transform: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   Navbar
   ============================================================ */

.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  height: 72px;
  display: flex;
  align-items: center;
  background: transparent;
  transition: background-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.navbar.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 32px -8px rgba(26, 46, 74, 0.12);
}

.navbar-inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 24px;
}
@media (max-width: 860px) { .navbar-inner { padding: 0 20px; } }

.navbar-spacer { flex: 1; }

/* Wordmark — pure typography, no image asset */
.wordmark { display: flex; flex-direction: column; align-items: flex-start; line-height: 1; }
.wordmark-rule { width: 44px; height: 1.5px; background: rgba(184,151,62,0.55); margin-bottom: 1px; transition: background-color 0.3s var(--ease); }
.wordmark-rule--thin { height: 1px; margin-bottom: 1px; }
.wordmark-efi {
  font-family: Georgia, serif;
  font-size: 20px;
  letter-spacing: 0.5em;
  color: var(--white);
  transition: color 0.3s var(--ease);
}
.wordmark-rooms {
  font-family: Georgia, serif;
  font-size: 8px;
  letter-spacing: 0.3em;
  color: var(--white);
  transition: color 0.3s var(--ease);
}
.navbar.is-scrolled .wordmark-efi,
.navbar.is-scrolled .wordmark-rooms { color: var(--navy); }
.navbar.is-scrolled .wordmark-rule { background: var(--gold); }

@media (max-width: 640px) {
  .wordmark-efi { font-size: 15px; letter-spacing: 0.35em; }
  .wordmark-rooms { font-size: 7px; letter-spacing: 0.2em; }
  .wordmark-rule { width: 32px; }
}

.nav-links { display: flex; align-items: center; }
.nav-link {
  position: relative;
  padding: 8px 20px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: var(--white);
  transition: color 0.3s var(--ease);
  white-space: nowrap;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 20px; right: 20px; bottom: 4px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.35s var(--ease-luxury);
}
.navbar.is-scrolled .nav-link { color: var(--navy); }
.nav-link:hover, .nav-link:focus-visible { color: var(--gold); }
.nav-link:hover::after, .nav-link:focus-visible::after { transform: scaleX(1); }

@media (max-width: 860px) { .nav-links { display: none; } }

/* Language dropdown */
.lang-switch { position: relative; }
.lang-pill {
  height: 32px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border-radius: 16px;
  border: 1.2px solid rgba(255,255,255,0.45);
  background: transparent;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  cursor: pointer;
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease), background-color 0.3s var(--ease);
}
.lang-pill:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.75); }
.navbar.is-scrolled .lang-pill { color: var(--navy); border-color: rgba(26,46,74,0.45); }
.navbar.is-scrolled .lang-pill:hover { background: rgba(26,46,74,0.05); border-color: var(--navy); }
.lang-pill .chevron { width: 14px; height: 14px; transition: transform 0.2s var(--ease-out-quart); }
.lang-pill[aria-expanded="true"] .chevron { transform: rotate(180deg); }

.lang-panel {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 190px;
  max-height: 60vh;
  overflow-y: auto;
  background: var(--background);
  border-radius: 2px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.14);
  opacity: 0;
  transform: scale(0.94) translateY(-4px);
  transform-origin: top right;
  pointer-events: none;
  transition: opacity 0.2s var(--ease-out-quart), transform 0.2s var(--ease-out-quart);
  z-index: 50;
}
.lang-panel::before {
  content: '';
  display: block;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.lang-panel.is-open {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: auto;
}
.lang-item {
  display: block;
  width: 100%;
  text-align: left;
  padding: 14px 22px;
  border: none;
  background: transparent;
  border-left: 2px solid transparent;
  cursor: pointer;
  border-bottom: 0.5px solid #ECE6D8;
}
.lang-item:last-child { border-bottom: none; }
.lang-item:hover { background: var(--sand); }
.lang-item.is-active { background: rgba(184,151,62,0.06); border-left-color: var(--gold); }
.lang-item-code {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.05em;
  color: var(--navy);
}
.lang-item-name {
  display: block;
  margin-top: 2px;
  font-size: 11px;
  font-style: italic;
  font-weight: 300;
  color: var(--light-text);
}

.hamburger {
  display: none;
  width: 44px; height: 44px;
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--white);
  align-items: center;
  justify-content: center;
}
.navbar.is-scrolled .hamburger { color: var(--navy); }
@media (max-width: 860px) { .hamburger { display: inline-flex; } }

.mobile-menu {
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--white);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s var(--ease);
  z-index: 490;
}
.mobile-menu.is-open { max-height: 320px; }
.mobile-menu a {
  display: block;
  padding: 16px 40px;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--navy);
}

/* ============================================================
   Hero
   ============================================================ */

.hero {
  position: relative;
  height: 100svh;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--navy);
}

.hero-media {
  position: absolute;
  inset: -60px 0;
  z-index: 0;
  will-change: transform;
  overflow: hidden;
}
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform-origin: center;
  animation: hero-kenburns 22s var(--ease-luxury) forwards;
}
@keyframes hero-kenburns {
  from { transform: scale(1.0); }
  to   { transform: scale(1.07); }
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(10,16,28,0.62) 0%, rgba(10,16,28,0.22) 46%, rgba(10,16,28,0.12) 68%, rgba(10,16,28,0.32) 100%),
    radial-gradient(ellipse at center, transparent 40%, rgba(10,16,28,0.22) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 40px;
  max-width: 640px;
}

.hero-eyebrow,
.hero-title,
.hero-subtitle,
.hero-content .btn,
.scroll-cue {
  opacity: 0;
  animation: hero-rise 1s var(--ease-luxury) forwards;
}
.hero-eyebrow { animation-delay: 0.3s; }
.hero-title { animation-delay: 0.5s; }
.hero-subtitle { animation-delay: 0.7s; }
.hero-content .btn { animation-delay: 0.9s; }
.scroll-cue { animation: hero-fade-only 1s var(--ease) forwards; animation-delay: 1.4s; }

@keyframes hero-rise {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes hero-fade-only {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-media img { animation: none; }
  .hero-eyebrow, .hero-title, .hero-subtitle, .hero-content .btn, .scroll-cue {
    animation: none; opacity: 1;
  }
}

.hero-eyebrow {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.46em;
  color: var(--white);
  margin-bottom: 36px;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(38px, 6.4vw, 66px);
  letter-spacing: -0.005em;
  font-feature-settings: "liga" 0, "clig" 0;
  line-height: 1.16;
  color: var(--white);
  margin-bottom: 28px;
  text-wrap: balance;
}

.hero-subtitle {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: 0.015em;
  color: rgba(255,255,255,0.88);
  max-width: 520px;
  margin: 0 auto 60px;
}

.btn {
  position: relative;
  display: inline-block;
  overflow: hidden;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  padding: 19px 52px;
  border: 1.5px solid currentColor;
  border-radius: 1px;
  background: transparent;
  cursor: pointer;
  isolation: isolate;
  transition: color 0.45s var(--ease-luxury), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.btn:hover, .btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px -12px rgba(0,0,0,0.35);
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease-luxury);
}
.btn:hover::before, .btn:focus-visible::before { transform: scaleX(1); }

.btn--outline-light { color: var(--white); }
.btn--outline-light::before { background: var(--white); }
.btn--outline-light:hover { color: var(--navy); }

.btn--outline-gold { color: var(--gold); border-color: var(--gold); }
.btn--outline-gold::before { background: var(--gold); }
.btn--outline-gold:hover { color: var(--white); }

.btn--solid-gold { background: var(--gold); color: var(--white); border-color: var(--gold); }
.btn--solid-gold::before { background: var(--gold-hover); }
.btn--solid-gold:hover { color: var(--white); }

@media (max-width: 640px) {
  .btn { padding: 16px 28px; }
}

.btn--compact { padding: 12px 26px; font-size: 10px; }

.scroll-cue {
  position: absolute;
  bottom: 32px; left: 0; right: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  color: rgba(255,255,255,0.45);
}
.scroll-cue-icon { animation: bob 2.2s ease-in-out 2.4s infinite; }
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@media (prefers-reduced-motion: reduce) { .scroll-cue-icon { animation: none; } }

/* ============================================================
   Wave divider — quiet horizon accent between sections
   ============================================================ */

.wave-divider { display: block; width: 100%; height: 32px; overflow: visible; }
.wave-divider path {
  fill: none;
  stroke-width: 1.4;
  stroke-linecap: round;
  animation: wave-breathe 6s ease-in-out infinite;
}
@keyframes wave-breathe {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .wave-divider path { animation: none; opacity: 0.7; }
}

/* ============================================================
   About section
   ============================================================ */

.about-grid {
  display: grid;
  grid-template-columns: 460px 1fr;
  gap: 96px;
  align-items: start;
}
@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; gap: 56px; }
  .about-grid { display: flex; flex-direction: column; }
}

/* "Mat board" photo frame — a wider, warmer mat than a plain border,
   with a soft double shadow for a sense of depth rather than a hard edge. */
.photo-frame {
  padding: 14px;
  background: var(--white);
  border-radius: 5px;
  box-shadow:
    0 1px 2px rgba(26,46,74,0.06),
    0 24px 48px -20px rgba(26,46,74,0.22),
    0 8px 20px -8px rgba(26,46,74,0.10);
  transition: box-shadow 0.5s var(--ease-luxury);
}
.photo-frame:hover {
  box-shadow:
    0 1px 2px rgba(26,46,74,0.06),
    0 32px 60px -20px rgba(26,46,74,0.28),
    0 10px 24px -8px rgba(26,46,74,0.14);
}
.photo-frame .frame-inner {
  position: relative;
  border-radius: 3px;
  overflow: hidden;
  display: block;
}
.frame-inner::after {
  /* Faint inner hairline, like a mount around the print */
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(184,151,62,0.35);
  pointer-events: none;
}
.about-photo {
  aspect-ratio: 420 / 340;
  object-fit: cover;
  width: 100%;
  transform: scale(1);
  transition: transform 1.1s var(--ease-luxury);
}
.photo-frame:hover .about-photo { transform: scale(1.045); }

.about-text-body {
  font-size: 15.5px;
  font-weight: 300;
  line-height: 2.05;
  color: var(--muted-text);
  white-space: pre-line;
}

.dot-line {
  font-size: 15.5px;
  font-weight: 300;
  line-height: 2.05;
  color: var(--muted-text);
}
.dot-line .dot { color: var(--gold); font-weight: 400; padding: 0 3px; }

.amenity-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}
.amenity-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 20px;
  background: var(--white);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.02em;
  color: var(--navy);
  box-shadow: 0 1px 2px rgba(26,46,74,0.05), 0 6px 16px -8px rgba(26,46,74,0.12);
  transition: transform 0.3s var(--ease-luxury), box-shadow 0.3s var(--ease-luxury), color 0.3s var(--ease);
}
.amenity-chip:hover {
  transform: translateY(-2px);
  color: var(--gold-hover);
  box-shadow: 0 1px 2px rgba(26,46,74,0.06), 0 12px 24px -10px rgba(184,151,62,0.32);
}
.amenity-chip svg { width: 14px; height: 14px; color: var(--gold); flex-shrink: 0; }

/* ============================================================
   Rooms gallery — numbered tabs, single large stage, thumbnails
   ============================================================ */

.section-header-block { margin-bottom: 96px; }
@media (max-width: 640px) { .section-header-block { margin-bottom: 60px; } }

.gallery { max-width: 780px; margin: 0 auto; }

.gallery-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
}
.gallery-tab {
  position: relative;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 10px 18px 16px;
  color: var(--light-text);
}
.gallery-tab-num {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.06em;
  transition: color 0.35s var(--ease);
}
.gallery-tab::after {
  content: '';
  position: absolute;
  left: 50%; bottom: 4px;
  width: 0; height: 1.5px;
  background: var(--gold);
  transform: translateX(-50%);
  transition: width 0.35s var(--ease-luxury);
}
.gallery-tab:hover .gallery-tab-num { color: var(--navy); }
.gallery-tab.is-active .gallery-tab-num { color: var(--gold); }
.gallery-tab.is-active::after { width: 22px; }

.room-panel { display: none; }
.room-panel.is-active { display: block; }

/* Fixed 420px stage height, max 700px wide, letterboxed (not cropped) —
   matches the original Flutter CrossfadeSlideshow exactly (_slideshowHeight
   = 420, BoxConstraints(maxWidth: 700), BoxFit.contain) so every photo is
   always fully visible within one screenful, never requiring a scroll to
   see the rest of it. */
.gallery-stage-frame {
  position: relative;
  height: 420px;
  max-width: 700px;
  margin: 0 auto;
  border-radius: 5px;
  overflow: hidden;
  background: var(--sand);
  box-shadow:
    0 1px 2px rgba(26,46,74,0.06),
    0 30px 60px -24px rgba(26,46,74,0.28),
    0 10px 26px -10px rgba(26,46,74,0.14);
}
.crossfade { position: absolute; inset: 0; }
.crossfade-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  opacity: 0;
  transform: scale(1.015);
  transition: opacity 1.1s var(--ease-luxury), transform 1.6s var(--ease-luxury);
}
.crossfade-img.is-active { opacity: 1; transform: scale(1); z-index: 1; }

.stage-index {
  position: absolute;
  left: 18px; bottom: 16px;
  z-index: 2;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(10,16,28,0.38);
  backdrop-filter: blur(3px);
  font-family: var(--font-sans);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.95);
}

.stage-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 44px; height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: rgba(10,16,28,0.32);
  color: var(--white);
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s var(--ease), background-color 0.2s var(--ease);
}
.stage-arrow svg { width: 18px; height: 18px; }
.gallery-stage-frame:hover .stage-arrow { opacity: 1; }
.stage-arrow:hover { background: rgba(10,16,28,0.55); }
.stage-arrow--prev { left: 16px; }
.stage-arrow--next { right: 16px; }
@media (hover: none) {
  .stage-arrow { opacity: 1; background: rgba(10,16,28,0.25); }
}

.thumb-strip {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}
.thumb {
  width: 72px;
  aspect-ratio: 4 / 3;
  border-radius: 3px;
  overflow: hidden;
  padding: 0;
  border: 1.5px solid transparent;
  cursor: pointer;
  opacity: 0.55;
  transition: opacity 0.3s var(--ease), border-color 0.3s var(--ease);
}
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.thumb:hover { opacity: 0.85; }
.thumb.is-active { opacity: 1; border-color: var(--gold); }
@media (max-width: 480px) { .thumb { width: 58px; } }

/* ── Lightbox ────────────────────────────────────────────────────────────── */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 12, 20, 0.95);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease), visibility 0s linear 0.35s;
}
.lightbox.is-open {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.35s var(--ease);
}
.lightbox-stage { max-width: 92vw; max-height: 84vh; }
.lightbox-img {
  display: block;
  max-width: 92vw;
  max-height: 84vh;
  width: auto; height: auto;
  object-fit: contain;
  opacity: 0;
  transform: scale(0.985);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}
.lightbox-img.is-loaded { opacity: 1; transform: scale(1); }

.lightbox-close, .lightbox-arrow {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  cursor: pointer;
  transition: background-color 0.2s var(--ease);
}
.lightbox-close:hover, .lightbox-arrow:hover { background: rgba(255,255,255,0.16); }
.lightbox-close { top: 24px; right: 24px; width: 44px; height: 44px; }
.lightbox-close svg { width: 18px; height: 18px; }
.lightbox-arrow { top: 50%; transform: translateY(-50%); width: 56px; height: 56px; }
.lightbox-arrow svg { width: 22px; height: 22px; }
.lightbox-arrow--prev { left: 20px; }
.lightbox-arrow--next { right: 20px; }
@media (max-width: 640px) {
  .lightbox-close { top: 14px; right: 14px; width: 40px; height: 40px; }
  .lightbox-arrow { width: 44px; height: 44px; }
  .lightbox-arrow--prev { left: 8px; }
  .lightbox-arrow--next { right: 8px; }
}

.lightbox-counter {
  position: absolute;
  bottom: 28px; left: 0; right: 0;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.55);
}

/* ============================================================
   Reviews — Google trust badge + review cards
   ============================================================ */

.trust-badge {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 18px;
  margin: 0 auto 80px;
  padding: 18px 30px;
  background: var(--white);
  border-radius: 999px;
  box-shadow:
    0 1px 2px rgba(26,46,74,0.06),
    0 20px 44px -20px rgba(26,46,74,0.22),
    0 0 0 1px rgba(184,151,62,0.12);
}

.trust-badge-g { width: 26px; height: 26px; flex-shrink: 0; }
.trust-badge-g svg { width: 100%; height: 100%; }

.trust-badge-rule { width: 1px; height: 30px; background: var(--divider); flex-shrink: 0; }

.trust-badge-main { display: flex; flex-direction: column; align-items: flex-start; gap: 4px; }
.trust-badge-rating {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.trust-badge-stars { display: inline-flex; gap: 2px; color: var(--gold); }
.trust-badge-stars .star svg { width: 12px; height: 12px; }

.trust-badge-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted-text);
  letter-spacing: 0.01em;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}
@media (max-width: 860px) {
  .review-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
}

.review-card {
  position: relative;
  background: var(--white);
  border-radius: 6px;
  padding: 46px 40px 38px;
  box-shadow: 0 1px 2px rgba(26,46,74,0.05), 0 8px 24px -12px rgba(26,46,74,0.14);
  transition: transform 0.4s var(--ease-luxury), box-shadow 0.4s var(--ease-luxury);
}
.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 1px 2px rgba(26,46,74,0.06), 0 30px 50px -20px rgba(26,46,74,0.24);
}
.review-quote-mark {
  display: block;
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 1;
  color: rgba(184,151,62,0.28);
  margin-bottom: 4px;
}
.review-stars { display: inline-flex; gap: 3px; color: var(--gold); margin-bottom: 22px; }
.review-stars .star svg { width: 14px; height: 14px; }
.review-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 17.5px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--dark-text);
  min-height: 4.5em;
}
.review-author {
  display: block;
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid var(--divider);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-transform: uppercase;
}

.review-cta-wrap { display: flex; justify-content: center; margin-top: 64px; }

/* ============================================================
   Pricing card
   ============================================================ */

.pricing-card {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  padding: 72px 72px 64px;
  background: var(--white);
  border-radius: 6px;
  box-shadow: 0 1px 2px rgba(26,46,74,0.05), 0 30px 60px -24px rgba(26,46,74,0.18);
}
@media (max-width: 640px) { .pricing-card { padding: 48px 28px; } }

.ornament { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 28px; }
.ornament::before, .ornament::after { content: ''; width: 40px; height: 1px; background: var(--gold); opacity: 0.55; }
.ornament-diamond { width: 7px; height: 7px; background: var(--gold); transform: rotate(45deg); flex-shrink: 0; }

.pricing-text {
  max-width: 480px;
  margin: 40px auto 48px;
  font-size: 16px;
  font-weight: 300;
  line-height: 2;
  color: var(--muted-text);
}

/* ============================================================
   Island (Lemnos) section — shares the gallery-stage-frame look
   ============================================================ */

.island-stage-wrap { max-width: 820px; margin: 0 auto; }
.island-stage-frame { background: var(--background); }

.island-dots { display: flex; justify-content: center; gap: 8px; margin-top: 22px; }
.island-dots .dot-btn {
  width: 6px; height: 6px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: var(--divider);
  cursor: pointer;
  transition: background-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.island-dots .dot-btn.is-active { background: var(--navy); transform: scale(1.3); }

/* ============================================================
   Contact
   ============================================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  margin-top: 88px;
  align-items: start;
}
@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; gap: 56px; margin-top: 56px; }
}

.contact-info { display: flex; flex-direction: column; gap: 30px; }
.info-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
a.info-item { transition: transform 0.3s var(--ease-luxury); }
a.info-item:hover { transform: translateX(3px); }
a.info-item:hover .info-value { color: var(--gold-hover); }
.info-icon {
  width: 20px; height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--gold);
}
.info-icon svg { width: 100%; height: 100%; }
.info-label {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--light-text);
  margin-bottom: 6px;
}
.info-value {
  display: block;
  font-size: 15.5px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--navy);
  transition: color 0.3s var(--ease);
}

.map-block { margin-top: 12px; }
.map-frame {
  height: 260px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--divider);
  box-shadow: 0 1px 2px rgba(26,46,74,0.05), 0 20px 40px -20px rgba(26,46,74,0.18);
}
.map-frame iframe { width: 100%; height: 100%; border: none; }
.map-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 24px;
  margin-top: 18px;
}
.map-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--navy);
  transition: color 0.3s var(--ease), gap 0.3s var(--ease);
}
.map-link svg { width: 13px; height: 13px; }
.map-link:hover { color: var(--gold); gap: 12px; }

.contact-form-wrap { position: relative; }
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 30px;
  background: var(--white);
  padding: 44px;
  border-radius: 6px;
  box-shadow: 0 1px 2px rgba(26,46,74,0.05), 0 24px 50px -22px rgba(26,46,74,0.18);
  border-top: 1.5px solid var(--gold);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
@media (max-width: 640px) { .contact-form { padding: 28px 24px; } }

.form-field { display: flex; flex-direction: column; }
.form-field label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--light-text);
  margin-bottom: 12px;
}
.form-field input, .form-field textarea {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 300;
  color: var(--dark-text);
  border: none;
  border-bottom: 1px solid var(--divider);
  padding: 4px 0 12px;
  background: transparent;
  transition: border-color 0.3s var(--ease);
  resize: vertical;
}
.form-field input:focus, .form-field textarea:focus {
  outline: none;
  border-bottom-color: var(--gold);
  border-bottom-width: 1.5px;
}
.form-field.has-error input, .form-field.has-error textarea { border-bottom-color: #C0392B; }
.field-error {
  display: block;
  min-height: 16px;
  margin-top: 6px;
  font-size: 11px;
  color: #C0392B;
}

.form-submit { margin-top: 4px; }

.form-success {
  display: none;
  position: absolute;
  inset: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 20px;
  padding: 44px;
  background: var(--navy);
  border-radius: 6px;
  color: var(--white);
  opacity: 0;
  transform: scale(0.97);
  transition: opacity 0.5s var(--ease-luxury), transform 0.5s var(--ease-luxury);
}
.form-success:not([hidden]) { display: flex; }
.form-success.is-visible { opacity: 1; transform: scale(1); }
.form-success-icon { width: 52px; height: 52px; color: var(--gold); }
.form-success-icon svg { width: 100%; height: 100%; }
.form-success p {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 30px);
  font-weight: 600;
  color: var(--white);
}

/* ============================================================
   Utility: hover-glow wrapper (subtle cursor-follow light)
   ============================================================ */

.hover-glow { position: relative; overflow: hidden; }
.hover-glow::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle 220px at var(--gx, 50%) var(--gy, 50%), rgba(255,255,255,0.10), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.hover-glow:hover::after { opacity: 1; }

/* ============================================================
   Footer
   ============================================================ */

.footer { color: var(--white); }
.footer-inner { padding: 80px 48px 40px; text-align: center; }
@media (max-width: 640px) { .footer-inner { padding: 56px 20px 28px; } }

.footer-wordmark {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  color: var(--white);
}
.footer-location {
  margin-top: 8px;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--gold);
  font-weight: 300;
}
.footer-links {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 32px;
}
.footer-link {
  padding: 12px 0;
  font-size: 11px;
  letter-spacing: 0.165em;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s var(--ease);
}
.footer-link:hover { color: var(--white); }
.footer-rule { margin-top: 40px; height: 1px; background: rgba(255,255,255,0.08); border: none; }
.footer-socials { margin-top: 32px; display: flex; justify-content: center; gap: 16px; }
.social-icon {
  width: 44px; height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s var(--ease), background-color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.social-icon svg { width: 18px; height: 18px; }
.social-icon:hover { color: var(--white); background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.32); }
.footer-copyright {
  margin-top: 32px;
  font-size: 11px;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
}

/* ============================================================
   View-transition crossfade for language navigation
   ============================================================ */

@media (prefers-reduced-motion: no-preference) {
  ::view-transition-old(root) { animation: efi-fade-out 0.28s var(--ease) forwards; }
  ::view-transition-new(root) { animation: efi-fade-in 0.32s var(--ease) 0.08s backwards; }
}
@keyframes efi-fade-out { to { opacity: 0; } }
@keyframes efi-fade-in { from { opacity: 0; } }

.page-fade-out { animation: efi-fade-out 0.22s var(--ease) forwards; }
