* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --cream: #f8f3ea;
  --sand: #e8d8bd;
  --warm: #c4965c;
  --ink: #1d2528;
  --soft-ink: #4f5b5f;
  --muted: #7a8588;
  --line: #e9e1d5;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(29, 37, 40, 0.14);
  --radius: 28px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
}

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

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 243, 234, 0.94);
  border-bottom: 1px solid rgba(29, 37, 40, 0.08);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.logo,
.footer-logo {
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.logo span,
.footer-logo span {
  color: var(--warm);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--soft-ink);
}

.main-nav a:hover {
  color: var(--warm);
}

.eyebrow {
  color: var(--warm);
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  font-weight: 900;
  margin-bottom: 14px;
}

h1 {
  font-size: clamp(3.6rem, 8vw, 7.6rem);
  line-height: 0.88;
  letter-spacing: -0.085em;
  margin-bottom: 28px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.65rem);
  line-height: 1.02;
  letter-spacing: -0.065em;
}

h3 {
  font-size: 1.35rem;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.home-hero {
  padding: 58px 0 84px;
  background:
    radial-gradient(circle at top left, rgba(196,150,92,0.22), transparent 35%),
    linear-gradient(180deg, var(--cream), #ffffff 100%);
}

.home-hero-grid {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: 54px;
  align-items: center;
}

.home-hero-copy p:not(.eyebrow) {
  color: var(--soft-ink);
  font-size: 1.17rem;
  max-width: 620px;
  margin-bottom: 34px;
}

.home-hero-image {
  border-radius: 38px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--ink);
}

.home-hero-image img {
  width: 100%;
  height: 620px;
  object-fit: cover;
}

.hero-actions,
.featured-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--ink);
  color: var(--white);
}

.btn-outline {
  border: 1px solid rgba(29, 37, 40, 0.20);
  color: var(--ink);
  background: rgba(255,255,255,0.65);
}

.section {
  padding: 92px 0;
}

.section-heading {
  margin-bottom: 38px;
}

.centered {
  text-align: center;
  max-width: 790px;
  margin-left: auto;
  margin-right: auto;
}

.centered > p,
.split-heading > p,
.collection-card p,
.type-box p,
.why-card p,
.featured-home-text p,
.guide-box p,
.site-footer p {
  color: var(--soft-ink);
}

.split-heading {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 44px;
  align-items: end;
}

.areas-first {
  background: var(--white);
}

.area-photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 18px;
}

.area-photo-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
  box-shadow: 0 14px 42px rgba(29,37,40,0.10);
}

.area-photo-card.tall {
  grid-column: span 2;
  grid-row: span 2;
}

.area-photo-card.wide {
  grid-column: span 2;
}

.area-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
  opacity: 0.9;
}

.area-photo-card:hover img {
  transform: scale(1.06);
}

.area-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 25%, rgba(0,0,0,0.70));
}

.area-photo-card div {
  position: absolute;
  z-index: 2;
  left: 22px;
  right: 22px;
  bottom: 22px;
  color: var(--white);
}

.area-photo-card span {
  display: block;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #f1d7b2;
  margin-bottom: 4px;
}

.area-photo-card h3 {
  color: var(--white);
  font-size: 1.55rem;
}

.featured-home {
  background: var(--cream);
}

.featured-home-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 0;
  border-radius: 38px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--white);
}

.featured-home-image img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
}

.featured-home-text {
  padding: clamp(34px, 6vw, 72px);
}

.featured-home-text h2 {
  margin-bottom: 14px;
}

.rating {
  color: var(--warm) !important;
  font-weight: 900;
  margin-bottom: 18px;
}

.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 32px;
}

.feature-tags span {
  padding: 9px 13px;
  border-radius: 999px;
  background: var(--cream);
  border: 1px solid var(--line);
  color: var(--soft-ink);
  font-weight: 800;
  font-size: 0.92rem;
}

.text-link {
  font-weight: 900;
  color: var(--ink);
  border-bottom: 2px solid var(--warm);
}

