/* ===================================================
   SIANOS APARTMENTS — Main Stylesheet
   Luxury Mediterranean Aesthetic
   =================================================== */

/* ── Reset & Base ────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --sand:      #f0f7ff;
  --cream:     #ffffff;
  --warm-white:#ffffff;
  --stone:     #8ab4cc;
  --terracotta:#005A9C;
  --deep:      #1A2B3C;
  --mid:       #4A7C9E;
  --sea:       #005A9C;
  --sea-light: #0073CF;
  --olive:     #0073CF;

  --serif:     'Cormorant Garamond', Georgia, serif;
  --sans:      'Jost', sans-serif;

  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:   cubic-bezier(0.7, 0, 0.84, 0);
}

html, body {
  width: 100%;
  overflow-x: hidden;
  position: relative;
  max-width: 100vw;
}

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--deep);
  line-height: 1.6;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Typography ──────────────────────────────────── */
.t-display {
  font-family: var(--serif);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.t-heading {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.15;
}
.t-label {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
}
.t-body {
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.8;
  color: var(--mid);
}

/* ── Scroll Reveal ───────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 1.1s var(--ease-out), transform 1.1s var(--ease-out);
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* ── Nav ─────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.5rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, padding 0.4s ease;
}
.nav.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  padding: 1rem 4rem;
  border-bottom: 1px solid rgba(0, 90, 156, 0.1);
}
.nav-logo img {
  width: auto;
  height: 80px;
  object-fit: contain;
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}
.lang-switch,
.mobile-lang-switch {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.lang-btn {
  border: 1px solid rgba(0, 90, 156, 0.3);
  background: rgba(255, 255, 255, 0.86);
  color: var(--deep);
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.5rem;
  border-radius: 999px;
  min-width: 38px;
  cursor: pointer;
  transition: all 0.25s ease;
}
.lang-btn.active {
  background: var(--terracotta);
  color: var(--warm-white);
  border-color: var(--terracotta);
}
.lang-btn:hover {
  border-color: var(--terracotta);
}
.nav-links a {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--deep);
  position: relative;
  transition: color 0.3s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--terracotta);
  transition: width 0.4s var(--ease-out);
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--terracotta); }

.nav-cta {
  background: var(--terracotta);
  color: var(--warm-white) !important;
  padding: 0.6rem 1.5rem;
  border-radius: 2px;
  letter-spacing: 0.12em !important;
  transition: background 0.3s, transform 0.3s !important;
}
.nav-cta:hover {
  background: var(--deep) !important;
  transform: translateY(-1px);
}
.nav-cta::after { display: none !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--deep);
  transition: all 0.4s var(--ease-out);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--cream);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}
.mobile-menu a {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--deep);
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--terracotta); }
.mobile-lang-switch {
  margin-top: 0.75rem;
}
.mobile-lang-switch .lang-btn {
  font-size: 0.8rem;
  min-width: 46px;
  padding: 0.42rem 0.7rem;
}

/* ── Hero ────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 680px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding-bottom: 8vh;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero-bg.loaded img { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26, 43, 60, 0.8) 0%,
    rgba(26, 43, 60, 0.4) 50%,
    rgba(26, 43, 60, 0.2) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 4rem;
  max-width: 900px;
}
.hero-eyebrow {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 1.2rem;
  opacity: 0;
  animation: fadeUp 1s 0.3s var(--ease-out) forwards;
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 7rem);
  font-weight: 600;
  line-height: 1.02;
  color: var(--warm-white);
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
  opacity: 0;
  animation: fadeUp 1.1s 0.5s var(--ease-out) forwards;
}
.hero-title em {
  font-style: italic;
  color: var(--stone);
  font-weight: 600;
}
.hero-subtitle {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 1.1s 0.7s var(--ease-out) forwards;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: transparent;
  border: 1px solid rgba(250, 248, 244, 0.5);
  color: var(--warm-white);
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border-radius: 2px;
  opacity: 0;
  animation: fadeUp 1.1s 0.9s var(--ease-out) forwards;
  transition: background 0.4s, border-color 0.4s, transform 0.3s;
}
.hero-cta:hover {
  background: var(--terracotta);
  border-color: var(--terracotta);
  transform: translateY(-2px);
}
.hero-cta svg { transition: transform 0.3s; }
.hero-cta:hover svg { transform: translateX(4px); }

/* Hero Scroll Indicator */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem; right: 4rem;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeIn 1.5s 1.5s ease forwards;
}
.hero-scroll span {
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250, 248, 244, 0.5);
  writing-mode: vertical-rl;
}
.hero-scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(250,248,244,0.4), transparent);
  animation: scrollPulse 2s 2s ease-in-out infinite;
}

/* ── Intro Section ───────────────────────────────── */
.intro {
  padding: 10rem 4rem 8rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}
