/* ============================================================
   ECLECTIC HOSPITALITY ÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂ¢ÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂ EHbymise.com
   Global Stylesheet
   Brand Kit: Onyx #080808 ÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂ· Gold #D6AF57 ÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂ· Deep Teal #003B3E
              Burnt Orange #C7562B ÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂ· Ivory #F5F5F2
   Type: Playfair Display (display) ÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂ· Inter (sans/body)
   ============================================================ */

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

/* --- Design Tokens --- */
:root {
  /* Brand Colors */
  --ink:      #080808;   /* Onyx */
  --charcoal: #1F1F1F;   /* Charcoal */
  --gold:     #D6AF57;   /* Gold */
  --gold-light: #E2C172; /* Gold hover */
  --teal:     #003B3E;   /* Deep Teal */
  --orange:   #C7562B;   /* Burnt Orange */
  --stone:    #7A7A7A;   /* Muted text */
  --rule:     #E0DDD8;   /* Borders */
  --cream:    #F5F5F2;   /* Ivory */
  --light:    #EDECE9;   /* Light section bg */
  --white:    #FFFFFF;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans:    'Inter', system-ui, -apple-system, sans-serif;
  /* Backward-compat aliases */
  --font-head:    var(--font-sans);
  --font-body:    var(--font-sans);

  --max-w: 1120px;
  --nav-h: 72px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* --- Typography --- */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
}
h4, h5 {
  font-family: var(--font-sans);
  font-weight: 700;
  line-height: 1.2;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2.2vw, 1.45rem); }
h4 { font-size: 0.95rem; letter-spacing: 0.06em; text-transform: uppercase; }
p  { font-family: var(--font-sans); font-size: 1.05rem; line-height: 1.75; color: #2a2a2a; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

/* --- Brand Elements --- */
.eh-flame::before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 14px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 14'%3E%3Cpath d='M5,0 C5,4 8,7 8,10 C8,12 6.5,14 5,14 C3.5,14 2,12 2,10 C2,7 5,4 5,0Z' fill='%23D6AF57'/%3E%3C/svg%3E") center/contain no-repeat;
  margin-right: 0.5rem;
  vertical-align: middle;
}

.eh-flow-bg {
  position: relative;
  overflow: hidden;
}
.eh-flow-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='120' viewBox='0 0 400 120'%3E%3Cpath d='M0,60 C80,20 120,100 200,60 C280,20 320,100 400,60' fill='none' stroke='rgba(214,175,87,0.08)' stroke-width='2'/%3E%3Cpath d='M0,80 C80,40 120,120 200,80 C280,40 320,120 400,80' fill='none' stroke='rgba(214,175,87,0.05)' stroke-width='1.5'/%3E%3Cpath d='M0,40 C80,0 120,80 200,40 C280,0 320,80 400,40' fill='none' stroke='rgba(214,175,87,0.05)' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: 400px 120px;
  background-position: center;
  pointer-events: none;
  opacity: 0.6;
}

