/* =========================
   GLOBAL / DESKTOP DEFAULTS
========================= */
html, body{
  margin: 0;
  padding: 0;
  background: #000;
}

/* Mobile-only logo: hidden by default (desktop) */
.mobile-top-logo{
  display: none;
}





/* Hide mobile UI by default (desktop/laptop) */
.menu-toggle { display: none; }
.mobile-menu { display: none; }

/* Top info header */
.site-header{
  background: transparent;        /* allow video to show */
  padding: 10px 40px;
  position: relative;
  z-index: 10;
}

.header-inner{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.header-right{
  display: flex;
  gap: 30px;
}

/* Default link style in top bar */
.site-header a{
  color: #fff;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0.85;
  transition: opacity .25s ease;
}

.site-header a:hover{ opacity: 1; }

/* Taratsa-style icon links (for header/footer when you use SVG icons) */
.info-link{
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.info-icon{
  width: 14px;
  height: 14px;
  stroke: currentColor;
  flex-shrink: 0;
}

/* Shared logo typography (desktop + mobile identical) */
.logo-main{
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 2px;
}
.logo-sub{
  display: block;
  margin-top: 4px;
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2px;
  opacity: 0.75;
}

/* =========================
   DESKTOP NAV (Taratsa bar)
========================= */

.header{
  background: transparent;        /* allow video to show */
  padding: 22px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 10;
}

/* Desktop logo layout */
.desktop-logo{
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: #fff;
  line-height: 1.1;
}

/* Desktop nav layout */
.desktop-nav{
  display: flex;
  align-items: center;
  gap: 32px;
}

/* Links */
.desktop-nav a{
  position: relative;
  color: #fff;
  text-decoration: none;

  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;

  opacity: 0.85;
  transition: opacity .25s ease;
}
.desktop-nav a:hover{ opacity: 1; }

/* Underline hover (fade + slight slide) */
.desktop-nav a::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.75);

  opacity: 0;
  transform: translateY(4px);
  transition: opacity .25s ease, transform .25s ease;
}
.desktop-nav a:hover::after{
  opacity: 1;
  transform: translateY(0);
}

/* FOOTER (Taratsa-like structure) */
.site-footer{
  background:#000;
  color:#fff;
  padding: 70px 40px 22px;
}

.footer-inner{
  max-width: 1200px;
  margin: 0 auto;
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 44px;
}

.footer-logo{
  display:inline-block;
  color:#fff;
  text-decoration:none;
  font-size:16px;
  letter-spacing:0.14em;
  font-weight:600;
  margin-bottom:6px;
}

.footer-subtitle{
  font-size:12px;
  letter-spacing:0.14em;
  text-transform:uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom:18px;
}

.footer-caption{
  margin:0;
  color: rgba(255,255,255,0.72);
  font-size:14px;
  line-height:1.7;
  max-width: 38ch;
}

.footer-title{
  margin:0 0 14px;
  font-size:13px;
  letter-spacing:0.10em;
  text-transform:uppercase;
  font-weight:600;
}

.footer-list{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:10px;
  color: rgba(255,255,255,0.72);
  font-size:14px;
}

.footer-address{
  display:grid;
  gap:10px;
}

.footer-address-line{
  color: rgba(255,255,255,0.72);
  font-size:14px;
  line-height:1.6;
}

/* “Same style as header” links (simple, white, clean) */
.footer-contact-link{
  color:#fff;
  text-decoration:none;
  font-size:14px;
  white-space: nowrap;
}

.footer-contact-link:hover{
  text-decoration: underline;
}

.footer-links{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:10px;
}

.footer-links a{
  color:#fff;
  text-decoration:none;
  font-size:14px;
}

.footer-links a:hover{
  text-decoration: underline;
}

.footer-bottom{
  max-width: 1200px;
  margin: 44px auto 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.14);
}

.footer-bottom p{
  margin:0;
  color: rgba(255,255,255,0.60);
  font-size:13px;
}

/* Make footer links match the same clean Taratsa-style behavior */
.site-footer a{
  color: #fff;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0.85;
  transition: opacity .25s ease;
}
.site-footer a:hover{ opacity: 1; }

.footer-brand{
  display: inline-block;
  text-decoration: none;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 14px;
}



