@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

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

:root {
  --red: #C0392B;
  --red-dark: #A93226;
  --dark: #1A1A1A;
  --cream: #FAF6F1;
  --cream-warm: #F2EDE8;
  --section-dark: #1C1C1C;
  --matcha-green: #E8F0E4;
  --footer-bg: #2B2B2B;
  --text-muted: #6B6057;
  --border: #E8E0D8;
  --white: #fff;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --radius: 4px;
  --max-width: 1200px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--dark);
  line-height: 1.7;
  font-size: 16px;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.25;
  color: var(--dark);
}

a { color: var(--red); text-decoration: none; }
a:hover { text-decoration: underline; }

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

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

.text-center { text-align: center; }

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  text-decoration: none;
  letter-spacing: 0.02em;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  text-decoration: none;
}

.btn-outline {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
}
.btn-outline:hover {
  background: var(--dark);
  color: var(--white);
  text-decoration: none;
}

.btn-white {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--cream);
  text-decoration: none;
}

.btn-block { display: block; width: 100%; text-align: center; }

/* NAV */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  text-decoration: none;
  white-space: nowrap;
}
.logo-mykonos { color: var(--dark); }
.logo-brunch { color: var(--red); }
.logo-club { color: var(--dark); }

.nav-links {
  display: flex;
  list-style: none;
  gap: 6px;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--dark);
  font-size: 14px;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
  text-decoration: none;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--red);
  background: rgba(192, 57, 43, 0.06);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.2s;
}

/* HERO */
.hero {
  position: relative;
  background: linear-gradient(135deg, #1A1A1A 0%, #2C1810 50%, #3D2314 100%);
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C0392B' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px 24px;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  background: rgba(192, 57, 43, 0.15);
  border: 1px solid rgba(192, 57, 43, 0.4);
  color: #F5C6C3;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
  letter-spacing: 0.03em;
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.1;
}

.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 40px;
  font-weight: 300;
  letter-spacing: 0.02em;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero .btn-outline {
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.hero .btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

/* PAGE HERO (for inner pages) */
.page-hero {
  background: var(--cream-warm);
  padding: 80px 0 60px;
  border-bottom: 1px solid var(--border);
}

.matcha-hero {
  background: var(--matcha-green);
}

.dark-hero {
  background: var(--section-dark);
}

.dark-hero h1, .dark-hero .page-hero-badge, .dark-hero .page-hero-sub {
  color: var(--white);
}

.dark-hero .page-hero-badge {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
}

.page-hero .container { max-width: 800px; }

.page-hero-badge {
  display: inline-block;
  background: rgba(192, 57, 43, 0.08);
  border: 1px solid rgba(192, 57, 43, 0.2);
  color: var(--red);
  font-size: 13px;
  font-weight: 500;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
  letter-spacing: 0.03em;
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 16px;
}

.page-hero-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 600px;
}

/* HIGHLIGHTS */
.highlights {
  padding: 80px 0;
  background: var(--white);
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}

.highlight-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--cream);
  border-radius: 8px;
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}

.highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.highlight-icon { font-size: 36px; margin-bottom: 16px; }

.highlight-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  margin-bottom: 10px;
}

.highlight-card p { font-size: 15px; color: var(--text-muted); }

.dark-card {
  background: var(--section-dark);
  border-color: rgba(255,255,255,0.08);
}
.dark-card h3 { color: var(--white); }
.dark-card p { color: rgba(255,255,255,0.6); }

/* ABOUT STRIP */
.about-strip {
  padding: 80px 0;
  background: var(--cream-warm);
}

.about-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-strip-text h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.about-strip-text p {
  color: var(--text-muted);
  margin-bottom: 16px;
}

.about-strip-text .btn { margin-top: 8px; }

.about-strip-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.stat {
  background: var(--white);
  padding: 28px 20px;
  border-radius: 8px;
  border: 1px solid var(--border);
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label { font-size: 13px; color: var(--text-muted); line-height: 1.4; }

/* SECTION COMMON */
.section-sub {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 40px;
  max-width: 600px;
}

/* MENU PREVIEW */
.menu-preview {
  padding: 80px 0;
  background: var(--white);
  text-align: center;
}

.menu-preview h2 { font-size: 2.4rem; margin-bottom: 12px; }

.menu-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-bottom: 48px;
  text-align: left;
}

