/* ── CITY CAT HOTEL — style.css v4 ──────────────────────────────────────────
   System fonts: H1 serif stack, everything else sans-serif.
   Classic sticky horizontal nav with hamburger below 860px.
   ─────────────────────────────────────────────────────────────────────────── */

/* ── CUSTOM PROPERTIES ──────────────────────────────────────────────────── */
:root {
  --color-bg:        #fdfaf6;
  --color-bg-alt:    #f5f0e8;
  --color-bg-dark:   #1e2330;
  --color-text:      #1e2330;
  --color-text-mid:  #4a4a5a;
  --color-text-light:#7a7a8a;
  --color-accent:    #c8773a;
  --color-accent-dk: #a35e27;
  --color-white:     #ffffff;
  --color-border:    #e8e0d4;

  --font-display: Georgia, 'Times New Roman', serif;
  --font-sans:    system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;

  --shadow-sm:  0 2px 8px rgba(30,35,48,0.08);
  --shadow-md:  0 6px 24px rgba(30,35,48,0.12);
  --shadow-lg:  0 16px 48px rgba(30,35,48,0.16);

  --transition: 0.22s ease;

  --max-width: 1200px;
  --gutter:    clamp(1rem, 5vw, 2rem);
}

/* ── RESET & BASE ───────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }

/* ── TYPOGRAPHY ─────────────────────────────────────────────────────────── */
h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-text);
}
h2 {
  font-family: var(--font-sans);
  font-size: clamp(1.75rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
}
h3 {
  font-family: var(--font-sans);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-text);
}
h4 { font-family: var(--font-sans); font-size: 1rem; font-weight: 700; color: var(--color-text); }

p { color: var(--color-text-mid); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

/* ── LAYOUT ─────────────────────────────────────────────────────────────── */
.container { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: clamp(3rem, 8vw, 6rem) 0; }
.section-title { text-align: center; margin-bottom: clamp(2rem, 5vw, 3.5rem); }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.two-col.reverse .col-text  { order: 2; }
.two-col.reverse .col-image { order: 1; }
.col-image img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); width: 100%; object-fit: cover; }

/* ── BUTTONS ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  padding: 0.8rem 1.9rem;
  border-radius: 50px;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary { background: var(--color-accent); color: var(--color-white); border-color: var(--color-accent); }
.btn-primary:hover { background: var(--color-accent-dk); border-color: var(--color-accent-dk); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn-outline { background: transparent; color: var(--color-text); border-color: var(--color-text); }
.btn-outline:hover { background: var(--color-text); color: var(--color-white); transform: translateY(-2px); }
.link-arrow { font-weight: 700; font-size: 0.88rem; color: var(--color-accent); transition: color var(--transition); }
.link-arrow:hover { color: var(--color-accent-dk); }

/* ── HEADER ─────────────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: 68px;
  padding: 0 var(--gutter);
  max-width: var(--max-width);
  margin: 0 auto;
}
.logo { flex-shrink: 0; }
.logo img { height: 46px; width: auto; }

/* ── HORIZONTAL NAV ──────────────────────────────────────────────────────── */
.main-nav { flex: 1; display: flex; justify-content: center; }
.main-nav ul { display: flex; align-items: center; gap: 0.1rem; list-style: none; }
.main-nav a {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
  padding: 0.45rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.main-nav a:hover,
.main-nav a.active { color: var(--color-accent); background: var(--color-bg-alt); }

.header-phone {
  flex-shrink: 0;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--color-accent);
  white-space: nowrap;
  transition: color var(--transition);
}
.header-phone:hover { color: var(--color-accent-dk); }

/* ── HAMBURGER ────────────────────────────────────────────────────────────── */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--color-text); border-radius: 2px; transition: all var(--transition); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE NAV ───────────────────────────────────────────────────────────── */
@media (max-width: 860px) {
  .nav-toggle  { display: flex; }
  .header-phone { display: none; }
  .main-nav {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
    justify-content: flex-start;
    z-index: 99;
  }
  .main-nav.open { display: flex; }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: 0; width: 100%; padding: 0.5rem 0; }
  .main-nav a { font-size: 1rem; padding: 0.9rem var(--gutter); border-radius: 0; border-bottom: 1px solid var(--color-border); }
  .main-nav li:last-child a { border-bottom: none; }
}