/* --- Utility --- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}
.section { padding: 6rem 0; }
.section--light  { background: var(--light); }
.section--ink    { background: var(--ink); }
.section--cream  { background: var(--cream); }
.section--teal   { background: var(--teal); }
.section--charcoal { background: var(--charcoal); }

.text-center { text-align: center; }
.text-gold   { color: var(--gold); }
.text-white  { color: var(--white); }
.text-stone  { color: var(--stone); }
.text-teal   { color: var(--teal); }

/* --- Buttons --- */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: 1px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  text-align: center;
}
.btn-primary { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn-outline:hover { background: var(--white); color: var(--ink); border-color: var(--white); }
.btn-outline-ink { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline-ink:hover { background: var(--ink); color: var(--white); }
.btn-outline-gold { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn-outline-gold:hover { background: var(--gold); color: var(--ink); }
.btn-teal { background: var(--teal); color: var(--white); border-color: var(--teal); }
.btn-teal:hover { background: #004d52; border-color: #004d52; }
.btn-outline-teal { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn-outline-teal:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.8); }

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: var(--cream);
  border-bottom: 1px solid var(--rule);
  display: flex;
  align-items: center;
}
.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo { display: flex; flex-direction: row; align-items: center; gap: 0.75rem; line-height: 1; text-decoration: none; }
.nav__logo-img { height: 40px; width: auto; display: block; flex-shrink: 0; }
.nav__logo-text { display: flex; flex-direction: column; }
.nav__logo-main { font-family: var(--font-sans); font-size: 0.95rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink); }
.nav__logo-sub { font-family: var(--font-sans); font-size: 0.62rem; letter-spacing: 0.08em; color: var(--stone); margin-top: 2px; }
.nav__links { display: flex; align-items: center; gap: 2.5rem; list-style: none; }
.nav__links a { font-family: var(--font-sans); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--stone); transition: color 0.2s; }
.nav__links a:hover, .nav__links a.active { color: var(--ink); }
.nav__cta { margin-left: 1rem; }
.nav__toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.nav__toggle span { display: block; width: 24px; height: 2px; background: var(--ink); }
.nav__mobile { display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; background: var(--cream); border-bottom: 1px solid var(--rule); padding: 1.5rem 2rem 2rem; z-index: 99; flex-direction: column; gap: 1.25rem; }
.nav__mobile.open { display: flex; }
.nav__mobile a { font-family: var(--font-sans); font-size: 0.9rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink); }

/* --- Page Hero --- */
.page-hero { background: var(--ink); padding: 8rem 0 5rem; margin-top: var(--nav-h); }
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero p  { font-family: var(--font-sans); color: var(--rule); max-width: 580px; font-size: 1.1rem; }

/* --- Brand Divider --- */
.rule-line { width: 48px; height: 2px; background: var(--gold); margin: 1.5rem 0; }
.rule-line--center { margin: 1.5rem auto; }
.flame-divider { display: flex; align-items: center; gap: 1.25rem; margin: 1.75rem 0; }
.flame-divider__line { flex: 1; height: 1px; background: linear-gradient(to right, transparent, var(--rule)); }
.flame-divider__line:last-child { background: linear-gradient(to left, transparent, var(--rule)); }
.flame-divider__icon { font-size: 0.9rem; color: var(--gold); flex-shrink: 0; }

/* --- Cards --- */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin-top: 3.5rem; }
.card { background: var(--white); border: 1px solid var(--rule); border-top: 3px solid var(--gold); padding: 2rem; }
.card h3 { margin-bottom: 0.75rem; }
.card p  { font-size: 0.97rem; }

/* --- Stat strip --- */
.stat-strip { display: flex; gap: 4rem; flex-wrap: wrap; }
.stat-strip__item { display: flex; flex-direction: column; }
.stat-strip__num { font-family: var(--font-display); font-size: 2.8rem; font-weight: 700; color: var(--gold); line-height: 1; }
.stat-strip__label { font-family: var(--font-sans); font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--stone); margin-top: 0.4rem; }

/* --- Two-col layout --- */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }

/* --- Service list --- */
.service-list { list-style: none; display: flex; flex-direction: column; gap: 1.75rem; margin-top: 3rem; }
.service-list__item { display: grid; grid-template-columns: 48px 1fr; gap: 1.25rem; align-items: start; padding-bottom: 1.75rem; border-bottom: 1px solid var(--rule); }
.service-list__item:last-child { border-bottom: none; padding-bottom: 0; }
.service-list__num { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--gold); line-height: 1; padding-top: 4px; }
.service-list__content h3 { margin-bottom: 0.4rem; }
.service-list__content p  { font-size: 0.97rem; }

/* --- Pull quote --- */
.pull-quote { border-left: 3px solid var(--gold); padding: 0.5rem 0 0.5rem 2rem; margin: 2rem 0; }
.pull-quote p { font-family: var(--font-display); font-size: 1.25rem; line-height: 1.6; font-style: italic; color: var(--ink); }
.pull-quote cite { display: block; font-family: var(--font-sans); font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--stone); margin-top: 0.75rem; font-style: normal; }

