/* ============================================================
   ÎN BUCĂTĂRIA MAMEI — Style Sheet
   Palette: cream ivory background, warm brown, soft gold accents
   ============================================================ */

/* ── Custom Properties ──────────────────────────────────── */
:root {
  --cream:        #F5EFE4;   /* main page background — matches logo bg */
  --cream-dark:   #EDE4D4;   /* slightly deeper cream for sections */
  --cream-mid:    #EAE0CE;   /* card surfaces */
  --ivory:        #FAF6EE;   /* lightest surface */
  --brown-deep:   #2C1A0E;   /* darkest brown — logo color */
  --brown:        #4A2C17;   /* primary text, dark elements */
  --brown-mid:    #6B3D22;   /* medium brown */
  --brown-light:  #8B5A3C;   /* muted brown */
  --warm-stone:   #A07850;   /* stone accent */
  --gold:         #B8892A;   /* refined gold — buttons, accents */
  --gold-light:   #D4A94A;   /* hover gold */
  --gold-pale:    #E8D09A;   /* very light gold for borders */
  --sand:         #C8AA80;   /* sand tone */
  --text-main:    #3A2010;   /* body text */
  --text-muted:   #7A5C40;   /* secondary text */
  --text-light:   #A88060;   /* captions, labels */
  --border:       rgba(74,44,23,.12);
  --border-gold:  rgba(184,137,42,.25);
  --wa-green:     #25D366;
  --shadow-sm:    0 2px 12px rgba(44,26,14,.06);
  --shadow-md:    0 4px 24px rgba(44,26,14,.10);
  --shadow-lg:    0 8px 40px rgba(44,26,14,.14);
  --radius:       3px;
  --radius-md:    6px;
  --radius-pill:  50px;
  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-sans:    'Jost', system-ui, sans-serif;
  --transition:   0.22s ease;
}

/* ── Reset & Base ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--text-main);
  font-weight: 300;
  line-height: 1.65;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}

/* ── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.15;
  color: var(--brown-deep);
}
h1 { font-size: clamp(2.4rem, 6vw, 4rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
p  { color: var(--text-muted); }

/* ── LANGUAGE SWITCHER ──────────────────────────────────── */
.lang-bar {
  background: var(--brown-deep);
  padding: 8px 32px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 6px;
}
.lang-btn {
  background: transparent;
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.6);
  padding: 4px 11px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1px;
  cursor: pointer;
  border-radius: var(--radius-pill);
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}
.lang-btn:hover {
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.9);
  border-color: rgba(255,255,255,.3);
}
.lang-btn.active {
  background: var(--gold);
  color: var(--brown-deep);
  border-color: var(--gold);
  font-weight: 500;
}

/* ── SITE HEADER ────────────────────────────────────────── */
.site-header {
  background: var(--ivory);
  border-bottom: 1px solid var(--border-gold);
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}
.site-header-logo {
  height: 52px;
  width: auto;
}
.site-header-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--brown-deep);
  white-space: nowrap;
}
.site-header-name span {
  display: block;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 2px;
}
.site-header-left {
  display: flex;
  align-items: center;
  gap: 14px;
}
.site-header-contact {
  display: flex;
  align-items: center;
  gap: 14px;
}
.header-phone {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--brown);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition);
}
.header-phone:hover { color: var(--gold); }
@media (max-width: 640px) {
  .site-header { padding: 14px 18px; }
  .site-header-name { display: none; }
  .header-phone { font-size: .9rem; }
}

/* ── HERO ───────────────────────────────────────────────── */
.hero {
  background: var(--cream);
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 72px 24px 60px;
  position: relative;
  overflow: hidden;
}
/* subtle linen texture via CSS */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 28px,
      rgba(74,44,23,.018) 28px,
      rgba(74,44,23,.018) 29px
    );
  pointer-events: none;
}
.hero-logo {
  width: clamp(160px, 30vw, 240px);
  height: auto;
  margin-bottom: 32px;
  position: relative;
  filter: drop-shadow(0 6px 24px rgba(44,26,14,.10));
  animation: logoIn 1s cubic-bezier(.4,0,.2,1) both;
}
@keyframes logoIn {
  from { opacity:0; transform: translateY(14px) scale(.97); }
  to   { opacity:1; transform: translateY(0) scale(1); }
}
.hero-tag {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--warm-stone);
  margin-bottom: 14px;
  animation: fadeUp 1s .15s ease both;
}
.hero h1 {
  color: var(--brown-deep);
  margin-bottom: 14px;
  animation: fadeUp 1s .22s ease both;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2.8vw, 1.55rem);
  font-weight: 600;
  color: var(--brown-deep);
  max-width: 580px;
  margin: 0 auto 10px;
  line-height: 1.45;
  letter-spacing: 0.01em;
  animation: fadeUp 1s .28s ease both;
}
.hero-sub {
  font-family: var(--font-serif);
  font-size: clamp(.95rem, 2vw, 1.15rem);
  font-style: italic;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto 30px;
  line-height: 1.7;
  animation: fadeUp 1s .35s ease both;
}
.hero-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 auto 36px;
  width: 180px;
  animation: fadeUp 1s .36s ease both;
}
.hero-divider::before,
.hero-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-pale), transparent);
}
.hero-divider-leaf {
  color: var(--gold);
  font-size: 14px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 32px;
  animation: fadeUp 1s .42s ease both;
}
.hero-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeUp 1s .50s ease both;
}
.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--sand);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  animation: fadeUp 1s .7s ease both, cueBounce 2.5s 2s infinite;
}
@keyframes cueBounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(7px); }
}