/* ── HERO ───────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: clamp(520px, 80vh, 780px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-bg-dark);
}
.hero-image { position: absolute; inset: 0; }
.hero-image img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; opacity: 0.45; }
.hero-content { position: relative; z-index: 2; width: 100%; padding: 4rem 0; }
.hero-eyebrow { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--color-accent); margin-bottom: 0.5rem; }
.hero h1 { color: var(--color-white); margin-bottom: 0.4rem; }
.hero-sub { font-family: var(--font-sans); font-size: clamp(1.1rem, 2.5vw, 1.7rem); font-weight: 500; color: rgba(255,255,255,0.85); margin-bottom: 1.25rem; }
.hero-lead { font-size: 1.02rem; color: rgba(255,255,255,0.7); max-width: 520px; margin-bottom: 2rem; }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero .btn-outline { color: var(--color-white); border-color: rgba(255,255,255,0.6); }
.hero .btn-outline:hover { background: var(--color-white); color: var(--color-text); }

/* ── TRUST STRIP ────────────────────────────────────────────────────────── */
.trust-strip { background: var(--color-bg-dark); padding: 1.5rem 0; border-top: 1px solid rgba(255,255,255,0.08); }
.trust-grid { display: flex; justify-content: center; gap: clamp(1.5rem, 5vw, 4rem); flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 0.6rem; font-weight: 600; font-size: 0.88rem; color: rgba(255,255,255,0.85); }
.trust-icon { font-size: 1.3rem; }

/* ── SERVICES ───────────────────────────────────────────────────────────── */
.services-section { background: var(--color-bg-alt); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; margin-bottom: 2.5rem; }
.service-card { background: var(--color-white); border-radius: var(--radius-md); padding: 1.75rem 1.5rem; box-shadow: var(--shadow-sm); transition: transform var(--transition), box-shadow var(--transition); }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-card img { width: 64px; height: 64px; object-fit: contain; margin-bottom: 1rem; }
.service-card h3  { margin-bottom: 0.6rem; font-size: 1.05rem; }
.service-card p   { font-size: 0.9rem; margin-bottom: 1rem; }
.section-cta { text-align: center; }

/* ── REVIEWS ────────────────────────────────────────────────────────────── */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.review-card { background: var(--color-white); border-radius: var(--radius-md); padding: 1.75rem; box-shadow: var(--shadow-sm); border-left: 4px solid var(--color-accent); }
.review-stars { color: #f5a623; font-size: 1rem; letter-spacing: 2px; margin-bottom: 0.75rem; }
.review-card p { font-size: 0.92rem; font-style: italic; margin-bottom: 1rem; }
.review-author { font-weight: 700; font-size: 0.88rem; }
.review-source { font-size: 0.78rem; color: var(--color-text-light); margin-top: 0.2rem; }

/* ── PARTNER LOGOS ──────────────────────────────────────────────────────── */
.partners-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--color-text-light); margin-bottom: 0.75rem; }
.partner-logos { display: flex; gap: 1.5rem; align-items: center; flex-wrap: wrap; margin-bottom: 1.5rem; }
.partner-logos img { height: 36px; width: auto; opacity: 0.75; transition: opacity var(--transition); }
.partner-logos a:hover img { opacity: 1; }

