:root {
    --vanilla: #f5ecd9;
    --vanilla-light: #faf3e3;
    --creme: #ede1c8;
    --creme-deep: #e2d3b3;
    --white-soft: #fdfaf3;
    --warm-white: #fefcf6;
    --light-brown: #b8987a;
    --brown: #8a6b4f;
    --brown-dark: #5d4630;
    --brown-deep: #3d2e20;
    --charcoal: #2a2018;
    --text: #3d2e20;
    --text-soft: #6b5340;
    --muted: #9d8770;
    --border: rgba(138,107,79,0.18);
    --border-soft: rgba(138,107,79,0.1);
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html {
    scroll-behavior: smooth;
    background: var(--creme);
    -webkit-text-size-adjust: 100%; /* Prevent iOS auto font scaling */
    text-size-adjust: 100%;
  }

  body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    background: var(--warm-white);
    color: var(--text);
    line-height: 1.7;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; /* Firefox Mac */
    width: 100%;
    min-height: 100vh;
    min-height: -webkit-fill-available; /* iOS Safari 100vh fix */
    -webkit-tap-highlight-color: transparent; /* Remove iOS tap flash */
    text-rendering: optimizeLegibility;
  }

  a { text-decoration: none; color: inherit; }
  img { max-width: 100%; display: block; -webkit-user-drag: none; }
  input, select, textarea, button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-family: inherit;
    border-radius: 0; /* iOS adds border-radius to inputs */
  }
  button { cursor: pointer; }

  .container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 32px;
  }

  /* ════════════ PAGE SYSTEM ════════════ */
  .page { display: none; animation: fadeIn 0.5s ease; }
  .page.active { display: block; }
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* ════════════ ANNOUNCEMENT BAR ════════════ */
  .announce {
    background: var(--brown-deep);
    color: var(--vanilla);
    text-align: center;
    padding: 9px 16px;
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: 400;
  }

  /* ════════════ HEADER ════════════ */
  header {
    background: var(--creme);
    padding: 28px 0 20px;
    position: sticky;
    position: -webkit-sticky; /* iOS Safari */
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border);
    background-image:
      radial-gradient(circle at 20% 30%, rgba(184,152,122,0.08) 0%, transparent 40%),
      radial-gradient(circle at 80% 70%, rgba(184,152,122,0.06) 0%, transparent 40%);
    transition: padding 0.4s ease, box-shadow 0.4s ease;
    overflow: hidden;
    width: 100%;
  }
  header.scrolled {
    padding: 14px 0 12px;
    box-shadow: 0 4px 30px rgba(61,46,32,0.08);
  }

  /* Brand centered top - calligraphy */
  .brand-block {
    text-align: center;
    margin-bottom: 18px;
    position: relative;
    transition: margin-bottom 0.4s ease;
  }
  header.scrolled .brand-block {
    margin-bottom: 8px;
  }

  /* Decorative ornaments around logo when condensed */
  .brand-name-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    position: relative;
    max-width: 100%;
  }
  /* Subtle decorative pattern behind logo when scrolled */
  .brand-name-wrap::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background-image:
      radial-gradient(circle at center, rgba(184,152,122,0.25) 1px, transparent 2px);
    background-size: 12px 12px;
    background-position: center;
    opacity: 0;
    transition: opacity 0.5s ease 0.2s, width 0.5s ease, height 0.5s ease;
    pointer-events: none;
    z-index: 0;
    border-radius: 50%;
    -webkit-mask-image: radial-gradient(ellipse, black 30%, transparent 70%);
    mask-image: radial-gradient(ellipse, black 30%, transparent 70%);
    max-width: 90vw;
  }
  header.scrolled .brand-name-wrap::before {
    opacity: 1;
    width: min(600px, 85vw);
    height: 70px;
  }
  /* Subtle flourish underline when scrolled */
  .brand-name-wrap::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--brown) 30%, var(--brown) 70%, transparent);
    opacity: 0;
    transition: opacity 0.4s ease 0.3s, width 0.5s ease 0.2s;
    pointer-events: none;
  }
  header.scrolled .brand-name-wrap::after {
    opacity: 0.5;
    width: 280px;
  }

  .brand-ornament {
    display: none;
    align-items: center;
    gap: 10px;
    color: var(--brown);
    font-size: 11px;
    opacity: 0;
    transition: opacity 0.4s ease 0.2s;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
  }
  .brand-ornament .line {
    display: inline-block;
    width: 40px;
    height: 1px;
    background: var(--brown);
    opacity: 0.5;
  }
  .brand-ornament .star {
    color: var(--brown);
    font-size: 12px;
    opacity: 0.7;
  }
  header.scrolled .brand-ornament {
    display: flex;
    opacity: 1;
  }

  .brand-name {
    font-family: 'Italianno', 'Palatino Linotype', 'Palatino', 'Book Antiqua', cursive;
    font-size: clamp(58px, 7.5vw, 84px);
    color: var(--brown-deep);
    line-height: 0.92;
    font-weight: 400;
    letter-spacing: 0.01em;
    transition: font-size 0.4s ease;
    position: relative;
    z-index: 1;
  }
  header.scrolled .brand-name {
    font-size: clamp(36px, 4.5vw, 48px);
  }
  .brand-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 6px;
    transition: opacity 0.3s ease, max-height 0.4s ease, margin-top 0.4s ease;
    overflow: hidden;
    max-height: 30px;
  }
  header.scrolled .brand-divider {
    opacity: 0;
    max-height: 0;
    margin-top: 0;
  }
  .brand-divider::before, .brand-divider::after {
    content: '';
    width: 60px;
    height: 1px;
    background: var(--brown);
    opacity: 0.6;
  }
  .brand-tag {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    letter-spacing: 0.5em;
    color: var(--brown-dark);
    text-transform: uppercase;
    font-weight: 500;
    white-space: nowrap;
  }
  @media (max-width: 480px) {
    .brand-tag {
      font-size: 8.5px;
      letter-spacing: 0.35em;
    }
  }

  /* Header bottom row: nav + lang */
  .header-row {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    align-items: center;
    gap: 32px;
    transition: opacity 0.3s ease, max-height 0.4s ease;
    overflow: hidden;
    max-height: 120px;
  }
  .header-row > nav.main {
    grid-column: 2;
    display: flex;
    justify-content: center;
  }
  .header-row > .lang-mini {
    grid-column: 3;
  }
  header.scrolled .header-row {
    opacity: 0;
    max-height: 0;
    pointer-events: none;
  }

  nav.main ul {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 0;
    list-style: none;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 580px;
    margin: 0 auto;
    padding: 0;
  }
  nav.main ul li {
    flex: 0 0 33.333%;
    display: flex;
    justify-content: center;
  }
  /* 4th and 5th items go to second row, centered */
  nav.main ul li:nth-child(4) {
    flex: 0 0 50%;
    justify-content: flex-end;
    padding-right: 24px;
  }
  nav.main ul li:nth-child(5) {
    flex: 0 0 50%;
    justify-content: flex-start;
    padding-left: 24px;
  }
  nav.main a {
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--brown-deep);
    transition: color 0.25s;
    font-weight: 500;
    cursor: pointer;
    position: relative;
    padding: 4px 0;
    white-space: nowrap;
  }
  nav.main a:hover, nav.main a.active { color: var(--brown); }
  nav.main a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--brown);
  }

  .lang-mini {
    text-align: right;
    font-size: 10px;
    letter-spacing: 0.15em;
  }
  .lang-mini button {
    background: none;
    border: none;
    color: var(--brown-dark);
    cursor: pointer;
    font-family: inherit;
    padding: 2px 4px;
    font-size: 10px;
    transition: color 0.2s;
    opacity: 0.6;
  }
  .lang-mini button.active { color: var(--brown-deep); font-weight: 500; opacity: 1; }
  .lang-mini button:hover { color: var(--brown-deep); opacity: 1; }
  .lang-mini .sep { color: var(--brown-dark); opacity: 0.3; }

  /* ════════════ SHARED: Section base ════════════ */
  section { padding: 90px 0; }

  .section-eyebrow {
    font-size: 10.5px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--brown);
    margin-bottom: 18px;
    font-weight: 500;
  }
  .section-title {
    font-family: 'Cormorant Garamond', 'Georgia', 'Times New Roman', serif;
    font-size: clamp(38px, 5vw, 56px);
    font-weight: 400;
    line-height: 1.05;
    color: var(--brown-deep);
    margin-bottom: 14px;
    letter-spacing: -0.01em;
  }
  .section-title em {
    font-style: italic;
    color: var(--brown);
  }
  .section-script {
    font-family: 'Italianno', 'Palatino Linotype', 'Palatino', 'Book Antiqua', cursive;
    font-size: clamp(28px, 4vw, 38px);
    color: var(--light-brown);
    margin-bottom: 26px;
    line-height: 1;
  }
  .section-text {
    font-size: 15px;
    line-height: 1.85;
    color: var(--text-soft);
    max-width: 540px;
  }

  .btn-editorial {
    display: inline-block;
    background: var(--brown-dark);
    color: var(--vanilla-light);
    padding: 14px 36px;
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-weight: 500;
    border: 1px solid var(--brown-dark);
    border-radius: 1px;
    transition: all 0.3s;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
  }
  .btn-editorial:hover { background: var(--charcoal); border-color: var(--charcoal); }
  .btn-editorial.outline {
    background: transparent;
    color: var(--brown-dark);
    border-color: var(--light-brown);
  }
  .btn-editorial.outline:hover { background: var(--brown-dark); color: var(--vanilla-light); border-color: var(--brown-dark); }

  /* WhatsApp button - prominent green */
  .btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #fff;
    padding: 14px 30px;
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: 600;
    border: 1px solid #25D366;
    border-radius: 1px;
    transition: all 0.3s;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
  }
  .btn-whatsapp:hover {
    background: #1ebe5a;
    border-color: #1ebe5a;
    transform: translateY(-1px);
  }
  .btn-whatsapp svg {
    width: 16px;
    height: 16px;
    fill: #fff;
  }

  /* Direct booking badge */
  .direct-booking-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    padding: 8px 16px;
    background: var(--vanilla);
    border: 1px solid var(--border);
    border-radius: 30px;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--brown-dark);
    font-weight: 500;
  }
  .direct-booking-badge::before {
    content: '✦';
    color: var(--brown);
  }

  /* Amenities grid in apartment details */
  .amenities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 22px;
    margin: 24px 0 28px;
    padding: 22px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .amenity-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text);
  }
  .amenity-item .icon {
    font-size: 14px;
    color: var(--brown);
    flex-shrink: 0;
    width: 18px;
    text-align: center;
  }

  /* ══════════════════════════════════════
     PAGE 1: HOME
  ══════════════════════════════════════ */

  /* HERO */
  .hero {
    background: var(--vanilla);
    padding: 80px 0 90px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute;
    top: 80px; left: 6%;
    width: 120px; height: 120px;
    background-image: radial-gradient(circle at center, var(--light-brown) 1px, transparent 2px);
    background-size: 18px 18px;
    opacity: 0.25;
  }
  .hero::after {
    content: '✦';
    position: absolute;
    top: 100px; right: 8%;
    font-size: 22px;
    color: var(--light-brown);
    opacity: 0.5;
  }

  .hero-eyebrow {
    font-size: 10px;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: var(--brown);
    margin-bottom: 20px;
    font-weight: 500;
  }
  .hero-title {
    font-family: 'Cormorant Garamond', 'Georgia', 'Times New Roman', serif;
    font-size: clamp(48px, 8vw, 92px);
    font-weight: 300;
    line-height: 1;
    color: var(--brown-deep);
    margin-bottom: 6px;
    letter-spacing: -0.02em;
  }
  .hero-script {
    font-family: 'Italianno', 'Palatino Linotype', 'Palatino', 'Book Antiqua', cursive;
    font-size: clamp(40px, 6vw, 64px);
    color: var(--brown);
    font-weight: 400;
    margin-bottom: 44px;
    line-height: 0.9;
  }
  .hero-image-wrap {
    position: relative;
    max-width: 480px;
    margin: 0 auto 40px;
    aspect-ratio: 4/5;
    border-radius: 50% 50% 6px 6px / 32% 32% 6px 6px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(61,46,32,0.18);
  }
  .hero-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .hero-text {
    max-width: 540px;
    margin: 0 auto 32px;
    color: var(--text-soft);
    font-size: 15px;
    line-height: 1.85;
  }

  /* QUICK NAV TILES (links to other pages) */
  .quick-nav {
    background: var(--white-soft);
  }
  .qn-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .qn-card {
    background: var(--vanilla-light);
    border: 1px solid var(--border-soft);
    padding: 50px 36px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
  }
  .qn-card:hover {
    background: var(--creme);
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(61,46,32,0.1);
  }
  .qn-num {
    font-family: 'Cormorant Garamond', 'Georgia', 'Times New Roman', serif;
    font-style: italic;
    font-size: 14px;
    color: var(--light-brown);
    letter-spacing: 0.2em;
    margin-bottom: 12px;
  }
  .qn-title {
    font-family: 'Cormorant Garamond', 'Georgia', 'Times New Roman', serif;
    font-size: 32px;
    color: var(--brown-deep);
    font-weight: 400;
    margin-bottom: 6px;
    line-height: 1;
  }
  .qn-title em { font-style: italic; color: var(--brown); }
  .qn-script {
    font-family: 'Italianno', 'Palatino Linotype', 'Palatino', 'Book Antiqua', cursive;
    font-size: clamp(20px, 3vw, 26px);
    color: var(--light-brown);
    margin-bottom: 16px;
    line-height: 1;
  }
  .qn-arrow {
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--brown);
    font-weight: 500;
  }

  /* SHORT ABOUT TEASER on home */
  .home-about {
    background: var(--creme);
    padding: 0;
  }

  /* DISCOVER DHERMI HOME SECTION - side-by-side images, text below */
  .discover-dhermi-home {
    background: var(--vanilla);
    padding: 100px 0;
  }
  .dd-images-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-bottom: 50px;
    box-shadow: 0 25px 60px rgba(61,46,32,0.18);
    border-radius: 4px;
    overflow: hidden;
  }
  .dd-image-card {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    cursor: pointer;
  }
  .dd-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
  }
  .dd-image-card:hover img {
    transform: scale(1.05);
  }
  .dd-image-label {
    position: absolute;
    bottom: 18px;
    left: 18px;
    background: rgba(253,250,243,0.9);
    backdrop-filter: blur(10px);
    padding: 7px 14px;
    border-radius: 30px;
    font-size: 10.5px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--brown-deep);
    font-weight: 600;
  }

  .dd-description {
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
  }
  .dd-description .section-eyebrow {
    justify-content: center;
  }
  .dd-description p {
    font-size: 15.5px;
    line-height: 1.9;
    color: var(--text-soft);
    margin-bottom: 16px;
  }
  .dd-description p:last-of-type {
    margin-bottom: 30px;
  }

  .dd-facts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--border);
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
  }
  .dd-fact .dd-fact-num {
    font-family: 'Cormorant Garamond', 'Georgia', 'Times New Roman', serif;
    font-size: 38px;
    font-weight: 400;
    color: var(--brown-deep);
    line-height: 1;
    margin-bottom: 4px;
  }
  .dd-fact .dd-fact-num em {
    font-style: italic;
    color: var(--brown);
  }
  .dd-fact .dd-fact-label {
    font-size: 10.5px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text-soft);
    font-weight: 500;
  }
  .home-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 540px;
  }
  .home-about-img {
    background-image: url('images/img-about-teaser.jpg');
    background-size: cover;
    background-position: center;
  }
  .home-about-content {
    padding: 70px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .home-about-content p {
    font-size: 15px;
    line-height: 1.9;
    color: var(--text-soft);
    margin-bottom: 14px;
  }
  .home-about-content .btn-editorial { margin-top: 16px; align-self: flex-start; }

  /* QUICK TESTIMONIAL */
  .home-testimonial {
    background: var(--vanilla);
    text-align: center;
    padding: 90px 0;
  }
  .test-quote-mark {
    font-family: 'Cormorant Garamond', 'Georgia', 'Times New Roman', serif;
    font-size: 90px;
    color: var(--light-brown);
    line-height: 0.4;
    margin-bottom: 24px;
    font-style: italic;
  }
  .test-quote {
    font-family: 'Cormorant Garamond', 'Georgia', 'Times New Roman', serif;
    font-size: clamp(22px, 2.8vw, 30px);
    font-style: italic;
    font-weight: 400;
    color: var(--brown-deep);
    max-width: 720px;
    margin: 0 auto 26px;
    line-height: 1.5;
  }
  .test-author {
    font-family: 'Italianno', 'Palatino Linotype', 'Palatino', 'Book Antiqua', cursive;
    font-size: clamp(22px, 3vw, 32px);
    color: var(--brown);
    margin-bottom: 6px;
    line-height: 1;
  }
  .test-meta {
    font-size: 10.5px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text-soft);
  }

  /* TESTIMONIAL SLIDER */
  .testimonial-slider {
    position: relative;
    min-height: 220px;
    max-width: 760px;
    margin: 0 auto;
  }
  .testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    pointer-events: none;
  }
  .testimonial-slide.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
    position: relative;
  }
  .testimonial-slide.exiting {
    opacity: 0;
    transform: translateX(-40px);
  }
  .testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 36px;
  }
  .testimonial-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--light-brown);
    opacity: 0.3;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: opacity 0.3s, transform 0.3s;
  }
  .testimonial-dots .dot:hover {
    opacity: 0.6;
  }
  .testimonial-dots .dot.active {
    opacity: 1;
    transform: scale(1.4);
  }
  @media (max-width: 700px) {
    .testimonial-slider { min-height: 280px; }
  }

  /* ══════════════════════════════════════
     PAGE 2: APARTMENTS
  ══════════════════════════════════════ */
  .page-header {
    background: var(--vanilla);
    text-align: center;
    padding: 80px 0 70px;
    position: relative;
  }
  .page-header::before {
    content: '✦';
    position: absolute;
    top: 38px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--light-brown);
    font-size: 16px;
    opacity: 0.7;
  }
  .page-header h1 {
    font-family: 'Cormorant Garamond', 'Georgia', 'Times New Roman', serif;
    font-size: clamp(42px, 6vw, 68px);
    font-weight: 300;
    color: var(--brown-deep);
    margin-bottom: 6px;
    letter-spacing: -0.01em;
  }
  .page-header h1 em { font-style: italic; color: var(--brown); }
  .page-header .script {
    font-family: 'Italianno', 'Palatino Linotype', 'Palatino', 'Book Antiqua', cursive;
    font-size: clamp(30px, 5vw, 42px);
    color: var(--brown);
    line-height: 1;
    margin-bottom: 18px;
  }
  .page-header p {
    max-width: 560px;
    margin: 0 auto;
    color: var(--text-soft);
    font-size: 14.5px;
    line-height: 1.8;
  }

  /* APT EDITORIAL */
  .apt-list {
    display: flex;
    flex-direction: column;
    gap: 100px;
  }
  .apt-row {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 70px;
    align-items: center;
  }
  .apt-row.reverse { grid-template-columns: 1fr 1.1fr; }
  .apt-row.reverse .apt-images { order: 2; }

  .apt-images {
    position: relative;
  }
  .apt-img-main {
    aspect-ratio: 4/5;
    background-size: cover;
    background-position: center;
    border-radius: 4px;
    box-shadow: 0 25px 60px rgba(61,46,32,0.15);
    cursor: pointer;
    transition: transform 0.3s;
  }
  .apt-img-main:hover { transform: scale(1.01); }

  /* Apartment photo gallery thumbnails */
  .apt-thumbs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 10px;
  }
  .apt-thumb {
    aspect-ratio: 1/1;
    background-size: cover;
    background-position: center;
    border-radius: 3px;
    cursor: pointer;
    transition: transform 0.3s, opacity 0.3s;
    opacity: 0.85;
  }
  .apt-thumb:hover {
    opacity: 1;
    transform: scale(1.04);
  }

  /* Lightbox */
  .lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(20, 14, 8, 0.92);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    cursor: zoom-out;
  }
  .lightbox.active { display: flex; }
  .lightbox img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 4px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.5);
    cursor: default;
  }
  .lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: var(--vanilla);
    font-size: 36px;
    cursor: pointer;
    background: none;
    border: none;
    line-height: 1;
    opacity: 0.8;
    transition: opacity 0.2s;
  }
  .lightbox-close:hover { opacity: 1; }
  .lightbox-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--vanilla);
    font-family: 'Cormorant Garamond', 'Georgia', 'Times New Roman', serif;
    font-size: 14px;
    letter-spacing: 0.2em;
    opacity: 0.7;
  }
  .lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--vanilla);
    font-size: 32px;
    cursor: pointer;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
  }
  .lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.18); }
  .lightbox-prev { left: 20px; }
  .lightbox-next { right: 20px; }
  @media (max-width: 700px) {
    .lightbox-prev, .lightbox-next { width: 40px; height: 40px; font-size: 24px; }
  }

  .apt-img-num {
    position: absolute;
    font-family: 'Cormorant Garamond', 'Georgia', 'Times New Roman', serif;
    font-style: italic;
    font-size: 140px;
    font-weight: 300;
    color: var(--brown);
    opacity: 0.18;
    line-height: 1;
    top: -30px;
    left: -40px;
    pointer-events: none;
  }
  .apt-row.reverse .apt-img-num {
    left: auto;
    right: -40px;
  }

  .apt-info .apt-eyebrow {
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--brown);
    margin-bottom: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .apt-info .apt-eyebrow::before {
    content: '';
    width: 28px; height: 1px;
    background: var(--brown);
  }
  .apt-info h3 {
    font-family: 'Cormorant Garamond', 'Georgia', 'Times New Roman', serif;
    font-size: clamp(38px, 4.5vw, 52px);
    font-weight: 400;
    line-height: 1.05;
    color: var(--brown-deep);
    margin-bottom: 4px;
  }
  .apt-info h3 em {
    font-style: italic;
    color: var(--brown);
  }
  .apt-script-name {
    font-family: 'Italianno', 'Palatino Linotype', 'Palatino', 'Book Antiqua', cursive;
    font-size: clamp(26px, 3.5vw, 36px);
    color: var(--light-brown);
    margin-bottom: 22px;
    line-height: 1;
  }
  .apt-info p {
    font-size: 14.5px;
    line-height: 1.85;
    color: var(--text-soft);
    margin-bottom: 26px;
  }

  .apt-details {
    list-style: none;
    margin-bottom: 32px;
  }
  .apt-details li {
    display: flex;
    align-items: baseline;
    gap: 18px;
    padding: 14px 0;
    border-top: 1px solid var(--border);
  }
  .apt-details li:last-child { border-bottom: 1px solid var(--border); }
  .apt-details .num {
    font-family: 'Cormorant Garamond', 'Georgia', 'Times New Roman', serif;
    font-style: italic;
    font-size: 22px;
    color: var(--brown);
    font-weight: 400;
    flex-shrink: 0;
    min-width: 30px;
  }
  .apt-details .lbl {
    font-size: 10.5px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    flex: 1;
  }
  .apt-details .val {
    font-size: 14px;
    color: var(--brown-deep);
    font-weight: 400;
  }

  .apt-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
  }

  /* ══════════════════════════════════════
     PAGE 3: ABOUT
  ══════════════════════════════════════ */
  .about-intro {
    background: var(--warm-white);
    padding: 80px 0;
  }
  .about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
  }
  .about-intro-img {
    aspect-ratio: 4/5;
    background-image: url('images/img-about-intro.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 4px;
    box-shadow: 0 25px 60px rgba(61,46,32,0.15);
  }
  .about-intro-content p {
    font-size: 15px;
    line-height: 1.9;
    color: var(--text-soft);
    margin-bottom: 16px;
  }
  .about-signature {
    font-family: 'Italianno', 'Palatino Linotype', 'Palatino', 'Book Antiqua', cursive;
    font-size: clamp(36px, 5vw, 48px);
    color: var(--brown);
    margin-top: 30px;
    line-height: 1;
  }

  /* Values */
  .values-section {
    background: var(--vanilla);
    text-align: center;
  }
  .values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-top: 60px;
  }
  .value-item {
    text-align: center;
  }
  .value-num {
    font-family: 'Cormorant Garamond', 'Georgia', 'Times New Roman', serif;
    font-style: italic;
    font-size: 38px;
    color: var(--light-brown);
    margin-bottom: 14px;
    line-height: 1;
  }
  .value-item h4 {
    font-family: 'Cormorant Garamond', 'Georgia', 'Times New Roman', serif;
    font-size: 26px;
    font-weight: 400;
    color: var(--brown-deep);
    margin-bottom: 6px;
  }
  .value-item h4 em { font-style: italic; color: var(--brown); }
  .value-script {
    font-family: 'Italianno', 'Palatino Linotype', 'Palatino', 'Book Antiqua', cursive;
    font-size: clamp(18px, 2.5vw, 24px);
    color: var(--light-brown);
    margin-bottom: 14px;
    line-height: 1;
  }
  .value-item p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-soft);
    max-width: 280px;
    margin: 0 auto;
  }

  /* Discover Dhermi (within about page) */
  .dhermi-section { background: var(--white-soft); text-align: center; }
  .dhermi-section .container { text-align: center; }
  .dhermi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
    margin-top: 60px;
    text-align: left;
  }
  .dhermi-img-trio {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 22px;
  }
  .dhermi-img-trio .dhermi-img-main {
    aspect-ratio: 3/2;
    background-size: cover;
    background-position: center;
    border-radius: 4px;
    margin-bottom: 0;
  }
  .dhermi-img-sub {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
  }
  .dhermi-img-sub .dhermi-img {
    aspect-ratio: 1/1;
    margin-bottom: 0;
  }
  .dhermi-card .dhermi-img {
    aspect-ratio: 4/5;
    background-size: cover;
    background-position: center;
    margin-bottom: 22px;
    border-radius: 4px;
  }
  .dhermi-num {
    font-family: 'Cormorant Garamond', 'Georgia', 'Times New Roman', serif;
    font-style: italic;
    font-size: 14px;
    color: var(--light-brown);
    letter-spacing: 0.2em;
    margin-bottom: 8px;
  }
  .dhermi-card h4 {
    font-family: 'Cormorant Garamond', 'Georgia', 'Times New Roman', serif;
    font-size: 24px;
    color: var(--brown-deep);
    font-weight: 400;
    margin-bottom: 8px;
  }
  .dhermi-card h4 em { font-style: italic; color: var(--brown); }
  .dhermi-card p {
    font-size: 13.5px;
    line-height: 1.7;
    color: var(--text-soft);
  }

  /* ══════════════════════════════════════
     PAGE 4: CONTACT
  ══════════════════════════════════════ */
  .contact-page-content {
    background: var(--warm-white);
    padding: 80px 0 100px;
  }
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 70px;
  }
  .contact-info-side {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
  .contact-info-side > p {
    font-size: 14.5px;
    line-height: 1.85;
    color: var(--text-soft);
    margin-bottom: 36px;
  }

  .contact-list { list-style: none; }
  .contact-list li {
    display: flex;
    gap: 18px;
    align-items: baseline;
    padding: 20px 0;
    border-top: 1px solid var(--border);
  }
  .contact-list li:last-child { border-bottom: 1px solid var(--border); }
  .contact-list .lbl {
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--muted);
    min-width: 100px;
    flex-shrink: 0;
  }
  .contact-list .val {
    font-family: 'Cormorant Garamond', 'Georgia', 'Times New Roman', serif;
    font-size: 19px;
    color: var(--brown-deep);
    font-weight: 500;
  }
  .contact-list a.val { transition: color 0.2s; }
  .contact-list a.val:hover { color: var(--brown); }
  .wa-tag {
    background: #25D366;
    color: #fff;
    font-size: 9px;
    padding: 2px 7px;
    border-radius: 30px;
    letter-spacing: 0.1em;
    margin-left: 8px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    vertical-align: middle;
  }

  /* ══════════════════════════════════════════
     FLOATING WHATSAPP BUTTON
  ══════════════════════════════════════════ */
  .floating-whatsapp {
    position: fixed;
    bottom: 24px;
    bottom: max(24px, env(safe-area-inset-bottom, 24px));
    right: 24px;
    right: max(24px, env(safe-area-inset-right, 24px));
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4),
                0 2px 8px rgba(0, 0, 0, 0.15);
    z-index: 9990;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .floating-whatsapp:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.55),
                0 3px 10px rgba(0, 0, 0, 0.2);
    background: #20BD5A;
  }
  .floating-whatsapp .wa-icon {
    width: 32px;
    height: 32px;
    position: relative;
    z-index: 2;
  }
  /* Pulsing ring animation */
  .floating-whatsapp .wa-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25D366;
    opacity: 0.7;
    animation: wa-pulse 2.5s infinite ease-out;
    z-index: 1;
  }
  @keyframes wa-pulse {
    0% {
      transform: scale(1);
      opacity: 0.6;
    }
    100% {
      transform: scale(1.6);
      opacity: 0;
    }
  }
  /* Mobile adjustments */
  @media (max-width: 700px) {
    .floating-whatsapp {
      bottom: 18px;
      right: 18px;
      width: 54px;
      height: 54px;
    }
    .floating-whatsapp .wa-icon {
      width: 28px;
      height: 28px;
    }
  }
  /* Hide on print */
  @media print {
    .floating-whatsapp { display: none; }
  }

  /* Map link button */
  .map-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    padding: 8px 16px;
    background: var(--vanilla);
    border: 1px solid var(--light-brown);
    border-radius: 30px;
    color: var(--brown-deep);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 11.5px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all 0.3s ease;
  }
  .map-link:hover {
    background: var(--brown);
    border-color: var(--brown);
    color: var(--vanilla);
    transform: translateX(2px);
  }
  .map-link .map-icon {
    font-size: 14px;
    line-height: 1;
  }
  .map-link .map-arrow {
    font-size: 14px;
    transition: transform 0.3s ease;
  }
  .map-link:hover .map-arrow {
    transform: translateX(3px);
  }

  .contact-form-side {
    background: var(--creme);
    padding: 50px 44px;
    border-radius: 4px;
  }
  .contact-form-side h3 {
    font-family: 'Cormorant Garamond', 'Georgia', 'Times New Roman', serif;
    font-size: 32px;
    color: var(--brown-deep);
    margin-bottom: 4px;
    font-weight: 400;
  }
  .contact-form-side h3 em { font-style: italic; color: var(--brown); }
  .contact-form-side .sub {
    font-family: 'Italianno', 'Palatino Linotype', 'Palatino', 'Book Antiqua', cursive;
    font-size: 26px;
    color: var(--brown);
    margin-bottom: 24px;
    line-height: 1;
  }
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 18px;
  }
  .form-row.full { grid-template-columns: 1fr; }
  .form-row label {
    display: block;
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 8px;
    font-weight: 500;
  }
  /* Required field indicator */
  .form-row:has(input[required]) label::after,
  .form-row:has(select[required]) label::after,
  .form-row:has(textarea[required]) label::after {
    content: ' *';
    color: var(--brown);
    font-weight: 600;
  }
  /* Style for invalid fields after submission attempt */
  .form-row input:invalid:not(:placeholder-shown),
  .form-row select:invalid:not([value=""]),
  .form-row textarea:invalid:not(:placeholder-shown) {
    border-bottom-color: #c0392b;
  }
  .form-row input, .form-row select, .form-row textarea {
    width: 100%;
    padding: 11px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-size: max(14px, 16px); /* Prevent iOS zoom on focus */
    color: var(--brown-deep);
    outline: none;
    transition: border-color 0.2s;
    -webkit-appearance: none;
    border-radius: 0;
  }
  .form-row input:focus, .form-row select:focus, .form-row textarea:focus {
    border-bottom-color: var(--brown);
  }
  .form-row textarea { resize: vertical; min-height: 70px; }
  .form-submit {
    width: 100%;
    margin-top: 18px;
    padding: 14px;
    background: var(--brown-dark);
    color: var(--vanilla-light);
    border: none;
    border-radius: 1px;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
  }
  .form-submit:hover { background: var(--charcoal); }

  /* ════════════ FOOTER ════════════ */
  footer {
    background: var(--brown-deep);
    color: rgba(245,236,217,0.7);
    padding: 70px 0 28px;
    text-align: center;
  }
  .footer-brand {
    font-family: 'Italianno', 'Palatino Linotype', 'Palatino', 'Book Antiqua', cursive;
    font-size: 56px;
    color: var(--vanilla);
    margin-bottom: 6px;
    line-height: 0.95;
  }
  .footer-script {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--light-brown);
    margin-bottom: 24px;
  }
  .apt-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 10px 0;
  }
  .apt-divider::before, .apt-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--light-brown), transparent);
    opacity: 0.6;
  }
  .apt-divider-inner {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--light-brown);
  }
  .apt-divider-inner::before, .apt-divider-inner::after {
    content: '✦';
    font-size: 9px;
    opacity: 0.7;
  }
  .apt-divider-text {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--brown);
    font-weight: 500;
  }

  .footer-divider {
    width: 60px;
    height: 1px;
    background: var(--light-brown);
    margin: 0 auto 28px;
    opacity: 0.5;
  }
  .footer-nav-rows {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    margin-bottom: 26px;
  }
  .footer-links {
    display: flex;
    gap: 32px;
    justify-content: center;
    align-items: center;
    list-style: none;
    margin-bottom: 0;
    flex-wrap: nowrap; /* Prevent mixing of rows */
  }
  .footer-links a {
    font-size: 10.5px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(245,236,217,0.6);
    transition: color 0.2s;
    cursor: pointer;
  }
  .footer-links a:hover { color: var(--vanilla); }
  .footer-bottom {
    border-top: 1px solid rgba(245,236,217,0.1);
    padding-top: 22px;
    margin-top: 18px;
    font-size: 10.5px;
    letter-spacing: 0.18em;
    color: rgba(245,236,217,0.4);
  }

  /* ══════════════════════════════════════
     PAGE: REVIEWS
  ══════════════════════════════════════ */
  .reviews-overview {
    background: var(--vanilla);
    padding: 70px 0 40px;
    text-align: center;
  }
  .reviews-rating {
    font-family: 'Cormorant Garamond', 'Georgia', 'Times New Roman', serif;
    font-size: 90px;
    font-weight: 300;
    color: var(--brown-deep);
    line-height: 1;
    margin-bottom: 6px;
  }
  .reviews-stars {
    color: var(--brown);
    font-size: 24px;
    letter-spacing: 6px;
    margin-bottom: 14px;
  }
  .reviews-stars .half-star {
    background: linear-gradient(to right, var(--brown) 50%, rgba(184, 152, 122, 0.3) 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
  }
  .reviews-count {
    font-family: 'Italianno', 'Palatino Linotype', 'Palatino', 'Book Antiqua', cursive;
    font-size: 30px;
    color: var(--light-brown);
    line-height: 1;
    margin-bottom: 6px;
  }
  .reviews-count-sub {
    font-size: 10.5px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--text-soft);
  }

  .reviews-grid-section {
    background: var(--warm-white);
    padding: 80px 0 100px;
  }
  .reviews-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .review-card {
    background: var(--vanilla-light);
    border: 1px solid var(--border-soft);
    padding: 40px 36px;
    border-radius: 4px;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(61,46,32,0.08);
  }
  .review-quote-mark {
    font-family: 'Cormorant Garamond', 'Georgia', 'Times New Roman', serif;
    font-size: 70px;
    color: var(--light-brown);
    line-height: 0.4;
    margin-bottom: 16px;
    font-style: italic;
    opacity: 0.6;
  }
  .review-stars {
    color: var(--brown);
    font-size: 14px;
    letter-spacing: 3px;
    margin-bottom: 16px;
  }
  .review-text {
    font-family: 'Cormorant Garamond', 'Georgia', 'Times New Roman', serif;
    font-style: italic;
    font-size: 18px;
    line-height: 1.6;
    color: var(--brown-deep);
    margin-bottom: 24px;
    font-weight: 400;
  }
  .review-author-block {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
  }
  .review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--brown);
    color: var(--vanilla);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Italianno', 'Palatino Linotype', 'Palatino', 'Book Antiqua', cursive;
    font-size: 24px;
    flex-shrink: 0;
    line-height: 1;
  }
  .review-author-name {
    font-family: 'Italianno', 'Palatino Linotype', 'Palatino', 'Book Antiqua', cursive;
    font-size: 26px;
    color: var(--brown-deep);
    line-height: 1;
    margin-bottom: 2px;
  }
  .review-author-meta {
    font-size: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--muted);
  }

  /* Country flag + name layout */
  .review-country {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 10.5px;
    color: var(--muted);
    margin-top: 2px;
    text-transform: none;
    letter-spacing: 0.05em;
  }
  .review-country .flag {
    width: 16px;
    height: 16px;
    display: inline-block;
    vertical-align: middle;
  }

  /* Score badge - Booking style */
  .review-score-badge {
    position: absolute;
    top: 28px;
    right: 28px;
    background: var(--brown-dark);
    color: var(--vanilla-light);
    padding: 5px 9px;
    border-radius: 3px;
    font-family: 'Cormorant Garamond', 'Georgia', 'Times New Roman', serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0;
  }
  .review-score-badge.score-10 { background: #006e48; }
  .review-score-badge.score-9 { background: #008a4f; }
  .review-score-badge.score-8 { background: #5e8a3a; }
  .review-score-badge.score-7 { background: var(--brown); }

  /* Stay info - small line */
  .review-stay-info {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 12px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--border-soft);
    font-size: 11px;
    color: var(--muted);
  }
  .review-stay-info span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
  }

  /* Host response box */
  .host-response {
    margin-top: 18px;
    padding: 16px 18px;
    background: var(--vanilla);
    border-left: 3px solid var(--brown);
    border-radius: 0 4px 4px 0;
    font-size: 13px;
    line-height: 1.65;
    color: var(--text-soft);
    font-style: italic;
  }
  .host-response-label {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--brown);
    margin-bottom: 8px;
    font-weight: 600;
  }
  .host-response-label::before {
    content: '↳';
    font-size: 14px;
    font-style: normal;
  }

  /* Translate link (Booking-style) */
  .review-translate {
    display: inline-block;
    margin-top: 10px;
    font-size: 12px;
    color: var(--brown);
    cursor: pointer;
    text-decoration: underline;
    font-style: normal;
  }
  .review-translate:hover { color: var(--brown-dark); }

  /* Compact (brief) review card - shorter ones */
  .review-card.brief {
    padding: 28px 28px 24px;
  }
  .review-card.brief .review-text {
    font-size: 16px;
    margin-bottom: 18px;
  }

  /* Reviews title row */
  .reviews-section-title {
    text-align: center;
    margin-bottom: 50px;
  }
  .reviews-section-title h3 {
    font-family: 'Cormorant Garamond', 'Georgia', 'Times New Roman', serif;
    font-size: 32px;
    font-weight: 400;
    color: var(--brown-deep);
    margin-bottom: 6px;
  }
  .reviews-section-title h3 em { font-style: italic; color: var(--brown); }
  .reviews-section-title .sub {
    font-family: 'Italianno', 'Palatino Linotype', 'Palatino', 'Book Antiqua', cursive;
    font-size: 26px;
    color: var(--brown);
    line-height: 1;
  }

  /* Country badges row */
  .countries-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    max-width: 600px;
    margin: 30px auto 0;
  }
  .countries-row img {
    width: 28px;
    height: 28px;
    display: inline-block;
    vertical-align: middle;
  }

  .reviews-platforms {
    background: var(--creme);
    padding: 60px 0;
    text-align: center;
  }
  .platforms-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    margin-top: 30px;
  }
  .platform-item {
    text-align: center;
  }
  .platform-name {
    font-family: 'Cormorant Garamond', 'Georgia', 'Times New Roman', serif;
    font-style: italic;
    font-size: 22px;
    color: var(--brown-deep);
    margin-bottom: 4px;
  }
  .platform-rating {
    color: var(--brown);
    font-size: 14px;
    letter-spacing: 3px;
  }
  .platform-count {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-soft);
    margin-top: 4px;
  }

  /* ════════════ MOBILE ════════════ */
  @media (max-width: 900px) {
    header { padding: 26px 0 20px; }
    header.scrolled { padding: 12px 0 10px; }
    header.scrolled .brand-ornament { display: none; }

    /* Stack vertically on mobile - override desktop 3-column grid */
    .header-row {
      display: flex;
      flex-direction: column;
      gap: 16px;
      text-align: center;
      max-height: none;
    }
    .header-row > nav.main {
      grid-column: unset;
      width: 100%;
      display: block;
    }
    .header-row > .lang-mini {
      grid-column: unset;
      width: 100%;
    }
    .lang-mini { justify-content: center; text-align: center; display: flex; flex-wrap: wrap; gap: 8px; }

    /* Mobile: keep 3+2 layout but smaller text */
    nav.main ul {
      max-width: 100%;
      gap: 12px 0;
    }
    nav.main ul li:nth-child(4) {
      padding-right: 18px;
    }
    nav.main ul li:nth-child(5) {
      padding-left: 18px;
    }
    nav.main a {
      font-size: 10px;
      letter-spacing: 0.18em;
      padding: 2px 2px;
    }
    nav.main a.active::after {
      bottom: -5px;
      width: 4px;
      height: 4px;
    }
    section { padding: 60px 0; }
    .qn-grid, .home-about-grid, .apt-row, .apt-row.reverse, .about-intro-grid, .values-grid, .dhermi-grid, .contact-grid, .reviews-grid, .dd-facts {
      grid-template-columns: 1fr;
      gap: 40px;
    }
    .home-about-img {
      min-height: 320px;
    }
    .dd-images-row {
      grid-template-columns: 1fr 1fr;
      gap: 0;
    }
    .dd-image-label {
      font-size: 9px;
      padding: 5px 10px;
      bottom: 12px;
      left: 12px;
    }
    .dd-facts {
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }
    .dd-fact .dd-fact-num { font-size: 28px; }
    .dd-fact .dd-fact-label { font-size: 9px; letter-spacing: 0.18em; }
    .apt-row.reverse .apt-images { order: 0; }
    .apt-img-num { font-size: 100px; top: -20px; left: -15px; }
    .apt-row.reverse .apt-img-num { right: -15px; left: auto; }
    .home-about-content { padding: 50px 32px; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form-side { padding: 36px 24px; }
    .container { padding: 0 22px; }
    .qn-card { padding: 40px 26px; }
  }

  /* Apartment photo gallery */
  .apt-gallery {
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid rgba(184, 152, 122, 0.18);
  }
  .apt-gallery-label {
    font-family: 'Inter', sans-serif;
    font-size: 9.5px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--brown-light);
    margin-bottom: 16px;
  }
  .apt-thumbs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  .apt-thumb {
    aspect-ratio: 1 / 1;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    border-radius: 2px;
    transition: opacity 0.3s ease, transform 0.3s ease;
    overflow: hidden;
  }
  .apt-thumb:hover { opacity: 0.85; transform: scale(1.02); }

  /* Lightbox */
  .lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    padding: 24px;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    touch-action: pan-x pan-y;
  }
  .lightbox.active { display: flex; }
  .lightbox-img {
    max-width: 95%;
    max-height: 90vh;
    max-height: 90dvh; /* Dynamic viewport height - iOS Safari fix */
    object-fit: contain;
  }
  .lightbox-close {
    position: absolute;
    top: 16px;
    right: 20px;
    color: white;
    font-size: 36px;
    cursor: pointer;
    line-height: 1;
    background: none;
    border: none;
    padding: 4px 12px;
  }
  .lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 32px;
    cursor: pointer;
    background: rgba(255,255,255,0.1);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .lightbox-prev { left: 16px; }
  .lightbox-next { right: 16px; }
  .lightbox-counter {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.7);
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    letter-spacing: 0.2em;
  }