/* ── INFO BAND ──────────────────────────────────────────── */
.info-band {
  background: var(--brown-deep);
  padding: 16px 24px;
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.info-band-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(245,239,228,.65);
  letter-spacing: .3px;
}
.info-band-item strong { color: var(--gold-pale); font-weight: 500; }

/* ── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
  line-height: 1;
}
/* Primary — gold fill */
.btn-primary {
  background: var(--gold);
  color: var(--ivory);
  box-shadow: 0 2px 12px rgba(184,137,42,.25);
}
.btn-primary:hover {
  background: var(--brown-mid);
  box-shadow: 0 4px 20px rgba(107,61,34,.30);
  transform: translateY(-1px);
}
/* Secondary — outline */
.btn-secondary {
  background: transparent;
  color: var(--brown-deep);
  border: 1.5px solid var(--gold-pale);
}
.btn-secondary:hover {
  border-color: var(--gold);
  background: rgba(184,137,42,.06);
}
/* Ghost — dark outline on dark bg */
.btn-ghost {
  background: rgba(245,239,228,.06);
  color: rgba(245,239,228,.75);
  border: 1px solid rgba(245,239,228,.18);
}
.btn-ghost:hover {
  background: rgba(245,239,228,.12);
  color: var(--gold-pale);
  border-color: rgba(232,208,154,.4);
}
/* WhatsApp — intentionally quiet, just the icon */
.btn-wa {
  background: transparent;
  color: var(--text-muted);
  border: 1.5px solid var(--border);
  padding: 10px 20px;
}
.btn-wa:hover {
  border-color: var(--wa-green);
  color: var(--wa-green);
  background: rgba(37,211,102,.05);
}
.btn-wa-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--wa-green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.btn-wa-icon svg { width: 11px; height: 11px; fill: white; }

/* WhatsApp CTA after form submit */
.btn-wa-cta {
  background: var(--ivory);
  color: var(--brown);
  border: 1.5px solid var(--gold-pale);
  padding: 14px 28px;
  font-size: 13px;
}
.btn-wa-cta:hover {
  border-color: var(--wa-green);
  color: #1a9e52;
  box-shadow: 0 2px 14px rgba(37,211,102,.12);
}
.btn-wa-cta .btn-wa-icon { width: 22px; height: 22px; }
.btn-wa-cta .btn-wa-icon svg { width: 13px; height: 13px; }

/* Submit button */
.btn-submit {
  width: 100%;
  background: var(--brown-deep);
  color: var(--gold-pale);
  border: none;
  padding: 15px 24px;
  font-size: 12px;
  letter-spacing: 2.5px;
  margin-top: 6px;
  box-shadow: var(--shadow-sm);
}
.btn-submit:hover {
  background: var(--brown-mid);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-submit:disabled { background: var(--text-light); cursor: not-allowed; transform: none; box-shadow: none; }

/* Social pill buttons */
.btn-social {
  background: rgba(245,239,228,.07);
  color: rgba(245,239,228,.7);
  border: 1px solid rgba(245,239,228,.14);
  padding: 8px 16px;
  font-size: 11px;
  letter-spacing: 1px;
  border-radius: var(--radius-pill);
}
.btn-social:hover {
  background: rgba(245,239,228,.14);
  color: var(--gold-pale);
  border-color: rgba(232,208,154,.3);
}

/* Online section buttons */
.btn-online {
  background: var(--ivory);
  color: var(--brown);
  border: 1px solid var(--border-gold);
  padding: 11px 20px;
  font-size: 11.5px;
  letter-spacing: .8px;
  border-radius: var(--radius-md);
}
.btn-online:hover {
  background: var(--cream-dark);
  border-color: var(--gold);
  color: var(--brown-deep);
  box-shadow: var(--shadow-sm);
}
.btn-online.review {
  background: rgba(184,137,42,.07);
  border-color: var(--gold-pale);
}
.btn-online.review:hover { background: rgba(184,137,42,.13); }

/* ── SECTION LAYOUT ─────────────────────────────────────── */
.section { padding: 76px 24px; }
.section-inner { max-width: 920px; margin: 0 auto; }
.section-alt { background: var(--cream-dark); }
.section-dark { background: var(--brown-deep); }

.section-label {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--warm-stone);
  margin-bottom: 10px;
  text-align: center;
}
.section-title {
  text-align: center;
  margin-bottom: 10px;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-subtitle {
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 48px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.ornament {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 auto 20px;
  width: 140px;
}
.ornament::before, .ornament::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-gold);
}
.ornament-glyph { color: var(--gold); font-size: 12px; }