/* ── CONTACT ────────────────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 5rem); align-items: start; }
.contact-info h2 { margin-bottom: 1.5rem; }
.contact-item { display: flex; flex-direction: column; margin-bottom: 1.25rem; }
.contact-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-text-light); margin-bottom: 0.2rem; }
.contact-item a, .contact-item span { font-weight: 600; color: var(--color-text); transition: color var(--transition); }
.contact-item a:hover { color: var(--color-accent); }
.contact-item em { font-weight: 400; color: var(--color-text-light); }
.contact-map { height: 420px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.contact-map iframe { display: block; }

/* ── FOOTER ─────────────────────────────────────────────────────────────── */
.site-footer { background: var(--color-bg-dark); padding: 3rem 0 0; color: rgba(255,255,255,0.7); }
.footer-inner { display: grid; grid-template-columns: 1fr auto 1fr; gap: 2rem; align-items: start; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand img { filter: brightness(0) invert(1); opacity: 0.8; margin-bottom: 0.75rem; }
.footer-brand p   { font-size: 0.88rem; }
.footer-nav ul { list-style: none; display: flex; flex-direction: column; gap: 0.4rem; text-align: center; }
.footer-nav a { font-size: 0.88rem; font-weight: 600; color: rgba(255,255,255,0.65); transition: color var(--transition); }
.footer-nav a:hover { color: var(--color-white); }
.footer-contact { display: flex; flex-direction: column; gap: 0.5rem; align-items: flex-end; }
.footer-contact a { font-size: 0.88rem; font-weight: 600; color: rgba(255,255,255,0.65); transition: color var(--transition); }
.footer-contact a:hover { color: var(--color-white); }
.footer-bottom { padding: 1.25rem 0; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; }
.footer-bottom span { font-size: 0.78rem; color: rgba(255,255,255,0.35); }
.footer-bottom a { color: rgba(255,255,255,0.45); font-size: 0.78rem; text-decoration: underline; transition: color var(--transition); }
.footer-bottom a:hover { color: #fff; }

/* ── COOKIE BANNER ───────────────────────────────────────────────────────── */
#cch-cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
  background: var(--color-bg-dark); color: #fff;
  padding: 1.25rem var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap;
  box-shadow: 0 -4px 24px rgba(30,35,48,0.2);
  transform: translateY(100%); transition: transform 0.4s ease;
}
#cch-cookie-banner.visible { transform: translateY(0); }
.cookie-text { font-size: 0.87rem; color: rgba(255,255,255,0.8); line-height: 1.5; flex: 1; min-width: 200px; }
.cookie-text a { color: var(--color-accent); text-decoration: underline; }
.cookie-actions { display: flex; gap: 0.75rem; flex-shrink: 0; }
.cookie-btn-accept { background: var(--color-accent); color: #fff; border: none; border-radius: 50px; padding: 0.6rem 1.4rem; font-family: var(--font-sans); font-size: 0.87rem; font-weight: 700; cursor: pointer; transition: background var(--transition); white-space: nowrap; }
.cookie-btn-accept:hover { background: var(--color-accent-dk); }
.cookie-btn-info { background: none; color: rgba(255,255,255,0.6); border: 1px solid rgba(255,255,255,0.2); border-radius: 50px; padding: 0.6rem 1.2rem; font-family: var(--font-sans); font-size: 0.87rem; text-decoration: none; display: inline-block; cursor: pointer; transition: all var(--transition); white-space: nowrap; }
.cookie-btn-info:hover { color: #fff; border-color: rgba(255,255,255,0.5); }

/* ── PRIVACY ────────────────────────────────────────────────────────────── */
.privacy-wrap { max-width: 800px; margin: 0 auto; }
.privacy-updated { font-size: 0.85rem; color: var(--color-text-light); margin-bottom: 2rem; padding-bottom: 1rem; border-bottom: 1px solid var(--color-border); }
.privacy-wrap h2 { font-size: 1.2rem; margin-top: 2rem; margin-bottom: 0.75rem; }
.privacy-wrap ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.privacy-wrap ul li { margin-bottom: 0.4rem; font-size: 0.93rem; line-height: 1.6; }
.privacy-wrap a { color: var(--color-accent); text-decoration: underline; }
.privacy-contact-box { margin-top: 3rem; padding: 2rem; background: var(--color-bg-alt); border-radius: var(--radius-md); text-align: center; }

/* ── ANIMATIONS ─────────────────────────────────────────────────────────── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.hero-content .container > * { animation: fadeUp 0.65s ease both; }
.hero-eyebrow { animation-delay: 0.05s; }
.hero h1      { animation-delay: 0.15s; }
.hero-sub     { animation-delay: 0.25s; }
.hero-lead    { animation-delay: 0.35s; }
.hero-cta     { animation-delay: 0.45s; }

/* ── RESPONSIVE ─────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; }
  .two-col.reverse .col-text  { order: 1; }
  .two-col.reverse .col-image { order: 2; }
  .contact-grid   { grid-template-columns: 1fr; }
  .contact-map    { height: 300px; }
  .footer-inner   { grid-template-columns: 1fr; text-align: center; }
  .footer-contact { align-items: center; }
}
@media (max-width: 480px) {
  .hero-cta { flex-direction: column; align-items: flex-start; }
  .trust-grid { gap: 1rem; }
  .trust-item { font-size: 0.82rem; }
  #cch-cookie-banner { flex-direction: column; align-items: flex-start; }
  .cookie-actions { width: 100%; }
  .cookie-btn-accept, .cookie-btn-info { flex: 1; text-align: center; }
}