/* --- BTP Series grid --- */
.series-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.series-card { background: var(--white); border: 1px solid var(--rule); padding: 1.75rem; }
.series-card__vol { font-family: var(--font-sans); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
.series-card h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.series-card p  { font-size: 0.88rem; color: var(--stone); }

/* --- Contact form --- */
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.25rem; }
.form-group label { font-family: var(--font-sans); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--stone); }
.form-group input, .form-group textarea, .form-group select { font-family: var(--font-sans); font-size: 1rem; color: var(--ink); background: var(--white); border: 1px solid var(--rule); padding: 0.75rem 1rem; width: 100%; transition: border-color 0.2s; outline: none; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 140px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* --- Footer --- */
.footer { background: var(--ink); padding: 4rem 0 2.5rem; }
.footer__inner { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer__logo-img { height: 44px; width: auto; margin-bottom: 1rem; }
.footer__brand-name { font-family: var(--font-sans); font-size: 0.85rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--white); margin-bottom: 0.3rem; }
.footer__brand-sub { font-family: var(--font-sans); font-size: 0.68rem; color: var(--stone); letter-spacing: 0.08em; margin-bottom: 1rem; }
.footer__tagline { font-family: var(--font-sans); font-size: 0.9rem; color: var(--stone); line-height: 1.7; }
.footer__col-title { font-family: var(--font-sans); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.footer__links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer__links a { font-family: var(--font-sans); font-size: 0.85rem; color: var(--stone); letter-spacing: 0.02em; transition: color 0.2s; }
.footer__links a:hover { color: var(--white); }
.footer__bottom { margin-top: 2rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; }
.footer__copy { font-family: var(--font-sans); font-size: 0.7rem; color: var(--stone); letter-spacing: 0.04em; }

/* --- Responsive --- */

/* --- Operator's Toolbox card --- */
.toolbox-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-top: 4px solid var(--gold);
  padding: 2.5rem 3rem;
  max-width: 760px;
  margin: 3rem auto 0;
}
.toolbox-card__eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.toolbox-card__title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--ink);
}
.toolbox-card__desc {
  font-size: 0.97rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.toolbox-card__meta {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.toolbox-card__price {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}
.toolbox-card__note {
  font-size: 0.9rem;
  color: var(--muted);
}

@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; gap: 3rem; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__inner > *:first-child { grid-column: 1 / -1; }
}
@media (max-width: 680px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .nav__inner { padding: 0 1.25rem; }
  .container { padding: 0 1.25rem; }
  .section { padding: 4rem 0; }
  .card-grid { grid-template-columns: 1fr; }
  .stat-strip { gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}


/* ====================================================
   MOBILE RESPONSIVENESS ÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂ¢ÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂ phone view fixes
   ==================================================== */

@media (max-width: 640px) {

/* Ã¢ÂÂÃ¢ÂÂ Nav Ã¢ÂÂÃ¢ÂÂ */
/* nav handled in 680px breakpoint */

/* Ã¢ÂÂÃ¢ÂÂ Hero section Ã¢ÂÂÃ¢ÂÂ */
.hero { background: #010100 !important; }
.hero {
  min-height: auto;
  padding: 3rem 1.25rem 2.5rem;
}
.hero-logo {
  width: 280px !important;
  margin: 0 auto 1.5rem;
}
.hero h1 {
  font-size: clamp(2rem, 8vw, 3rem);
}

.section .container > div[style] {
  display: flex !important;
  flex-direction: column !important;
  gap: 2rem !important;
}
.section .container > div[style] > div[style],
.section .container > div[style] > div {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  flex: none !important;
}

.pricing-grid { grid-template-columns: 1fr !important; max-width: 100% !important; }
.section { padding: 3rem 0; }
.container { padding: 0 1.25rem; }
.btn { display: block; width: 100%; text-align: center; box-sizing: border-box; }
.footer__inner { flex-direction: column; gap: 2rem; text-align: center; }
.footer__logo-img { margin: 0 auto; }
.footer__links { flex-direction: column; gap: 0.75rem; }
}

@media (max-width: 400px) {
  .hero h1 {
    font-size: 1.85rem;
  }
  .nav__logo img {
    height: 36px !important;
  }
}
