/* ===========================
   Philia Villas — style.css
   =========================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Jost:wght@300;400;500;600&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css');

:root {
  --gold: #b8824a;
  --gold-light: #d4a96a;
  --dark: #1a1a1a;
  --mid: #4a4a4a;
  --light: #f7f5f2;
  --white: #ffffff;
  --border: #e5ddd5;
  --hero-overlay: rgba(10,10,10,0.42);
  --radius: 4px;
  --transition: 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Jost', sans-serif; color: var(--dark); background: var(--white); line-height: 1.7; overflow-x: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }

/* ── Bilingual system ── */
.lang-gr { display: none !important; }

html.is-gr .lang-en { display: none !important; }
html.is-gr span.lang-gr,
html.is-gr a.lang-gr { display: inline !important; }
html.is-gr p.lang-gr,
html.is-gr h1.lang-gr,
html.is-gr h2.lang-gr,
html.is-gr h3.lang-gr,
html.is-gr h4.lang-gr,
html.is-gr li.lang-gr,
html.is-gr div.lang-gr,
html.is-gr ul.lang-gr { display: block !important; }
html.is-gr .lang-gr.flex-item { display: flex !important; }

/* ── Typography ── */
h1,h2,h3,h4 { font-family: 'Cormorant Garamond', serif; font-weight: 400; line-height: 1.2; }
h1 { font-size: clamp(2.4rem,6vw,5rem); }
h2 { font-size: clamp(1.8rem,4vw,3rem); }
h3 { font-size: clamp(1.4rem,3vw,2rem); }
h4 { font-size: 1.2rem; }
.subtitle { font-size: clamp(0.75rem,1.5vw,0.9rem); letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); font-family: 'Jost', sans-serif; font-weight: 500; display: block; margin-bottom: 0.75rem; }
.section-intro { max-width: 640px; margin: 1rem auto 0; color: var(--mid); font-size: 1.05rem; text-align: center; }

/* ── Layout ── */
.container { width: 90%; max-width: 1200px; margin: 0 auto; }
section { padding: 90px 0; }
section.compact { padding: 60px 0; }
.section-header { text-align: center; margin-bottom: 3rem; }
.divider { width: 50px; height: 2px; background: var(--gold); margin: 1rem auto 0; }

/* ── Buttons ── */
.btn { display: inline-block; padding: 13px 32px; border-radius: 2px; font-family: 'Jost', sans-serif; font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 500; transition: all var(--transition); border: none; }
.btn-primary { background: var(--gold); color: var(--white); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-outline { background: transparent; border: 1.5px solid var(--gold); color: var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--white); }
.btn-dark { background: var(--dark); color: var(--white); }
.btn-dark:hover { background: #333; transform: translateY(-1px); }
.btn-white { background: var(--white); color: var(--dark); }
.btn-white:hover { background: var(--light); }

/* ── Intro Splash ── */
#intro-splash {
  position: fixed; inset: 0; background: var(--dark); z-index: 9999;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.2rem; pointer-events: none;
}
#intro-splash .splash-logo { width: 130px; height: auto; opacity: 0; transform: scale(0.85) translateY(10px); animation: splashLogoIn 0.8s 0.3s cubic-bezier(0.22,1,0.36,1) forwards; }
#intro-splash .splash-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.8rem,5vw,3.2rem); color: #fff; letter-spacing: 0.08em; opacity: 0; transform: translateY(12px); animation: splashTextIn 0.8s 0.65s cubic-bezier(0.22,1,0.36,1) forwards; }
#intro-splash .splash-line { width: 0; height: 1px; background: var(--gold); animation: splashLineIn 0.6s 1.1s ease forwards; }
#intro-splash .splash-sub { font-family: 'Jost', sans-serif; font-size: 0.8rem; letter-spacing: 0.28em; text-transform: uppercase; color: rgba(255,255,255,0.55); opacity: 0; animation: splashTextIn 0.6s 1.4s ease forwards; }
@keyframes splashLogoIn { to { opacity: 1; transform: scale(1) translateY(0); } }
@keyframes splashTextIn { to { opacity: 1; transform: translateY(0); } }
@keyframes splashLineIn { to { width: 80px; } }
#intro-splash.fade-out { animation: splashFadeOut 0.6s ease forwards; }
@keyframes splashFadeOut { to { opacity: 0; visibility: hidden; } }