.menu-preview-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px 24px;
}

.menu-preview-card h3 {
  font-size: 18px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--red);
}

.menu-preview-card ul { list-style: none; }

.menu-preview-card li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  gap: 12px;
}

.menu-preview-card li:last-child { border-bottom: none; }

.price { font-weight: 600; color: var(--dark); white-space: nowrap; }
.signature { color: var(--red); }
.fan-fav { color: var(--red); }

/* VISIT STRIP */
.dark-section {
  background: var(--section-dark);
  color: var(--white);
  padding: 80px 0;
}

.dark-section h2 { color: var(--white); font-size: 2rem; margin-bottom: 16px; }
.dark-section p { color: rgba(255,255,255,0.75); margin-bottom: 32px; }

.visit-strip-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  align-items: flex-start;
  justify-content: space-between;
}

.visit-strip-inner h2 { flex: 0 0 100%; }

.visit-details {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  flex: 1;
}

.visit-item { display: flex; flex-direction: column; gap: 6px; }
.visit-item strong { font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.5); }
.visit-item span { font-size: 15px; color: var(--white); line-height: 1.5; }

/* MATCHA STRIP */
.matcha-strip {
  padding: 80px 0;
  background: var(--matcha-green);
}

.matcha-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.matcha-text h2 { font-size: 2rem; margin-bottom: 16px; }
.matcha-text p { color: var(--text-muted); margin-bottom: 24px; }

.matcha-flavours {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.flavour-pill {
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(0,0,0,0.1);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
}

.fan-fav-pill {
  background: var(--white);
  border-color: var(--red);
  color: var(--red);
  font-weight: 600;
}

/* SISTER VENUE */
.sister-venue { padding: 80px 0; background: var(--white); }

.sister-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.sister-badge {
  display: inline-block;
  background: rgba(192, 57, 43, 0.08);
  color: var(--red);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.sister-text h2 { font-size: 2.2rem; margin-bottom: 16px; }
.sister-text p { color: var(--text-muted); margin-bottom: 16px; }

.sister-details {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin: 20px 0 28px;
  font-size: 14px;
  color: var(--text-muted);
}

.sister-details span {
  background: var(--cream-warm);
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid var(--border);
}

/* MENU PAGE */
.menu-section { padding: 60px 0 80px; }

.menu-note {
  background: var(--cream-warm);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 14px 20px;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 48px;
}

.menu-category {
  margin-bottom: 56px;
}

.menu-category h2 {
  font-size: 1.8rem;
  margin-bottom: 4px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--red);
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.menu-subtitle {
  font-size: 14px;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text-muted);
  font-style: italic;
}

.category-note {
  font-size: 14px;
  color: var(--text-muted);
  margin: 8px 0 20px;
  font-style: italic;
}

.menu-items { margin-top: 8px; }

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  gap: 16px;
}

.menu-item:last-child { border-bottom: none; }

.item-name { font-size: 15px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.item-price { font-size: 15px; font-weight: 600; color: var(--dark); white-space: nowrap; }

.tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 2px 8px;
  border-radius: 100px;
}