.intro-text { }
.intro-label { margin-bottom: 1.5rem; }
.intro-heading {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 2rem;
  color: var(--deep);
}
.intro-heading em { font-style: italic; color: var(--terracotta); }
.intro-body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.9;
  color: var(--mid);
  margin-bottom: 2.5rem;
}
.intro-stats {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
}
.intro-stat-num {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--terracotta);
  line-height: 1;
}
.intro-stat-label {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
  margin-top: 0.4rem;
}

.intro-images {
  position: relative;
  height: 600px;
}
.intro-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 80%;
  height: 85%;
  overflow: hidden;
  border-radius: 3px;
}
.intro-img-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 55%;
  height: 45%;
  overflow: hidden;
  border-radius: 3px;
  border: 6px solid var(--cream);
}

/* ── Amenities ───────────────────────────────────── */
.amenities {
  padding: 8rem 4rem;
  background: var(--sand);
}
.amenities-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 5rem;
}
.amenities-header .t-label { margin-bottom: 1rem; }
.amenities-header h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--deep);
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  max-width: 1200px;
  margin: 0 auto;
}

.amenity-card {
  background: var(--cream);
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease-out);
}
.amenity-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--terracotta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.amenity-card:hover::before { transform: scaleX(1); }
.amenity-card:hover { transform: translateY(-4px); }

.amenity-icon {
  width: 48px; height: 48px;
  margin-bottom: 1.5rem;
  color: var(--terracotta);
}
.amenity-title {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--deep);
  margin-bottom: 1rem;
}
.amenity-items {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.amenity-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--mid);
}
.amenity-item::before {
  content: '';
  width: 18px; height: 1px;
  background: var(--stone);
  flex-shrink: 0;
}

/* ── Gallery ─────────────────────────────────────── */
.gallery {
  padding: 8rem 0;
}
.gallery-header {
  padding: 0 4rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
}
.gallery-header h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--deep);
}
.gallery-link {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s;
}
.gallery-link:hover { gap: 0.9rem; }

.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 340px 340px;
  grid-auto-rows: 340px;
  gap: 4px;
  padding: 0 4rem;
}
.gallery-item {
  overflow: hidden;
  cursor: zoom-in;
}
.gallery-item img {
  transition: transform 0.8s var(--ease-out);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item.large { grid-row: span 2; }

/* ── About ───────────────────────────────────────── */
.about {
  padding: 10rem 4rem;
  background: var(--deep);
  color: var(--warm-white);
  position: relative;
  overflow: hidden;
}
.about::before {
  content: 'SIANOS';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--serif);
  font-size: 20vw;
  font-weight: 300;
  color: rgba(255,255,255,0.03);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: -0.05em;
}

.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.about-label { margin-bottom: 1.5rem; }
.about-label .t-label { color: var(--stone); }
.about-heading {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 2rem;
  color: var(--warm-white);
}
.about-heading em { font-style: italic; color: var(--stone); }
.about-body {
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.9;
  color: rgba(255,255,255,0.65);
  margin-bottom: 2.5rem;
  font-size: 0.95rem;
}
.about-hosts {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.5rem;
  border: 1px solid rgba(138, 180, 204, 0.3);
  border-radius: 3px;
}
.about-hosts-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--stone);
}
.about-hosts-name {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--warm-white);
}
.about-hosts-title {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
  margin-top: 0.2rem;
}

.about-images {
  position: relative;
  height: 560px;
}
.about-img-1 {
  position: absolute;
  top: 0; right: 0;
  width: 75%;
  height: 70%;
  overflow: hidden;
  border-radius: 3px;
}
.about-img-2 {
  position: absolute;
  bottom: 0; left: 0;
  width: 65%;
  height: 50%;
  overflow: hidden;
  border-radius: 3px;
  border: 5px solid var(--deep);
}
.about-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px; height: 120px;
  background: var(--terracotta);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 2;
}
.about-badge-num {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--warm-white);
  line-height: 1;
}
.about-badge-txt {
  font-family: var(--sans);
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-top: 0.3rem;
}

/* ── Testimonials ────────────────────────────────── */
.testimonials {
  padding: 9rem 4rem;
  background: var(--cream);
}
.testimonials-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.testimonials-header {
  text-align: center;
  margin-bottom: 5rem;
}
.testimonials-header .t-label { margin-bottom: 1rem; }
.testimonials-header h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--deep);
}