/* Responsive */
@media (max-width: 900px){
  .footer-inner{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 520px){
  .site-footer{ padding: 52px 20px 18px; }
  .footer-inner{ grid-template-columns: 1fr; gap: 28px; }
  .footer-caption{ max-width: none; }
}


/* Tighten on smaller laptops */
@media (max-width: 1024px){
  .site-header{ padding: 10px 24px; }
  .header{ padding: 18px 24px; }
  .desktop-nav{ gap: 22px; }
}

/* =========================
   SCROLL TO TOP (Taratsa style)
========================= */
.scroll-top{
  position: fixed;
  right: 28px;   /* Taratsa: bottom-right */
  bottom: 28px;
  z-index: 1200;

  width: 46px;
  height: 46px;
  border-radius: 999px;

  background: #fff;
  color: #000;
  border: 1px solid rgba(0,0,0,0.12);

  display: grid;
  place-items: center;

  cursor: pointer;
  padding: 0;

  /* hidden by default */
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  pointer-events: none;

  transition:
    opacity .25s ease,
    transform .25s ease,
    background .25s ease,
    color .25s ease,
    border-color .25s ease;
}

.scroll-top.is-visible{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.scroll-top-icon{
  width: 18px;
  height: 18px;
}

/* Hover invert */
@media (hover:hover){
  .scroll-top:hover{
    background: #000;
    color: #fff;
    border-color: rgba(255,255,255,0.25);
  }
}

/* Mobile spacing */
@media (max-width: 520px){
  .scroll-top{
    right: 18px;
    bottom: 18px;
    width: 44px;
    height: 44px;
  }
}



/* =========================
   TARATSA HERO (overlay headers)
========================= */

.hero-wrap{
  position: relative;
  height: 100vh;
  background: #000;
  overflow: hidden;
}

/* video fills hero-wrap */
.hero-video{
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-video-inner{
  max-width: 1200px;   /* black sides */
  height: 100%;
  margin: 0 auto;
  overflow: hidden;
  background: #000;
}

.hero-video-media{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* overlay layer above video */
.hero-overlay{
  position: absolute;
  inset: 0;
  z-index: 5;          /* above video */
  pointer-events: none; /* clicks go through EXCEPT where we re-enable */
}

/* allow clicks on the headers */
.hero-overlay .site-header,
.hero-overlay .header{
  pointer-events: auto;
}

/* headers sit above and are semi-transparent like Taratsa */
.hero-overlay .site-header,
.hero-overlay .header{
  background: rgba(0,0,0,0.25);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

/* optional readability */
.hero-overlay .site-header a,
.hero-overlay .desktop-nav a,
.hero-overlay .desktop-logo{
  text-shadow: 0 1px 12px rgba(0,0,0,0.45);
}

/* mobile: full width hero window */
@media (max-width: 768px){
  .hero-video-inner{ max-width: none; }
}

.hero-overlay .site-header,
.hero-overlay .header{
  background: rgba(0,0,0,0.25);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

/* =========================
   HOME – SECTION 1 (INTRO)
   ========================= */

   .section {
    padding: 80px 0;
  }
  
  .container {
    width: min(1100px, 90%);
    margin: 0 auto;
  }
  
  /* Copy */
  .section-intro .intro-copy {
    max-width: 720px;
  }
  
  .intro-label {
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    opacity: 0.75;
    margin-bottom: 14px;
  }

  
  .intro-title {
    font-family: "Playfair Display", serif;
    font-weight: 500;
    font-size: clamp(28px, 3vw, 44px);
    line-height: 1.1;
    margin: 0 0 14px;
  }
  
  .intro-text {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    line-height: 1.8;
    margin: 0 0 34px;
    opacity: 0.9;
   
  }


  
  
  /* Two-image block */
  .intro-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
  
  .intro-image {
    margin: 0;
    border-radius: 18px;
    overflow: hidden;
    background: #eee;
    aspect-ratio: 4 / 3;
  }
  
  .intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  /* Mobile */
  @media (max-width: 700px) {
    .section {
      padding: 56px 0;
    }
  
    .intro-images {
      grid-template-columns: 1fr;
    }
  
    .intro-image {
      aspect-ratio: 16 / 10;
    }
  }

  /* =========================
   MAIN CONTENT AREA (after hero)
========================= */
main{
  background:transparent;     /* Taratsa-style: white content after hero */
  color: #111;
}

/* Section 1 should be on white */
.section-intro{
  background: #fff;
  color: #111;
}

/* Make sure text is readable */
.section-intro .intro-label,
.section-intro .intro-title,
.section-intro .intro-text{
  color: #111;
}

/* =========================
   REVEAL ON SCROLL (Taratsa-like)
========================= */
.reveal{
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.9s ease, transform 0.9s ease;
  will-change: opacity, transform;
}

.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}

/* subtle stagger like Taratsa */
.intro-images .reveal:nth-child(2){
  transition-delay: 0.12s;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  .reveal{
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* =========================
   SECTION 1 – CTA BUTTONS (Taratsa-style)
========================= */

.intro-actions{
  margin-top: 56px;     /* ✅ more space ABOVE buttons */
  margin-bottom: 56px;  /* ✅ more space BELOW buttons */

  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}



.btn-outline{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 200px;              /* ✅ SAME WIDTH */
  height: 48px;              /* ✅ SAME HEIGHT */

  border: 1px solid #111;
  background: #fff;
  color: #111;

  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  letter-spacing: 2.6px;
  text-transform: uppercase;
  text-decoration: none;

  transition: background .25s ease, color .25s ease, transform .25s ease;
}


/* Hover swap colors */
@media (hover:hover){
  .btn-outline:hover{
    background: #111;
    color: #fff;
    transform: translateY(-1px);
  }
}

/* Keyboard focus (important) */
.btn-outline:focus-visible{
  outline: 2px solid #111;
  outline-offset: 3px;
}

/* Mobile: make them feel balanced */
@media (max-width: 520px){
  .intro-actions{
    gap: 12px;
  }
  .btn-outline{
    width: 100%;      /* Taratsa often keeps CTAs wide on mobile */
    justify-content: center;
  }
}


/* Prevent accidental horizontal scroll when using 100vw breakouts */
html, body{
  overflow-x: hidden;
}

/* =========================
   MINI COLLAGE (2 big sides + 4 center)
========================= */

.mini-collage{
  margin-top: 44px;

  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 1.25fr;
  grid-template-rows: 1fr 1fr;
  gap: 4px;   /* 🔥 tighter like Taratsa */

  height: clamp(340px, 32vw, 520px);
}


/* shared tile */
.mc{
  margin: 0;
  overflow: hidden;
  background: #eee;
}

/* image fill */
.mc img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* placements */
.big-left{
  grid-column: 1;
  grid-row: 1 / span 2;
}

.big-right{
  grid-column: 4;
  grid-row: 1 / span 2;
}

.mid-1{ grid-column: 2; grid-row: 1; }
.mid-2{ grid-column: 3; grid-row: 1; }
.mid-3{ grid-column: 2; grid-row: 2; }
.mid-4{ grid-column: 3; grid-row: 2; }

/* Tablet: simplify to 2 columns, everything fits */
@media (max-width: 900px) and (min-width: 521px){
  .mini-collage{
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    height: auto;
    gap: 8px;   /* 🔥 tight */
  }


  .big-left, .big-right{
    grid-column: 1 / -1; /* full width */
    grid-row: auto;
    height: 240px;
  }

  .mid-1, .mid-2, .mid-3, .mid-4{
    height: 180px;
  }
}

/* Mobile: 1 column stack, no overflow */
/* Mobile: keep collage = BIG (top) → 2x2 → BIG (bottom) */
/* Mobile: keep SAME collage layout as desktop (scaled down) */
/* Mobile: keep SAME collage structure as desktop, just smaller + tighter */
/* Mobile: SAME layout, but all images square */
/* Mobile: Taratsa-style collage with bigger side squares */
@media (max-width: 520px){

  .mini-collage{
    display: grid;
    grid-template-columns: 2.1fr 1fr 1fr 2.1fr;
    grid-template-rows: 1fr 1fr;
    row-gap: 4px;
    column-gap: 4px;
    height: auto;
    
  }

  /* Side images span both rows */
  .big-left{
    grid-column: 1;
    grid-row: 1 / span 2;
    aspect-ratio: 1 / 1; /* square */
  }

  .big-right{
    grid-column: 4;
    grid-row: 1 / span 2;
    aspect-ratio: 1 / 1; /* square */
  }

  /* Middle 4 squares */
  .mid-1{ grid-column: 2; grid-row: 1; aspect-ratio: 1 / 1; }
  .mid-2{ grid-column: 3; grid-row: 1; aspect-ratio: 1 / 1; }
  .mid-3{ grid-column: 2; grid-row: 2; aspect-ratio: 1 / 1; }
  .mid-4{ grid-column: 3; grid-row: 2; aspect-ratio: 1 / 1; }

  .mc{
    height: auto;
  }

  .mc img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}


.mini-gallery .reveal:nth-child(2){ transition-delay: .06s; }
.mini-gallery .reveal:nth-child(3){ transition-delay: .12s; }
.mini-gallery .reveal:nth-child(4){ transition-delay: .18s; }
.mini-gallery .reveal:nth-child(5){ transition-delay: .24s; }
.mini-gallery .reveal:nth-child(6){ transition-delay: .30s; }

  


/* ========== MENU SHOWCASES (Taratsa-like) ========== */
.menu-showcase{
  background: #fff;
  color: #000;
  padding: 90px 0;
}

.ms-wrap{
  width: min(1200px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr; /* images slightly bigger */
  gap: clamp(28px, 4vw, 70px);
  align-items: center;
}

.ms-media{
  position: relative;
  min-height: 520px;
}

.ms-img{
  position: absolute;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 18px 50px rgba(0,0,0,.45);
}

.ms-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
}

.ms-img--a{
  top: 0;
  left: 0;
  width: 62%;
  height: 86%;
}

.ms-img--b{
  right: 0;
  bottom: 0;
  width: 52%;
  height: 72%;
  border: 1px solid rgba(255,255,255,.10);
}

/* text styling */
.ms-kicker{
  font-family: "Montserrat", sans-serif;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: 12px;
  opacity: .78;
  margin: 0 0 12px;
}

.ms-title{
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: clamp(32px, 3.2vw, 52px);
  line-height: 1.05;
  margin: 0 0 18px;
}

.ms-text{
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  line-height: 1.9;
  opacity: .85;
  margin: 0 0 16px;
  max-width: 52ch;
}

.ms-btn{
  display: inline-block;
  margin-top: 18px;

  padding: 14px 28px;
  background: #fff;
  color: #000;

  border: 1px solid #000;
  border-radius: 0;              /* rectangle */

  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 500;

  text-decoration: none;

  transition: all .3s ease;
}

/* HOVER SWAP */
.ms-btn:hover{
  background: #000;
  color: #fff;
}


/* responsive */
@media (max-width: 900px){
  .menu-showcase{
    padding: 30px 0;
  }

  .ms-wrap{
    grid-template-columns: 1fr;
  }

  /* TEXT FIRST */
  .ms-content{
    order: 1;
  }

  /* IMAGES SECOND */
  .ms-media{
    order: 2;
    min-height: 460px;
    margin-top: 40px;
  }
}


@media (max-width: 520px){
  .ms-media{ min-height: 420px; }

  .ms-img--a{
    width: 70%;
    height: 82%;
  }

  .ms-img--b{
    width: 56%;
    height: 70%;
  }
}

/* Scroll fade animation */
.reveal{
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
  will-change: opacity, transform;
}

.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}

/* optional: stagger the 2nd image slightly */
.ms-img--b.reveal{
  transition-delay: .12s;
}

/* accessibility: reduce motion */
@media (prefers-reduced-motion: reduce){
  .reveal,
  .reveal.is-visible{
    transition: none;
    transform: none;
    opacity: 1;
  }
}


/* ========== SUITES (Taratsa “Signature Cocktails”-like) ========== */
.suites-showcase{
  background: #fff;
  color: #000;
  padding: 90px 0;
}

.ss-wrap{
  width: min(1200px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr; /* images slightly bigger */
  gap: clamp(28px, 4vw, 70px);
  align-items: center;
}

/* text */
.ss-kicker{
  font-family: "Montserrat", sans-serif;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: 12px;
  opacity: .8;
  margin: 0 0 12px;
}

.ss-title{
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: clamp(32px, 3.2vw, 52px);
  line-height: 1.05;
  margin: 0 0 18px;
}

.ss-text{
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  line-height: 1.9;
  opacity: .9;
  margin: 0 0 12px;
  max-width: 52ch;
}

/* CTA (same style you requested) */
.ss-btn{
  display: inline-block;
  margin-top: 16px;

  padding: 14px 28px;
  background: #fff;
  color: #000;

  border: 1px solid #000;
  border-radius: 0;

  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 500;

  text-decoration: none;
  transition: background .3s ease, color .3s ease, transform .2s ease;
}

.ss-btn:hover{
  background: #000;
  color: #fff;
  transform: translateY(-2px);
}

/* images (overlapped like Taratsa section vibe) */
.ss-media{
  position: relative;
  min-height: 540px;
}

.ss-img{
  position: absolute;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 18px 50px rgba(0,0,0,.18);
}

.ss-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
}

.ss-img--a{
  top: 0;
  right: 0;
  width: 70%;
  height: 86%;
}

.ss-img--b{
  left: 0;
  bottom: 0;
  width: 52%;
  height: 62%;
  border: 1px solid rgba(0,0,0,.10);
}

/* responsive: keep text first, images after (like you prefer) */
@media (max-width: 900px){
  .suites-showcase{ padding: 70px 0; }
  .ss-wrap{ grid-template-columns: 1fr; }

  .ss-content{ order: 1; }
  .ss-media{
    order: 2;
    min-height: 460px;
    margin-top: 14px; /* smaller gap */
  }

  .ss-btn{ margin-bottom: 6px; }
}

@media (max-width: 520px){
  .ss-media{ min-height: 420px; }

  .ss-img--a{
    width: 74%;
    height: 82%;
  }

  .ss-img--b{
    width: 60%;
    height: 66%;
  }
}



/* ========== DIFFERENT EXPERIENCE (Taratsa 4th section vibe) ========== */
.different-experience{
  position: relative;
  padding: 110px 0;
  background: #fff;
  color: #000;
  overflow: hidden;
}

/* subtle background image wash (optional but premium) */
.different-experience::before{
  content: "";
  position: absolute;
  inset: 0;
  background: url("images/experience-bg.jpg") center/cover no-repeat;
  opacity: .10;              /* keep it VERY subtle */
  filter: grayscale(100%);
  transform: scale(1.03);
  pointer-events: none;
}

.de-wrap{
  position: relative;        /* above bg */
  width: min(900px, 92%);
  margin: 0 auto;
  text-align: center;
}

.de-kicker{
  font-family: "Montserrat", sans-serif;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: 12px;
  opacity: .8;
  margin: 0 0 12px;
}

.de-title{
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: clamp(32px, 3.2vw, 52px);
  line-height: 1.05;
  margin: 0 0 18px;
}

.de-text{
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  line-height: 1.9;
  opacity: .92;
  margin: 0 auto 22px;
  max-width: 64ch;
}

/* CTA: same style as your other CTAs */
.de-btn{
  display: inline-block;
  padding: 14px 28px;
  background: #fff;
  color: #000;
  border: 1px solid #000;
  border-radius: 0;
  text-decoration: none;

  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 500;

  transition: background .3s ease, color .3s ease, transform .2s ease;
}

.de-btn:hover{
  background: #000;
  color: #fff;
  transform: translateY(-2px);
}

@media (max-width: 900px){
  .different-experience{ padding: 80px 0; }
}

@media (max-width: 520px){
  .different-experience{ padding: 70px 0; }
  .de-text{ margin-bottom: 18px; }
}







/* =========================================================
   MENU PAPER SECTIONS (Taratsa-inspired)
   Uses your existing fonts:
   - Playfair Display
   - Montserrat
========================================================= */

.menu-paper{
  background: #f6f2ea; /* white wallpaper vibe */
  color: #111;
  padding: 70px 0 90px;
}

/* Same container behavior as home sections */
.menu-paper > *{
  width: min(1100px, calc(100% - 80px));
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 720px){
  .menu-paper > *{
    width: calc(100% - 32px);
  }
}

/* Label: GALINI / MENU (Taratsa-like) */
.menu-label{
  text-align: center;
  margin: 0 auto 34px;
}

.menu-label__brand{
  font-family: "Montserrat", sans-serif;
  letter-spacing: 2px;
  font-size: 12px;
  color: rgba(0,0,0,0.55);
  margin-bottom: 6px;
}

.menu-label__kicker{
  font-family: "Montserrat", sans-serif;
  letter-spacing: 2.5px;
  font-size: 12px;
  text-transform: uppercase;
  color: rgba(0,0,0,0.70);
}

/* Blocks */
.menu-block{
  background: rgba(255,255,255,0.70);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 18px;
  padding: 26px;
  margin-top: 18px;
}

.menu-block__head{
  text-align: center;
  max-width: 820px;
  margin: 0 auto 18px;
}

.menu-block__title{
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: clamp(28px, 3.2vw, 44px);
  margin: 0 0 8px;
}

.menu-block__desc{
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(0,0,0,0.72);
  margin: 0;
}

/* Image grids */
.menu-grid{
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.menu-grid--2{ grid-template-columns: repeat(2, 1fr); }
.menu-grid--3{ grid-template-columns: repeat(3, 1fr); }
.menu-grid--4{ grid-template-columns: repeat(4, 1fr); }

.menu-img{
  display: block;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.10);
  background: #fff;
  transition: transform .18s ease, box-shadow .18s ease;
}

.menu-img img{
  width: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 3 / 4;
}


.menu-img:hover{
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.14);
}



/* =========================
   CLEAN MOBILE GRID (no scroll strip)
========================= */

/* Tablet: reduce columns */
@media (max-width: 980px){
  .menu-grid--4{ grid-template-columns: repeat(2, 1fr); }
  .menu-grid--3{ grid-template-columns: repeat(2, 1fr); }
  .menu-grid--2{ grid-template-columns: repeat(2, 1fr); }

  .menu-grid--4 .menu-img img{ height: 240px; }
  .menu-grid--3 .menu-img img{ height: 260px; }
  .menu-grid--2 .menu-img img{ height: 300px; }
}

/* Phone: 1 column */
@media (max-width: 560px){
  .menu-paper{
    padding: 48px 0 70px;
  }

  .menu-block{
    padding: 18px;
    border-radius: 16px;
  }

  .menu-grid--4,
  .menu-grid--3,
  .menu-grid--2{
    grid-template-columns: 1fr;
  }

  .menu-img img{
    height: 240px;
  }
}


/* ==========================================
   FORCE 4-UP GRID ON DESKTOP (Lunch + Drinks)
========================================== */

/* Make sure the content area is wide enough */
.menu-paper{
  padding-left: 0;
  padding-right: 0;
}

/* Desktop: always 4 columns, no wrapping */
@media (min-width: 901px){
  .menu-grid--4{
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
  }

  /* Prevent children from forcing wrap */
  .menu-grid--4 > *{
    min-width: 0;
  }

  .menu-img{
    width: 100%;
  }

  .menu-img img{
    width: 100%;
    display: block;
    object-fit: cover;
    aspect-ratio: 3 / 4;
  }
}











/* =========================
   MOBILE (<= 768px)
========================= */

@media (max-width: 768px){

  /* Hide desktop headers on phone */
  .site-header{ display: none; }
  .header{ display: none; }

  /* Show hamburger on phone */
  /* Mobile top logo (left) */
.mobile-top-logo{
  display: block;
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 1001;

  text-decoration: none;
  color: #fff;
  line-height: 1.05;
  transition: opacity .25s ease, transform .25s ease;
  /* little spacing so it feels like Taratsa */
  padding: 8px 6px;
}

.mobile-top-logo{
  display: block;
}

body.menu-open .mobile-top-logo{
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
}


/* Hamburger button (right) */
.menu-toggle{
  display: block;
  position: fixed;
  top: 18px;
  right: 18px;     /* ✅ move to right */
  left: auto;      /* ✅ disable left */
  z-index: 1001;

  background: transparent;
  border: none;
  padding: 12px;

  appearance: none;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;

  opacity: 1;
  transform: scale(1);
  transition: opacity .25s ease, transform .25s ease;
}

.menu-toggle.is-hidden{
  opacity: 0;
  transform: scale(0.9);
  pointer-events: none;
}


  /* Mobile menu overlay */
  .mobile-menu{
    display: flex;
    flex-direction: column;

    position: fixed;
    inset: 0;
    z-index: 1000;

    padding: 28px 24px;
    background: #000;
    color: #fff;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform: translateX(-20px);
    transition: opacity .35s ease, transform .35s ease, visibility .35s ease;

    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .mobile-menu.active{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
  }

  /* Header area (X + logo below) */
  .mobile-menu-header{ padding: 24px 0 16px; }
  .mobile-menu-top{ display: flex; justify-content: flex-start; }

  .menu-close{
    background: none;
    border: none;
    color: #fff;
    font-size: 22px;
    cursor: pointer;

    appearance: none;
    -webkit-appearance: none;
    -webkit-tap-highlight-color: transparent;
  }

  /* Mobile logo layout ONLY (typography already global) */
  .mobile-menu-logo{
    margin-top: 32px;
    display: block;
    text-align: left;
    text-decoration: none;
    color: #fff;
    line-height: 1.1;
  }

  /* Menu links */
  .mobile-nav{
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 28px;
  }

  .mobile-nav a{
    font-family: "Montserrat", sans-serif;
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
  }

  /* Full-width divider line */
  .mobile-divider{
    align-self: stretch;
    width: 100%;
    height: 0;
    border-top: 1px solid rgba(255,255,255,0.45);
    margin: 28px 0;
  }

  /* Social links */
  .mobile-socials{
    display: flex;
    gap: 28px;
  }

  .mobile-socials a{
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    opacity: 0.75;
    text-decoration: none;
  }

  /* Copyright */
  .mobile-copyright{
    margin-top: 24px;
    text-align: left;
  }

  .mobile-copyright p{
    margin: 6px 0;
    font-family: "Montserrat", sans-serif;
    font-size: 11px;
    letter-spacing: 1.5px;
    opacity: 0.6;
  }

  /* Contact info */
  .mobile-contact{
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .mobile-contact a{
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    letter-spacing: 1.5px;
    color: #fff;
    text-decoration: none;
    opacity: 0.8;
  }

  /* (optional) icon version for mobile contact links if you use them */
  .mobile-info-link{
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .mobile-info-icon{
    width: 16px;
    height: 16px;
    stroke: currentColor;
    flex-shrink: 0;
  }

  
}




/* =========================================================
   MENU HERO (Taratsa Athens) — FINAL
   Desktop: hero behind top header + desktop bar + one blur strip
   Mobile: headers hidden, hero normal
========================================================= */

body.hero-under-headers{
  --topHeaderH: 44px;
  --desktopHeaderH: 86px;
  --headerStackH: calc(var(--topHeaderH) + var(--desktopHeaderH));
}

/* ---------------------------
   HERO (base)
--------------------------- */
body.hero-under-headers .taratsa-menu-hero{
  position: relative;
  width: 100%;
  min-height: 78vh;
  overflow: hidden;

  background-color: #000;
  background-image: var(--hero);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;

  z-index: 1; /* stays under headers/blur */
}

/* hero overlay */
body.hero-under-headers .taratsa-menu-hero::before{
  content:"";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.18), rgba(0,0,0,.78));
  z-index: 0;
}

/* hero content */
body.hero-under-headers .taratsa-menu-hero__inner{
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 16px;
}

/* ---------------------------
   DESKTOP (>= 901px)
   hero goes behind both headers + one combined blur strip
--------------------------- */
@media (min-width: 901px){

  body.hero-under-headers{ position: relative; }

  /* pull hero behind stacked headers */
  body.hero-under-headers .taratsa-menu-hero{
    margin-top: calc(-1 * var(--headerStackH));
    padding-top: var(--headerStackH);
  }

  /* headers above blur + above hero */
  body.hero-under-headers .site-header,
  body.hero-under-headers .header{
    background: transparent !important;
    background-color: transparent !important;
    border-bottom: none !important;
    box-shadow: none !important;

    position: relative;
    z-index: 3001;
  }

  /* stop inner wrappers painting black */
  body.hero-under-headers .site-header *,
  body.hero-under-headers .header *{
    background: transparent !important;
    background-color: transparent !important;
  }

  /* keep header text/icons white */
  body.hero-under-headers .site-header,
  body.hero-under-headers .header,
  body.hero-under-headers .site-header a,
  body.hero-under-headers .header a{
    color: #fff !important;
  }

  /* ✅ one blur strip spanning both bars (scrolls away, not fixed) */
  body.hero-under-headers::before{
    content:"";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: var(--headerStackH);

    background: rgba(0,0,0,0.26);
    backdrop-filter: blur(14px) saturate(120%);
    -webkit-backdrop-filter: blur(14px) saturate(120%);
    border-bottom: 1px solid rgba(255,255,255,0.10);

    z-index: 3000;          /* behind headers, above hero */
    pointer-events: none;
  }

  /* Taratsa-like lift (desktop) */
  body.hero-under-headers .taratsa-menu-hero__inner{
    transform: translateY(clamp(-120px, -10vh, -60px));
  }
}

/* ---------------------------
   MOBILE (<= 768px)
   you hide headers, so remove offsets and blur
--------------------------- */
@media (max-width: 768px){

  body.hero-under-headers{
    --topHeaderH: 0px;
    --desktopHeaderH: 0px;
    --headerStackH: 0px;
  }

  body.hero-under-headers::before{
    content: none !important; /* no blur strip on mobile */
  }

  body.hero-under-headers .taratsa-menu-hero{
    margin-top: 0 !important;
    padding-top: 0 !important;
    min-height: 72vh;

    background-image: var(--hero) !important; /* force */
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
  }

  /* lighter overlay on mobile */
  body.hero-under-headers .taratsa-menu-hero::before{
    background: linear-gradient(to bottom, rgba(0,0,0,.10), rgba(0,0,0,.55)) !important;
  }

  /* gentler lift on mobile */
  body.hero-under-headers .taratsa-menu-hero__inner{
    transform: translateY(clamp(-44px, -4vh, -14px));
  }
}

@media (max-width: 768px){
  body.hero-under-headers{
    --topHeaderH: 0px;
    --desktopHeaderH: 0px;
    --headerStackH: 0px;
  }

  body.hero-under-headers .taratsa-menu-hero{
    margin-top: 0 !important;
    padding-top: 0 !important;

    /* force image on mobile no matter what */
    background-image: var(--hero) !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;

    min-height: 70vh !important;
  }

  /* lighten overlay so photo doesn't look black */
  body.hero-under-headers .taratsa-menu-hero::before{
    background: linear-gradient(to bottom, rgba(0,0,0,.12), rgba(0,0,0,.55)) !important;
  }
}

/* =========================================================
   MENU HERO (Taratsa Athens) — FINAL
   Desktop: hero behind top header + desktop bar + one blur strip
   Mobile: headers hidden, hero normal
========================================================= */

body.hero-under-headers{
  --topHeaderH: 44px;
  --desktopHeaderH: 86px;
  --headerStackH: calc(var(--topHeaderH) + var(--desktopHeaderH));
}

/* ---------------------------
   HERO (base)
--------------------------- */
body.hero-under-headers .taratsa-menu-hero{
  position: relative;
  width: 100%;
  min-height: 78vh;
  overflow: hidden;

  background-color: #000;
  background-image: var(--hero);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;

  z-index: 1; /* stays under headers/blur */
}

/* hero overlay */
body.hero-under-headers .taratsa-menu-hero::before{
  content:"";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.18), rgba(0,0,0,.78));
  z-index: 0;
}

/* hero content */
body.hero-under-headers .taratsa-menu-hero__inner{
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 16px;
}

/* ---------------------------
   DESKTOP (>= 901px)
   hero goes behind both headers + one combined blur strip
--------------------------- */
@media (min-width: 901px){

  body.hero-under-headers{ position: relative; }

  /* pull hero behind stacked headers */
  body.hero-under-headers .taratsa-menu-hero{
    margin-top: calc(-1 * var(--headerStackH));
    padding-top: var(--headerStackH);
  }

  /* headers above blur + above hero */
  body.hero-under-headers .site-header,
  body.hero-under-headers .header{
    background: transparent !important;
    background-color: transparent !important;
    border-bottom: none !important;
    box-shadow: none !important;

    position: relative;
    z-index: 3001;
  }

  /* stop inner wrappers painting black */
  body.hero-under-headers .site-header *,
  body.hero-under-headers .header *{
    background: transparent !important;
    background-color: transparent !important;
  }

  /* keep header text/icons white */
  body.hero-under-headers .site-header,
  body.hero-under-headers .header,
  body.hero-under-headers .site-header a,
  body.hero-under-headers .header a{
    color: #fff !important;
  }

  /* ✅ one blur strip spanning both bars (scrolls away, not fixed) */
  body.hero-under-headers::before{
    content:"";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: var(--headerStackH);

    background: rgba(0,0,0,0.26);
    backdrop-filter: blur(14px) saturate(120%);
    -webkit-backdrop-filter: blur(14px) saturate(120%);
    border-bottom: 1px solid rgba(255,255,255,0.10);

    z-index: 3000;          /* behind headers, above hero */
    pointer-events: none;
  }

  /* Taratsa-like lift (desktop) */
  body.hero-under-headers .taratsa-menu-hero__inner{
    transform: translateY(clamp(-120px, -10vh, -60px));
  }
}

/* ---------------------------
   MOBILE (<= 768px)
   you hide headers, so remove offsets and blur
--------------------------- */
@media (max-width: 768px){

  body.hero-under-headers{
    --topHeaderH: 0px;
    --desktopHeaderH: 0px;
    --headerStackH: 0px;
  }

  body.hero-under-headers::before{
    content: none !important; /* no blur strip on mobile */
  }

  body.hero-under-headers .taratsa-menu-hero{
    margin-top: 0 !important;
    padding-top: 0 !important;
    min-height: 72vh;

    background-image: var(--hero) !important; /* force */
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
  }

  /* lighter overlay on mobile */
  body.hero-under-headers .taratsa-menu-hero::before{
    background: linear-gradient(to bottom, rgba(0,0,0,.10), rgba(0,0,0,.55)) !important;
  }

  /* gentler lift on mobile */
  body.hero-under-headers .taratsa-menu-hero__inner{
    transform: translateY(clamp(-44px, -4vh, -14px));
  }
}


/* =========================================================
   MENU HERO (Taratsa Athens) — FINAL
   Desktop: hero behind top header + desktop bar + one blur strip
   Mobile: headers hidden, hero normal
========================================================= */

body.hero-under-headers{
  --topHeaderH: 44px;
  --desktopHeaderH: 86px;
  --headerStackH: calc(var(--topHeaderH) + var(--desktopHeaderH));
}

/* ---------------------------
   HERO (base)
--------------------------- */
body.hero-under-headers .taratsa-menu-hero{
  position: relative;
  width: 100%;
  min-height: 78vh;
  overflow: hidden;

  background-color: #000;
  background-image: var(--hero);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;

  z-index: 1; /* stays under headers/blur */
}

/* hero overlay */
body.hero-under-headers .taratsa-menu-hero::before{
  content:"";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.18), rgba(0,0,0,.78));
  z-index: 0;
}

/* hero content */
body.hero-under-headers .taratsa-menu-hero__inner{
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 16px;
}

/* ---------------------------
   DESKTOP (>= 901px)
   hero goes behind both headers + one combined blur strip
--------------------------- */
@media (min-width: 901px){

  body.hero-under-headers{ position: relative; }

  /* pull hero behind stacked headers */
  body.hero-under-headers .taratsa-menu-hero{
    margin-top: calc(-1 * var(--headerStackH));
    padding-top: var(--headerStackH);
  }

  /* headers above blur + above hero */
  body.hero-under-headers .site-header,
  body.hero-under-headers .header{
    background: transparent !important;
    background-color: transparent !important;
    border-bottom: none !important;
    box-shadow: none !important;

    position: relative;
    z-index: 3001;
  }

  /* stop inner wrappers painting black */
  body.hero-under-headers .site-header *,
  body.hero-under-headers .header *{
    background: transparent !important;
    background-color: transparent !important;
  }

  /* keep header text/icons white */
  body.hero-under-headers .site-header,
  body.hero-under-headers .header,
  body.hero-under-headers .site-header a,
  body.hero-under-headers .header a{
    color: #fff !important;
  }

  /* ✅ one blur strip spanning both bars (scrolls away, not fixed) */
  body.hero-under-headers::before{
    content:"";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: var(--headerStackH);

    background: rgba(0,0,0,0.26);
    backdrop-filter: blur(14px) saturate(120%);
    -webkit-backdrop-filter: blur(14px) saturate(120%);
    border-bottom: 1px solid rgba(255,255,255,0.10);

    z-index: 3000;          /* behind headers, above hero */
    pointer-events: none;
  }

  /* Taratsa-like lift (desktop) */
  body.hero-under-headers .taratsa-menu-hero__inner{
    transform: translateY(clamp(-120px, -10vh, -60px));
  }
}

/* ---------------------------
   MOBILE (<= 768px)
   you hide headers, so remove offsets and blur
--------------------------- */
@media (max-width: 768px){

  body.hero-under-headers{
    --topHeaderH: 0px;
    --desktopHeaderH: 0px;
    --headerStackH: 0px;
  }

  body.hero-under-headers::before{
    content: none !important; /* no blur strip on mobile */
  }

  body.hero-under-headers .taratsa-menu-hero{
    margin-top: 0 !important;
    padding-top: 0 !important;
    min-height: 72vh;

    background-image: var(--hero) !important; /* force */
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
  }

  /* lighter overlay on mobile */
  body.hero-under-headers .taratsa-menu-hero::before{
    background: linear-gradient(to bottom, rgba(0,0,0,.10), rgba(0,0,0,.55)) !important;
  }

  /* gentler lift on mobile */
  body.hero-under-headers .taratsa-menu-hero__inner{
    transform: translateY(clamp(-44px, -4vh, -14px));
  }
}

/* =========================================================
   MENU HERO TYPOGRAPHY LOCK (Taratsa-like)
   Put this at the VERY END of style.css
========================================================= */

body.hero-under-headers .taratsa-menu-hero__view{
  display: inline-block;
  text-decoration: none;

  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 2.6px;
  text-transform: uppercase;

  color: rgba(255,255,255,0.78);
  padding: 10px 14px;

  opacity: 1; /* prevent global link opacity rules */
}

body.hero-under-headers .taratsa-menu-hero__view::after{
  content:"";
  display:block;
  width: 44px;
  height: 1px;
  margin: 10px auto 0;
  background: rgba(255,255,255,0.35);
}

body.hero-under-headers .taratsa-menu-hero__subtitle{
  margin: 22px 0 0;

  font-family: "Playfair Display", serif;
  font-weight: 500;
  letter-spacing: .5px;

  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.08;

  color: #fff;
}

/* Mobile: slightly smaller like Taratsa */
@media (max-width: 768px){
  body.hero-under-headers .taratsa-menu-hero__subtitle{
    font-size: clamp(30px, 8vw, 44px);
    line-height: 1.1;
  }
}

/* ==== HARDEN HERO IMAGE (iOS-safe) ==== */
body.hero-under-headers .taratsa-menu-hero{
  /* 1) hard fallback for all browsers */
  background-image: url("/images/menu-hero.jpg");
  /* 2) var version (overrides if available); includes fallback too */
  background-image: var(--hero, url("/images/menu-hero.jpg")) !important;

  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-color: #000 !important;
}

/* Mobile top logo (visible on hero) */
@media (max-width: 768px){
  .mobile-top-logo{
    display: block;
    position: fixed; /* IMPORTANT: stays above hero */
    top: 18px;
    left: 18px;
    z-index: 2002;   /* above hero + overlay */
    text-decoration: none;
    color: #fff;
    line-height: 1.05;
    padding: 8px 6px;
  }

  /* Hide ONLY when menu is open */
  body.menu-open .mobile-top-logo{
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity .25s ease, transform .25s ease;
  }
}


/* =========================================================
   MENU LIGHTBOX (silky, elegant)
   Requires HTML:
   <div class="lightbox" id="lightbox"> ... </div>
========================================================= */

:root{
  --lb-backdrop: rgba(0,0,0,.62);
  --lb-radius: 18px;
}

/* lock scroll when open */
body.lightbox-open{
  overflow: hidden;
}

/* root overlay */
.lightbox{
  position: fixed;
  inset: 0;
  z-index: 9999;

  display: grid;
  place-items: center;

  /* hidden by default */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition: opacity .28s ease, visibility .28s ease;
}

/* visible */
.lightbox.is-open{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* backdrop */
.lightbox__backdrop{
  position: absolute;
  inset: 0;
  background: var(--lb-backdrop);

  /* subtle blur like Taratsa vibe */
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  opacity: 0;
  transition: opacity .28s ease;
}

.lightbox.is-open .lightbox__backdrop{
  opacity: 1;
}

/* panel (the image container) */
.lightbox__panel{
  position: relative;
  z-index: 2;

  /* not fullscreen desktop; "fullscreen of image" */
  width: min(92vw, 980px);
  max-height: 86vh;

  display: grid;
  place-items: center;

  border-radius: var(--lb-radius);
  overflow: hidden;

  /* premium depth */
  box-shadow: 0 24px 90px rgba(0,0,0,.55);

  /* opening animation */
  transform: translateY(14px) scale(.98);
  opacity: 0;
  transition: transform .32s cubic-bezier(.2,.9,.2,1), opacity .32s ease;

  background: rgba(0,0,0,.35);
}

.lightbox.is-open .lightbox__panel{
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* image itself */
.lightbox__img{
  width: 100%;
  height: auto;
  max-height: 86vh;
  object-fit: contain;
  display: block;

  /* subtle “crisp” look */
  transform: translateZ(0);
}

/* =========================
   CLOSE BUTTON — FIXED
========================= */

.lightbox__panel{
  position: relative;
  overflow: visible; /* 🔥 important — prevents clipping */
}

/* Close button fully visible */
.lightbox__close{
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 10;

  width: 52px;
  height: 52px;
  border-radius: 999px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(0,0,0,.75);
  border: 1px solid rgba(255,255,255,.35);
  color: #fff;

  font-size: 20px;
  line-height: 1;
  padding: 0;
  margin: 0;

  cursor: pointer;
  user-select: none;

  box-shadow: 0 12px 30px rgba(0,0,0,.45);

  transition: transform .2s ease, background .2s ease;
}

/* Entire circle clickable */
.lightbox__close *{
  pointer-events: none;
}

@media (hover:hover){
  .lightbox__close:hover{
    transform: scale(1.08);
    background: rgba(0,0,0,.95);
  }
}

.lightbox__close:active{
  transform: scale(0.96);
}

/* Hover feedback */
@media (hover:hover){
  .lightbox__close:hover{
    transform: scale(1.08);
    background: rgba(0,0,0,.95);
    border-color: rgba(255,255,255,.6);
  }
}

/* Make keyboard focus visible */
.lightbox__close:focus-visible{
  outline: 2px solid #fff;
  outline-offset: 4px;
}

@media (hover:hover){
  .lightbox__close:hover{
    transform: scale(1.04);
    background: rgba(0,0,0,.55);
    border-color: rgba(255,255,255,.35);
    opacity: 1;
  }
}

.lightbox__close:focus-visible{
  outline: 2px solid rgba(255,255,255,.8);
  outline-offset: 3px;
}

/* Mobile tuning (still image-focused, not true fullscreen) */
@media (max-width: 768px){
  .lightbox__panel{
    width: min(94vw, 720px);
    max-height: 84vh;
    border-radius: 16px;
  }

  .lightbox__close{
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  .lightbox,
  .lightbox__backdrop,
  .lightbox__panel{
    transition: none !important;
  }
}

.lightbox{
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: grid;
  place-items: center;

  background: rgba(0,0,0,.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  opacity: 0;
  visibility: hidden;
  transition: opacity .28s ease, visibility .28s ease;
}

.lightbox.is-open{
  opacity: 1;
  visibility: visible;
}

.lightbox__panel{
  position: relative;
  width: min(920px, calc(100vw - 36px));
  max-height: calc(100vh - 36px);

  display: grid;
  place-items: center;

  transform: translateY(8px) scale(.98);
  transition: transform .32s ease;
}

.lightbox.is-open .lightbox__panel{
  transform: translateY(0) scale(1);
}

.lightbox__img{
  width: 100%;
  height: auto;
  max-height: calc(100vh - 80px); /* ✅ leaves room for X */
  object-fit: contain;
  border-radius: 14px;
  box-shadow: 0 22px 70px rgba(0,0,0,.55);
}

.lightbox__close{
  position: absolute;
  top: -14px;
  right: -14px;

  width: 44px;
  height: 44px;
  border-radius: 999px;

  border: 1px solid rgba(255,255,255,.28);
  background: rgba(0,0,0,.55);
  color: #fff;

  display: grid;
  place-items: center;

  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.lightbox__close:hover{
  background: rgba(255,255,255,.10);
}

@media (max-width: 768px){

  /* hero must be positioning context */
  .taratsa-menu-hero{
    position: relative;
  }

  /* mobile logo on top of hero, NOT fixed */
  .mobile-top-logo{
    display: block;
    position: absolute;   /* ✅ scrolls away */
    top: 18px;
    left: 18px;
    z-index: 20;

    text-decoration: none;
    color: #fff;
    line-height: 1.05;
    padding: 8px 6px;
  }

  body.menu-open .mobile-top-logo{
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity .25s ease, transform .25s ease;
  }
}





/* =========================================================
   GALINI — GALLERY SECTION (Taratsa-inspired)
   White background below hero + clean grid + viewer controls
========================================================= */

.galini-gallery{
  background:#fff; /* user request: white below hero */
  color:#111;
  padding: 78px 0 96px;
}

.galini-gallery__inner{
  width: min(1100px, calc(100% - 80px));
  margin: 0 auto;
}

@media (max-width: 720px){
  .galini-gallery{ padding: 56px 0 72px; }
  .galini-gallery__inner{ width: calc(100% - 32px); }
}

/* Label (Taratsa-like) */
.galini-gallery__label{
  text-align:center;
  margin: 0 auto 34px;
}
.galini-gallery__brand{
  font-family:"Montserrat", sans-serif;
  font-size: 12px;
  letter-spacing: .30em;
  text-transform: uppercase;
  color: rgba(17,17,17,.55);
}
.galini-gallery__kicker{
  font-family:"Playfair Display", serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  letter-spacing: .02em;
  margin-top: 10px;
}

/* Grid */
.galini-gallery__grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

@media (max-width: 980px){
  .galini-gallery__grid{ grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px){
  .galini-gallery__grid{ grid-template-columns: repeat(2, 1fr); gap: 10px; }
}

/* Items */
.gg-item{
  position:relative;
  margin:0;
  border-radius: 18px;
  overflow:hidden;
  background: #eee;
  border: 1px solid rgba(17,17,17,.10);
  cursor:pointer;

  transform: translateY(12px);
  opacity: 0;
  transition: transform .9s cubic-bezier(.2,.8,.2,1), opacity .9s cubic-bezier(.2,.8,.2,1);
}

.gg-item.gg-in{
  transform: translateY(0);
  opacity: 1;
}

.gg-item img{
  width:100%;
  height:100%;
  aspect-ratio: 1 / 1; /* Taratsa gallery feels square */
  object-fit: cover;
  display:block;
  transform: scale(1.02);
  transition: transform .9s cubic-bezier(.2,.8,.2,1);
}

/* Hover overlay + “zoom” button (Taratsa vibe) */
.gg-open{
  position:absolute;
  right: 12px;
  bottom: 12px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.20);
  background: rgba(10,10,10,.28);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display:grid;
  place-items:center;
  cursor:pointer;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .55s cubic-bezier(.2,.8,.2,1), transform .55s cubic-bezier(.2,.8,.2,1), background .55s cubic-bezier(.2,.8,.2,1);
}
.gg-open svg{ width:18px; height:18px; fill: rgba(255,255,255,.92); }

.gg-item::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(to top, rgba(0,0,0,.42), rgba(0,0,0,.05) 60%, rgba(0,0,0,0));
  opacity: 0;
  transition: opacity .55s cubic-bezier(.2,.8,.2,1);
}

.gg-item:hover img{ transform: scale(1.06); }
.gg-item:hover::after{ opacity: 1; }
.gg-item:hover .gg-open{ opacity: 1; transform: translateY(0); }

/* Mobile: keep the button visible (Taratsa-like usability) */
@media (max-width: 720px){
  .gg-open{ opacity: 1; transform: translateY(0); }
  .gg-item::after{ opacity: 1; }
}

/* =========================================================
   TARATSA-STYLE LIGHTBOX (full-screen, minimal UI)
========================================================= */
.tg-lightbox{
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: none;
}
.tg-lightbox.is-open{ display:block; }

.tg-overlay{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity .35s cubic-bezier(.2,.8,.2,1);
}
.tg-lightbox.is-open .tg-overlay{ opacity: 1; }

.tg-ui{
  position:absolute;
  inset:0;
}

.tg-stage{
  position:absolute;
  inset: 0;
  display:grid;
  place-items:center;
  padding: 96px 80px; /* leaves room for top toolbar + arrows */
}

@media (max-width: 720px){
  .tg-stage{ padding: 88px 18px; }
}

#ggImg{
  max-width: min(1100px, calc(100vw - 160px));
  max-height: min(78vh, 860px);
  width: auto;
  height: auto;

  user-select:none;
  -webkit-user-drag:none;

  transform: translate3d(0,0,0) scale(1);
  transition: transform .22s cubic-bezier(.2,.8,.2,1), opacity .22s cubic-bezier(.2,.8,.2,1);
  will-change: transform;
  cursor: grab;
}

.tg-bar{
  position:absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  display:flex;
  align-items:center;
  gap: 14px;

  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(20,20,20,.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  color: rgba(255,255,255,.92);
  z-index: 2;
}

@media (max-width: 720px){
  .tg-bar{
    top: auto;
    bottom: 14px;            /* Taratsa-like: controls feel reachable */
    padding: 10px 10px;
  }
}

.tg-count{
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.70);
  padding: 0 6px 0 2px;
  white-space: nowrap;
}

.tg-tools{
  display:flex;
  align-items:center;
  gap: 8px;
}

.tg-ibtn{
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.18);
  color: rgba(255,255,255,.92);
  display:grid;
  place-items:center;
  cursor:pointer;
  transition: transform .18s cubic-bezier(.2,.8,.2,1), background .18s cubic-bezier(.2,.8,.2,1);
}
.tg-ibtn:hover{ transform: translateY(-1px); background: rgba(0,0,0,.26); }
.tg-ibtn svg{ width: 18px; height: 18px; }

.tg-nav{
  position:absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(20,20,20,.28);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: rgba(255,255,255,.92);
  display:grid;
  place-items:center;
  cursor:pointer;
  z-index: 2;
  transition: transform .18s cubic-bezier(.2,.8,.2,1), background .18s cubic-bezier(.2,.8,.2,1);
}
.tg-nav:hover{ transform: translateY(-50%) translateY(-1px); background: rgba(20,20,20,.38); }
.tg-prev{ left: 16px; }
.tg-next{ right: 16px; }
.tg-nav svg{ width: 22px; height: 22px; }

@media (max-width: 720px){
  .tg-nav{ width: 48px; height: 48px; }
  .tg-prev{ left: 10px; }
  .tg-next{ right: 10px; }
}



.gg-item { position: relative; }
.gg-item::after { pointer-events: none; }  /* overlay must not block clicks */
.gg-open { z-index: 2; }                   /* ensure button is above overlay */




/* === GALLERY VISIBILITY HARD-FIX === */
.galini-gallery,
.galini-gallery *{
  visibility: visible !important;
}

.galini-gallery .galini-gallery__grid{
  display: grid !important;
  opacity: 1 !important;
}

.galini-gallery .gg-item{
  opacity: 1 !important;
  transform: none !important;
  display: block !important;
}

.galini-gallery .gg-item img{
  opacity: 1 !important;
  display: block !important;
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}


/* =========================================================
   GALINI GALLERY GRID — Taratsa-like squares + full width
========================================================= */

.galini-gallery{
  background:#fff;
  padding: 70px 0 90px;
}

/* Wider container than menu (Taratsa uses more width) */
.galini-gallery__inner{
  width: min(1320px, calc(100% - 120px));
  margin: 0 auto;
}

@media (max-width: 980px){
  .galini-gallery__inner{ width: calc(100% - 64px); }
}

@media (max-width: 720px){
  .galini-gallery{ padding: 52px 0 70px; }
  .galini-gallery__inner{ width: calc(100% - 32px); }
}

/* Label stays centered like Taratsa */
.galini-gallery__label{
  text-align:center;
  margin: 0 auto 28px;
}

/* The grid: true equal squares, consistent size */
.galini-gallery__grid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

@media (max-width: 1024px){
  .galini-gallery__grid{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 720px){
  .galini-gallery__grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
}

/* Square tiles */
.gg-item{
  position: relative;
  margin: 0;
  border-radius: 14px;                 /* subtle rounding like Taratsa */
  overflow: hidden;
  background: #eee;
  border: 1px solid rgba(17,17,17,.10);
  cursor: pointer;

  /* IMPORTANT: ensure visible (no reveal hiding) */
  opacity: 1 !important;
  transform: none !important;
}

/* Make image perfectly square */
.gg-item img{
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  display: block;
  object-fit: cover;

  transform: scale(1.02);
  transition: transform .9s cubic-bezier(.2,.8,.2,1);
}

/* Overlay should not block clicks */
.gg-item::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(to top, rgba(0,0,0,.40), rgba(0,0,0,.06) 60%, rgba(0,0,0,0));
  opacity: 0;
  transition: opacity .55s cubic-bezier(.2,.8,.2,1);
  pointer-events: none;
}

.gg-open{
  position:absolute;
  right: 12px;
  bottom: 12px;
  z-index: 2;
}

/* Hover (desktop) */
@media (hover:hover){
  .gg-item:hover img{ transform: scale(1.06); }
  .gg-item:hover::after{ opacity: 1; }
  .gg-item:hover .gg-open{ opacity: 1; transform: translateY(0); }
}

/* Mobile: overlay + button always visible like Taratsa usability */
@media (max-width: 720px){
  .gg-item::after{ opacity: 1; }
  .gg-open{ opacity: 1; transform: translateY(0); }
}


/* === Gallery tweaks: tighter gaps + sharp corners === */
.galini-gallery__grid{
  gap: 8px !important;           /* desktop tighter */
}

@media (max-width: 720px){
  .galini-gallery__grid{
    gap: 6px !important;         /* mobile tighter */
  }
}

.gg-item{
  border-radius: 0 !important;   /* no rounded corners */
}

.gg-item img{
  border-radius: 0 !important;   /* ensure image edges are sharp too */
}

/* ===========================
   TARATSA-LIKE CONTACT (v2)
=========================== */
.ta2-contact{
  background:#f6f2ea;
  color:#111;
  padding: 80px 0 90px;
}

/* More breathing room (Taratsa-like calm spacing) */
.ta2-contact{
  padding: 110px 0 110px;   /* was 80/90 */
}

.ta2-contact__grid{
  column-gap: 52px;         /* more air between columns */
}

.ta2-contact__grid--top{ padding-bottom: 60px; }
.ta2-contact__grid--bottom{ padding-top: 60px; }

.ta2-contact__p{
  margin: 0 0 26px;         /* more relaxed paragraph spacing */
}

.ta2-contact__info{
  gap: 14px;                /* was 10px */
  margin: 0 0 26px;         /* more space before button */
}

/* Icon links */
.ta2-contact__iconlink{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 1.6;
  width: fit-content;
  padding: 6px 0;
}

.ta2-contact__iconlink span{
  border-bottom: 1px solid rgba(0,0,0,.22);
  padding-bottom: 2px;
}

.ta2-ico{
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  opacity: .78;
}

/* Divider (Taratsa column break look: slightly softer) */
.ta2-break{
  background: rgba(0,0,0,.12);
  min-height: 520px; /* align with image height */
}

/* TRUE rectangle image like Taratsa (no distortion) */
.ta2-contact__image{
  aspect-ratio: 4 / 5;   /* Taratsa right image feels tall-rectangle */
  height: 520px;         /* fixed for perfect rectangle */
}

.ta2-contact__image img{
  width: 100%;
  height: 100%;
  object-fit: cover;     /* keeps rectangle crop */
  display: block;
}

/* Mobile tuning */
@media (max-width: 900px){
  .ta2-contact{
    padding: 80px 0 80px;
  }

  .ta2-contact__grid--top{ padding-bottom: 36px; }
  .ta2-contact__grid--bottom{ padding-top: 36px; }

  .ta2-contact__image{
    height: 320px;
    aspect-ratio: 16 / 10; /* Taratsa-style on mobile */
  }

  .ta2-break{
    min-height: 0;
  }
}

.ta2-contact__wrap{
  width: min(1120px, calc(100% - 80px));
  margin: 0 auto;
}

@media (max-width: 720px){
  .ta2-contact{ padding: 60px 0 70px; }
  .ta2-contact__wrap{ width: calc(100% - 32px); }
}

/* LEFT | BREAK | RIGHT (image / form) */
.ta2-contact__grid{
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  column-gap: 40px;
  align-items: start;
}

.ta2-break{
  width: 1px;
  background: rgba(0,0,0,.14);
  height: 100%;
  min-height: 420px; /* gives the “full-height divider” look */
}

/* top/bottom separation like Taratsa */
.ta2-contact__grid--top{
  padding-bottom: 44px;
}
.ta2-contact__grid--bottom{
  padding-top: 44px;
  border-top: 1px solid rgba(0,0,0,.12);
}

/* MOBILE: stack + horizontal divider */
@media (max-width: 900px){
  .ta2-contact__grid{
    grid-template-columns: 1fr;
    row-gap: 18px;
  }
  .ta2-break{
    width: 100%;
    height: 1px;
    min-height: 0;
    margin: 6px 0 10px;
  }
}

/* Typography */
.ta2-contact__brand{
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: lowercase; /* Taratsa uses lowercase brand text */
  opacity: .85;
  margin: 0 0 12px;
}

.ta2-contact__title{
  font-family: "Playfair Display", serif;
  font-size: 28px;
  font-weight: 500;
  margin: 0 0 14px;
}

.ta2-contact__p{
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 1.9;
  opacity: .92;
  margin: 0 0 18px;
  max-width: 58ch;
}

.ta2-contact__p--bottom{
  margin: 0 0 22px;
  max-width: 62ch;
}

/* info list */
.ta2-contact__info{
  display: grid;
  gap: 10px;
  margin: 0 0 20px;
}

.ta2-contact__info a{
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: inherit;
  text-decoration: none;
  width: fit-content;
  border-bottom: 1px solid rgba(0,0,0,.22);
}

/* Buttons (Taratsa-like: rectangular, uppercase, hover invert) */
.ta2-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid rgba(0,0,0,.55);
  background: transparent;
  color: #111;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  transition: background .22s ease, color .22s ease, transform .22s ease, border-color .22s ease;
  cursor: pointer;
}

.ta2-btn:hover{
  background: rgba(0,0,0,.88);
  color: #fff;
  border-color: rgba(0,0,0,.88);
  transform: translateY(-1px);
}

.ta2-btn--ghost{
  margin-top: 14px;
}

.ta2-btn--submit{
  margin-top: 10px;
  width: 100%;
}

/* Image column (right) */
.ta2-contact__image{
  margin: 0;
  overflow: hidden;
  border-radius: 0;
  box-shadow: 0 18px 45px rgba(0,0,0,.14);
}

.ta2-contact__image img{
  width: 100%;
  height: 520px;          /* IMPORTANT: makes it “Taratsa-sized” */
  display: block;
  object-fit: cover;
}

@media (max-width: 900px){
  .ta2-contact__image img{
    height: 280px;
  }
}

/* Bottom-left “Contact us” block */
.ta2-contact__section{
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  opacity: .72;
  margin: 0 0 10px;
}

.ta2-contact__place{
  font-family: "Playfair Display", serif;
  font-size: 22px;
  font-weight: 500;
  margin: 0 0 14px;
}

.ta2-contact__mini{
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  margin: 6px 0;
}

.ta2-contact__mini span{
  display: inline-block;
  width: 22px;
  opacity: .75;
}

.ta2-contact__mini a{
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,.22);
}

/* Hours */
.ta2-contact__hours{
  margin: 16px 0 8px;
}

.ta2-contact__hoursTitle{
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: .78;
  margin: 0 0 10px;
}

.ta2-contact__hours p{
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  margin: 6px 0;
}

/* Form (right column) */
.ta2-form{
  display: grid;
  gap: 14px;
}

.ta2-field{
  display: grid;
  gap: 8px;
}

.ta2-field span{
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  opacity: .75;
}

.ta2-field input,
.ta2-field textarea{
  width: 100%;
  border: 1px solid rgba(0,0,0,.14);
  background: rgba(255,255,255,.55);
  border-radius: 0;     /* Taratsa squared inputs */
  padding: 12px 12px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color .2s ease, background .2s ease;
}

.ta2-field input:focus,
.ta2-field textarea:focus{
  border-color: rgba(0,0,0,.45);
  background: rgba(255,255,255,.80);
}

/* 1) remove default underline on the <a> */
.ta2-contact__iconlink{
  text-decoration: none;
}

/* 2) keep ONLY one underline (on the text span) */
.ta2-contact__iconlink span{
  border-bottom: 1px solid rgba(0,0,0,.22);
  padding-bottom: 2px;
}

/* 3) IMPORTANT: kill any old underline rules that target links inside the info block */
.ta2-contact__info a{
  border-bottom: 0 !important;
  text-decoration: none !important;
}

/* =========================================
   CONTACT — MOBILE FIX (override patch)
   Paste at END of style.css
========================================= */
@media (max-width: 900px){

  /* calm spacing like Taratsa */
  .ta2-contact{
    padding: 72px 0 78px;
  }

  /* stack layout */
  .ta2-contact__grid{
    grid-template-columns: 1fr;
    row-gap: 18px;
    column-gap: 0;
  }

  /* ensure columns don't carry desktop widths */
  .ta2-contact__left,
  .ta2-contact__right{
    width: 100%;
  }

  /* TOP row order:
     left content -> break -> image (Taratsa-like flow) */
  .ta2-contact__grid--top .ta2-contact__left{ order: 1; }
  .ta2-contact__grid--top .ta2-break{ order: 2; }
  .ta2-contact__grid--top .ta2-contact__image{ order: 3; }

  /* BOTTOM row order:
     left block (text + contact/hours) -> break -> form */
  .ta2-contact__grid--bottom .ta2-contact__left{ order: 1; }
  .ta2-contact__grid--bottom .ta2-break{ order: 2; }
  .ta2-contact__grid--bottom .ta2-contact__right{ order: 3; }

  /* divider becomes horizontal line */
  .ta2-break{
    width: 100%;
    height: 1px;
    min-height: 0;
    margin: 10px 0 8px;
    background: rgba(0,0,0,.12);
  }

  /* top/bottom spacing (more air) */
  .ta2-contact__grid--top{ padding-bottom: 30px; }
  .ta2-contact__grid--bottom{
    padding-top: 30px;
    border-top: 1px solid rgba(0,0,0,.10);
  }

  /* typography scaling */
  .ta2-contact__title{
    font-size: 26px;
    line-height: 1.15;
  }
  .ta2-contact__p{
    font-size: 14px;
    line-height: 1.9;
    margin-bottom: 18px;
  }
  .ta2-contact__p--bottom{
    margin-bottom: 18px;
  }

  /* icon links: allow wrapping, avoid overflow */
  .ta2-contact__iconlink{
    width: 100%;
    max-width: 100%;
    align-items: flex-start;
    gap: 10px;
  }
  .ta2-contact__iconlink span{
    display: inline;
    white-space: normal;
    word-break: break-word;
    line-height: 1.6;
  }

  /* image: full-width rectangle like Taratsa mobile */
  .ta2-contact__image{
    width: 100%;
    height: auto;            /* let img control height */
    aspect-ratio: auto;
    box-shadow: 0 16px 36px rgba(0,0,0,.14);
  }
  .ta2-contact__image img{
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;   /* nice Taratsa-ish mobile rectangle */
    object-fit: cover;
    display: block;
  }

  /* buttons full width (Taratsa mobile feel) */
  .ta2-btn{
    width: 100%;
    padding: 13px 18px;
  }
  .ta2-btn--ghost{
    width: 100%;
  }

  /* contact-us block spacing */
  .ta2-contact__section{
    margin-top: 6px;
  }
  .ta2-contact__hours{
    margin: 14px 0 8px;
  }

  /* form layout: clean + comfortable */
  .ta2-form{
    gap: 12px;
  }
  .ta2-field input,
  .ta2-field textarea{
    padding: 13px 12px;
    font-size: 16px; /* prevents iOS zoom + feels premium */
  }

  .ta2-btn--submit{
    width: 100%;
  }
}

/* Smaller phones */
@media (max-width: 520px){
  .ta2-contact{
    padding: 64px 0 70px;
  }

  .ta2-contact__title{ font-size: 24px; }
  .ta2-contact__place{ font-size: 20px; }

  .ta2-contact__image img{
    aspect-ratio: 4 / 3; /* slightly taller rectangle on very small screens */
  }
}


/* =========================================
   CONTACT mobile overflow FIX
   Paste at END of style.css
========================================= */

/* 1) Make ALL sizing inside contact use border-box (prevents overflow) */
.ta2-contact,
.ta2-contact *{
  box-sizing: border-box;
}

/* 2) Ensure the wrap never exceeds viewport */
.ta2-contact__wrap{
  max-width: 100%;
  overflow-x: hidden;
}

/* 3) Fix button + form fields pushing outside on mobile */
@media (max-width: 900px){

  /* buttons */
  .ta2-btn{
    width: 100%;
    max-width: 100%;
  }

  /* form container */
  .ta2-contact__right,
  .ta2-form{
    width: 100%;
    max-width: 100%;
  }

  /* inputs/textarea */
  .ta2-field input,
  .ta2-field textarea{
    width: 100%;
    max-width: 100%;
    min-width: 0;          /* critical for grid/flex overflow */
    display: block;
  }

  /* if any parent has padding, ensure it doesn't create overflow */
  .ta2-contact__left,
  .ta2-contact__right{
    padding-left: 0;
    padding-right: 0;
  }
}


/* =========================================
   CONTACT — more relaxed spacing + justified hours
========================================= */

/* More space between blocks */
.ta2-contact__p--bottom{
  margin-bottom: 28px;          /* space before CONTACT US */
}

.ta2-contact__section{
  margin-top: 0;
  margin-bottom: 14px;          /* space under CONTACT US */
}

.ta2-contact__place{
  margin-bottom: 18px;          /* space under title */
}

/* Space between T/E lines */
.ta2-contact__mini{
  margin: 10px 0;               /* was tight */
  line-height: 1.9;
}

.ta2-contact__mini + .ta2-contact__mini{
  margin-top: 12px;
}

/* Opening hours block: more air */
.ta2-contact__hours{
  margin-top: 22px;
  margin-bottom: 18px;
}

.ta2-contact__hoursTitle{
  margin-bottom: 14px;
}

/* Justified opening hours (label left, time right) */
.ta2-contact__hours p{
  margin: 10px 0;
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

/* Keep the first “Opening hours:” title as normal (not flex row) */
.ta2-contact__hours p.ta2-contact__hoursTitle{
  display: block;
}

/* Make “Mon – Thu:” etc. line up nicely */
.ta2-contact__hours p{
  font-variant-numeric: tabular-nums;
}

/* Optional: slightly mute the left label and keep right side crisp */
.ta2-contact__hours p span:first-child{
  opacity: .86;
}

/* If you want perfect control, change the hours HTML to spans
   (recommended) — but this CSS works if you keep plain text too. */