.vg { background: #E8F4E8; color: #2D7A2D; }
.signature-tag { background: rgba(192, 57, 43, 0.1); color: var(--red); }
.fan-fav-tag { background: rgba(192, 57, 43, 0.1); color: var(--red); }
.wellness-tag { background: var(--matcha-green); color: #3A6B35; }
.freshly-pressed { background: #FFF3E0; color: #E65100; }

.signature-item { background: rgba(192, 57, 43, 0.03); border-radius: 4px; padding-left: 8px; padding-right: 8px; }
.fan-fav-item { background: rgba(192, 57, 43, 0.03); border-radius: 4px; padding-left: 8px; padding-right: 8px; }
.menu-item.no-price { cursor: default; }
.menu-item.no-price .item-name { color: var(--dark); }
.item-note { font-size: 12px; color: var(--text-muted); font-weight: 400; font-style: italic; margin-left: 4px; }

.matcha-category h2 { border-color: #5B8A52; }

.menu-footer-note {
  background: var(--cream-warm);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 20px 24px;
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 48px;
}

.menu-footer-note p + p { margin-top: 8px; }

/* MATCHA PAGE */
.matcha-intro { padding: 80px 0; background: var(--white); }

.matcha-intro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.matcha-intro-text h2 { font-size: 2rem; margin-bottom: 20px; }
.matcha-intro-text p { color: var(--text-muted); margin-bottom: 16px; }

.matcha-badges {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.matcha-badge-card {
  background: var(--matcha-green);
  border: 1px solid rgba(91, 138, 82, 0.2);
  border-radius: 8px;
  padding: 20px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.matcha-badge-icon { font-size: 28px; flex-shrink: 0; }
.matcha-badge-card h3 { font-size: 16px; margin-bottom: 6px; }
.matcha-badge-card p { font-size: 14px; color: var(--text-muted); }

.matcha-menu { padding: 80px 0; background: var(--cream-warm); }
.matcha-menu h2 { font-size: 2.4rem; text-align: center; margin-bottom: 12px; }
.matcha-menu .section-sub { text-align: center; margin: 0 auto 48px; }

.matcha-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.matcha-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px 24px;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}

.matcha-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.matcha-card-name { font-family: var(--font-heading); font-size: 20px; margin-bottom: 6px; }
.matcha-card-price { font-size: 18px; font-weight: 600; color: var(--red); margin-bottom: 14px; }
.matcha-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

.fan-fav-card {
  border-color: var(--red);
  border-width: 2px;
}

.fan-fav-ribbon, .wellness-ribbon {
  position: absolute;
  top: -1px;
  right: 16px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 0 0 6px 6px;
}

.fan-fav-ribbon {
  background: var(--red);
  color: var(--white);
}

.wellness-ribbon {
  background: #3A6B35;
  color: var(--white);
}

.matcha-cta.dark-section { text-align: center; }
.matcha-cta h2 { font-size: 2.2rem; margin-bottom: 16px; }

/* ABOUT PAGE */
.about-story { padding: 80px 0; }

.about-story-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: start;
}

.about-text h2 {
  font-size: 1.8rem;
  margin: 32px 0 16px;
}

.about-text h2:first-of-type { margin-top: 0; }

.about-text p {
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 88px;
}

.about-fact-card {
  background: var(--cream-warm);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
  text-align: center;
}

.fact-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
  margin-bottom: 8px;
}

.fact-label { font-size: 14px; color: var(--text-muted); line-height: 1.5; }

.about-detail-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
}

.about-detail-card h3 { font-size: 16px; margin-bottom: 16px; }

.about-detail-card ul { list-style: none; }

.about-detail-card li {
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 8px;
}

.about-detail-card li:last-child { border-bottom: none; }

.about-cta-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* GALLERY */
.gallery-section { padding: 60px 0 80px; }

.gallery-intro {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 56px;
  max-width: 700px;
}

.gallery-category { margin-bottom: 64px; }

.gallery-category h2 { font-size: 1.8rem; margin-bottom: 10px; }
.gallery-category p { color: var(--text-muted); font-size: 15px; margin-bottom: 24px; max-width: 600px; }

.gallery-placeholder-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}

.gallery-placeholder {
  aspect-ratio: 4/3;
  background: var(--cream-warm);
  border: 1px dashed var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 13px;
  font-style: italic;
}

.gallery-placeholder.matcha-bg { background: var(--matcha-green); }

.gallery-about-text {
  max-width: 760px;
  margin: 56px auto 0;
  text-align: center;
}

.gallery-about-text p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.gallery-instagram-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--dark) !important;
}

.gallery-instagram-link a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.gallery-instagram-link a:hover { text-decoration: underline; }

.gallery-instagram-cta {
  text-align: center;
  background: var(--cream-warm);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 48px;
  margin-top: 48px;
}

.gallery-instagram-cta h2 { font-size: 2rem; margin-bottom: 12px; }
.gallery-instagram-cta p { color: var(--text-muted); margin-bottom: 28px; }