/* ════════════════════════════════════════════════════════
   GREEK FONT — CALLIGRAPHIC ALL PAGES
   Italianno doesn't support Greek characters, so we use
   "Caveat" for Greek language across ALL pages
   (Home, Apartments, Reviews, About, Contact).
   Caveat is calligraphic and supports Greek properly.
   NOTE: .brand-name and .footer-brand are EXCLUDED so that
   the "Marianna's Apartments" logo keeps its Italianno font.
═══════════════════════════════════════════════════════ */
html[lang="el"] .section-script,
html[lang="el"] .hero-script,
html[lang="el"] .qn-script,
html[lang="el"] .test-author,
html[lang="el"] .page-header .script,
html[lang="el"] .apt-script-name,
html[lang="el"] .about-signature,
html[lang="el"] .value-script,
html[lang="el"] .contact-form-side .sub,
html[lang="el"] .reviews-count,
html[lang="el"] .review-avatar,
html[lang="el"] .review-author-name,
html[lang="el"] .reviews-section-title .sub,
html[lang="el"] .home-about-script,
html[lang="el"] .script {
  font-family: 'Ms Madi', 'Cormorant Garamond', cursive !important;
  font-style: normal !important;
  font-weight: 500 !important;
  letter-spacing: 0.01em;
}