/* ── DISH GRID ──────────────────────────────────────────── */
.dish-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 2px;
}
.dish-item {
  background: var(--ivory);
  padding: 24px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: background var(--transition);
  border: 1px solid transparent;
}
.dish-item:hover {
  background: var(--cream-mid);
  border-color: var(--border-gold);
}
.dish-icon { font-size: 1.5rem; flex-shrink: 0; }
.dish-name {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--brown-deep);
}

/* ── QUOTE / STORY ──────────────────────────────────────── */
.story-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 3vw, 1.75rem);
  font-style: italic;
  color: var(--gold-pale);
  line-height: 1.55;
  margin-bottom: 16px;
  text-align: center;
}
.story-cite {
  font-size: 11px;
  color: rgba(200,170,128,.6);
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
}
.story-facts {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(145px, 1fr));
  gap: 20px;
  text-align: left;
}
.story-fact {
  border-left: 2px solid rgba(200,170,128,.3);
  padding-left: 14px;
}
.story-fact-label {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.story-fact-value {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--gold-pale);
  line-height: 1.3;
}

/* ── RESERVATION SECTION ────────────────────────────────── */
.tabs {
  display: flex;
  border-bottom: 1px solid var(--border-gold);
  margin-bottom: 32px;
}
.tab {
  flex: 1;
  padding: 14px 16px;
  text-align: center;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}
.tab.active {
  color: var(--brown-deep);
  border-bottom-color: var(--gold);
}
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fadeUp .3s ease; }

/* ── FORMS ──────────────────────────────────────────────── */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-grid.col1 { grid-template-columns: 1fr; }
@media (max-width: 540px) { .form-grid { grid-template-columns: 1fr; } }

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
}

input[type=text], input[type=tel], input[type=email],
input[type=date], input[type=number], select, textarea {
  background: var(--ivory);
  border: 1.5px solid var(--border);
  padding: 11px 14px;
  font-size: 14px;
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--text-main);
  border-radius: var(--radius);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
  appearance: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,137,42,.10);
  background: #FFFDF8;
}
input::placeholder, textarea::placeholder { color: var(--text-light); opacity: .7; }
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23A07850' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
  padding-right: 34px;
  cursor: pointer;
}
textarea { min-height: 85px; resize: vertical; }

.form-info {
  background: rgba(184,137,42,.07);
  border-left: 3px solid var(--gold-pale);
  padding: 12px 16px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 18px;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.form-info strong { color: var(--gold); font-weight: 500; }

.group-warn {
  display: none;
  background: rgba(74,44,23,.05);
  border: 1px solid var(--border-gold);
  padding: 14px 18px;
  text-align: center;
  margin: 12px 0;
  border-radius: var(--radius-md);
}
.group-warn.visible { display: block; animation: fadeUp .3s ease; }
.group-warn p { font-size: 13px; color: var(--text-muted); margin-bottom: 10px; }
.group-warn a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--brown);
  text-decoration: none;
  letter-spacing: .5px;
}

.field-error {
  color: #B03030;
  font-size: 11px;
  margin-top: 3px;
  display: none;
}
.field-error.visible { display: block; }

