/* =========================================================
   Journey Hospitality Ltd — Homepage Styles
   ========================================================= */

/* ---- Design tokens ---- */
/* Palette derived from the Fresh Start banner: blush pink, rich rose, and gold. */
:root {
  --navy:        #5c2e46;   /* deep plum — headings & dark surfaces */
  --navy-800:    #4a2438;   /* deeper plum */
  --blue:        #c76b8e;   /* primary rose (was blue) */
  --blue-600:    #b1567a;   /* rose hover */
  --teal:        #c39a4e;   /* gold accent (was teal) */
  --gold-600:    #a9803a;   /* deeper gold */
  --ink:         #3f2a35;   /* warm near-black text */
  --muted:       #8a7580;   /* muted mauve-grey */
  --line:        #f0dce4;   /* soft blush hairline */
  --bg:          #ffffff;
  --bg-alt:      #fbeff4;   /* blush section background */
  --white:       #ffffff;

  --radius:      14px;
  --radius-sm:   10px;
  --shadow:      0 10px 30px rgba(92, 46, 70, 0.10);
  --shadow-lg:   0 20px 50px rgba(92, 46, 70, 0.18);
  --max:         1140px;
  --font: "Segoe UI", system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
  --font-head: "Georgia", "Times New Roman", "Playfair Display", serif;
}

/* ---- Reset / base ---- */
* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3 {
  line-height: 1.2;
  color: var(--navy);
  font-weight: 700;
  font-family: var(--font-head);
  letter-spacing: .01em;
}

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 12px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  border: 2px solid transparent;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary { background: var(--blue); color: var(--white); }
.btn-primary:hover { background: var(--blue-600); box-shadow: var(--shadow); }

.btn-ghost { border-color: var(--navy); color: var(--navy); }
.btn-ghost:hover { background: var(--navy); color: var(--white); }

.btn-ghost-light { border-color: rgba(255,255,255,.6); color: var(--white); }
.btn-ghost-light:hover { background: rgba(255,255,255,.12); }

.btn-nav { padding: 9px 20px; background: var(--blue); color: var(--white); }
.btn-nav:hover { background: var(--blue-600); }

/* ---- Header ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0;
}
.logo span { color: var(--teal); }
.logo-img { display: flex; align-items: center; }
.logo-img img { height: 52px; width: auto; }

.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-list a { font-weight: 500; color: var(--ink); transition: color .15s; }
.nav-list a:hover { color: var(--blue); }
.nav-list .btn-nav { color: var(--white); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
}

/* ---- Hero ---- */
.hero {
  background:
    radial-gradient(circle at 82% -10%, rgba(195,154,78,.30), transparent 46%),
    radial-gradient(circle at 12% 110%, rgba(199,107,142,.28), transparent 42%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-800) 55%, #7a3b5a 100%);
  color: var(--white);
  padding: 90px 0 100px;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 56px;
  align-items: center;
}
.hero-visual { display: flex; justify-content: center; }
.hero-visual img {
  width: 100%;
  max-width: 320px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  margin-bottom: 20px;
  max-width: 18ch;
}
.hero .eyebrow { color: var(--teal); }
.hero-lead {
  font-size: 1.15rem;
  color: rgba(255,255,255,.82);
  max-width: 54ch;
  margin-bottom: 34px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 56px; }

.hero-stats {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 44px;
  border-top: 1px solid rgba(255,255,255,.15);
  padding-top: 30px;
}
.hero-stats strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.4rem;
  color: var(--teal);
  margin-bottom: 2px;
}
.hero-stats span { color: rgba(255,255,255,.7); font-size: .92rem; }

/* ---- Sections ---- */
.section { padding: 84px 0; }
.section-alt { background: var(--bg-alt); }

.section-head { text-align: center; max-width: 640px; margin: 0 auto 52px; }
.section-head h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); }
.section-sub { color: var(--muted); margin-top: 14px; font-size: 1.05rem; }

