/* Color Palette */
:root {
  --black: #0D0D0D;
  --mocha: #3E2C2C;
  --beige: #EADBC8;
  --gold: #C5A572;
  --white: #ffffff;
  /* Hero image can be swapped easily */
  --hero-image: url('../hero1.jpg');
}

/* Base Reset */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--beige);
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: var(--beige); text-decoration: none; }
a:hover { color: var(--gold); }

.container { width: min(1160px, 92vw); margin: 0 auto; }

/* Typography */
.brand, .section-title, .eyebrow, h1, h2, h3 { font-family: 'Playfair Display', Georgia, 'Times New Roman', serif; }
.brand { font-size: clamp(2.4rem, 6vw, 5rem); letter-spacing: 0.02em; font-weight: 600; }
.tagline { color: #d1c2a6; opacity: 0.9; font-size: clamp(1rem, 2vw, 1.25rem); }
.section-title { font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--beige); text-align: center; margin: 0 0 1.25rem; }
.eyebrow { color: var(--gold); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; font-size: 0.95rem; }

/* Hero */
.hero {
  position: relative; min-height: 100vh; display: grid; place-items: center; text-align: center;
  background: #0b0b0b var(--hero-image) center/cover no-repeat;
}
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(13,13,13,0.55), rgba(13,13,13,0.88)); }
.hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(70% 60% at 50% 50%, rgba(0,0,0,0) 0%, rgba(0,0,0,.35) 100%); z-index: 0; }
.hero-content { position: relative; z-index: 1; max-width: 760px; padding: 0; border-radius: 0; background: transparent; border: none; backdrop-filter: none; }
.brand { text-shadow: 0 4px 30px rgba(0,0,0,.65), 0 1px 0 rgba(0,0,0,.4); }
.tagline { text-shadow: 0 2px 18px rgba(0,0,0,.6); }
.divider { height: 2px; width: 160px; background: linear-gradient(90deg, transparent, var(--gold), transparent); margin: 1rem auto 0; opacity: 0.9; }

/* Sections */
.section { padding: clamp(3rem, 6vw, 6rem) 0; }

/* About */
.grid-2 { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(1.5rem, 3vw, 3rem); align-items: center; }
.about .photo-frame { display:none; }
.about .about-copy { display:none; }
.gold-rule { height: 1px; width: 72px; background: var(--gold); margin: .5rem 0 1rem; }
.about p { color: #e8dcc8; opacity: 0.95; }

/* Story as card */
.cards-story { display: grid; grid-template-columns: 1fr; justify-items: center; width: 100%; margin: 0; }
.card.story { position: relative; background: transparent; border: none; box-shadow: none; width: 100%; max-width: 820px; }
.card.story .card-body { padding: 0; text-align: center; }
.card.story h3 { margin-top: 0; margin-bottom: .75rem; text-align: center; }
.sticker { display: none; }
.sticker-1 { display: none; }
.sticker-2 { display: none; }

/* About gallery */
.about-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: .5rem; margin-top: 1rem; }
.about-gallery img { width: 100%; height: 100%; object-fit: cover; border-radius: 10px; border: 1px solid rgba(197,165,114,.2); }