.backend-error {
  display: none;
  background: rgba(176,48,48,.06);
  border-left: 3px solid #B03030;
  padding: 11px 15px;
  font-size: 13px;
  color: #8B2020;
  line-height: 1.5;
  margin-top: 10px;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.backend-error.visible { display: block; animation: fadeUp .3s ease; }

.form-note {
  margin-top: 10px;
  text-align: center;
  font-size: 11px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ── SUCCESS / WA STEP ──────────────────────────────────── */
.success-wrap { display: none; }
.success-wrap.visible { display: block; animation: fadeUp .5s ease; }

.success-card {
  background: var(--ivory);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.success-icon { font-size: 2.6rem; margin-bottom: 14px; }
.success-card h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--brown-deep);
  margin-bottom: 10px;
}
.success-card p { font-size: 14px; color: var(--text-muted); max-width: 440px; margin: 0 auto 24px; line-height: 1.7; }

.wa-step {
  background: var(--cream-dark);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  margin-top: 16px;
}
.wa-step p { font-size: 13px; color: var(--text-muted); margin-bottom: 14px; line-height: 1.6; }
.wa-note { font-size: 11px; color: var(--text-light); margin-top: 10px; letter-spacing: .3px; }


/* ══════════════════════════════════════════════════════════
   BRANDED SOCIAL BUTTONS — platform colors, elegant, refined
   ══════════════════════════════════════════════════════════ */

/* Online section — row of brand buttons */
.online-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Base for all branded online buttons */
.btn-brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 20px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;       /* bumped from 400 — improves legibility at small size */
  letter-spacing: .4px;
  text-decoration: none;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .22s ease;
  white-space: nowrap;
  line-height: 1;
  background: var(--ivory);
  color: var(--brown-deep);   /* darkest brown — strong contrast on ivory */
  border-color: var(--border-gold);
}
.btn-brand:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(44,26,14,.12); color: var(--brown-deep); }