.testimonials-track-wrapper {
  overflow: hidden;
  position: relative;
}
.testimonials-track {
  display: flex;
  transition: transform 0.7s var(--ease-out);
}
.testimonial-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
}
.testimonial-card {
  background: var(--sand);
  padding: 3rem 2.5rem;
  border-radius: 3px;
  position: relative;
}
.testimonial-quote {
  font-family: var(--serif);
  font-size: 4rem;
  font-weight: 300;
  color: var(--stone);
  line-height: 1;
  margin-bottom: 1rem;
  opacity: 0.5;
}
.testimonial-text {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.7;
  color: var(--deep);
  margin-bottom: 1.5rem;
}
.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1.2rem;
  color: var(--terracotta);
  font-size: 0.85rem;
}
.testimonial-author {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
}
.testimonials-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
}
.testimonials-btn {
  width: 48px; height: 48px;
  border: 1px solid var(--stone);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  cursor: pointer;
  color: var(--deep);
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}
.testimonials-btn:hover {
  background: var(--deep);
  border-color: var(--deep);
  color: var(--warm-white);
}
.testimonials-dots {
  display: flex;
  gap: 0.5rem;
}
.testimonials-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--stone);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.testimonials-dot.active {
  background: var(--terracotta);
  transform: scale(1.4);
}

/* ── Gialtra Intro ───────────────────────────────── */
.gialtra-intro {
  padding: 8rem 4rem;
  background: var(--cream);
}
.gialtra-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}
.gialtra-heading {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--deep);
  margin-bottom: 1.4rem;
}
.gialtra-body {
  font-family: var(--sans);
  font-size: 0.98rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--mid);
}
.gialtra-image {
  height: 420px;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

/* ── Location ────────────────────────────────────── */
.location-section { background: var(--sand); }
.location {
  padding: 8rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}
.location-text .t-label { margin-bottom: 1.5rem; }
.location-heading {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--deep);
}
.location-body {
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.9;
  color: var(--mid);
  margin-bottom: 2rem;
}
.location-details {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.location-detail {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--mid);
}
.location-detail svg {
  width: 18px; height: 18px;
  color: var(--terracotta);
  flex-shrink: 0;
}

.location-map {
  width: 100%;
  height: 480px;
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}
.location-map iframe {
  width: 100% !important;
  max-width: 100% !important;
  height: 100%;
  border: none;
}

/* ── Contact ─────────────────────────────────────── */
.contact {
  padding: 9rem 4rem;
  background: var(--cream);
}
.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.contact-header {
  text-align: center;
  margin-bottom: 5rem;
}
.contact-header .t-label { margin-bottom: 1rem; }
.contact-header h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--deep);
}
.contact-header p {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--mid);
  margin-top: 1rem;
  font-size: 0.95rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 6rem;
  align-items: start;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.contact-info-item {}
.contact-info-label {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 0.6rem;
}
.contact-info-value {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--deep);
  line-height: 1.5;
}
.contact-info-value a {
  transition: color 0.3s;
}
.contact-info-value a:hover { color: var(--terracotta); }

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mid);
}
.form-group input,
.form-group textarea,
.form-group select {
  background: var(--sand);
  border: 1px solid transparent;
  border-radius: 2px;
  padding: 0.9rem 1.2rem;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--deep);
  transition: border-color 0.3s, background 0.3s;
  outline: none;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--stone);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--terracotta);
  background: var(--warm-white);
}
.form-group textarea { resize: vertical; min-height: 140px; }

.form-submit {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--deep);
  color: var(--warm-white);
  border: none;
  padding: 1.1rem 2.5rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  align-self: flex-start;
}
.form-submit:hover {
  background: var(--terracotta);
  transform: translateY(-2px);
}
.form-submit svg { transition: transform 0.3s; }
.form-submit:hover svg { transform: translateX(4px); }

.form-message {
  padding: 1rem 1.5rem;
  border-radius: 2px;
  font-family: var(--sans);
  font-size: 0.88rem;
  display: none;
}
.form-message.success {
  background: rgba(122, 140, 110, 0.15);
  color: var(--olive);
  border: 1px solid var(--olive);
  display: block;
}
.form-message.error {
  background: rgba(176, 125, 94, 0.15);
  color: var(--terracotta);
  border: 1px solid var(--terracotta);
  display: block;
}

/* ── Footer ──────────────────────────────────────── */
.footer {
  background: var(--deep);
  padding: 6rem 4rem 3rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 5rem;
  border-bottom: 1px solid rgba(0, 90, 156, 0.1);
  margin-bottom: 3rem;
}
.footer-brand-logo img {
  height: 55px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.8;
  margin-bottom: 1.5rem;
}
.footer-brand-tagline {
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}

