/* ===== Tokens ===== */
:root {
  --ink: #0A2A43;
  --primary: #0C5BA6;
  --primary-hover: #094A86;
  --sky: #2AA5E2;
  --footer-navy: #071C32;
  --paper: #FBFAF7;
  --mist: #EEF3F8;
  --body: #42566A;
  --body-muted: #4A5E72;
  --body-muted-2: #33475B;
  --body-muted-3: #6C7A88;
  --border-warm: #EAE6DD;
  --border-warm-2: #E7E3DA;
  --border-cool: #E1E9F1;
  --border-cool-2: #E3E9F0;
  --footer-link: #CBD8E6;
  --footer-muted: #9FB2C4;
  --footer-legal: #7E93A6;

  /* Themeable warm accent - default Ochre */
  --accent: #C0873E;
  --accent-soft: #EEE2CE;
  --accent-deep: #8F6222;

  --font-display: 'Bricolage Grotesque', system-ui, sans-serif;
  --font-body: 'Hanken Grotesque', system-ui, sans-serif;

  --max-width: 1200px;
  --section-padding: 104px;
}

/* Alternate theme presets - apply by setting data-theme on <html> or <body> */
[data-theme="teal"] { --accent: #5AA9A0; --accent-soft: #DCEEEB; --accent-deep: #3C7A72; }
[data-theme="terracotta"] { --accent: #B4664B; --accent-soft: #EDD8CF; --accent-deep: #8A4732; }
[data-theme="olive"] { --accent: #7C8B5A; --accent-soft: #E4E8D6; --accent-deep: #57633B; }

/* ===== Reset ===== */
html { scroll-behavior: smooth; }
body { margin: 0; }
*, *::before, *::after { box-sizing: border-box; }
img { max-width: 100%; }
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-hover); }
::selection { background: var(--sky); color: #fff; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: 32px;
  padding-right: 32px;
}

h1, h2, h3 { font-family: var(--font-display); margin: 0; }

.eyebrow {
  display: inline-block;
  color: var(--accent-deep);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 16px;
}

.section { padding: var(--section-padding) 32px; }
.section-inner { max-width: var(--max-width); margin: 0 auto; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
}
.btn-primary { background: var(--primary); color: #fff; padding: 14px 26px; font-size: 15px; }
.btn-primary:hover { background: var(--primary-hover); color: #fff; }
.btn-accent { background: var(--accent); color: #fff; padding: 16px 30px; }
.btn-accent:hover { background: var(--accent-deep); color: #fff; }
.btn-ghost {
  background: rgba(255,255,255,0.1);
  color: #fff;
  padding: 16px 30px;
  border: 1px solid rgba(255,255,255,0.35);
}
.btn-ghost:hover { background: rgba(255,255,255,0.2); color: #fff; }

/* ===== Nav ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251,250,247,0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-warm-2);
}
.site-nav {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 48px; width: auto; display: block; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--font-display); font-weight: 800; font-size: 19px; letter-spacing: -0.01em; color: var(--ink); }
.brand-sub { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent-deep); font-weight: 600; margin-top: 3px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-link { color: #3A5068; font-weight: 600; font-size: 15px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle .bar { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; transition: transform 0.2s, opacity 0.2s; }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: flex-end;
  background-image: linear-gradient(90deg, rgba(6,26,46,0.88) 0%, rgba(6,26,46,0.62) 42%, rgba(6,26,46,0.12) 78%, rgba(6,26,46,0.02) 100%), url('../assets/lounge-wide.jpg');
  background-size: cover;
  background-position: center;
}
.hero-inner { max-width: var(--max-width); margin: 0 auto; padding: 0 32px 88px; width: 100%; }
.hero-content { max-width: 660px; }
.hero-eyebrow { display: flex; align-items: center; gap: 16px; margin-bottom: 28px; }
.hero-rule { width: 46px; height: 2px; background: var(--accent); display: block; }
.hero-eyebrow-text { color: #DCE7F1; font-size: 13px; letter-spacing: 0.24em; text-transform: uppercase; font-weight: 600; }
.hero h1 { font-weight: 800; color: #fff; font-size: clamp(38px, 5.4vw, 68px); line-height: 1.02; letter-spacing: -0.025em; margin: 0 0 22px; }
.hero p { color: #CBD8E6; font-size: clamp(17px, 1.6vw, 20px); line-height: 1.6; margin: 0 0 38px; max-width: 560px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===== Trust strip ===== */
.trust { background: var(--primary); }
.trust-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 24px;
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-num { font-family: var(--font-display); font-weight: 800; font-size: 34px; color: #fff; line-height: 1; }
.stat-num small { font-size: 18px; }
.stat-label { color: #AFCDEA; font-size: 14px; font-weight: 500; }

/* ===== Two column layouts ===== */
.cols-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 72px;
  align-items: center;
}

/* ===== About ===== */
.about-media img { width: 100%; height: auto; border-radius: 18px; display: block; box-shadow: 0 24px 60px -28px rgba(6,26,46,0.4); }
.about-copy p { font-size: 17px; line-height: 1.7; color: var(--body); margin: 0 0 20px; }
.about-copy h2 { font-weight: 800; font-size: clamp(28px, 3.4vw, 42px); line-height: 1.08; letter-spacing: -0.02em; margin: 0 0 22px; }
.checklist { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.checklist li { display: flex; gap: 14px; align-items: flex-start; }
.check-chip {
  flex: none;
  margin-top: 3px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-deep);
  font-weight: 800;
  font-size: 13px;
}
.checklist span span { font-size: 16px; color: var(--body-muted-2); line-height: 1.5; }
.checklist strong { color: var(--ink); }

/* ===== Story ===== */
.story { background: var(--mist); border-top: 1px solid var(--border-cool); border-bottom: 1px solid var(--border-cool); }
.story h2 { font-weight: 800; font-size: clamp(28px, 3.4vw, 42px); line-height: 1.08; letter-spacing: -0.02em; margin: 0 0 22px; }
.story p { font-size: 17px; line-height: 1.7; color: var(--body); margin: 0 0 18px; }
.story p:last-child { margin: 0; }
.story-media { display: grid; grid-template-columns: 1fr; gap: 20px; }
.story-media img { width: 100%; height: auto; border-radius: 18px; display: block; box-shadow: 0 24px 60px -30px rgba(6,26,46,0.45); }
.story-row { display: grid; grid-template-columns: 1.4fr 1fr; gap: 20px; align-items: stretch; }
.story-row img { border-radius: 14px; object-fit: cover; height: 100%; box-shadow: none; }
.story-card {
  background: var(--primary);
  border-radius: 14px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
}
.story-card .big { font-family: var(--font-display); font-weight: 800; font-size: 30px; line-height: 1; }
.story-card .small { color: #B9D3ED; font-size: 14px; margin-top: 6px; line-height: 1.4; }

/* ===== Services ===== */
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}
.services-header .left { max-width: 560px; }
.services-header h2 { font-weight: 800; font-size: clamp(28px, 3.4vw, 44px); line-height: 1.06; letter-spacing: -0.02em; }
.services-header .intro { max-width: 420px; font-size: 16.5px; line-height: 1.7; color: var(--body); margin: 0; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; }
.service-card {
  background: #fff;
  border: 1px solid var(--border-warm);
  border-radius: 18px;
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 16px 40px -32px rgba(6,26,46,0.4);
  transition: box-shadow 0.2s;
}
.service-card:hover { box-shadow: 0 22px 50px -30px rgba(6,26,46,0.5); }
.service-num { font-family: var(--font-display); font-weight: 800; font-size: 15px; color: var(--accent-deep); letter-spacing: 0.04em; margin-bottom: 18px; }
.service-rule { width: 44px; height: 3px; background: var(--accent); border-radius: 2px; margin-bottom: 18px; }
.service-card h3 { font-weight: 700; font-size: 20px; margin: 0 0 12px; color: var(--ink); line-height: 1.15; }
.service-card p { font-size: 15.5px; line-height: 1.6; color: var(--body-muted); margin: 0; }

/* ===== Why choose us ===== */
.why {
  position: relative;
  background-image: linear-gradient(rgba(7,28,50,0.92), rgba(7,28,50,0.94)), url('../assets/lounge-scanner.jpg');
  background-size: cover;
  background-position: center;
}
.why-header { text-align: center; max-width: 620px; margin: 0 auto 60px; }
.why-header .eyebrow { color: var(--accent); }
.why-header h2 { font-weight: 800; font-size: clamp(28px, 3.4vw, 44px); line-height: 1.08; letter-spacing: -0.02em; margin: 0 0 18px; color: #fff; }
.why-header p { font-size: 17px; line-height: 1.7; color: #B7C6D6; margin: 0; }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.why-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  padding: 34px 30px;
}
.why-num {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  color: #fff;
  font-size: 20px;
  margin-bottom: 22px;
}
.why-card h3 { font-weight: 700; font-size: 21px; color: #fff; margin: 0 0 12px; }
.why-card p { font-size: 15.5px; line-height: 1.65; color: #AFC0D1; margin: 0; }

/* ===== Panels ===== */
.panels { background: var(--mist); border-top: 1px solid var(--border-cool); border-bottom: 1px solid var(--border-cool); }
.panels .section-inner { padding-top: 96px; padding-bottom: 96px; }
.panels-header { text-align: center; max-width: 640px; margin: 0 auto 52px; }
.panels-header h2 { font-weight: 800; font-size: clamp(28px, 3.4vw, 44px); line-height: 1.08; letter-spacing: -0.02em; margin: 0 0 18px; }
.panels-header p { font-size: 17px; line-height: 1.7; color: var(--body); margin: 0; }
.panels-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 18px; }
.panel-tile {
  background: #fff;
  border: 1px solid var(--border-cool-2);
  border-radius: 14px;
  height: 118px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 26px;
  box-shadow: 0 8px 24px -18px rgba(6,26,46,0.35);
  transition: box-shadow 0.2s;
}
.panel-tile:hover { box-shadow: 0 14px 34px -18px rgba(6,26,46,0.45); }
.panel-tile img { max-width: 100%; width: auto; object-fit: contain; display: block; }

/* ===== Branches ===== */
.branches-header { text-align: center; max-width: 560px; margin: 0 auto 52px; }
.branches-header h2 { font-weight: 800; font-size: clamp(28px, 3.4vw, 44px); line-height: 1.08; letter-spacing: -0.02em; }
.branch-card {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 0;
  border: 1px solid var(--border-warm);
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 24px 60px -38px rgba(6,26,46,0.45);
}
.branch-card img { width: 100%; height: 100%; min-height: 340px; object-fit: cover; display: block; }
.branch-copy { padding: 48px 44px; display: flex; flex-direction: column; justify-content: center; }
.pill-tag {
  display: inline-block;
  align-self: flex-start;
  background: var(--accent-soft);
  color: var(--accent-deep);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.branch-copy h3 { font-weight: 800; font-size: 28px; margin: 0 0 16px; line-height: 1.1; }
.branch-copy .address { font-size: 16px; line-height: 1.65; color: var(--body); margin: 0 0 26px; }
.branch-meta { display: flex; flex-direction: column; gap: 14px; font-size: 15.5px; color: var(--body-muted-2); }
.branch-meta .row { display: flex; align-items: center; gap: 12px; }
.branch-meta .label { color: var(--accent-deep); font-weight: 700; min-width: 64px; }
.branch-meta a { font-weight: 700; }
.branch-copy .btn-primary { margin-top: 30px; align-self: flex-start; }

/* ===== Contact ===== */
.contact { background: var(--mist); border-top: 1px solid var(--border-cool); }
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 56px; align-items: stretch; }
.contact-copy h2 { font-weight: 800; font-size: clamp(28px, 3.4vw, 42px); line-height: 1.08; letter-spacing: -0.02em; margin: 0 0 30px; }
.contact-rows { display: grid; gap: 22px; }
.contact-row { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon {
  flex: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--border-cool);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 19px;
}
.contact-row .label { font-weight: 700; font-size: 15px; margin-bottom: 3px; }
.contact-row .value { font-size: 15px; color: var(--body); line-height: 1.55; }
.contact-row a.value { color: var(--primary); font-weight: 600; }
.map-frame {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border-cool);
  min-height: 420px;
  box-shadow: 0 20px 50px -34px rgba(6,26,46,0.4);
}
.map-frame iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; }

/* ===== Footer ===== */
.site-footer { background: var(--footer-navy); color: #fff; }
.footer-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 72px 32px 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 36px 36px;
  align-items: start;
}
.footer-brand { flex: 1.6 1 190px; }
.footer-brand-box {
  background: #fff;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px 12px 12px;
  border-radius: 14px;
  margin-bottom: 22px;
}
.footer-brand-box img { height: 40px; width: auto; }
.footer-brand-box span { font-family: var(--font-display); font-weight: 800; color: var(--ink); font-size: 17px; }
.footer-brand p { font-size: 15px; line-height: 1.65; color: var(--footer-muted); margin: 0; max-width: 260px; }
.footer-col { flex: 1 1 105px; }
.footer-col.location { flex: 1.35 1 170px; }
.footer-col.contact-col { flex: 1.2 1 160px; }
.footer-heading { font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); font-weight: 700; margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { color: var(--footer-link); font-size: 15px; }
.footer-col address { font-style: normal; font-size: 15px; line-height: 1.7; color: var(--footer-link); margin: 0; }
.footer-contact { display: flex; flex-direction: column; gap: 12px; font-size: 15px; }
.footer-contact a { color: var(--footer-link); }
.footer-contact span { color: var(--footer-muted); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); }
.footer-bottom-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 22px 32px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom-inner span { font-size: 13px; color: var(--footer-legal); letter-spacing: 0.04em; }

/* ===== Skip link (accessibility) ===== */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--primary);
  color: #fff;
  padding: 12px 20px;
  z-index: 100;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ===== Responsive nav ===== */
@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--border-warm-2);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 32px 20px;
    gap: 16px;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links .nav-link.btn-primary { align-self: flex-start; }
}