/* PŪBLICO */
.publico-intro { padding: 80px 0; background: var(--white); }

.publico-intro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.publico-text h2 { font-size: 2rem; margin-bottom: 20px; }
.publico-text p { color: var(--text-muted); margin-bottom: 16px; }

.publico-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.detail-card {
  background: var(--cream-warm);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px 24px;
}

.detail-card h3 { font-size: 15px; margin-bottom: 12px; font-family: var(--font-heading); }
.detail-card p { font-size: 14px; color: var(--text-muted); margin-bottom: 6px; }
.detail-card ul { list-style: none; }
.detail-card li { font-size: 14px; color: var(--text-muted); padding: 4px 0; }
.detail-card li::before { content: "· "; color: var(--red); }

.publico-highlights {
  padding: 80px 0;
  background: var(--section-dark);
}

.publico-highlights h2 { color: var(--white); font-size: 2rem; margin-bottom: 40px; text-align: center; }

.publico-cta.dark-section, .back-to-mbc { padding: 64px 0; }
.publico-cta h2, .publico-cta p { margin-bottom: 12px; }
.publico-cta p { margin-bottom: 28px; }
.back-to-mbc { background: var(--cream-warm); }
.back-to-mbc h2 { font-size: 2rem; margin-bottom: 12px; }
.back-to-mbc p { color: var(--text-muted); margin-bottom: 28px; }

/* BLOG */
.blog-section { padding: 60px 0 80px; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.featured-post {
  background: var(--cream-warm);
  grid-column: 1 / -1;
  max-width: 700px;
}

.blog-card-meta {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
}

.blog-category {
  background: rgba(192, 57, 43, 0.08);
  color: var(--red);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
}

.blog-date { font-size: 13px; color: var(--text-muted); }

.blog-card h2 { font-size: 1.4rem; margin-bottom: 12px; }
.blog-card h2 a { color: var(--dark); }
.blog-card h2 a:hover { color: var(--red); text-decoration: none; }
.blog-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }

.read-more { font-size: 14px; font-weight: 600; color: var(--red); }
.read-more:hover { text-decoration: underline; }

.coming-soon-tag {
  display: inline-block;
  background: var(--cream);
  border: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-muted);
  padding: 3px 10px;
  border-radius: 100px;
}

/* BLOG POST */
.blog-post-article { padding-bottom: 80px; }

.blog-post-hero {
  background: var(--cream-warm);
  padding: 80px 0 60px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 60px;
}

.blog-post-meta {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.back-link {
  font-size: 14px;
  color: var(--text-muted);
}

.back-link:hover { color: var(--red); }

.blog-post-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  max-width: 800px;
  margin-bottom: 20px;
}

.blog-post-intro {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 700px;
  line-height: 1.7;
}

.blog-post-body {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 60px;
  align-items: start;
}

.blog-post-content h2 {
  font-size: 1.7rem;
  margin: 36px 0 16px;
}

.blog-post-content h2:first-child { margin-top: 0; }

.blog-post-content p {
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.8;
  font-size: 16px;
}

.blog-post-cta-box {
  background: var(--cream-warm);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 32px;
  margin-top: 40px;
  text-align: center;
}

.blog-post-cta-box h3 { font-size: 1.5rem; margin-bottom: 8px; }
.blog-post-cta-box p { font-size: 14px; color: var(--text-muted); margin-bottom: 24px; }

.blog-post-cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.blog-post-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 88px;
}

.sidebar-card {
  background: var(--cream-warm);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
}

.sidebar-card h3 { font-size: 16px; margin-bottom: 16px; }
.sidebar-card ul { list-style: none; }
.sidebar-card li { font-size: 14px; color: var(--text-muted); padding: 6px 0; border-bottom: 1px solid var(--border); }
.sidebar-card li:last-child { border-bottom: none; }
.sidebar-card li strong { color: var(--dark); }

/* FAQ */
.faq-section { padding: 60px 0 80px; }

.faq-container { max-width: 800px; }

.faq-list { margin-bottom: 64px; }

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}

.faq-item:last-child { border-bottom: none; }

