@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@300;400;500&family=Barlow:wght@300;400&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body { cursor: none; }

@media (hover: none) {
  html, body { cursor: auto; }
}

/* ── CUSTOM CURSOR ── */
.cursor-dot {
  position: fixed; width: 6px; height: 6px; background: #1a1a1a;
  border-radius: 50%; pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .18s, height .18s, background .18s;
}
.cursor-ring {
  position: fixed; width: 28px; height: 28px;
  border: 0.5px solid rgba(26,26,26,.35); border-radius: 50%;
  pointer-events: none; z-index: 9998; transform: translate(-50%, -50%);
  transition: width .22s, height .22s, border-color .18s, border-width .18s;
}
@media (hover: none) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* ── ANIMATIONS ── */
.anim-up { opacity: 1; transform: translateY(0); transition: opacity .6s ease, transform .6s ease; }
.anim-up.pre { opacity: 0; transform: translateY(20px); }
.anim-fade { opacity: 1; transition: opacity .7s ease; }
.anim-fade.pre { opacity: 0; }
.anim-left { opacity: 1; transform: translateX(0); transition: opacity .55s ease, transform .55s ease; }
.anim-left.pre { opacity: 0; transform: translateX(-18px); }
.anim-scale { opacity: 1; transform: scale(1); transition: opacity .5s ease, transform .5s ease; }
.anim-scale.pre { opacity: 0; transform: scale(.96); }

/* ── SITE WRAPPER ── */
.site {
  font-family: 'Barlow', sans-serif; font-weight: 300; color: #1a1a1a;
  background: #fff; font-size: 14px; max-width: 960px;
  margin: 0 auto; border-left: 0.5px solid #e0e0e0; border-right: 0.5px solid #e0e0e0;
  cursor: none; min-height: 100vh;
}
@media (hover: none) { .site { cursor: auto; } }