.footer-col-title {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 1.5rem;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.footer-links a {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--stone); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
}
.footer-contact-item svg {
  width: 16px; height: 16px;
  color: var(--stone);
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-contact-item span {
  font-family: var(--sans);
  font-size: 0.83rem;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}
.footer-contact-item a {
  color: rgba(255,255,255,0.5);
  transition: color 0.3s;
}
.footer-contact-item a:hover { color: var(--stone); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-copy {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(255,255,255,0.3);
}
.footer-social {
  display: flex;
  gap: 1.2rem;
}
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(0, 90, 156, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  transition: border-color 0.3s, color 0.3s;
}
.footer-social a:hover {
  border-color: var(--stone);
  color: var(--stone);
}
.footer-powered-wrap {
  border-top: 1px solid rgba(0, 90, 156, 0.15);
  margin-top: 1.5rem;
  padding-top: 1.1rem;
  text-align: center;
}
.footer-powered-link {
  font-family: var(--sans);
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.6);
  transition: color 0.25s ease;
}
.footer-powered-link:hover {
  color: var(--stone);
}

.cookie-banner {
  position: fixed;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 1200;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  background: rgba(19, 41, 61, 0.96);
  color: var(--warm-white);
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.18);
  pointer-events: auto;
}
.cookie-banner[hidden] {
  display: none !important;
}
.cookie-banner p {
  margin: 0;
  font-family: var(--sans);
  font-size: 0.9rem;
  line-height: 1.5;
}
.cookie-accept {
  border: 0;
  background: var(--terracotta);
  color: var(--warm-white);
  padding: 0.8rem 1rem;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  pointer-events: auto;
  position: relative;
  z-index: 2;
}

/* ── Lightbox ────────────────────────────────────── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(10, 20, 30, 0.95);
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 2px;
}
.lightbox-close {
  position: absolute;
  top: 2rem; right: 2rem;
  background: none;
  border: none;
  color: var(--warm-white);
  font-size: 2rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.3s;
}
.lightbox-close:hover { opacity: 1; }

/* ── Keyframes ───────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  to { opacity: 1; }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 0.8; transform: scaleY(1.15); }
}

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 1200px) {
  .gialtra-inner { grid-template-columns: 1fr; }
  .gialtra-image { height: 360px; }
  .location { grid-template-columns: 1fr; }
}

@media (max-width: 1024px) {
  .nav { padding: 1.5rem 2.5rem; }
  .nav.scrolled { padding: 1rem 2.5rem; }
  .nav-links { display: none; }
  .lang-switch {
    margin-left: auto;
    margin-right: 0.6rem;
  }
  .nav-hamburger { display: flex; }
  .mobile-menu { display: flex; }

  .intro { grid-template-columns: 1fr; gap: 4rem; padding: 7rem 2.5rem 6rem; }
  .intro-images { height: 420px; }

  .amenities { padding: 6rem 2.5rem; }
  .amenities-grid { grid-template-columns: 1fr; gap: 3px; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 260px);
    grid-auto-rows: 260px;
    padding: 0 2.5rem;
  }
  .gallery-item.large { grid-row: span 1; }
  .gallery-header { padding: 0 2.5rem; }

  .about { padding: 7rem 2.5rem; }
  .about-inner { grid-template-columns: 1fr; gap: 4rem; }
  .about-images { height: 420px; }

  .testimonials { padding: 6rem 2.5rem; }
  .testimonial-slide { grid-template-columns: 1fr; gap: 1.5rem; }

  .gialtra-intro { padding: 6rem 2.5rem; }
  .gialtra-inner { gap: 2.6rem; }

  .location {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 6rem 2.5rem;
    overflow: hidden;
    max-width: 100%;
  }
  .location-map { height: 380px; width: 100%; max-width: 100%; }

  section { max-width: 100% !important; overflow: hidden !important; }

  .reveal-left, .reveal-right {
    transform: translateX(0) !important;
    opacity: 1 !important;
    transition: none !important;
  }

  .contact { padding: 6rem 2.5rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }

  .footer { padding: 5rem 2.5rem 2.5rem; }
  .footer-top { grid-template-columns: 1fr; gap: 3rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}

@media (max-width: 640px) {
  .hero-content { padding: 0 1.5rem; }
  .nav-logo img { height: 60px; }
  .hero-title { font-size: clamp(2.5rem, 10vw, 4rem); }
  .hero-scroll { right: 1.5rem; }

  .intro { padding: 5rem 1.5rem 4rem; }
  .intro-stats { flex-wrap: wrap; gap: 2rem; }
  .intro-images { height: 320px; }

  .amenities { padding: 5rem 1.5rem; }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 260px);
    grid-auto-rows: 260px;
    padding: 0 1.5rem;
  }
  .gallery-header { padding: 0 1.5rem; }

  .about { padding: 5rem 1.5rem; }
  .about-images { height: 340px; }

  .testimonials { padding: 5rem 1.5rem; }

  .gialtra-intro { padding: 5rem 1.5rem; }
  .gialtra-image { height: 280px; }

  .location { padding: 5rem 1.5rem; }

  .contact { padding: 5rem 1.5rem; }
  .form-row { grid-template-columns: 1fr; }

  .footer { padding: 4rem 1.5rem 2rem; }
  .cookie-banner { left: 1rem; right: 1rem; bottom: 1rem; flex-direction: column; align-items: flex-start; }
}
