:root{
  --sand:#FCFAF5;
  --sand-deep:#F4EFE3;
  --ink:#212929;
  --ink-soft:#52575A;
  --amphora:#6C93A7;
  --amphora-deep:#4F7A91;
  --sky:#91BCD4;
  --sky-pale:#D9E5E3;
  --dune:#FEE3A2;
  --terra:#F9D4B9;

  --display: 'Fraunces', serif;
  --body: 'Inter', sans-serif;

  --radius: 14px;
  --maxw: 1180px;
}

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

html{scroll-behavior:smooth;}

@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto;}
  *{animation-duration:0.01ms !important; animation-iteration-count:1 !important; transition-duration:0.01ms !important;}
}

body{
  font-family:var(--body);
  background:var(--sand);
  color:var(--ink);
  line-height:1.5;
  -webkit-font-smoothing:antialiased;
}

a{color:inherit;}

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

:focus-visible{
  outline:3px solid var(--amphora-deep);
  outline-offset:3px;
}

.wrap{
  max-width:var(--maxw);
  margin:0 auto;
  padding:0 24px;
}

/* ---------- HEADER ---------- */
header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(252,250,245,0.92);
  backdrop-filter:blur(8px);
  border-bottom:1px solid rgba(33,41,41,0.08);
}

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

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
}

.brand-mark{
  width:38px;
  height:38px;
  flex-shrink:0;
}

.brand-name{
  font-family:var(--display);
  font-weight:600;
  font-size:1.25rem;
  letter-spacing:-0.01em;
  color:var(--ink);
}

.brand-name span{
  display:block;
  font-family:var(--body);
  font-weight:500;
  font-size:0.68rem;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:var(--amphora-deep);
}

.header-actions{
  display:flex;
  align-items:center;
  gap:10px;
}

.lang-switch{
  display:flex;
  gap:4px;
  background:var(--sky-pale);
  border-radius:999px;
  padding:3px;
}

.lang-switch button{
  border:none;
  background:transparent;
  font-family:var(--body);
  font-weight:600;
  font-size:0.78rem;
  padding:6px 11px;
  border-radius:999px;
  cursor:pointer;
  color:var(--ink-soft);
  transition:background 0.2s, color 0.2s;
}

.lang-switch button.active{
  background:var(--amphora);
  color:#fff;
}

.cta-btn{
  display:inline-flex;
  align-items:center;
  gap:6px;
  background:var(--ink);
  color:var(--sand) !important;
  font-weight:600;
  font-size:0.85rem;
  padding:10px 18px;
  border-radius:999px;
  text-decoration:none;
  white-space:nowrap;
  transition:background 0.2s, transform 0.2s;
}

.cta-btn:hover{
  background:var(--amphora-deep);
  transform:translateY(-1px);
}

/* ---------- HERO ---------- */
.hero{
  position:relative;
  padding:72px 0 56px;
  overflow:hidden;
}

.hero-grid{
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:48px;
  align-items:center;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:0.78rem;
  font-weight:600;
  letter-spacing:0.06em;
  text-transform:uppercase;
  color:var(--amphora-deep);
  margin-bottom:18px;
}

.eyebrow::before{
  content:'';
  width:7px;
  height:7px;
  border-radius:50%;
  background:#5C9D6D;
  box-shadow:0 0 0 3px rgba(92,157,109,0.18);
}

.hero h1{
  font-family:var(--display);
  font-weight:600;
  font-size:clamp(2.4rem, 5vw, 3.8rem);
  line-height:1.04;
  letter-spacing:-0.02em;
  color:var(--ink);
  margin-bottom:20px;
}

.hero h1 em{
  font-style:italic;
  color:var(--amphora-deep);
}

.hero p{
  font-size:1.08rem;
  color:var(--ink-soft);
  max-width:480px;
  margin-bottom:28px;
}

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

.btn-secondary{
  display:inline-flex;
  align-items:center;
  gap:6px;
  background:transparent;
  border:1.5px solid rgba(33,41,41,0.18);
  color:var(--ink);
  font-weight:600;
  font-size:0.9rem;
  padding:11px 20px;
  border-radius:999px;
  text-decoration:none;
  transition:border-color 0.2s, background 0.2s;
}

.btn-secondary:hover{
  border-color:var(--amphora-deep);
  background:rgba(108,147,167,0.08);
}

/* hero visual: amphora illustration */
.hero-visual{
  position:relative;
  display:flex;
  justify-content:center;
  align-items:center;
}

.hero-visual img.hero-photo{
  width:100%;
  height:380px;
  object-fit:cover;
  border-radius:var(--radius);
  box-shadow:0 18px 40px rgba(33,41,41,0.14);
}

.hero-badge{
  position:absolute;
  bottom:6%;
  left:8%;
  background:#fff;
  border-radius:var(--radius);
  padding:12px 16px;
  box-shadow:0 8px 24px rgba(33,41,41,0.10);
  font-size:0.82rem;
  font-weight:600;
  display:flex;
  align-items:center;
  gap:8px;
}