/* ── Header ── */
#site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; transition: background var(--transition), box-shadow var(--transition); }
.header-transparent { background: transparent; }
.header-scrolled { background: rgba(22,22,22,0.97); backdrop-filter: blur(14px); box-shadow: 0 2px 24px rgba(0,0,0,0.35); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 0 5%; height: 80px; }

/* ── Logo ── */
.logo-wrap { display: flex; align-items: center; flex-shrink: 0; }
.logo-wrap img {
  height: 70px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 10px rgba(255,255,255,0.25)) drop-shadow(0 2px 6px rgba(0,0,0,0.5));
  transition: filter var(--transition), transform var(--transition);
}
.logo-wrap:hover img { transform: scale(1.04); filter: drop-shadow(0 0 14px rgba(184,130,74,0.5)) drop-shadow(0 2px 8px rgba(0,0,0,0.5)); }
.header-transparent .logo-wrap img { filter: drop-shadow(0 0 12px rgba(255,255,255,0.35)) drop-shadow(0 2px 8px rgba(0,0,0,0.6)) brightness(1.15); }

/* ── Nav ── */
.main-nav { display: flex; align-items: center; gap: 1.6rem; }
.main-nav a { font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.88); font-weight: 400; transition: color var(--transition); position: relative; }
.main-nav a::after { content: ''; position: absolute; bottom: -3px; left: 0; width: 0; height: 1px; background: var(--gold); transition: width var(--transition); }
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }
.main-nav a:hover { color: #fff; }
.main-nav a.active { color: var(--gold-light); }
.main-nav .btn.nav-book { padding: 9px 22px; font-size: 0.72rem; letter-spacing: 0.14em; }

/* Lang toggle */
.lang-toggle { display: flex; align-items: center; gap: 4px; margin-left: 0.5rem; }
.lang-btn { background: none; border: 1px solid rgba(255,255,255,0.25); color: rgba(255,255,255,0.6); font-family: 'Jost', sans-serif; font-size: 0.68rem; letter-spacing: 0.1em; padding: 4px 9px; border-radius: 2px; cursor: pointer; transition: all var(--transition); }
.lang-btn.active, .lang-btn:hover { background: var(--gold); border-color: var(--gold); color: #fff; }

/* Burger */
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 8px; cursor: pointer; touch-action: manipulation; -webkit-tap-highlight-color: transparent; position: relative; z-index: 1001; }
.burger span { display: block; width: 24px; height: 2px; background: #fff; transition: all var(--transition); pointer-events: none; }
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px,4.5px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px,-4.5px); }

/* Mobile Nav */
.mobile-nav { display: none; flex-direction: column; position: fixed; top: 80px; right: 0; bottom: 0; width: 290px; background: var(--dark); padding: 2rem; gap: 0; transform: translateX(100%); transition: transform 0.35s cubic-bezier(0.4,0,0.2,1); z-index: 999; overflow-y: auto; }
.mobile-nav.open { transform: translateX(0); display: flex; }
.mobile-nav a { font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.8); padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,0.08); display: block; transition: color var(--transition); }
.mobile-nav a:hover { color: var(--gold-light); }
.mobile-nav .lang-toggle { margin-top: 1.5rem; }
.overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 998; }
.overlay.open { display: block; }