.faq-question {
  font-size: 1.15rem;
  margin-bottom: 14px;
  cursor: default;
}

.faq-answer p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 8px;
}

.faq-answer p:last-child { margin-bottom: 0; }

.faq-cta {
  background: var(--cream-warm);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 40px;
  text-align: center;
}

.faq-cta h2 { font-size: 1.8rem; margin-bottom: 12px; }
.faq-cta p { color: var(--text-muted); margin-bottom: 28px; }

.faq-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* FIND US */
.find-us-section { padding: 60px 0 80px; }

.find-us-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.find-us-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.find-us-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
}

.find-us-card h2 { font-size: 1.3rem; margin-bottom: 14px; }
.find-us-card p { font-size: 14px; color: var(--text-muted); margin-bottom: 8px; line-height: 1.6; }
.find-us-card p:last-child { margin-bottom: 16px; }
.find-us-card ul { list-style: none; }
.find-us-card li { font-size: 14px; color: var(--text-muted); padding: 4px 0; }

.hours-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 16px;
  margin-bottom: 16px;
}

.day { font-size: 14px; color: var(--dark); font-weight: 500; }
.time { font-size: 14px; color: var(--text-muted); }

.hours-note {
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 0 !important;
}

.find-us-map { display: flex; flex-direction: column; gap: 20px; }

.map-embed-wrapper {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.map-links { display: flex; gap: 12px; flex-wrap: wrap; }

/* 404 */
.error-page {
  padding: 120px 0;
  text-align: center;
}

.error-code {
  font-family: var(--font-heading);
  font-size: 8rem;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  margin-bottom: 24px;
}

.error-page h1 { font-size: 2rem; margin-bottom: 16px; }

.error-sub {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.error-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.error-info {
  font-size: 14px;
  color: var(--text-muted);
}

/* FOOTER */
.site-footer {
  background: var(--footer-bg);
  color: rgba(255,255,255,0.75);
  padding: 64px 0 0;
}

.footer-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.footer-logo .logo-mykonos { color: var(--white); }
.footer-logo .logo-brunch { color: var(--red); }
.footer-logo .logo-club { color: var(--white); }

.footer-tagline {
  font-size: 14px;
  margin-bottom: 6px;
  color: rgba(255,255,255,0.5);
}

.footer-rating {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

.site-footer h3 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}

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

.footer-nav a {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  transition: color 0.2s;
  text-decoration: none;
}

.footer-nav a:hover { color: var(--white); }

.footer-info p {
  font-size: 14px;
  margin-bottom: 6px;
  line-height: 1.6;
  color: rgba(255,255,255,0.65);
}

.footer-info a { color: rgba(255,255,255,0.65); }
.footer-info a:hover { color: var(--white); }

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social-link {
  display: inline-block;
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s;
}

.social-link:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

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

.footer-bottom a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
}

.footer-bottom a:hover { color: rgba(255,255,255,0.7); }

.menu-preview-cta { text-align: center; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .about-strip-inner,
  .matcha-strip-inner,
  .matcha-intro-inner,
  .publico-intro-inner,
  .find-us-inner,
  .about-story-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-strip-stats {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .blog-post-body {
    grid-template-columns: 1fr;
  }

  .blog-post-sidebar {
    position: static;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 16px;
    flex-direction: column;
    gap: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  }

  .nav-links.open { display: flex; }

  .nav-links a { display: block; padding: 10px 14px; }

  .nav-toggle { display: flex; }

  .site-header { position: relative; }

  .hero { min-height: 60vh; }

  .hero h1 { font-size: 2.2rem; }

  .about-strip-stats {
    grid-template-columns: 1fr 1fr;
  }

  .visit-strip-inner { flex-direction: column; }

  .footer-container { grid-template-columns: 1fr; }

  .blog-grid { grid-template-columns: 1fr; }

  .featured-post { grid-column: 1; }
}

@media (max-width: 480px) {
  .hero-actions, .error-actions { flex-direction: column; }
  .about-strip-stats { grid-template-columns: 1fr 1fr; }
  .faq-cta-buttons, .blog-post-cta-buttons { flex-direction: column; }
  .map-links { flex-direction: column; }
}