.hero-badge .dot{
  width:8px;height:8px;border-radius:50%;
  background:#5C9D6D;
}

/* ---------- HOURS STRIP ---------- */
.hours-strip{
  background:var(--ink);
  color:var(--sand);
  padding:18px 0;
}

.hours-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  flex-wrap:wrap;
}

.hours-status{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:600;
  font-size:0.95rem;
}

.hours-status .dot{
  width:9px;height:9px;border-radius:50%;
  flex-shrink:0;
}

.dot.open{background:#7BC18B; box-shadow:0 0 0 4px rgba(123,193,139,0.22);}
.dot.closed{background:#E08A6B; box-shadow:0 0 0 4px rgba(224,138,107,0.22);}

.hours-table{
  display:flex;
  gap:18px;
  font-size:0.83rem;
  color:rgba(252,250,245,0.78);
  flex-wrap:wrap;
}

.hours-table strong{
  color:var(--sand);
  font-weight:600;
}

/* ---------- SECTION COMMON ---------- */
section{
  padding:84px 0;
}

.section-head{
  max-width:620px;
  margin-bottom:48px;
}

.section-eyebrow{
  font-size:0.78rem;
  font-weight:600;
  letter-spacing:0.06em;
  text-transform:uppercase;
  color:var(--amphora-deep);
  margin-bottom:10px;
  display:block;
}

.section-head h2{
  font-family:var(--display);
  font-weight:600;
  font-size:clamp(1.8rem, 3.4vw, 2.5rem);
  letter-spacing:-0.01em;
  margin-bottom:14px;
}

.section-head p{
  color:var(--ink-soft);
  font-size:1.02rem;
}

/* divider amphora */
.divider{
  display:flex;
  justify-content:center;
  padding:0;
  opacity:0.5;
}

.divider svg{width:28px; height:28px;}

/* ---------- CATEGORIES ---------- */
.categories{
  background:var(--sand-deep);
}

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

.cat-card{
  background:#fff;
  border-radius:var(--radius);
  padding:28px 24px;
  border:1px solid rgba(33,41,41,0.06);
  transition:transform 0.25s, box-shadow 0.25s;
}

.cat-card:hover{
  transform:translateY(-4px);
  box-shadow:0 14px 30px rgba(33,41,41,0.08);
}

.cat-icon{
  width:44px;
  height:44px;
  border-radius:11px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:18px;
}

.cat-icon svg{width:22px;height:22px;}

.cat-card h3{
  font-family:var(--display);
  font-weight:600;
  font-size:1.12rem;
  margin-bottom:8px;
}

.cat-card p{
  font-size:0.9rem;
  color:var(--ink-soft);
}

/* ---------- GALLERY ---------- */
.gallery{
  background:var(--sand-deep);
}

.gallery-hero{
  position:relative;
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid rgba(33,41,41,0.06);
  height:360px;
  margin-bottom:36px;
}

.gallery-hero img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform 0.4s ease;
}

.gallery-hero:hover img{
  transform:scale(1.03);
}

.gallery-caption{
  position:absolute;
  left:0; right:0; bottom:0;
  padding:14px 16px;
  background:linear-gradient(180deg, rgba(33,41,41,0) 0%, rgba(33,41,41,0.62) 100%);
  color:#fff;
  font-weight:600;
  font-size:0.92rem;
}

.gallery-groups{
  display:flex;
  flex-direction:column;
  gap:64px;
}

.gallery-feature{
  display:grid;
  grid-template-columns:1.5fr 1fr;
  gap:28px;
}

.gallery-feature:nth-child(even){
  grid-template-columns:1fr 1.5fr;
}

.gallery-feature:nth-child(even) .gallery-feature-photo.main{
  order:2;
}

.gallery-feature:nth-child(even) .gallery-feature-info{
  order:1;
}

.gallery-feature-photo.main img{
  width:100%;
  height:420px;
  object-fit:cover;
  border-radius:var(--radius);
  border:1px solid rgba(33,41,41,0.06);
  transition:transform 0.4s ease;
}

.gallery-feature-photo.main:hover img{
  transform:scale(1.02);
}

.gallery-feature-info{
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}

.gallery-feature-title{
  font-family:var(--display);
  font-weight:600;
  font-size:clamp(1.7rem, 2.6vw, 2.3rem);
  letter-spacing:-0.01em;
  color:var(--ink);
  line-height:1.1;
  position:relative;
  padding-bottom:18px;
}

.gallery-feature-title::after{
  content:'';
  position:absolute;
  left:0;
  bottom:0;
  width:44px;
  height:3px;
  border-radius:2px;
  background:var(--amphora);
}

.gallery-feature-photo.secondary{
  margin-top:24px;
}

.gallery-feature-photo.secondary img{
  width:100%;
  height:190px;
  object-fit:cover;
  border-radius:var(--radius);
  border:1px solid rgba(33,41,41,0.06);
  transition:transform 0.4s ease;
}

.gallery-feature-photo.secondary:hover img{
  transform:scale(1.03);
}

@media (max-width: 980px){
  .gallery-hero{height:280px;}
  .gallery-feature,
  .gallery-feature:nth-child(even){
    grid-template-columns:1fr;
    gap:20px;
  }
  .gallery-feature:nth-child(even) .gallery-feature-photo.main,
  .gallery-feature:nth-child(even) .gallery-feature-info{
    order:initial;
  }
  .gallery-feature-photo.main img{height:320px;}
}

@media (max-width: 640px){
  .gallery-hero{height:220px; margin-bottom:28px;}
  .gallery-groups{gap:44px;}
  .gallery-feature-photo.main img{height:240px;}
  .gallery-feature-photo.secondary img{height:160px;}
}

/* ---------- LOCATION ---------- */
.location{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:56px;
  align-items:center;
}

.location-info ul{
  list-style:none;
  margin-top:24px;
  display:flex;
  flex-direction:column;
  gap:18px;
}

.location-info li{
  display:flex;
  gap:14px;
  align-items:flex-start;
}


.li-icon{
  width:36px;
  height:36px;
  border-radius:10px;
  background:var(--sky-pale);
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}

.li-icon svg{width:18px;height:18px;color:var(--amphora-deep);}

.li-text strong{
  display:block;
  font-size:0.95rem;
  margin-bottom:2px;
}

.li-text span{
  font-size:0.88rem;
  color:var(--ink-soft);
}

.map-frame{
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid rgba(33,41,41,0.08);
  box-shadow:0 14px 34px rgba(33,41,41,0.08);
  aspect-ratio:4/3.4;
}

.map-frame iframe{
  width:100%;
  height:100%;
  border:0;
  display:block;
}

/* ---------- CONTACT / FOOTER ---------- */
footer{
  background:var(--ink);
  color:var(--sand);
  padding:64px 0 32px;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.3fr 1fr 1fr;
  gap:40px;
  padding-bottom:40px;
  border-bottom:1px solid rgba(252,250,245,0.12);
}

.footer-brand .brand-name{
  color:var(--sand);
}

.footer-brand .brand-name span{
  color:var(--sky);
}

.footer-brand p{
  margin-top:16px;
  color:rgba(252,250,245,0.65);
  font-size:0.92rem;
  max-width:320px;
}

.footer-col h4{
  font-size:0.82rem;
  font-weight:600;
  letter-spacing:0.05em;
  text-transform:uppercase;
  color:var(--sky);
  margin-bottom:16px;
}

.footer-col ul{
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:10px;
}

.footer-col a, .footer-col li{
  font-size:0.92rem;
  color:rgba(252,250,245,0.82);
  text-decoration:none;
}

.footer-col a:hover{
  color:var(--sky);
}

.footer-bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:12px;
  padding-top:24px;
  font-size:0.8rem;
  color:rgba(252,250,245,0.5);
}