/* ---- Service cards ---- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
}
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.card-icon {
  font-size: 1.9rem;
  width: 58px; height: 58px;
  display: grid; place-items: center;
  background: var(--bg-alt);
  border-radius: var(--radius-sm);
  margin-bottom: 18px;
}
.card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: .98rem; }

/* ---- About ---- */
.about-inner {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 56px;
  align-items: center;
}
.about-text h2 { font-size: clamp(1.7rem, 3.5vw, 2.3rem); margin-bottom: 18px; }
.about-text p { color: var(--muted); margin-bottom: 18px; }
.about-text .btn { margin-top: 8px; }

.about-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 34px;
}
.value-list { list-style: none; display: grid; gap: 18px; }
.value-list li {
  padding-left: 30px;
  position: relative;
  color: var(--muted);
}
.value-list li::before {
  content: "✓";
  position: absolute; left: 0; top: 0;
  color: var(--teal);
  font-weight: 800;
}
.value-list strong { color: var(--ink); }

/* ---- Why / features ---- */
.feature-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 34px;
}
.feature { padding: 8px; }
.feature-num {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  background: var(--blue);
  width: 46px; height: 46px;
  border-radius: 50%;
  text-align: center;
  line-height: 46px;
  margin-bottom: 16px;
}
.feature h3 { font-size: 1.2rem; margin-bottom: 8px; }
.feature p { color: var(--muted); }

/* ---- Gallery ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 18px;
}
.gallery-item {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  cursor: pointer;
  aspect-ratio: 4 / 3;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-empty {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--muted);
}
.gallery-empty code {
  background: var(--white);
  padding: 2px 7px;
  border-radius: 6px;
  font-size: .9em;
}

/* ---- Lightbox ---- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background: rgba(63, 42, 53, .88);
  backdrop-filter: blur(4px);
}
.lightbox[hidden] { display: none; }
.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.lightbox-close {
  position: absolute;
  top: 20px; right: 26px;
  background: none;
  border: 0;
  color: var(--white);
  font-size: 2.4rem;
  line-height: 1;
  cursor: pointer;
}

/* ---- CTA ---- */
.cta {
  background: linear-gradient(135deg, var(--blue) 0%, var(--teal) 130%);
  color: var(--white);
  padding: 72px 0;
  text-align: center;
}
.cta h2 { color: var(--white); font-size: clamp(1.7rem, 3.5vw, 2.4rem); margin-bottom: 12px; }
.cta p { color: rgba(255,255,255,.9); margin-bottom: 30px; font-size: 1.1rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.cta-area { margin-top: 26px; margin-bottom: 0; font-weight: 600; }
.cta .btn-primary { background: var(--white); color: var(--blue); }
.cta .btn-primary:hover { background: #fdeef4; }

/* ---- Footer ---- */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.75);
  padding: 56px 0 28px;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-brand .logo { color: var(--white); }
.footer-brand .logo span { color: var(--teal); }
.footer-brand p { margin-top: 10px; max-width: 34ch; font-size: .95rem; }
.social-links { display: flex; gap: 12px; margin-top: 18px; }
.social-link {
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  color: var(--white);
  background: rgba(255,255,255,.10);
  transition: background .15s ease, transform .15s ease, color .15s ease;
}
.social-link:hover {
  background: var(--teal);
  color: var(--navy);
  transform: translateY(-2px);
}
.footer-nav { display: flex; flex-wrap: wrap; gap: 24px; align-items: center; }
.footer-nav a { transition: color .15s; }
.footer-nav a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  padding-top: 24px;
  font-size: .85rem;
  color: rgba(255,255,255,.55);
}

/* ---- Responsive ---- */
@media (max-width: 820px) {
  .nav-toggle { display: flex; }
  .nav-list {
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 24px 20px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    display: none;
  }
  .nav-list.open { display: flex; }
  .nav-list li { width: 100%; padding: 10px 0; }
  .nav-list .btn-nav { display: inline-block; margin-top: 6px; }

  .about-inner { grid-template-columns: 1fr; gap: 34px; }
  .hero-stats { gap: 28px; }

  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .hero-visual img { max-width: 240px; }
}