.collections-section {
  background: var(--white);
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.collection-card {
  background: var(--cream);
  padding: 30px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: 0 12px 35px rgba(29,37,40,0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.collection-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(29,37,40,0.12);
}

.collection-card span {
  display: inline-block;
  color: var(--warm);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 900;
  margin-bottom: 14px;
}

.collection-card h3 {
  margin-bottom: 10px;
}

.accommodation-types-home {
  background: var(--cream);
}

.type-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.type-box {
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: 0 12px 35px rgba(29,37,40,0.05);
}

.type-box h3 {
  margin-bottom: 10px;
}

.why-section {
  background: #1f292c;
  color: var(--white);
}

.why-section h2 {
  color: var(--white);
}

.why-section .split-heading > p {
  color: rgba(255,255,255,0.72);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.why-card {
  padding: 28px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
}

.why-card strong {
  display: block;
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.why-card p {
  color: rgba(255,255,255,0.72);
}

.guide-cta {
  background: var(--white);
}

.guide-box {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 40px;
  align-items: center;
  background: var(--cream);
  border-radius: 38px;
  padding: clamp(32px, 5vw, 62px);
  border: 1px solid var(--line);
}

.guide-box h2 {
  margin-bottom: 18px;
}

.guide-links {
  display: grid;
  gap: 12px;
}

.guide-links a {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 17px 18px;
  font-weight: 900;
}

.site-footer {
  padding: 62px 0 20px;
  background: var(--ink);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr 0.7fr;
  gap: 38px;
}

.site-footer p,
.site-footer a:not(.footer-logo) {
  color: rgba(255,255,255,0.66);
}

.site-footer h4 {
  margin-bottom: 12px;
}

.site-footer a:not(.footer-logo) {
  display: block;
  margin: 7px 0;
}

.copyright {
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 42px;
  padding-top: 18px;
  color: rgba(255,255,255,0.55);
  font-size: 0.92rem;
}

@media (max-width: 980px) {
  .nav-wrap {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 0;
  }

  .main-nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 7px;
  }

  .home-hero-grid,
  .split-heading,
  .featured-home-grid,
  .guide-box,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .home-hero-image img {
    height: 450px;
  }

  .area-photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .collection-grid,
  .type-grid,
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .home-hero {
    padding: 48px 0 64px;
  }

  .section {
    padding: 66px 0;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.7rem);
  }

  .home-hero-image img {
    height: 340px;
  }

  .hero-actions,
  .featured-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .area-photo-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }

  .area-photo-card.tall,
  .area-photo-card.wide {
    grid-column: span 1;
    grid-row: span 1;
  }

  .collection-grid,
  .type-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .featured-home-image img {
    min-height: 320px;
  }
}
/* Apartments page v3 additions */

.inner-hero {
  padding: 58px 0 84px;
  background:
    radial-gradient(circle at top left, rgba(196,150,92,0.22), transparent 35%),
    linear-gradient(180deg, var(--cream), #ffffff 100%);
}

.inner-hero-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 54px;
  align-items: center;
}

.inner-hero-copy p:not(.eyebrow) {
  color: var(--soft-ink);
  font-size: 1.17rem;
  max-width: 650px;
  margin-bottom: 34px;
}

.inner-hero-image {
  border-radius: 38px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--ink);
}

.inner-hero-image img {
  width: 100%;
  height: 580px;
  object-fit: cover;
}

.quick-intro {
  background: var(--white);
}

.intro-split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 54px;
  align-items: center;
}

.intro-split p {
  color: var(--soft-ink);
  font-size: 1.08rem;
}

.apartments-areas {
  background: var(--cream);
}

.apartment-area-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.apartment-area-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 12px 35px rgba(29,37,40,0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.apartment-area-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(29,37,40,0.12);
}

.apartment-area-card.feature {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
}

.apartment-area-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.apartment-area-card.feature img {
  height: 100%;
  min-height: 360px;
}

.apartment-area-card div {
  padding: 28px;
}

.apartment-area-card span {
  display: inline-block;
  color: var(--warm);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 900;
  margin-bottom: 14px;
}

.apartment-area-card h3 {
  margin-bottom: 10px;
}

.apartment-area-card p {
  color: var(--soft-ink);
}

.choose-section {
  background: var(--white);
}

.choose-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: start;
}

.choose-list {
  display: grid;
  gap: 16px;
}

.choose-list div {
  padding: 24px;
  border-radius: 22px;
  background: var(--cream);
  border: 1px solid var(--line);
}

.choose-list strong {
  display: block;
  font-size: 1.12rem;
  margin-bottom: 6px;
}

.choose-list p {
  color: var(--soft-ink);
}

