/* ============================================================
   Tee (DOT) Nail Bar — Shared Stylesheet
   ============================================================ */

/* ============ FONTS ============ */
@font-face {
  font-family: 'TAN Aegean';
  src: url('fonts/TAN - AEGEAN Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Buffalo';
  src: url('fonts/Buffalo.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Noah';
  src: url('fonts/noah-regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ============ RESET & BASE ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Noah', sans-serif;
  background: #faf8f5;
  color: #1a1a1a;
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }

/* ============ TOKENS ============ */
:root {
  --gold: #c9a96e;
  --gold-dark: #a8834a;
  --cream: #faf8f5;
  --cream-mid: #f0ebe4;
  --cream-deep: #e8d5c4;
  --text: #1a1a1a;
  --text-mid: #4a4a4a;
  --text-light: #7a7a7a;
  --white: #ffffff;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 2px 16px rgba(0,0,0,0.07);
  --shadow-hover: 0 6px 24px rgba(0,0,0,0.12);
}

/* ============ TYPOGRAPHY ============ */
h1, h2, h3 { font-family: 'TAN Aegean', serif; line-height: 1.25; }
h1 { font-size: clamp(1.6rem, 2.8vw, 2.5rem); }
h2 { font-size: clamp(1.2rem, 2.2vw, 1.8rem); }
h3 { font-size: 1rem; }
.label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.section-intro {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 3rem;
}
.section-intro h2 { margin: 0.4rem 0 1rem; }
.section-intro p { color: var(--text-mid); }

/* ============ LAYOUT ============ */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
section { padding: 80px 0; }
section.alt { background: var(--cream-mid); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  text-decoration: none;
  font-family: 'Noah', sans-serif;
}
.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: var(--gold-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(201,169,110,0.4); }
.btn-outline { background: transparent; color: var(--text); border: 1.5px solid var(--cream-deep); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-dark { background: var(--text); color: var(--white); }
.btn-dark:hover { background: #333; transform: translateY(-1px); }

/* ============ TOPBAR ============ */
.topbar {
  background: var(--text);
  color: var(--white);
  text-align: center;
  padding: 9px 24px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.topbar a { color: var(--gold); text-decoration: underline; }

/* ============ NAV ============ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250,248,245,0.85);
  backdrop-filter: blur(12px);
  border-bottom: none;
  transition: background 0.3s;
}
nav.scrolled {
  background: rgba(250,248,245,0.97);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-logo img { height: 56px; width: auto; object-fit: contain; }
.nav-logo-text {
  font-family: 'TAN Aegean', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.01em;
  line-height: 1.2;
}
.nav-logo-text span { color: var(--gold); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}
.nav-links a {
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-mid);
  border-radius: 6px;
  transition: color 0.15s;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a.active { font-weight: 600; }
.nav-links .nav-cta a {
  background: var(--gold);
  color: var(--white);
  padding: 9px 18px;
  border-radius: 50px;
  font-weight: 600;
}
.nav-links .nav-cta a:hover { background: var(--gold-dark); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s; }
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 1.4rem; font-family: 'TAN Aegean', serif; color: var(--text); }
.mobile-menu .close-btn { position: absolute; top: 20px; right: 24px; font-size: 28px; cursor: pointer; background: none; border: none; color: var(--text); }

/* ============ PAGE HERO (inner pages) ============ */
.page-hero {
  background: var(--cream-mid);
  color: var(--text);
  padding: 64px 24px;
  text-align: center;
}
.page-hero .label { display: block; margin-bottom: 12px; }
.page-hero h1 { color: var(--text); font-size: clamp(1.35rem, 2.2vw, 2rem); margin-bottom: 14px; }
.page-hero p { color: var(--text-mid); max-width: 520px; margin: 0 auto; font-size: 15px; line-height: 1.7; }

/* ============ PILLS BAR ============ */
.pills-bar { background: var(--text); color: var(--white); padding: 20px 24px; }
.pills-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.pill-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 28px;
  font-size: 13px;
  font-weight: 500;
  border-right: 1px solid rgba(255,255,255,0.15);
}
.pill-item:last-child { border-right: none; }
.pill-icon { font-size: 18px; }

/* ============ WHY CARDS ============ */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px 28px;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--gold);
  transition: box-shadow 0.2s, transform 0.2s;
}
.why-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.why-icon { font-size: 32px; margin-bottom: 16px; }
.why-card h3 { font-size: 1rem; font-family: 'Noah', sans-serif; font-weight: 700; margin-bottom: 10px; color: var(--dark); }
.why-card p { font-size: 13.5px; color: var(--text-mid); line-height: 1.7; }

/* ============ GALLERY ============ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.gallery-item { border-radius: var(--radius); overflow: hidden; position: relative; cursor: pointer; }
.gallery-item img { height: 280px; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.tall img { height: 100%; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-label {
  position: absolute;
  bottom: 12px; left: 12px;
  background: rgba(26,26,26,0.75);
  backdrop-filter: blur(8px);
  color: #fff;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.05em;
}
.gallery-cta { text-align: center; margin-top: 28px; }

/* ============ SERVICES TABS ============ */
.services-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.stab {
  padding: 9px 22px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid var(--cream-deep);
  background: var(--white);
  color: var(--text-mid);
  transition: all 0.15s;
  font-family: 'Noah', sans-serif;
}
.stab:hover { border-color: var(--gold); color: var(--gold); background: #fdf8f0; }
.stab.active { background: var(--gold); color: var(--white); border-color: var(--gold); }
.service-panel { display: none; }
.service-panel.active { display: block; }

/* ============ SERVICE CARDS ============ */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.service-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.service-card-img { aspect-ratio: 4 / 3; overflow: hidden; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.service-card:hover .service-card-img img { transform: scale(1.05); }
.service-card-body { padding: 20px; }
.service-card-body h3 { font-size: 1.05rem; font-family: 'Noah', sans-serif; font-weight: 700; margin-bottom: 6px; }
.service-card-body p { font-size: 13px; color: var(--text-mid); margin-bottom: 14px; }
.price-tag { font-size: 1.2rem; font-family: 'TAN Aegean', serif; font-weight: 600; color: var(--text); }
.price-tag span { font-size: 0.9rem; color: var(--text-light); font-family: 'Noah', sans-serif; font-weight: 400; }

/* ============ ART TABLE ============ */
.art-table { width: 100%; border-collapse: collapse; }
.art-table th, .art-table td { padding: 12px 16px; text-align: left; font-size: 13px; border-bottom: 1px solid var(--cream-deep); }
.art-table th { font-weight: 600; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-light); background: var(--cream-mid); }
.art-table tr:last-child td { border-bottom: none; }
.art-table tr:hover td { background: var(--cream-mid); }
.art-price { font-weight: 700; color: var(--text); white-space: nowrap; }
.art-table-wrap { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.art-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.art-section-title {
  padding: 16px 16px 12px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--text-mid);
  border-bottom: 1px solid var(--cream-deep);
  margin: 0 0 0 0;
  display: block;
}

/* ============ OMAKASE ============ */
.omakase-card {
  background: var(--text);
  color: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  box-shadow: var(--shadow);
}
.omakase-card h3 { font-size: 1.35rem; color: #e8c99a; margin-bottom: 10px; }
.omakase-card p { font-size: 13px; color: rgba(255,255,255,0.8); line-height: 1.7; margin-bottom: 12px; }
.omakase-price { display: flex; gap: 16px; align-items: flex-end; margin-bottom: 24px; }
.omakase-price .price-val { font-size: 1.5rem; font-family: 'TAN Aegean', serif; font-weight: 600; color: #e8c99a; }
.omakase-points { list-style: none; }
.omakase-points li {
  padding: 7px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  display: flex; align-items: flex-start; gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.omakase-points li:last-child { border: none; }
.omakase-points li::before { content: "·"; color: var(--gold); flex-shrink: 0; font-size: 10px; margin-top: 3px; }

/* ============ BEFORE YOU BOOK ============ */
.book-notice {
  background: #fdf8f0;
  border: 1.5px solid #f0d9b5;
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-top: 32px;
}
.book-notice h3 { font-size: 1rem; font-family: 'Noah', sans-serif; font-weight: 700; margin-bottom: 24px; }
.notice-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid #ecdfc8; border-left: 1px solid #ecdfc8; }
.notice-item { padding: 20px 22px; border-right: 1px solid #ecdfc8; border-bottom: 1px solid #ecdfc8; }
.notice-icon-wrap { color: var(--gold); margin-bottom: 12px; }
.notice-item p { font-size: 13px; color: var(--text-mid); margin-top: 5px; line-height: 1.55; }
.notice-item strong { display: block; font-size: 13px; color: var(--text); font-weight: 600; }

/* ============ REVIEWS ============ */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  position: relative;
}
.review-stars { color: #f4c430; font-size: 14px; margin-bottom: 14px; letter-spacing: 2px; }
.review-text { font-size: 13.5px; color: var(--text-mid); line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.review-quote { position: absolute; top: 20px; right: 20px; font-size: 48px; color: var(--cream-deep); font-family: Georgia, serif; line-height: 1; }
.review-author { font-size: 12px; font-weight: 700; color: var(--text); display: flex; align-items: center; gap: 8px; }
.review-source { font-size: 11px; color: var(--text-light); font-weight: 400; }
.review-featured { background: var(--text); color: var(--white); }
.review-featured .review-text { color: rgba(255,255,255,0.85); }
.review-featured .review-author { color: var(--white); }
.review-featured .review-quote { color: rgba(255,255,255,0.15); }
.review-featured .review-source { color: rgba(255,255,255,0.5); }

/* ============ STUDIO ============ */
.studio-intro {
  background: var(--text);
  border-radius: var(--radius);
  padding: 48px;
  color: var(--white);
  text-align: center;
  margin-bottom: 32px;
}
.studio-intro img { width: 180px; height: auto; margin: 0 auto 20px; object-fit: contain; }
.studio-intro h2 { color: var(--white); margin-bottom: 12px; }
.studio-intro p { color: rgba(255,255,255,0.75); max-width: 520px; margin: 0 auto 28px; font-size: 14px; line-height: 1.7; }
.studio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.studio-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: box-shadow 0.2s, transform 0.2s; }
.studio-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.studio-card-img { height: 220px; overflow: hidden; }
.studio-card-img img { height: 100%; object-fit: cover; transition: transform 0.4s; }
.studio-card:hover .studio-card-img img { transform: scale(1.04); }
.studio-card-body { padding: 20px; }
.studio-card-body h3 { font-size: 1rem; font-family: 'Noah', sans-serif; font-weight: 700; margin-bottom: 8px; }
.studio-card-body p { font-size: 13px; color: var(--text-mid); margin-bottom: 16px; line-height: 1.6; }

/* ============ BOOKING CTA ============ */
.booking-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2520 100%);
  color: var(--white);
  text-align: center;
}
.booking-section h2 { color: var(--white); margin-bottom: 12px; }
.booking-section p { color: rgba(255,255,255,0.75); margin-bottom: 36px; max-width: 460px; margin-left: auto; margin-right: auto; }
.booking-options { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 28px; }
.booking-note { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 20px; }

/* ============ ABOUT ============ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-images { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.about-images img { border-radius: var(--radius-sm); object-fit: cover; }
.about-images img:first-child { grid-column: 1 / -1; height: 280px; }
.about-images img:not(:first-child) { height: 180px; }
.about-text .label { margin-bottom: 10px; display: block; }
.about-text h2 { margin-bottom: 16px; }
.about-text p { color: var(--text-mid); font-size: 14px; line-height: 1.8; margin-bottom: 16px; }
.contact-list { list-style: none; margin: 24px 0; }
.contact-list li { display: flex; align-items: flex-start; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--cream-deep); font-size: 14px; }
.contact-list li:last-child { border: none; }
.contact-icon { font-size: 18px; flex-shrink: 0; margin-top: 1px; }
.contact-list strong { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-light); font-weight: 600; margin-bottom: 2px; }

/* ============ SOCIAL ============ */
.social-row { display: flex; gap: 14px; margin-top: 6px; }
.social-link {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--cream-mid);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  transition: background 0.15s, transform 0.15s;
}
.social-link:hover { background: var(--cream-deep); transform: translateY(-2px); }

/* ============ FOOTER ============ */
footer {
  background: #111;
  color: rgba(255,255,255,0.6);
  padding: 40px 24px;
  text-align: center;
  font-size: 12px;
}
footer a { color: rgba(255,255,255,0.6); }
footer a:hover { color: var(--white); }

/* ============ WHATSAPP FLOAT ============ */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 500;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,0.55); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }

/* ============ BYLINE ============ */
.byline {
  font-family: 'Buffalo', cursive;
  letter-spacing: 0.02em;
}

/* ============ FADE-IN ANIMATION ============ */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .studio-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .omakase-card { grid-template-columns: 1fr; }
  .art-two-col { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.tall { grid-row: span 1; }
  .gallery-item.tall img { height: 280px; }
}
@media (max-width: 640px) {
  section { padding: 56px 0; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .why-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .studio-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .pills-inner { flex-direction: column; gap: 8px; }
  .pill-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); width: 100%; justify-content: center; }
  .omakase-card { padding: 24px; }
  .studio-intro { padding: 32px 20px; }
  .about-images img:first-child { height: 220px; }
  .page-hero { padding: 48px 24px; }
}

/* ============ TRUSTINDEX FEED FIX ============ */
.ti-feed-widget img { visibility: visible !important; }