/* ── Hero ── */
.hero { position: relative; height: 100vh; min-height: 620px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.06); animation: heroZoom 12s ease-out forwards; }
@keyframes heroZoom { to { transform: scale(1); } }
.hero-overlay { position: absolute; inset: 0; background: var(--hero-overlay); }
.hero-content { position: relative; z-index: 2; text-align: center; color: #fff; padding: 0 5%; max-width: 900px; margin: 0 auto; }
.hero-content h1 { margin-bottom: 1.2rem; text-shadow: 0 2px 20px rgba(0,0,0,0.4); font-style: italic; font-weight: 300; }
.hero-content p { font-size: clamp(1rem,2vw,1.15rem); color: rgba(255,255,255,0.88); max-width: 620px; margin: 0 auto 2rem; font-weight: 300; letter-spacing: 0.02em; }
.booking-buttons { display: flex; flex-wrap: wrap; gap: 0.8rem; justify-content: center; margin-top: 1.5rem; }
.scroll-hint { position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.5); font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 8px; animation: scrollBounce 2s ease-in-out infinite; }
.scroll-hint span { display: block; width: 1px; height: 36px; background: rgba(255,255,255,0.4); }
@keyframes scrollBounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }
.page-hero { min-height: 55vh; }

/* ── About ── */
.about-section { background: var(--light); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-text h2 { margin-bottom: 1.2rem; }
.about-text p { color: var(--mid); margin-bottom: 1rem; font-size: 1.02rem; }
.about-img img { width: 100%; height: 520px; object-fit: cover; border-radius: var(--radius); }

/* ── Villas ── */
.villas-section { background: var(--white); }
.villas-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; }
.villa-card { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: box-shadow var(--transition), transform var(--transition); }
.villa-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.12); transform: translateY(-3px); }
.villa-card-img { position: relative; overflow: hidden; height: 280px; }
.villa-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.villa-card:hover .villa-card-img img { transform: scale(1.04); }
.villa-card-body { padding: 2rem; }
.villa-card-body h3 { margin-bottom: 0.8rem; }
.villa-card-body p { color: var(--mid); font-size: 0.97rem; margin-bottom: 1.5rem; }
.villa-stats { display: flex; gap: 1.2rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.stat { display: flex; align-items: center; gap: 0.4rem; font-size: 0.82rem; letter-spacing: 0.06em; color: var(--mid); }
.stat-icon { font-size: 1rem; color: var(--gold); }

/* ── Amenity Cards with optional photo bg ── */
.highlights-section { background: var(--light); }
.highlights-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.highlight-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: box-shadow var(--transition), transform var(--transition);
  overflow: hidden;
  position: relative;
}
.highlight-item:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.12); transform: translateY(-3px); }

/* Photo background variant */
.highlight-item.has-photo {
  background-size: cover;
  background-position: center;
  border-color: transparent;
}
.highlight-item.has-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(18,18,18,0.72);
  border-radius: var(--radius);
  transition: background var(--transition);
}
.highlight-item.has-photo:hover::before { background: rgba(18,18,18,0.60); }
.highlight-item.has-photo > * { position: relative; z-index: 1; }
.highlight-item.has-photo h4 { color: #fff; }
.highlight-item.has-photo p { color: rgba(255,255,255,0.78); }
.highlight-item.has-photo .highlight-img { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.18); }
.highlight-item.has-photo .highlight-img i { color: var(--gold-light); }

.highlight-img { width: 62px; height: 62px; margin: 0 auto 1.2rem; display: flex; align-items: center; justify-content: center; background: var(--light); border-radius: 50%; border: 2px solid var(--border); overflow: hidden; }
.highlight-img i { font-size: 1.5rem; color: var(--gold); }
.highlight-item h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; margin-bottom: 0.5rem; font-weight: 600; }
.highlight-item p { font-size: 0.88rem; color: var(--mid); line-height: 1.6; }