/* Size adjustments for Greek (Caveat is sized differently than Italianno) */
html[lang="el"] .section-script {
  font-size: 42px !important;
  line-height: 1.2;
}
html[lang="el"] .hero-script {
  font-size: 38px !important;
}
html[lang="el"] .qn-script {
  font-size: 26px !important;
}
html[lang="el"] .apt-script-name {
  font-size: 24px !important;
}
html[lang="el"] .page-header .script,
html[lang="el"] .script {
  font-size: 30px !important;
}
html[lang="el"] .reviews-count {
  font-size: 26px !important;
}
html[lang="el"] .value-script {
  font-size: 24px !important;
}
html[lang="el"] .contact-form-side .sub,
html[lang="el"] .reviews-section-title .sub {
  font-size: 24px !important;
}
html[lang="el"] .test-author {
  font-size: 22px !important;
}
html[lang="el"] .about-signature {
  font-size: 28px !important;
}
html[lang="el"] .review-author-name {
  font-size: 18px !important;
  font-weight: 400 !important;
  opacity: 0.85;
}
html[lang="el"] .review-avatar {
  font-size: 20px !important;
}

/* Albanian (sq) — Italianno doesn't support ë, ç → use Cormorant Garamond italic as elegant fallback */
html[lang="sq"] .section-script,
html[lang="sq"] .hero-script,
html[lang="sq"] .qn-script,
html[lang="sq"] .test-author,
html[lang="sq"] .page-header .script,
html[lang="sq"] .apt-script-name,
html[lang="sq"] .about-signature,
html[lang="sq"] .value-script,
html[lang="sq"] .contact-form-side .sub,
html[lang="sq"] .reviews-count,
html[lang="sq"] .review-avatar,
html[lang="sq"] .review-author-name,
html[lang="sq"] .reviews-section-title .sub,
html[lang="sq"] .home-about-script,
html[lang="sq"] .script {
  font-family: 'Cormorant Garamond', serif !important;
  font-style: italic !important;
  font-weight: 300 !important;
  letter-spacing: 0.02em;
}

/* German (de) — Italianno doesn't support ä, ö, ü → same Cormorant Garamond italic fallback */
html[lang="de"] .section-script,
html[lang="de"] .hero-script,
html[lang="de"] .qn-script,
html[lang="de"] .test-author,
html[lang="de"] .page-header .script,
html[lang="de"] .apt-script-name,
html[lang="de"] .about-signature,
html[lang="de"] .value-script,
html[lang="de"] .contact-form-side .sub,
html[lang="de"] .reviews-count,
html[lang="de"] .review-avatar,
html[lang="de"] .review-author-name,
html[lang="de"] .reviews-section-title .sub,
html[lang="de"] .home-about-script,
html[lang="de"] .script {
  font-family: 'Cormorant Garamond', serif !important;
  font-style: italic !important;
  font-weight: 300 !important;
  letter-spacing: 0.02em;
}