/* Specials */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.card { background: #151515; border: 1px solid rgba(197,165,114,.25); border-radius: 14px; overflow: hidden; transition: transform .35s ease, box-shadow .35s ease; position: relative; }
.card-media { aspect-ratio: 4/3; overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.02); transition: transform .5s ease; }
.card-body { padding: 1rem; }
.card h3 { margin: 0 0 .25rem; font-weight: 600; }
.card p { margin: 0; color: #d8cbb4; }
.card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,.45); }
.card:hover .card-media img { transform: scale(1.08); }
.badge { position: absolute; top: .75rem; left: .75rem; background: linear-gradient(135deg, #d5bd88, var(--gold)); color: #1a1a1a; font-weight: 700; padding: .35rem .5rem; border-radius: 999px; font-size: .72rem; letter-spacing: .04em; }
.highlight { border-color: rgba(197,165,114,.55); box-shadow: inset 0 0 0 1px rgba(197,165,114,.25); }

/* Story overrides to remove card chrome and fix alignment */
.about .cards-story { max-width: 860px; margin: 0 auto; }
.about .card.story { background: transparent; border: none; box-shadow: none; width: 100%; max-width: 760px; }
.about .card.story .card-body { padding: 0; }
.about .card.story h3 { text-align: left; }
.about .card.story p { text-align: left; }

/* Current Our Story structure centering (no card) */
#about .container > div { max-width: 820px; margin: 0 auto; text-align: center; }
#about .container > div h3 { text-align: center; color: var(--gold); }
#about .container > div p { text-align: center; }

/* Location */
.map-wrap { border-radius: 16px; overflow: hidden; border: 1px solid rgba(197,165,114,.25); box-shadow: 0 10px 36px rgba(0,0,0,.5); }
.map-wrap iframe { width: 100%; height: min(60vh, 520px); filter: grayscale(.15) contrast(1.05) brightness(.95); }
.contact { text-align: center; margin-top: 1rem; color: #e6d9c5; }

/* Two Maps Layout */
.maps-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin: 2rem 0; }
.map-branch { text-align: center; }
.branch-title { font-family: 'Playfair Display', Georgia, serif; font-size: 1.25rem; color: var(--gold); margin-bottom: 1rem; font-weight: 600; }
.branch-contact { margin-top: 1rem; color: #e6d9c5; }
.branch-contact p { margin: 0.25rem 0; }
.cta-wrap { text-align: center; margin-top: 1rem; display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn { display: inline-block; padding: .65rem 1rem; border-radius: 999px; border: 1px solid rgba(197,165,114,.4); color: var(--beige); background: #131313; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.btn:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(0,0,0,.35); background: #181818; }
.btn-order { border-color: var(--gold); color: var(--beige); }

/* Footer */
.footer { background: #0b0b0b; color: var(--beige); border-top: 1px solid rgba(197,165,114,.25); margin-top: 2rem; }
.footer-center { display: grid; place-items: center; padding: 1.25rem 0 .25rem; }
.footer-grid { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 2rem 0; flex-wrap: wrap; }
.footer-col { flex: 1 1 250px; text-align: left; }
.footer-center-col { flex: 1 1 200px; display: flex; justify-content: center; align-items: center; margin: 15px 0; }
.footer-grid .footer-col:last-child { text-align: right; }
.footer-brand { font-family: 'Playfair Display', Georgia, serif; font-size: 1.25rem; color: var(--beige); }
.footer-logo { width: 26px; height: 26px; object-fit: contain; vertical-align: middle; margin-right: .5rem; filter: brightness(0) invert(1) drop-shadow(0 1px 1px rgba(0,0,0,.4)); }
.footer-logo.footer-logo-xl { width: 96px; height: 96px; margin: 0; display: block; filter: brightness(0) invert(1) drop-shadow(0 2px 2px rgba(0,0,0,.5)); }
.footer-rule { height: 1px; width: 80px; background: linear-gradient(90deg, transparent, var(--gold), transparent); margin: .5rem 0 1rem; }
.footer-bottom { border-top: 1px solid rgba(197,165,114,.25); padding: .75rem 0; color: #cfc3ae; font-size: .9rem; }
.footer a { color: var(--beige); }
.footer a:hover { color: var(--gold); }
/* Footer links row with icons */
.footer-links { display: flex; gap: 16px; justify-content: flex-end; align-items: center; }
.footer-links a { display: inline-flex; align-items: center; gap: .5rem; text-decoration: none; }
.footer .icon { width: 16px; height: 16px; color: var(--gold); opacity: .9; }

/* WhatsApp */
.whatsapp { position: fixed; right: 20px; bottom: 20px; width: 56px; height: 56px; display: inline-grid; place-items: center; border-radius: 50%; background: #1f1f1f; border: 1px solid rgba(197,165,114,.35); box-shadow: 0 10px 30px rgba(0,0,0,.45); z-index: 50; }
.whatsapp { color: #25D366; }
.whatsapp svg { width: 28px; height: 28px; color: inherit; }
.wa-tooltip { position: absolute; right: 70px; bottom: 50%; transform: translateY(50%); background: #141414; color: var(--beige); padding: .45rem .6rem; border-radius: 8px; border: 1px solid rgba(197,165,114,.35); opacity: 0; pointer-events: none; transition: opacity .25s ease, transform .25s ease; white-space: nowrap; font-size: .85rem; }
.whatsapp:hover .wa-tooltip { opacity: 1; transform: translateY(50%) translateX(-4px); }

/* Viber */
.viber { position: fixed; right: 20px; bottom: 90px; width: 56px; height: 56px; display: inline-grid; place-items: center; border-radius: 50%; background: #1f1f1f; border: 1px solid rgba(197,165,114,.35); box-shadow: 0 10px 30px rgba(0,0,0,.45); z-index: 50; }
.viber { color: #665CAC; }
.viber svg { width: 28px; height: 28px; color: inherit; }
.viber-tooltip { position: absolute; right: 70px; bottom: 50%; transform: translateY(50%); background: #141414; color: var(--beige); padding: .45rem .6rem; border-radius: 8px; border: 1px solid rgba(197,165,114,.35); opacity: 0; pointer-events: none; transition: opacity .25s ease, transform .25s ease; white-space: nowrap; font-size: .85rem; }
.viber:hover .viber-tooltip { opacity: 1; transform: translateY(50%) translateX(-4px); }

/* Responsive */
@media (max-width: 992px) {
  .grid-2 { grid-template-columns: 1fr; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .maps-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}

@media (max-width: 560px) {
  .cards { grid-template-columns: 1fr; }
  .whatsapp { right: 14px; bottom: 14px; width: 52px; height: 52px; }
  .viber { right: 14px; bottom: 80px; width: 52px; height: 52px; }
  .wa-tooltip, .viber-tooltip { display: none; }
  .maps-grid { gap: 1rem; }
  .branch-title { font-size: 1.1rem; }
  .cta-wrap { flex-direction: column; align-items: center; gap: 0.75rem; }
}