@media (max-width: 980px) {
  .inner-hero-grid,
  .intro-split,
  .choose-grid {
    grid-template-columns: 1fr;
  }

  .inner-hero-image img {
    height: 430px;
  }

  .apartment-area-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .apartment-area-card.feature {
    grid-column: span 2;
    grid-template-columns: 1fr;
  }

  .apartment-area-card.feature img {
    height: 330px;
    min-height: 330px;
  }
}

@media (max-width: 620px) {
  .inner-hero {
    padding: 48px 0 64px;
  }

  .inner-hero-image img {
    height: 330px;
  }

  .apartment-area-grid {
    grid-template-columns: 1fr;
  }

  .apartment-area-card.feature {
    grid-column: span 1;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
}
/* Naxos Town Apartments page additions */

.destination-hero {
  padding: 58px 0 84px;
  background:
    radial-gradient(circle at top left, rgba(196,150,92,0.22), transparent 35%),
    linear-gradient(180deg, var(--cream), #ffffff 100%);
}

.destination-hero-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 54px;
  align-items: center;
}

.destination-hero-copy p:not(.eyebrow) {
  color: var(--soft-ink);
  font-size: 1.17rem;
  max-width: 650px;
  margin-bottom: 34px;
}

.destination-hero-image {
  border-radius: 38px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--ink);
}

.destination-hero-image img {
  width: 100%;
  height: 580px;
  object-fit: cover;
}

.quick-intro {
  background: var(--white);
}

.intro-split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 54px;
  align-items: center;
}

.intro-split p {
  color: var(--soft-ink);
  font-size: 1.08rem;
}

.town-benefits {
  background: var(--cream);
  padding-top: 0;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.benefit-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 12px 35px rgba(29,37,40,0.05);
}

.benefit-card strong {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.benefit-card p {
  color: var(--soft-ink);
}

.recommended-section {
  background: var(--white);
}

.stay-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.stay-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(29,37,40,0.06);
}

.stay-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.stay-card div {
  padding: 28px;
}

.stay-card span {
  display: inline-block;
  color: var(--warm);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 900;
  margin-bottom: 14px;
}

.stay-card h3 {
  margin-bottom: 10px;
}

.stay-card p {
  color: var(--soft-ink);
}

.attractions-section {
  background: var(--cream);
}

.attraction-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.attraction-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(29,37,40,0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.attraction-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(29,37,40,0.12);
}

.attraction-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.attraction-card div {
  padding: 24px;
}

.attraction-card h3 {
  margin-bottom: 8px;
}

.attraction-card p {
  color: var(--soft-ink);
}

.pros-cons-section {
  background: var(--white);
}

.pros-cons-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.pros-cons-boxes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.pros-box,
.cons-box {
  border-radius: var(--radius);
  padding: 30px;
  border: 1px solid var(--line);
  background: var(--cream);
}

.pros-box h3,
.cons-box h3 {
  margin-bottom: 14px;
}

.pros-box ul,
.cons-box ul {
  padding-left: 20px;
  color: var(--soft-ink);
}

.pros-box li,
.cons-box li {
  margin-bottom: 9px;
}

.faq-section {
  background: var(--cream);
}

.faq-list {
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.faq-list details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 20px 24px;
  box-shadow: 0 10px 28px rgba(29,37,40,0.04);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 900;
  color: var(--ink);
}

.faq-list p {
  color: var(--soft-ink);
  margin-top: 12px;
}

.related-areas {
  background: var(--white);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

@media (max-width: 980px) {
  .destination-hero-grid,
  .intro-split,
  .pros-cons-grid {
    grid-template-columns: 1fr;
  }

  .destination-hero-image img {
    height: 430px;
  }

  .benefit-grid,
  .attraction-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stay-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .destination-hero {
    padding: 48px 0 64px;
  }

  .destination-hero-image img {
    height: 330px;
  }

  .benefit-grid,
  .attraction-grid,
  .pros-cons-boxes {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
}
/* Apartments page v4 additions */

.featured-guide-section {
  background: var(--white);
  padding-top: 56px;
  padding-bottom: 56px;
}

.featured-guide-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: clamp(28px, 5vw, 52px);
  box-shadow: 0 16px 42px rgba(29,37,40,0.08);
}

.featured-guide-box h2 {
  margin-bottom: 14px;
}

.featured-guide-box p {
  color: var(--soft-ink);
  max-width: 760px;
}

@media (max-width: 760px) {
  .featured-guide-box {
    grid-template-columns: 1fr;
  }
}