.social{
  display:flex;
  gap:12px;
}

.social a{
  width:34px;height:34px;
  border-radius:50%;
  background:rgba(252,250,245,0.08);
  display:flex;align-items:center;justify-content:center;
  transition:background 0.2s;
}

.social a:hover{background:var(--amphora);}

.social svg{width:16px;height:16px;}

/* ---------- MOBILE NAV TOGGLE (lang only needed) ---------- */
[data-i18n]{}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 980px){
  .hero-grid{grid-template-columns:1fr; gap:36px;}
  .hero-visual{order:-1;}
  .hero-visual img.hero-photo{height:280px;}
  .cat-grid{grid-template-columns:repeat(2, 1fr);}
  .location{grid-template-columns:1fr; gap:36px;}
  .footer-grid{grid-template-columns:1fr; gap:28px;}
}

@media (max-width: 640px){
  .header-inner{padding:12px 16px;}
  .wrap{padding:0 16px;}
  .brand-name{font-size:1.05rem;}
  .cta-btn{display:none;}
  .lang-switch button{padding:6px 8px; font-size:0.72rem;}
  .hero{padding:40px 0 40px;}
  .hero h1{font-size:2.1rem;}
  .hero-visual img.hero-photo{height:220px;}
  .hours-inner{flex-direction:column; align-items:flex-start; gap:10px;}
  .hours-table{gap:12px;}
  section{padding:56px 0;}
  .cat-grid{grid-template-columns:1fr 1fr; gap:14px;}
  .cat-card{padding:20px 16px;}
  .footer-bottom{flex-direction:column; align-items:flex-start;}
}

@media (max-width: 420px){
  .cat-grid{grid-template-columns:1fr;}
}