/* ── Location ── */
.location-section { background: var(--white); }
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.location-info h2 { margin-bottom: 1rem; }
.location-info p { color: var(--mid); margin-bottom: 1.5rem; }
.location-distances { list-style: none; }
.location-distances li { display: flex; justify-content: space-between; padding: 0.75rem 0; border-bottom: 1px solid var(--border); font-size: 0.93rem; }
.location-distances li span:last-child { color: var(--gold); font-weight: 500; }
.map-wrap { border-radius: var(--radius); overflow: hidden; height: 420px; border: 1px solid var(--border); }
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* ── Gallery Teaser ── */
.gallery-teaser { background: var(--dark); text-align: center; padding: 90px 0; }
.gallery-teaser h2 { color: #fff; margin-bottom: 0.8rem; }
.gallery-teaser p { color: rgba(255,255,255,0.6); max-width: 500px; margin: 0 auto 2.5rem; }
.gallery-preview { display: grid; grid-template-columns: repeat(4,1fr); gap: 4px; margin-bottom: 2.5rem; }
.gallery-preview-item { overflow: hidden; aspect-ratio: 1; }
.gallery-preview-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-preview-item:hover img { transform: scale(1.06); }

/* ── CTA ── */
.cta-band { background: linear-gradient(135deg,#1a1a1a 0%,#2a2a2a 100%); padding: 80px 0; text-align: center; color: #fff; }
.cta-band h2 { color: #fff; margin-bottom: 1rem; }
.cta-band p { color: rgba(255,255,255,0.7); max-width: 500px; margin: 0 auto 2rem; }

/* ── Villa Detail ── */
.villa-detail-intro { padding: 80px 0; background: var(--white); }
.villa-detail-intro .container { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.villa-meta-stats { display: flex; gap: 2rem; margin: 2rem 0; padding: 1.5rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.meta-stat { text-align: center; }
.meta-stat strong { display: block; font-size: 2rem; font-family: 'Cormorant Garamond', serif; color: var(--gold); }
.meta-stat span { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mid); }
.villa-amenities-list { list-style: none; padding: 0; }
.villa-amenities-list li { padding: 0.55rem 0; border-bottom: 1px solid var(--border); font-size: 0.93rem; color: var(--mid); display: flex; align-items: center; gap: 0.5rem; }
.villa-amenities-list li::before { content: ''; display: block; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

/* ── Gallery Section ── */
.villa-gallery-section { background: var(--light); padding: 80px 0; }
.gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 6px; }
.gallery-item { overflow: hidden; cursor: pointer; aspect-ratio: 4/3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.05); }

/* Full Gallery */
.gallery-section-page { padding: 80px 0; background: var(--white); }
.gallery-filter-bar { display: flex; gap: 0.8rem; justify-content: center; margin-bottom: 2.5rem; flex-wrap: wrap; }
.filter-btn { padding: 8px 20px; font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; border: 1.5px solid var(--border); background: transparent; color: var(--mid); cursor: pointer; transition: all var(--transition); border-radius: 2px; font-family: 'Jost', sans-serif; }
.filter-btn:hover, .filter-btn.active { border-color: var(--gold); color: var(--gold); background: rgba(184,130,74,0.05); }

/* ── Lightbox ── */
.lightbox { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.95); z-index: 2000; align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lightbox-inner { position: relative; max-width: 90vw; max-height: 90vh; }
.lightbox-img { max-width: 90vw; max-height: 85vh; object-fit: contain; }
.lightbox-close, .lightbox-prev, .lightbox-next { position: absolute; background: rgba(255,255,255,0.1); border: none; color: #fff; cursor: pointer; transition: background var(--transition); display: flex; align-items: center; justify-content: center; border-radius: 50%; }
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.2); }
.lightbox-close { top: 1.5rem; right: 1.5rem; width: 44px; height: 44px; font-size: 1.4rem; }
.lightbox-prev { left: 1.5rem; top: 50%; transform: translateY(-50%); width: 50px; height: 50px; font-size: 1.4rem; }
.lightbox-next { right: 1.5rem; top: 50%; transform: translateY(-50%); width: 50px; height: 50px; font-size: 1.4rem; }
.lightbox-counter { position: absolute; bottom: -2rem; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.5); font-size: 0.8rem; letter-spacing: 0.1em; }

/* ── Naxos Page ── */
.naxos-intro { background: var(--light); }
.naxos-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.naxos-facts { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; margin-top: 3rem; }
.naxos-fact { text-align: center; padding: 2rem 1rem; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); }
.naxos-fact i { font-size: 1.8rem; color: var(--gold); margin-bottom: 0.8rem; display: block; }
.naxos-fact strong { display: block; font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; color: var(--dark); }
.naxos-fact span { font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mid); }
.naxos-explore { background: var(--white); padding: 90px 0; }
.naxos-explore-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.8rem; margin-top: 3rem; }
.naxos-explore-card { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: box-shadow var(--transition), transform var(--transition); }
.naxos-explore-card:hover { box-shadow: 0 10px 36px rgba(0,0,0,0.11); transform: translateY(-3px); }
.naxos-explore-img { height: 220px; overflow: hidden; }
.naxos-explore-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.naxos-explore-card:hover .naxos-explore-img img { transform: scale(1.05); }
.naxos-explore-body { padding: 1.5rem; }
.naxos-explore-body h4 { margin-bottom: 0.5rem; font-size: 1.15rem; }
.naxos-explore-body p { font-size: 0.9rem; color: var(--mid); line-height: 1.65; }
.naxos-distances { background: var(--light); padding: 90px 0; }
.naxos-dist-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }

/* ── Contact ── */
.contact-section { padding: 90px 0; background: var(--light); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: start; }
.contact-info h2 { margin-bottom: 1.5rem; }
.contact-info p { color: var(--mid); margin-bottom: 2rem; }
.contact-detail { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.contact-detail-icon { width: 44px; height: 44px; background: var(--white); border: 1px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--gold); }
.contact-detail-text p:first-child { font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.2rem; font-weight: 500; }
.contact-detail-text p:last-child { color: var(--mid); font-size: 0.95rem; }
.contact-form-wrap { background: var(--white); padding: 3rem; border: 1px solid var(--border); border-radius: var(--radius); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { margin-bottom: 1.4rem; }
.form-group label { display: block; font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mid); margin-bottom: 0.5rem; font-weight: 500; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 16px; border: 1px solid var(--border); background: var(--light); font-family: 'Jost', sans-serif; font-size: 0.95rem; color: var(--dark); border-radius: var(--radius); transition: border-color var(--transition); outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); background: #fff; }
.form-group input.error, .form-group select.error, .form-group textarea.error { border-color: #e05252; }
.form-group textarea { resize: vertical; min-height: 140px; }
#formSuccess { display: none; text-align: center; padding: 2rem; color: var(--gold); font-size: 1.1rem; }
#formSuccess.show { display: block; }
.contact-map-wrap { margin-top: 4rem; height: 380px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.contact-map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* ── Footer ── */
#site-footer { background: #111; color: rgba(255,255,255,0.7); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 3rem; padding: 4rem 0 2rem; }
.footer-brand img { height: 62px; width: auto; margin-bottom: 1.2rem; filter: brightness(0) invert(1); opacity: 0.9; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; color: rgba(255,255,255,0.5); max-width: 280px; }
.social-links { display: flex; gap: 0.8rem; margin-top: 1.2rem; }
.social-links a { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); font-size: 0.9rem; transition: all var(--transition); }
.social-links a:hover { border-color: var(--gold); color: var(--gold); }
.footer-col h5 { font-family: 'Jost', sans-serif; font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 1.2rem; font-weight: 500; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a { font-size: 0.88rem; color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-contact-item { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 0.8rem; }
.footer-contact-item i { color: var(--gold); font-size: 0.8rem; }
.footer-contact-item span { font-size: 0.88rem; color: rgba(255,255,255,0.55); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 1.5rem 0; display: flex; justify-content: space-between; align-items: center; font-size: 0.78rem; color: rgba(255,255,255,0.3); letter-spacing: 0.05em; }

/* ── Responsive ── */
@media(max-width:1200px) { .highlights-grid { grid-template-columns: repeat(2,1fr); } }
@media(max-width:1024px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media(max-width:768px) {
  .main-nav { display: none; }
  .burger { display: flex; }
  .about-grid, .villas-grid, .location-grid, .naxos-grid, .contact-grid, .villa-detail-intro .container, .naxos-dist-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .gallery-preview { grid-template-columns: repeat(2,1fr); }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .naxos-explore-grid { grid-template-columns: 1fr; }
  .naxos-facts { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .about-img img { height: 320px; }
  .form-row { grid-template-columns: 1fr; }
  .header-inner { height: 72px; }
  .logo-wrap img { height: 60px; }
  .mobile-nav { top: 72px; }
}
@media(max-width:480px) {
  .highlights-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  section { padding: 60px 0; }
}