/* Brand icon wrapper */
.brand-icon {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.brand-icon svg { width: 13px; height: 13px; display: block; }

/* Instagram — warm gradient identity */
.btn-brand.ig .brand-icon {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}
.btn-brand.ig:hover { border-color: #e6683c; background: #fff8f5; color: #c04a20; }

/* Facebook — calm blue */
.btn-brand.fb .brand-icon { background: #1877F2; }
.btn-brand.fb:hover { border-color: #1877F2; background: #f0f5ff; color: #1255b0; }

/* WhatsApp — signature green */
.btn-brand.wa .brand-icon { background: #25D366; }
.btn-brand.wa:hover { border-color: #25D366; background: #f0fff5; color: #1a9a4a; }

/* Google Maps — Maps red/blue */
.btn-brand.maps .brand-icon { background: #4285F4; }
.btn-brand.maps:hover { border-color: #4285F4; background: #f0f5ff; color: #2c5fb5; }

/* Google Reviews — star gold */
.btn-brand.review .brand-icon { background: #F9AB00; }
.btn-brand.review:hover { border-color: #F9AB00; background: #fffdf0; color: #8a6000; }

/* Email — warm neutral */
.btn-brand.email .brand-icon { background: var(--brown-mid); }
.btn-brand.email:hover { border-color: var(--gold); background: var(--cream-dark); }

/* Phone */
.btn-brand.phone .brand-icon { background: var(--verde-wa, #25D366); }
.btn-brand.phone:hover { border-color: #25D366; background: #f0fff5; }

/* ── CONTACT GRID — branded treatment ───────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 2px;
}
.contact-item {
  background: var(--brown-mid);
  padding: 24px 20px;
  text-decoration: none;
  transition: background .22s;
  display: block;
}
.contact-item:hover { background: var(--brown); }
.contact-item-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.contact-item-icon {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item-icon svg { width: 10px; height: 10px; display: block; }
.contact-item-icon.ig  { background: linear-gradient(135deg,#f09433,#e6683c 40%,#dc2743 70%,#bc1888); }
.contact-item-icon.fb  { background: #1877F2; }
.contact-item-icon.wa  { background: #25D366; }
.contact-item-icon.maps{ background: #4285F4; }
.contact-item-icon.rev { background: #F9AB00; }
.contact-item-icon.mail{ background: var(--brown-light); }
.contact-item-icon.tel { background: #5dbd84; }
.contact-item-value {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--gold-pale);
  line-height: 1.4;
}

/* ── FOOTER SOCIAL — slim with brand dots ────────────────── */
.footer-social {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(200,170,128,.5);
  text-decoration: none;
  transition: color .2s;
}
.footer-social a:hover { color: var(--gold-pale); }
.footer-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
  opacity: .7;
}
.footer-dot.ig   { background: #e6683c; }
.footer-dot.fb   { background: #1877F2; }
.footer-dot.maps { background: #4285F4; }
.footer-dot.rev  { background: #F9AB00; }
.footer-dot.ta   { background: #00af87; }
.footer-dot.mail { background: var(--warm-stone); }

/* ── HERO SOCIAL BUTTONS — ghost with brand hint ─────────── */
.btn-social {
  background: rgba(245,239,228,.07);
  color: rgba(245,239,228,.75);
  border: 1px solid rgba(245,239,228,.14);
  padding: 8px 15px;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  transition: all .2s;
}
.btn-social:hover { background: rgba(245,239,228,.14); color: var(--gold-pale); border-color: rgba(232,200,122,.3); }
.btn-social .hsicon {
  width: 16px; height: 16px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.btn-social .hsicon svg { width: 9px; height: 9px; display: block; }
.btn-social.ig  .hsicon { background: linear-gradient(135deg,#f09433,#e6683c 40%,#dc2743 70%,#bc1888); }
.btn-social.fb  .hsicon { background: #1877F2; }
.btn-social.maps .hsicon{ background: #4285F4; }
.btn-social.wa  .hsicon { background: #25D366; }


/* ── FOOTER ─────────────────────────────────────────────── */
footer {
  background: var(--brown-deep);
  padding: 44px 24px 28px;
}
.footer-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.footer-logo {
  height: 64px;
  width: auto;
  margin-bottom: 20px;
  opacity: .7;
}
.footer-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: rgba(200,170,128,.55);
  margin-bottom: 22px;
}
.footer-social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.footer-social a {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(200,170,128,.45);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-social a:hover { color: var(--gold-pale); }
.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,170,128,.15), transparent);
  margin-bottom: 18px;
}
.footer-copy {
  font-size: 10px;
  color: rgba(200,170,128,.28);
  letter-spacing: .5px;
}
.footer-copy a {
  color: rgba(184,137,42,.4);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-copy a:hover { color: var(--gold); }

/* ── LOADER ─────────────────────────────────────────────── */
.loader {
  display: none;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(245,239,228,.25);
  border-top-color: var(--gold-pale);
  border-radius: 50%;
  animation: spin .8s linear infinite;
}
.loader.visible { display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ── UTILITIES ──────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp .6s ease both; }

/* ── ADMIN OVERRIDES (kept minimal, separate from public) ── */
body.admin-body {
  background: #141008;
  color: #e8ddd0;
}

/* ── PLATFORM ICONS inside buttons ─────────────────────── */
.btn-icon, .social-icon, .ct-icon, .footer-icon, .header-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  vertical-align: middle;
}
.btn-icon svg, .social-icon svg, .ct-icon svg, .footer-icon svg, .header-icon svg {
  display: block;
}
.btn-icon    { width: 16px; height: 16px; }
.btn-icon svg { width: 16px; height: 16px; }
.social-icon  { width: 14px; height: 14px; opacity: .75; }
.social-icon svg { width: 14px; height: 14px; }
.ct-icon      { width: 15px; height: 15px; margin-right: 4px; opacity: .7; }
.ct-icon svg  { width: 15px; height: 15px; }
.footer-icon  { width: 13px; height: 13px; opacity: .6; }
.footer-icon svg { width: 13px; height: 13px; }
.header-icon  { width: 14px; height: 14px; }
.header-icon svg { width: 14px; height: 14px; }

/* WA icon inside contact items */
.ct-wa-icon { display: inline-flex; align-items: center; margin-right: 4px; }
.ct-wa-icon .btn-wa-icon { width: 16px; height: 16px; }

/* ── FIELD HINT ─────────────────────────────────────────── */
.field-hint {
  font-size: 10.5px;
  color: var(--text-light);
  margin-top: 4px;
  line-height: 1.4;
  letter-spacing: .2px;
  display: block;
}

/* No available slots message */
.no-slots-msg {
  display: block;
  font-size: 12px;
  color: #9C2820;
  background: rgba(156,40,32,.06);
  border-left: 3px solid #C05040;
  padding: 8px 12px;
  margin-top: 6px;
  border-radius: 0 var(--radius) var(--radius) 0;
  line-height: 1.5;
}

/* Online buttons: ensure icon + text align */
.btn-online { display: inline-flex; align-items: center; gap: 7px; }
.btn-online .btn-icon { opacity: .7; }
.btn-online:hover .btn-icon { opacity: 1; }

/* Footer social links with icons */
.footer-social a { display: inline-flex; align-items: center; gap: 5px; }

/* Contact item label flex */
.contact-item-label { display: flex; align-items: center; gap: 5px; }

/* Hero social with icons */
.btn-social { display: inline-flex; align-items: center; gap: 6px; }