/* ── NAV ── */
.nav {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 28px; border-bottom: 0.5px solid #e0e0e0;
  background: #fff; position: sticky; top: 0; z-index: 100;
}
.logo {
  font-family: 'Barlow Condensed', sans-serif; font-size: 16px;
  font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: #1a1a1a;
}
.logo-sub { font-size: 11px; color: #bbb; margin-top: 2px; letter-spacing: .06em; font-weight: 300; }
.nav-r { display: flex; }
.ntab {
  font-family: 'Barlow Condensed', sans-serif; font-size: 12px; letter-spacing: .1em;
  padding: 5px 14px; color: #bbb; cursor: none; border: 0.5px solid transparent;
  transition: all .2s; font-weight: 400; text-transform: uppercase; white-space: nowrap;
}
@media (hover: none) { .ntab { cursor: pointer; } }
.ntab:hover { color: #1a1a1a; }
.ntab.on { color: #fff; background: #1a1a1a; border-color: #1a1a1a; }

/* ── HERO ── */
.hero { display: grid; grid-template-columns: 1fr 1fr; border-bottom: 0.5px solid #e0e0e0; }
.hero-l { padding: 40px 28px 36px; border-right: 0.5px solid #e0e0e0; overflow: hidden; }
.eyebrow { font-size: 11px; color: #bbb; margin-bottom: 16px; letter-spacing: .12em; text-transform: uppercase; }
.hero-title {
  font-family: 'Barlow Condensed', sans-serif; font-size: 48px; font-weight: 400;
  line-height: 1.0; margin-bottom: 18px; letter-spacing: .04em; text-transform: uppercase; color: #1a1a1a;
}
.hero-title .line { display: block; overflow: hidden; }
.hero-title .line span { display: block; transform: translateY(100%); transition: transform .65s cubic-bezier(.16,1,.3,1); }
.hero-title .line span.v { transform: translateY(0); }
.hero-body { font-size: 14px; line-height: 1.85; color: #888; max-width: 300px; }
.who-btn {
  display: inline-flex; align-items: center; gap: 5px; margin-top: 16px;
  font-family: 'Barlow Condensed', sans-serif; font-size: 11px; color: #bbb;
  cursor: none; text-transform: uppercase; letter-spacing: .1em;
  border-bottom: 0.5px solid #ddd; padding-bottom: 2px; transition: color .2s; font-weight: 400;
}
@media (hover: none) { .who-btn { cursor: pointer; } }
.who-btn:hover { color: #1a1a1a; }
.who-btn .arr { transition: transform .3s; }
.who-btn.open .arr { transform: rotate(90deg); }

/* ── ABOUT DRAWER ── */
.about-drawer {
  max-height: 0; overflow: hidden;
  transition: max-height .5s cubic-bezier(.4,0,.2,1), opacity .35s; opacity: 0;
}
.about-drawer.open { max-height: 600px; opacity: 1; border-top: 0.5px solid #e0e0e0; }
.about-inner {
  padding: 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 32px; background: #fafafa;
}
.a-lbl { font-family: 'Barlow Condensed', sans-serif; font-size: 11px; color: #bbb; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 10px; font-weight: 400; }
.a-txt { font-size: 14px; line-height: 1.9; color: #666; }
.a-txt p { margin-bottom: 12px; }
.a-txt p:last-child { margin-bottom: 0; }
.a-txt strong { font-weight: 300; color: #1a1a1a; }

/* ── HERO RIGHT ── */
.hero-r { display: grid; grid-template-columns: 1fr 1fr; background: #e0e0e0; gap: 1px; }
.hs { background: #fff; padding: 24px 20px; display: flex; flex-direction: column; justify-content: space-between; }
.hs-l { font-family: 'Barlow Condensed', sans-serif; font-size: 10px; color: #bbb; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 8px; font-weight: 400; }
.hs-n { font-family: 'Barlow Condensed', sans-serif; font-size: 21px; font-weight: 400; line-height: 1.2; letter-spacing: .06em; text-transform: uppercase; color: #1a1a1a; }
.hs-b { font-size: 12px; line-height: 1.65; color: #bbb; margin-top: 8px; }
.hs.accent { background: #1a1a1a; }
.hs.accent .hs-l { color: rgba(255,255,255,.3); }
.hs.accent .hs-n { color: #fff; }
.hs.accent .hs-b { color: rgba(255,255,255,.35); }
.hs.wide {
  grid-column: span 2; padding: 13px 20px; display: flex; flex-direction: row;
  justify-content: space-between; align-items: center; background: #f7f7f7;
}
.hs.wide .hs-n { font-size: 14px; font-weight: 300; text-transform: none; font-family: 'Barlow', sans-serif; letter-spacing: 0; color: #888; }
.q-btn {
  font-family: 'Barlow Condensed', sans-serif; font-size: 12px; letter-spacing: .1em;
  text-transform: uppercase; border: 0.5px solid #1a1a1a; padding: 7px 18px;
  cursor: none; color: #1a1a1a; transition: all .2s; white-space: nowrap;
  background: transparent; font-weight: 400;
}
@media (hover: none) { .q-btn { cursor: pointer; } }
.q-btn:hover { background: #1a1a1a; color: #fff; }

/* ── CATEGORY TABS ── */
.cat-tabs {
  display: flex; overflow-x: auto; scrollbar-width: none; border-bottom: 0.5px solid #e0e0e0;
  padding: 0 28px; background: #f7f7f7;
}
.cat-tabs::-webkit-scrollbar { display: none; }
.ctab {
  font-family: 'Barlow Condensed', sans-serif; display: flex; align-items: center;
  padding: 0 12px; height: 40px; color: #bbb; cursor: none; white-space: nowrap;
  transition: all .15s; border: 0.5px solid transparent; margin: 5px 4px 5px 0;
  font-size: 12px; font-weight: 400; letter-spacing: .08em; text-transform: uppercase;
}
@media (hover: none) { .ctab { cursor: pointer; } }
.ctab:hover { color: #1a1a1a; border-color: #ddd; background: #fff; }
.ctab.on { color: #fff; background: #1a1a1a; border-color: #1a1a1a; }

/* ── GRID ── */
.grid {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px; background: #e0e0e0;
  transition: opacity .15s ease, transform .15s ease;
}
.card { background: #fff; cursor: none; overflow: hidden; opacity: 0; transform: translateY(16px); transition: opacity .4s ease, transform .4s ease; }
@media (hover: none) { .card { cursor: pointer; } }
.card.in { opacity: 1; transform: translateY(0); }
.card-img-wrap { width: 100%; aspect-ratio: 1/1; overflow: hidden; background: #f0f0f0; position: relative; }
.card-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s ease; }
.card:hover .card-img-wrap img { transform: scale(1.06); }
.card-img-wrap .icon-fb { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-size: 22px; color: #ccc; }
.card-info { padding: 10px 12px 13px; border-top: 0.5px solid #e0e0e0; transition: background .25s ease; }
.card:hover .card-info { background: #1a1a1a; }
.card-name { font-family: 'Barlow Condensed', sans-serif; font-size: 15px; font-weight: 400; line-height: 1.25; margin-bottom: 3px; letter-spacing: .06em; text-transform: uppercase; color: #1a1a1a; transition: color .25s ease; }
.card:hover .card-name { color: #fff; }
.card-rate { font-size: 12px; color: #bbb; font-weight: 300; transition: color .25s ease; }
.card:hover .card-rate { color: rgba(255,255,255,.5); }

/* ── SIDE PANEL ── */
.panel-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0); z-index: 199;
  pointer-events: none; transition: background .35s ease;
}
.panel-overlay.open { background: rgba(0,0,0,.06); pointer-events: all; }
.panel-wrap {
  position: fixed; top: 0; right: 0; width: 310px; height: 100vh;
  background: #fff; border-left: 0.5px solid #e0e0e0; z-index: 200;
  overflow-y: auto; padding: 0;
  transform: translateX(100%); transition: transform .4s cubic-bezier(.4,0,.2,1), opacity .4s ease; opacity: 0;
}
.panel-wrap.open { transform: translateX(0); opacity: 1; }
.panel-head { padding: 14px 20px; border-bottom: 0.5px solid #e0e0e0; display: flex; justify-content: space-between; align-items: center; background: #f7f7f7; }
.panel-close-btn {
  font-family: 'Barlow Condensed', sans-serif; font-size: 12px; letter-spacing: .1em;
  text-transform: uppercase; color: #bbb; cursor: none; border: none; background: none; padding: 0; font-weight: 400; transition: color .2s;
}
@media (hover: none) { .panel-close-btn { cursor: pointer; } }
.panel-close-btn:hover { color: #1a1a1a; }
.panel-cat-label { font-family: 'Barlow Condensed', sans-serif; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: #bbb; font-weight: 400; }
.panel-img { width: 100%; aspect-ratio: 1/1; overflow: hidden; background: #f0f0f0; }
.panel-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: opacity .25s ease, transform .25s ease; }
.panel-img img.swap { opacity: 0; transform: scale(.97); }
.panel-body { padding: 18px 20px; transition: opacity .25s ease, transform .25s ease; }
.panel-body.swap { opacity: 0; transform: translateY(6px); }
.p-name { font-family: 'Barlow Condensed', sans-serif; font-size: 24px; font-weight: 400; letter-spacing: .06em; line-height: 1.1; margin-bottom: 5px; text-transform: uppercase; color: #1a1a1a; }
.p-rate { font-size: 13px; color: #bbb; margin-bottom: 16px; letter-spacing: .04em; font-family: 'Barlow', sans-serif; }
.p-div { height: 0.5px; background: #e0e0e0; margin-bottom: 14px; }
.p-lbl { font-family: 'Barlow Condensed', sans-serif; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: #bbb; margin-bottom: 10px; font-weight: 400; }
.p-list { list-style: none; padding: 0; margin: 0; }
.p-list li { font-family: 'Barlow', sans-serif; font-size: 13px; line-height: 1.0; color: #555; padding: 8px 0; user-select: text; cursor: text; display: flex; align-items: baseline; gap: 8px; }
.p-list li::before { content: '—'; color: #ddd; flex-shrink: 0; font-size: 12px; }
.p-enquire {
  display: block; margin: 18px 20px 0; font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; letter-spacing: .1em; text-transform: uppercase; text-align: center;
  border: 0.5px solid #1a1a1a; padding: 10px 18px; cursor: none; color: #1a1a1a;
  transition: all .2s; background: transparent; font-weight: 400; text-decoration: none;
  margin-bottom: 20px;
}
@media (hover: none) { .p-enquire { cursor: pointer; } }
.p-enquire:hover { background: #1a1a1a; color: #fff; }

/* ── PAGES ── */
.page { display: none; }
.page.active { display: block; }

/* ── STATIC SECTIONS ── */
.sec { padding: 36px 28px; border-bottom: 0.5px solid #e0e0e0; }
.sec-lbl { font-family: 'Barlow Condensed', sans-serif; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: #bbb; margin-bottom: 14px; font-weight: 400; }
.sec-title { font-family: 'Barlow Condensed', sans-serif; font-size: 30px; font-weight: 400; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 20px; line-height: 1.1; color: #1a1a1a; }
.pgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 0.5px solid #e0e0e0; background: #e0e0e0; }
.pi { background: #fff; padding: 22px 24px; }
.pi-lbl { font-family: 'Barlow Condensed', sans-serif; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: #bbb; margin-bottom: 6px; font-weight: 400; }
.pi-title { font-family: 'Barlow Condensed', sans-serif; font-size: 17px; font-weight: 400; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 8px; color: #1a1a1a; }
.pi-body { font-size: 13px; line-height: 1.85; color: #777; }
.pi-link { font-family: 'Barlow Condensed', sans-serif; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: #1a1a1a; cursor: none; border-bottom: 0.5px solid #1a1a1a; display: inline-block; margin-top: 8px; transition: opacity .2s; text-decoration: none; }
@media (hover: none) { .pi-link { cursor: pointer; } }
.pi-link:hover { opacity: .5; }
.cgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 0.5px solid #e0e0e0; background: #e0e0e0; }
.cc { background: #fff; padding: 22px 24px; }
.cc-lbl { font-family: 'Barlow Condensed', sans-serif; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: #bbb; margin-bottom: 6px; font-weight: 400; }
.cc-val { font-size: 13px; color: #555; line-height: 1.75; }

/* ── FOOTER ── */
.foot { display: flex; justify-content: space-between; align-items: center; padding: 14px 28px; border-top: 0.5px solid #e0e0e0; }
.foot-l { font-family: 'Barlow Condensed', sans-serif; font-size: 11px; color: #ccc; letter-spacing: .08em; text-transform: uppercase; }
.foot-r { display: flex; gap: 14px; align-items: center; }
.foot-r a { font-size: 22px; color: #ccc; text-decoration: none; cursor: none; transition: color .2s; }
@media (hover: none) { .foot-r a { cursor: pointer; } }
.foot-r a:hover { color: #1a1a1a; }

/* ═══════════════════════════════════
   MOBILE RESPONSIVE
═══════════════════════════════════ */

/* Tablet: 2-column grid */
@media (max-width: 768px) {
  .site { border-left: none; border-right: none; }

  /* Nav */
  .nav { padding: 12px 16px; }
  .logo-sub { display: none; }
  .ntab { padding: 5px 10px; font-size: 11px; }

  /* Hero */
  .hero { grid-template-columns: 1fr; }
  .hero-l { border-right: none; border-bottom: 0.5px solid #e0e0e0; padding: 28px 16px 24px; }
  .hero-title { font-size: 36px; }
  .hero-body { max-width: 100%; }
  .hero-r { grid-template-columns: 1fr 1fr; }
  .hs.wide { gap: 12px; flex-wrap: wrap; }

  /* About drawer */
  .about-inner { grid-template-columns: 1fr; gap: 20px; padding: 20px 16px; }

  /* Tabs */
  .cat-tabs { padding: 0 16px; }

  /* Grid: 2 columns */
  .grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .card-name { font-size: 13px; }

  /* Sections */
  .sec { padding: 28px 16px; }
  .pgrid { grid-template-columns: 1fr; }
  .pi + .pi { border-top: 1px solid #e0e0e0 !important; border-left: none !important; }
  .cgrid { grid-template-columns: 1fr; }
  .cc + .cc { border-top: 1px solid #e0e0e0 !important; border-left: none !important; }
  .cc.span2 { grid-column: span 1; }

  /* Footer */
  .foot { padding: 12px 16px; }
  .foot-l { font-size: 10px; }

  /* Panel: bottom sheet */
  .panel-wrap {
    width: 100%; height: 85vh; top: auto; bottom: 0; right: 0;
    border-left: none; border-top: 0.5px solid #e0e0e0;
    transform: translateY(100%); border-radius: 0;
  }
  .panel-wrap.open { transform: translateY(0); }
  .panel-img { aspect-ratio: 16/9; }
}

/* Mobile: single column */
@media (max-width: 480px) {
  .hero-title { font-size: 30px; }
  .hero-r { grid-template-columns: 1fr 1fr; }
  .hs { padding: 16px 14px; }
  .hs-n { font-size: 17px; }
  .hs.wide { flex-direction: column; align-items: flex-start; gap: 10px; }
  .grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .nav-r { gap: 0; }
  .ntab { padding: 4px 8px; font-size: 10px; letter-spacing: .06em; }
}
